diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index fd02363..a6a0b46 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2614,16 +2614,6 @@ dependencies = [ "pathdiff", ] -[[package]] -name = "openai" -version = "0.1.0" -dependencies = [ - "reqwest", - "serde", - "serde_json", - "tokio", -] - [[package]] name = "openssl" version = "0.10.73" @@ -4468,7 +4458,6 @@ name = "tms_service" version = "0.1.0" dependencies = [ "html_scraper", - "openai", "reqwest", "serde", "serde_json", diff --git a/src-tauri/html_scraper/Cargo.lock b/src-tauri/html_scraper/Cargo.lock new file mode 100644 index 0000000..d2dfa2d --- /dev/null +++ b/src-tauri/html_scraper/Cargo.lock @@ -0,0 +1,772 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "ahash" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" +dependencies = [ + "cfg-if", + "getrandom 0.3.3", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] +name = "autocfg" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[package]] +name = "bitflags" +version = "2.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "cfg-if" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" + +[[package]] +name = "cssparser" +version = "0.31.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b3df4f93e5fbbe73ec01ec8d3f68bba73107993a5b1e7519273c32db9b0d5be" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "phf 0.11.3", + "smallvec", +] + +[[package]] +name = "cssparser-macros" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" +dependencies = [ + "quote", + "syn", +] + +[[package]] +name = "derive_more" +version = "0.99.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "dtoa" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" + +[[package]] +name = "dtoa-short" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +dependencies = [ + "dtoa", +] + +[[package]] +name = "ego-tree" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" + +[[package]] +name = "futf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" +dependencies = [ + "mac", + "new_debug_unreachable", +] + +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + +[[package]] +name = "getopts" +version = "0.2.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df" +dependencies = [ + "unicode-width", +] + +[[package]] +name = "getrandom" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasi 0.14.7+wasi-0.2.4", +] + +[[package]] +name = "html5ever" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4" +dependencies = [ + "log", + "mac", + "markup5ever", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "html_scraper" +version = "0.1.0" +dependencies = [ + "regex", + "scraper", + "thiserror", +] + +[[package]] +name = "itoa" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + +[[package]] +name = "libc" +version = "0.2.176" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" + +[[package]] +name = "lock_api" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" + +[[package]] +name = "mac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" + +[[package]] +name = "markup5ever" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45" +dependencies = [ + "log", + "phf 0.11.3", + "phf_codegen 0.11.3", + "string_cache", + "string_cache_codegen", + "tendril", +] + +[[package]] +name = "memchr" +version = "2.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "once_cell" +version = "1.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + +[[package]] +name = "parking_lot" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets", +] + +[[package]] +name = "phf" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" +dependencies = [ + "phf_shared 0.10.0", +] + +[[package]] +name = "phf" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +dependencies = [ + "phf_macros", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_codegen" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" +dependencies = [ + "phf_generator 0.10.0", + "phf_shared 0.10.0", +] + +[[package]] +name = "phf_codegen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_generator" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" +dependencies = [ + "phf_shared 0.10.0", + "rand", +] + +[[package]] +name = "phf_generator" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +dependencies = [ + "phf_shared 0.11.3", + "rand", +] + +[[package]] +name = "phf_macros" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +dependencies = [ + "siphasher 1.0.1", +] + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "proc-macro2" +version = "1.0.101" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[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 0.2.16", +] + +[[package]] +name = "redox_syscall" +version = "0.5.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex" +version = "1.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "scraper" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "761fb705fdf625482d2ed91d3f0559dcfeab2798fe2771c69560a774865d0802" +dependencies = [ + "ahash", + "cssparser", + "ego-tree", + "getopts", + "html5ever", + "once_cell", + "selectors", + "tendril", +] + +[[package]] +name = "selectors" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" +dependencies = [ + "bitflags", + "cssparser", + "derive_more", + "fxhash", + "log", + "new_debug_unreachable", + "phf 0.10.1", + "phf_codegen 0.10.0", + "precomputed-hash", + "servo_arc", + "smallvec", +] + +[[package]] +name = "serde" +version = "1.0.227" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80ece43fc6fbed4eb5392ab50c07334d3e577cbf40997ee896fe7af40bba4245" +dependencies = [ + "serde_core", +] + +[[package]] +name = "serde_core" +version = "1.0.227" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a576275b607a2c86ea29e410193df32bc680303c82f31e275bbfcafe8b33be5" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.227" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51e694923b8824cf0e9b382adf0f60d4e05f348f357b38833a3fa5ed7c2ede04" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "servo_arc" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d036d71a959e00c77a63538b90a6c2390969f9772b096ea837205c6bd0491a44" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "siphasher" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "string_cache" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" +dependencies = [ + "new_debug_unreachable", + "parking_lot", + "phf_shared 0.11.3", + "precomputed-hash", + "serde", +] + +[[package]] +name = "string_cache_codegen" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", +] + +[[package]] +name = "syn" +version = "2.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "tendril" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" +dependencies = [ + "futf", + "mac", + "utf-8", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "unicode-ident" +version = "1.0.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" + +[[package]] +name = "unicode-width" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasi" +version = "0.14.7+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" +dependencies = [ + "wasip2", +] + +[[package]] +name = "wasip2" +version = "1.0.1+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_gnullvm", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "wit-bindgen" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" + +[[package]] +name = "zerocopy" +version = "0.8.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] diff --git a/src-tauri/html_scraper/src/lib.rs b/src-tauri/html_scraper/src/lib.rs index 36630fb..5fc6c65 100644 --- a/src-tauri/html_scraper/src/lib.rs +++ b/src-tauri/html_scraper/src/lib.rs @@ -61,6 +61,37 @@ pub fn find_token(html_body: &str) -> Result, ScrapeError> { Ok(None) } + +/// 解析HTML文本,查找并返回最新一个工单详情按钮链接中的ID。 +/// 由于网页将最新的工单放在最上面,我们只需要定位到表格的第一行即可。 +pub fn find_latest_work_order_id(html_body: &str) -> Result, ScrapeError> { + // CSS选择器,用于定位到表格主体(tbody)的第一个表格行(tr)内,class包含"btn-info"的链接(a) + let selector_str = "tbody tr:first-child a.btn-info"; + let detail_link_selector = Selector::parse(selector_str) + .map_err(|e| ScrapeError::InvalidSelector(format!("'{selector_str}': {e}")))?; + + let document = Html::parse_document(html_body); + + // 查找第一个匹配的元素 + if let Some(element) = document.select(&detail_link_selector).next() { + // 提取其 "href" 属性 + if let Some(href) = element.value().attr("href") { + // 使用正则表达式从URL中提取 "id" 的值 + // 正则表达式 r"id=(\d+)" 匹配 "id=" 后跟着的一串数字(\d+),并捕获这串数字 + let re = Regex::new(r"id=(\d+)")?; + if let Some(caps) = re.captures(href) { + // caps.get(1) 获取第一个捕获组的内容 (也就是\d+匹配到的部分) + if let Some(id_match) = caps.get(1) { + return Ok(Some(id_match.as_str().to_string())); + } + } + } + } + + Ok(None) +} + + #[cfg(test)] mod tests { use super::*; @@ -70,4 +101,4 @@ mod tests { let result = add(2, 2); assert_eq!(result, 4); } -} +} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/.rustc_info.json b/src-tauri/html_scraper/target/.rustc_info.json new file mode 100644 index 0000000..8bd7d52 --- /dev/null +++ b/src-tauri/html_scraper/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":7455309615728791268,"outputs":{"13331785392996375709":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/hokori/.rustup/toolchains/stable-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"vh\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""},"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.85.1 (4eb161250 2025-03-15)\nbinary: rustc\ncommit-hash: 4eb161250e340c8f48f66e2b929ef4a5bed7c181\ncommit-date: 2025-03-15\nhost: aarch64-apple-darwin\nrelease: 1.85.1\nLLVM version: 19.1.7\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/CACHEDIR.TAG b/src-tauri/html_scraper/target/CACHEDIR.TAG new file mode 100644 index 0000000..20d7c31 --- /dev/null +++ b/src-tauri/html_scraper/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/src-tauri/html_scraper/target/debug/.cargo-lock b/src-tauri/html_scraper/target/debug/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build new file mode 100644 index 0000000..fc0a574 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build @@ -0,0 +1 @@ +1b6b83fb7d909c88 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build.json new file mode 100644 index 0000000..ad8690a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[966925859616469517,"build_script_build",false,6595573091569591863]],"local":[{"RerunIfChanged":{"output":"debug/build/ahash-4a15a117ce1da42d/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build new file mode 100644 index 0000000..be5b0a1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build @@ -0,0 +1 @@ +3766212dc82e885b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build.json new file mode 100644 index 0000000..96e1946 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":17883862002600103897,"profile":3033921117576893,"path":13716931409256565478,"deps":[[5398981501050481332,"version_check",false,2413200326728056484]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-9fb2ccc1fdf90091/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/dep-lib-ahash b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/dep-lib-ahash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/dep-lib-ahash differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash new file mode 100644 index 0000000..d26e88a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash @@ -0,0 +1 @@ +d1308d45a10fcb23 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash.json b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash.json new file mode 100644 index 0000000..b4576fe --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":8470944000320059508,"profile":5347358027863023418,"path":8822836382803353601,"deps":[[966925859616469517,"build_script_build",false,9843901756290067227],[3331586631144870129,"getrandom",false,2652846555722184656],[3722963349756955755,"once_cell",false,2645443938906433080],[7843059260364151289,"cfg_if",false,15569408560385663512],[13102401248396471120,"zerocopy",false,4734230529796757217]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-ffd687c1479c7fc2/dep-lib-ahash","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/dep-lib-aho_corasick b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/dep-lib-aho_corasick new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/dep-lib-aho_corasick differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick new file mode 100644 index 0000000..bd56336 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick @@ -0,0 +1 @@ +8fb1c77c3fe550e0 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick.json b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick.json new file mode 100644 index 0000000..e291a7e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"perf-literal\", \"std\"]","declared_features":"[\"default\", \"logging\", \"perf-literal\", \"std\"]","target":7534583537114156500,"profile":5347358027863023418,"path":16028419913794655535,"deps":[[198136567835728122,"memchr",false,9699424157645625460]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/dep-lib-aho_corasick","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/dep-lib-autocfg b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/dep-lib-autocfg new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/dep-lib-autocfg differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg new file mode 100644 index 0000000..999d1cf --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg @@ -0,0 +1 @@ +b937ddaec5563ce1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg.json b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg.json new file mode 100644 index 0000000..7407c54 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":6962977057026645649,"profile":3033921117576893,"path":17598261562660302540,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-98a6c7819a03ebc1/dep-lib-autocfg","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/dep-lib-bitflags b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/dep-lib-bitflags new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/dep-lib-bitflags differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags new file mode 100644 index 0000000..7bfb11d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags @@ -0,0 +1 @@ +62a612004a3c1e33 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags.json b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags.json new file mode 100644 index 0000000..6f31bd1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"std\"]","target":7691312148208718491,"profile":5347358027863023418,"path":2591638532276312438,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-6436427193246fd0/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/dep-lib-byteorder b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/dep-lib-byteorder new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/dep-lib-byteorder differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder new file mode 100644 index 0000000..0032b16 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder @@ -0,0 +1 @@ +de21df4f75d3d1f5 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder.json b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder.json new file mode 100644 index 0000000..0cdf42c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":5347358027863023418,"path":5766809642143664324,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/dep-lib-byteorder","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/dep-lib-cfg_if b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/dep-lib-cfg_if differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if new file mode 100644 index 0000000..4ceeade --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if @@ -0,0 +1 @@ +18a2b66c98a611d8 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if.json b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if.json new file mode 100644 index 0000000..908f679 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":5347358027863023418,"path":624215724859023351,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-9de2544adff585b5/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/dep-lib-cssparser b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/dep-lib-cssparser new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/dep-lib-cssparser differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser new file mode 100644 index 0000000..8645fa1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser @@ -0,0 +1 @@ +a5b32def63403d2f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser.json b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser.json new file mode 100644 index 0000000..afab1ae --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"bench\", \"dummy_match_byte\", \"serde\"]","target":4051351535474248705,"profile":5347358027863023418,"path":8709422612199558390,"deps":[[3666196340704888985,"smallvec",false,15974637115038226282],[7695812897323945497,"itoa",false,16220395808240874273],[9280804215119811138,"cssparser_macros",false,7092807949191545326],[12842584195496215797,"dtoa_short",false,1798891272967952218],[17186037756130803222,"phf",false,14479758216431526539]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-0a8e275ecee5c971/dep-lib-cssparser","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/dep-lib-cssparser_macros b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/dep-lib-cssparser_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/dep-lib-cssparser_macros differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros new file mode 100644 index 0000000..4922f2a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros @@ -0,0 +1 @@ +ee01a11f40b76e62 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros.json b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros.json new file mode 100644 index 0000000..8570712 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":4853353551047732211,"profile":3033921117576893,"path":8806602445119551126,"deps":[[17332570067994900305,"syn",false,18155600851886099986],[17990358020177143287,"quote",false,13223646443693408163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-macros-309442e57d19e9f2/dep-lib-cssparser_macros","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/dep-lib-derive_more b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/dep-lib-derive_more new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/dep-lib-derive_more differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more new file mode 100644 index 0000000..92207b1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more @@ -0,0 +1 @@ +17419957c24b5be5 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more.json b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more.json new file mode 100644 index 0000000..968bbd5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"add\", \"add_assign\"]","declared_features":"[\"add\", \"add_assign\", \"as_mut\", \"as_ref\", \"constructor\", \"convert_case\", \"default\", \"deref\", \"deref_mut\", \"display\", \"error\", \"from\", \"from_str\", \"generate-parsing-rs\", \"index\", \"index_mut\", \"into\", \"into_iterator\", \"is_variant\", \"iterator\", \"mul\", \"mul_assign\", \"nightly\", \"not\", \"peg\", \"rustc_version\", \"sum\", \"testing-helpers\", \"track-caller\", \"try_into\", \"unwrap\"]","target":12153973509411789784,"profile":3033921117576893,"path":11792485525844407772,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[17332570067994900305,"syn",false,18155600851886099986],[17990358020177143287,"quote",false,13223646443693408163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/derive_more-4900dcbe6b0f93e2/dep-lib-derive_more","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/dep-lib-dtoa b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/dep-lib-dtoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/dep-lib-dtoa differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa new file mode 100644 index 0000000..95d17bd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa @@ -0,0 +1 @@ +17d4bcc050452086 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa.json b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa.json new file mode 100644 index 0000000..748f850 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"no-panic\"]","target":822708863277375670,"profile":5347358027863023418,"path":884370971632748663,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-49a075b5dce0e654/dep-lib-dtoa","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/dep-lib-dtoa_short b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/dep-lib-dtoa_short new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/dep-lib-dtoa_short differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short new file mode 100644 index 0000000..a6fdcbe --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short @@ -0,0 +1 @@ +5a17cef214f2f618 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short.json b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short.json new file mode 100644 index 0000000..f306306 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":14166870648037865358,"profile":5347358027863023418,"path":12376615047949021754,"deps":[[9187552546091909091,"dtoa",false,9664801013470385175]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-short-29e165cd81f10ade/dep-lib-dtoa_short","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/dep-lib-ego_tree b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/dep-lib-ego_tree new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/dep-lib-ego_tree differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree new file mode 100644 index 0000000..723eceb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree @@ -0,0 +1 @@ +74ba25c5f9bdd3f1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree.json b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree.json new file mode 100644 index 0000000..af24b16 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":15686662276775554462,"profile":5347358027863023418,"path":17365132458171419028,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ego-tree-ce169384d68da859/dep-lib-ego_tree","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/dep-lib-futf b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/dep-lib-futf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/dep-lib-futf differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf new file mode 100644 index 0000000..8bfe223 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf @@ -0,0 +1 @@ +dd045d79419dda9f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf.json b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf.json new file mode 100644 index 0000000..916f051 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":14342764474404802961,"profile":5347358027863023418,"path":17877743052365929499,"deps":[[2687729594444538932,"debug_unreachable",false,3593908486175556121],[10952224881603935644,"mac",false,6632663027669242744]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futf-7c3e714c118e04be/dep-lib-futf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/dep-lib-fxhash b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/dep-lib-fxhash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/dep-lib-fxhash differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash new file mode 100644 index 0000000..3974b65 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash @@ -0,0 +1 @@ +9bc90d0244bb7ce1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash.json b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash.json new file mode 100644 index 0000000..955bb62 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":10973188114720300281,"profile":5347358027863023418,"path":8537095105298740985,"deps":[[3712811570531045576,"byteorder",false,17713171310229529054]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fxhash-213b1db37a640cd5/dep-lib-fxhash","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/dep-lib-getopts b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/dep-lib-getopts new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/dep-lib-getopts differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts new file mode 100644 index 0000000..12a7536 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts @@ -0,0 +1 @@ +1a259da17549df5a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts.json b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts.json new file mode 100644 index 0000000..66345cb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"unicode\"]","declared_features":"[\"core\", \"default\", \"rustc-dep-of-std\", \"std\", \"unicode\"]","target":14000208569025797744,"profile":5347358027863023418,"path":876709439007231340,"deps":[[13774335185398496026,"unicode_width",false,11518059325484516505]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getopts-65d6380d9a0b33ed/dep-lib-getopts","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/dep-lib-getrandom b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/dep-lib-getrandom differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom new file mode 100644 index 0000000..be85908 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom @@ -0,0 +1 @@ +ddd3d606dc563b6d \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom.json b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom.json new file mode 100644 index 0000000..1ddaf2b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"std\"]","declared_features":"[\"compiler_builtins\", \"core\", \"custom\", \"js\", \"js-sys\", \"linux_disable_fallback\", \"rdrand\", \"rustc-dep-of-std\", \"std\", \"test-in-browser\", \"wasm-bindgen\"]","target":16244099637825074703,"profile":3033921117576893,"path":546736093385177748,"deps":[[6366008408347001515,"libc",false,9505976839583446300],[7843059260364151289,"cfg_if",false,15569408560385663512]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-009f56382c9c07b5/dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/dep-lib-getrandom b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/dep-lib-getrandom differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom new file mode 100644 index 0000000..9ec44f3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom @@ -0,0 +1 @@ +d0777015e3cdd024 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom.json b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom.json new file mode 100644 index 0000000..671312f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":11669924403970522481,"profile":11786835736675429932,"path":16418706159116323038,"deps":[[3331586631144870129,"build_script_build",false,17467099931845311930],[6366008408347001515,"libc",false,17961392781183284496],[7843059260364151289,"cfg_if",false,15569408560385663512]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-328bde64f6e6b3d3/dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build new file mode 100644 index 0000000..c17e736 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build @@ -0,0 +1 @@ +babde3e5d79a67f2 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build.json new file mode 100644 index 0000000..1f48fe5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[3331586631144870129,"build_script_build",false,2841153784118404470]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-a21865eb3d1ede1e/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build new file mode 100644 index 0000000..0417c10 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build @@ -0,0 +1 @@ +7665a24650ce6d27 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build.json new file mode 100644 index 0000000..3b49df4 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":5408242616063297496,"profile":16185483997463588654,"path":8494423938186213872,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-ca1115f666251079/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/dep-lib-html5ever b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/dep-lib-html5ever new file mode 100644 index 0000000..52218b6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/dep-lib-html5ever differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever new file mode 100644 index 0000000..c473177 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever @@ -0,0 +1 @@ +9698aace1bdb5baf \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever.json b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever.json new file mode 100644 index 0000000..0a2235f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":4652384769665216062,"profile":5347358027863023418,"path":16828855436097313426,"deps":[[6894592641856567887,"build_script_build",false,11399053488437114159],[7359235151837888654,"markup5ever",false,12876747020459346982],[10952224881603935644,"mac",false,6632663027669242744],[13066042571740262168,"log",false,15119832979438329371]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html5ever-05679ef9eb9d27e8/dep-lib-html5ever","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build new file mode 100644 index 0000000..2368e26 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build @@ -0,0 +1 @@ +2fb5f8c1c092319e \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build.json new file mode 100644 index 0000000..a8384a7 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6894592641856567887,"build_script_build",false,11932717425543425307]],"local":[{"RerunIfChanged":{"output":"debug/build/html5ever-599159e7782b5aea/output","paths":["src/tree_builder/rules.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build new file mode 100644 index 0000000..719cecc --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build @@ -0,0 +1 @@ +1b2da1ba468799a5 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build.json new file mode 100644 index 0000000..b0253e7 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":1841311255823703106,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[17332570067994900305,"syn",false,18155600851886099986],[17990358020177143287,"quote",false,13223646443693408163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html5ever-adcca677c3fbce46/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/dep-test-lib-html_scraper b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/dep-test-lib-html_scraper new file mode 100644 index 0000000..024be49 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/dep-test-lib-html_scraper differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper new file mode 100644 index 0000000..8320d66 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper @@ -0,0 +1 @@ +058207c38e932061 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper.json b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper.json new file mode 100644 index 0000000..960d554 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":9930676247025263629,"profile":15057526963834790232,"path":10763286916239946207,"deps":[[8008191657135824715,"thiserror",false,1466351398864672651],[13626897008533545915,"regex",false,17357231337923752423],[14847387549330244405,"scraper",false,9672205605133910633]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html_scraper-7342f3637c7ad7f4/dep-test-lib-html_scraper","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/dep-lib-html_scraper b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/dep-lib-html_scraper new file mode 100644 index 0000000..024be49 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/dep-lib-html_scraper differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper new file mode 100644 index 0000000..4a940ce --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper @@ -0,0 +1 @@ +3973a608ae5832bf \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper.json b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper.json new file mode 100644 index 0000000..9ea3d28 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":9930676247025263629,"profile":6675295047989516842,"path":10763286916239946207,"deps":[[8008191657135824715,"thiserror",false,1466351398864672651],[13626897008533545915,"regex",false,17357231337923752423],[14847387549330244405,"scraper",false,9672205605133910633]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html_scraper-94aa862c9da7400c/dep-lib-html_scraper","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/dep-lib-itoa b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/dep-lib-itoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/dep-lib-itoa differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa new file mode 100644 index 0000000..3ea37b4 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa @@ -0,0 +1 @@ +21b36e5a0c6c1ae1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa.json b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa.json new file mode 100644 index 0000000..e2297fc --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"no-panic\"]","target":8239509073162986830,"profile":5347358027863023418,"path":2468863103602448109,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itoa-01bc225805719977/dep-lib-itoa","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/dep-lib-libc b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/dep-lib-libc differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc new file mode 100644 index 0000000..1e7f1ca --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc @@ -0,0 +1 @@ +1c35761e9203ec83 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc.json new file mode 100644 index 0000000..f26cd92 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":3039969951022573740,"path":8432206058993501742,"deps":[[6366008408347001515,"build_script_build",false,13966646225469603991]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-01916927d843a511/dep-lib-libc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build new file mode 100644 index 0000000..547196b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build @@ -0,0 +1 @@ +9780aa5cbe7ed3c1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build.json new file mode 100644 index 0000000..751f8dd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6366008408347001515,"build_script_build",false,13811237067127613028]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-0b86aa2c61452cbd/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build new file mode 100644 index 0000000..3e1943c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build @@ -0,0 +1 @@ +fb079f84bfef38e9 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build.json new file mode 100644 index 0000000..70182e3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6366008408347001515,"build_script_build",false,4911174893095742270]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-0d1edeabd8309d4a/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/dep-lib-libc b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/dep-lib-libc differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc new file mode 100644 index 0000000..2363d55 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc @@ -0,0 +1 @@ +10f5b12992af43f9 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc.json new file mode 100644 index 0000000..177ebaa --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":13030054270579460295,"path":8432206058993501742,"deps":[[6366008408347001515,"build_script_build",false,16805445615375812603]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-56734dad6cfe82f6/dep-lib-libc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build new file mode 100644 index 0000000..6c7e3ca --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build @@ -0,0 +1 @@ +6466d9feef5eabbf \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build.json new file mode 100644 index 0000000..cf0887f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":3039969951022573740,"path":18201425560395939388,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-78709398769c3b8a/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build new file mode 100644 index 0000000..f8cd1c5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build @@ -0,0 +1 @@ +3eebc9748bff2744 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build.json new file mode 100644 index 0000000..7b7c926 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":3039969951022573740,"path":18201425560395939388,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-f3369c53aa6e7cf1/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build new file mode 100644 index 0000000..feac29a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build @@ -0,0 +1 @@ +ef031ea681db3e8a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build.json new file mode 100644 index 0000000..88126f7 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"atomic_usize\", \"default\"]","declared_features":"[\"arc_lock\", \"atomic_usize\", \"default\", \"nightly\", \"owning_ref\", \"serde\"]","target":5408242616063297496,"profile":3033921117576893,"path":911236305753329754,"deps":[[13927012481677012980,"autocfg",false,16229942564178704313]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lock_api-056ce16850e74d93/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build new file mode 100644 index 0000000..06005bb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build @@ -0,0 +1 @@ +a42d2fdcc41c526d \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build.json new file mode 100644 index 0000000..f8e9a61 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8081351675046095464,"build_script_build",false,9961640775674364911]],"local":[{"RerunIfChanged":{"output":"debug/build/lock_api-3da0d822e2d6cc17/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/dep-lib-lock_api b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/dep-lib-lock_api new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/dep-lib-lock_api differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api new file mode 100644 index 0000000..c7c326f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api @@ -0,0 +1 @@ +80c49861ad64e743 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api.json b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api.json new file mode 100644 index 0000000..b727083 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"atomic_usize\", \"default\"]","declared_features":"[\"arc_lock\", \"atomic_usize\", \"default\", \"nightly\", \"owning_ref\", \"serde\"]","target":16157403318809843794,"profile":5347358027863023418,"path":3974312591728174221,"deps":[[8081351675046095464,"build_script_build",false,7877390330057665956],[15358414700195712381,"scopeguard",false,16180715941057446427]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lock_api-df5a62b3f930f9a1/dep-lib-lock_api","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/dep-lib-log b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/dep-lib-log new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/dep-lib-log differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log new file mode 100644 index 0000000..0987049 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log @@ -0,0 +1 @@ +1b5ea88afc6fd4d1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log.json b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log.json new file mode 100644 index 0000000..105463a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"kv\", \"kv_serde\", \"kv_std\", \"kv_sval\", \"kv_unstable\", \"kv_unstable_serde\", \"kv_unstable_std\", \"kv_unstable_sval\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"serde\", \"std\", \"sval\", \"sval_ref\", \"value-bag\"]","target":6550155848337067049,"profile":5347358027863023418,"path":6676584263695061592,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-831cad5f0554718c/dep-lib-log","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/dep-lib-mac b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/dep-lib-mac new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/dep-lib-mac differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac new file mode 100644 index 0000000..07fadd5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac @@ -0,0 +1 @@ +789317dfe1f30b5c \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac.json b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac.json new file mode 100644 index 0000000..9c76ceb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":4071246351868317718,"profile":5347358027863023418,"path":714674193146951795,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mac-8f81a8e61d0760e0/dep-lib-mac","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/dep-lib-markup5ever b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/dep-lib-markup5ever new file mode 100644 index 0000000..a8636cc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/dep-lib-markup5ever differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever new file mode 100644 index 0000000..e98a849 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever @@ -0,0 +1 @@ +268c0cf13065b3b2 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever.json b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever.json new file mode 100644 index 0000000..31677dd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":7456125560412827427,"profile":5347358027863023418,"path":16079887319640515732,"deps":[[2399633497816108991,"tendril",false,475225466669851244],[3791929332532787956,"string_cache",false,3130990419686556788],[7359235151837888654,"build_script_build",false,2085284578719034325],[13066042571740262168,"log",false,15119832979438329371],[17186037756130803222,"phf",false,14479758216431526539]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/markup5ever-5426e6f802571ad0/dep-lib-markup5ever","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build new file mode 100644 index 0000000..bb4ecc6 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build @@ -0,0 +1 @@ +d5eb25aa466bf01c \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build.json new file mode 100644 index 0000000..9054211 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7359235151837888654,"build_script_build",false,15799388212175566172]],"local":[{"Precalculated":"0.12.1"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build new file mode 100644 index 0000000..e8f85a5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build @@ -0,0 +1 @@ +5cf537c7deb342db \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build.json new file mode 100644 index 0000000..d8594e0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":10764512068252800494,"deps":[[1280075590338009456,"phf_codegen",false,18171563497191726039],[11594986142849509546,"string_cache_codegen",false,9938342440841938349]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/dep-lib-memchr b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/dep-lib-memchr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/dep-lib-memchr differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr new file mode 100644 index 0000000..2a45506 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr @@ -0,0 +1 @@ +74584fb2e1469b86 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr.json b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr.json new file mode 100644 index 0000000..52ffd70 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"core\", \"default\", \"libc\", \"logging\", \"rustc-dep-of-std\", \"std\", \"use_std\"]","target":11745930252914242013,"profile":5347358027863023418,"path":14597617999160509537,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memchr-dbc4553685834328/dep-lib-memchr","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/dep-lib-debug_unreachable b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/dep-lib-debug_unreachable new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/dep-lib-debug_unreachable differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable new file mode 100644 index 0000000..b74bbe1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable @@ -0,0 +1 @@ +1982c111ba20e031 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable.json b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable.json new file mode 100644 index 0000000..39ef182 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":7622437403250301378,"profile":5347358027863023418,"path":5095032823823959065,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/new_debug_unreachable-e1098322c060b823/dep-lib-debug_unreachable","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/dep-lib-once_cell b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/dep-lib-once_cell new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/dep-lib-once_cell differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell new file mode 100644 index 0000000..c395097 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell @@ -0,0 +1 @@ +3866ba0b3f81b624 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell.json b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell.json new file mode 100644 index 0000000..4f998ed --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","declared_features":"[\"alloc\", \"atomic-polyfill\", \"critical-section\", \"default\", \"parking_lot\", \"portable-atomic\", \"race\", \"std\", \"unstable\"]","target":17524666916136250164,"profile":5347358027863023418,"path":13986378648531864528,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/once_cell-4e0f2ba645c30aa8/dep-lib-once_cell","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/dep-lib-parking_lot b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/dep-lib-parking_lot new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/dep-lib-parking_lot differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot new file mode 100644 index 0000000..d1d7bfb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot @@ -0,0 +1 @@ +134f3a1143d71811 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot.json b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot.json new file mode 100644 index 0000000..772aa45 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\"]","declared_features":"[\"arc_lock\", \"deadlock_detection\", \"default\", \"hardware-lock-elision\", \"nightly\", \"owning_ref\", \"send_guard\", \"serde\"]","target":9887373948397848517,"profile":5347358027863023418,"path":3670259361463438623,"deps":[[4269498962362888130,"parking_lot_core",false,525575257288254994],[8081351675046095464,"lock_api",false,4892990215990854784]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot-1f7e92deaf854a26/dep-lib-parking_lot","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build new file mode 100644 index 0000000..3e54634 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build @@ -0,0 +1 @@ +747a2274336f620a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build.json new file mode 100644 index 0000000..7efae2e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4269498962362888130,"build_script_build",false,11659232604442330730]],"local":[{"RerunIfChanged":{"output":"debug/build/parking_lot_core-43faca14b949a384/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/dep-lib-parking_lot_core b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/dep-lib-parking_lot_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/dep-lib-parking_lot_core differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core new file mode 100644 index 0000000..aafbc1f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core @@ -0,0 +1 @@ +12a66671e9374b07 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core.json b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core.json new file mode 100644 index 0000000..0b35ba1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\", \"thread-id\"]","target":12558056885032795287,"profile":5347358027863023418,"path":5827464095644316700,"deps":[[3666196340704888985,"smallvec",false,15974637115038226282],[4269498962362888130,"build_script_build",false,748282754879355508],[6366008408347001515,"libc",false,17961392781183284496],[7843059260364151289,"cfg_if",false,15569408560385663512]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-579cff111ec2767a/dep-lib-parking_lot_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build new file mode 100644 index 0000000..c9a17ed --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build @@ -0,0 +1 @@ +6a0670cd47eacda1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build.json new file mode 100644 index 0000000..1fe9ffc --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\", \"thread-id\"]","target":5408242616063297496,"profile":3033921117576893,"path":7286403219683562983,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/dep-lib-phf b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/dep-lib-phf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/dep-lib-phf differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf new file mode 100644 index 0000000..fdd6d00 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf @@ -0,0 +1 @@ +9749a64720fbfcc7 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf.json new file mode 100644 index 0000000..9f48c65 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"proc-macro-hack\", \"serde\", \"std\", \"uncased\", \"unicase\"]","target":3117898612494421391,"profile":5347358027863023418,"path":10655364341070977396,"deps":[[2132929450596319411,"phf_shared",false,8815558544328099572]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf-a9770d3c675845ba/dep-lib-phf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/dep-lib-phf b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/dep-lib-phf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/dep-lib-phf differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf new file mode 100644 index 0000000..3a2c475 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf @@ -0,0 +1 @@ +8be2f17b616ff2c8 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf.json new file mode 100644 index 0000000..bf0397c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"macros\", \"phf_macros\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"serde\", \"std\", \"uncased\", \"unicase\"]","target":10640910166656384580,"profile":5347358027863023418,"path":370228375480092701,"deps":[[7564874552398678785,"phf_macros",false,14883611853640096050],[9060940869921439196,"phf_shared",false,8103647149137653190]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf-a9b745f20af9c57e/dep-lib-phf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/dep-lib-phf_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/dep-lib-phf_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/dep-lib-phf_codegen differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen new file mode 100644 index 0000000..07a3f82 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen @@ -0,0 +1 @@ +43a0c5ebb9c4862c \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen.json new file mode 100644 index 0000000..9ef1f2d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":10627201688748800353,"profile":3033921117576893,"path":7785580140105330532,"deps":[[2132929450596319411,"phf_shared",false,6104621685789769919],[15690706847525356077,"phf_generator",false,17021576161753177888]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/dep-lib-phf_codegen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/dep-lib-phf_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/dep-lib-phf_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/dep-lib-phf_codegen differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen new file mode 100644 index 0000000..dafc86e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen @@ -0,0 +1 @@ +d75b913fb95c2efc \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen.json new file mode 100644 index 0000000..76d8697 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":4007019473634205266,"profile":3033921117576893,"path":172046513678469802,"deps":[[9060940869921439196,"phf_shared",false,8103647149137653190],[18124350542602697595,"phf_generator",false,16799703957552028514]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_codegen-7910a3fb545bdda5/dep-lib-phf_codegen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/dep-lib-phf_generator b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/dep-lib-phf_generator new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/dep-lib-phf_generator differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator new file mode 100644 index 0000000..cd7876f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator @@ -0,0 +1 @@ +201f8ebe55c938ec \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator.json new file mode 100644 index 0000000..e1ea418 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"criterion\"]","target":10230150387258866563,"profile":3033921117576893,"path":10675314681542300925,"deps":[[2132929450596319411,"phf_shared",false,6104621685789769919],[13208667028893622512,"rand",false,1705039955218055911]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_generator-07face5c6d99eafc/dep-lib-phf_generator","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/dep-lib-phf_generator b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/dep-lib-phf_generator new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/dep-lib-phf_generator differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator new file mode 100644 index 0000000..91bdff3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator @@ -0,0 +1 @@ +62db9ca1bd8924e9 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator.json new file mode 100644 index 0000000..3ae15cd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"criterion\"]","target":4203241669981453472,"profile":3033921117576893,"path":13917295461881781647,"deps":[[9060940869921439196,"phf_shared",false,8103647149137653190],[13208667028893622512,"rand",false,1705039955218055911]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_generator-0f5544fb7fb4274a/dep-lib-phf_generator","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/dep-lib-phf_macros b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/dep-lib-phf_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/dep-lib-phf_macros differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros new file mode 100644 index 0000000..99312d1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros @@ -0,0 +1 @@ +32d902c71f368dce \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros.json new file mode 100644 index 0000000..e229be2 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"unicase\", \"unicase_\"]","target":17891898593638043230,"profile":3033921117576893,"path":13351770415714408615,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[9060940869921439196,"phf_shared",false,8103647149137653190],[17332570067994900305,"syn",false,18155600851886099986],[17990358020177143287,"quote",false,13223646443693408163],[18124350542602697595,"phf_generator",false,16799703957552028514]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_macros-36bc32c64923e436/dep-lib-phf_macros","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/dep-lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/dep-lib-phf_shared differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared new file mode 100644 index 0000000..e027e3e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared @@ -0,0 +1 @@ +bf40a55d14f9b754 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared.json new file mode 100644 index 0000000..4f5321f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":886472421596331379,"profile":3033921117576893,"path":2817553942745171076,"deps":[[8079500665534101559,"siphasher",false,6385207537349680120]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/dep-lib-phf_shared","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/dep-lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/dep-lib-phf_shared differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared new file mode 100644 index 0000000..1b35946 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared @@ -0,0 +1 @@ +c6ed74ad25f07570 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared.json new file mode 100644 index 0000000..8ac0e35 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":13191988717353488301,"profile":5347358027863023418,"path":6545052680693360641,"deps":[[17007833651981688255,"siphasher",false,2920237473378151463]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-5281e2ba57b04ed7/dep-lib-phf_shared","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/dep-lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/dep-lib-phf_shared differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared new file mode 100644 index 0000000..15265f3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared @@ -0,0 +1 @@ +f406560bca27577a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared.json new file mode 100644 index 0000000..5ef44f5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":886472421596331379,"profile":5347358027863023418,"path":2817553942745171076,"deps":[[8079500665534101559,"siphasher",false,6385207537349680120]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-aa6dcd72b6931224/dep-lib-phf_shared","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/dep-lib-ppv_lite86 b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/dep-lib-ppv_lite86 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/dep-lib-ppv_lite86 differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86 b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86 new file mode 100644 index 0000000..459dedc --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86 @@ -0,0 +1 @@ +40c74d4d38836aa7 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86.json b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86.json new file mode 100644 index 0000000..575b8e0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"simd\", \"std\"]","declared_features":"[\"default\", \"no_simd\", \"simd\", \"std\"]","target":2607852365283500179,"profile":3033921117576893,"path":12872048272344064350,"deps":[[13102401248396471120,"zerocopy",false,4734230529796757217]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/dep-lib-ppv_lite86","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/dep-lib-precomputed_hash b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/dep-lib-precomputed_hash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/dep-lib-precomputed_hash differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash new file mode 100644 index 0000000..d9f3e64 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash @@ -0,0 +1 @@ +bc3603519842180f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash.json b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash.json new file mode 100644 index 0000000..038ea51 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":18034549675578888011,"profile":5347358027863023418,"path":11919125380041508802,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/dep-lib-precomputed_hash","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build new file mode 100644 index 0000000..ad2ce7f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build @@ -0,0 +1 @@ +1fef54ea73135ab7 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build.json new file mode 100644 index 0000000..b0d6655 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[373107762698212489,"build_script_build",false,2491722046915471817]],"local":[{"RerunIfChanged":{"output":"debug/build/proc-macro2-58daf346076c4d4b/output","paths":["src/probe/proc_macro_span.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build new file mode 100644 index 0000000..5d274f0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build @@ -0,0 +1 @@ +c9e967fdff5f9422 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build.json new file mode 100644 index 0000000..71210e1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":5408242616063297496,"profile":3033921117576893,"path":1533621919522318402,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-d0815d6bff85897b/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/dep-lib-proc_macro2 b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/dep-lib-proc_macro2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/dep-lib-proc_macro2 differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2 b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2 new file mode 100644 index 0000000..0695f63 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2 @@ -0,0 +1 @@ +2592b88890f9816c \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2.json b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2.json new file mode 100644 index 0000000..27d2232 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":3033921117576893,"path":3662434147930135408,"deps":[[373107762698212489,"build_script_build",false,13211893845418372895],[10637008577242657367,"unicode_ident",false,14073169142073048241]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-d7a701b428e81ccd/dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/dep-lib-quote b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/dep-lib-quote new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/dep-lib-quote differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote new file mode 100644 index 0000000..6722edb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote @@ -0,0 +1 @@ +a3ffb3ef60d483b7 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote.json b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote.json new file mode 100644 index 0000000..a5fb340 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":3570458776599611685,"profile":3033921117576893,"path":14820827303878931524,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-18bba557c7524ff3/dep-lib-quote","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/dep-lib-rand b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/dep-lib-rand new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/dep-lib-rand differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand new file mode 100644 index 0000000..1b7c6bf --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand @@ -0,0 +1 @@ +e7c29e3ace84a917 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand.json b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand.json new file mode 100644 index 0000000..9b3585c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"small_rng\", \"std\", \"std_rng\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"log\", \"min_const_gen\", \"nightly\", \"packed_simd\", \"rand_chacha\", \"serde\", \"serde1\", \"simd_support\", \"small_rng\", \"std\", \"std_rng\"]","target":8827111241893198906,"profile":3033921117576893,"path":15826359250899117607,"deps":[[1573238666360410412,"rand_chacha",false,431330294416650972],[6366008408347001515,"libc",false,9505976839583446300],[18130209639506977569,"rand_core",false,3990275015156457348]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-26f83a8e5bd6b340/dep-lib-rand","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/dep-lib-rand_chacha b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/dep-lib-rand_chacha new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/dep-lib-rand_chacha differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha new file mode 100644 index 0000000..19bc6c5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha @@ -0,0 +1 @@ +dcb291139e64fc05 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha.json b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha.json new file mode 100644 index 0000000..d55d3c6 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"std\"]","declared_features":"[\"default\", \"serde\", \"serde1\", \"simd\", \"std\"]","target":15766068575093147603,"profile":3033921117576893,"path":13013800082795371020,"deps":[[12919011715531272606,"ppv_lite86",false,12063598829703644992],[18130209639506977569,"rand_core",false,3990275015156457348]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-88c08f61188566b9/dep-lib-rand_chacha","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/dep-lib-rand_core b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/dep-lib-rand_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/dep-lib-rand_core differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core new file mode 100644 index 0000000..b150832 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core @@ -0,0 +1 @@ +845f8422fc4d6037 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core.json b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core.json new file mode 100644 index 0000000..b296d36 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"getrandom\", \"std\"]","declared_features":"[\"alloc\", \"getrandom\", \"serde\", \"serde1\", \"std\"]","target":13770603672348587087,"profile":3033921117576893,"path":16753733623681790607,"deps":[[9920160576179037441,"getrandom",false,7870980276767609821]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-40abbc76b58e3e8b/dep-lib-rand_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/dep-lib-regex b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/dep-lib-regex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/dep-lib-regex differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex new file mode 100644 index 0000000..0fa52f4 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex @@ -0,0 +1 @@ +e7313975f045e1f0 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex.json b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex.json new file mode 100644 index 0000000..2d1a6a6 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"default\", \"logging\", \"pattern\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-dfa-full\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unstable\", \"use_std\"]","target":5796931310894148030,"profile":5347358027863023418,"path":4001630078358476387,"deps":[[198136567835728122,"memchr",false,9699424157645625460],[2779309023524819297,"aho_corasick",false,16163671123471872399],[4310815957326066901,"regex_automata",false,14005837831388027153],[7507008215594894126,"regex_syntax",false,6585556951696023581]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-3dafb990d7ac7a42/dep-lib-regex","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/dep-lib-regex_automata b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/dep-lib-regex_automata new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/dep-lib-regex_automata differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata new file mode 100644 index 0000000..79d0159 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata @@ -0,0 +1 @@ +11599c314dbb5ec2 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata.json b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata.json new file mode 100644 index 0000000..c99b348 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"dfa-onepass\", \"hybrid\", \"meta\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","declared_features":"[\"alloc\", \"default\", \"dfa\", \"dfa-build\", \"dfa-onepass\", \"dfa-search\", \"hybrid\", \"internal-instrument\", \"internal-instrument-pikevm\", \"logging\", \"meta\", \"nfa\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","target":4726246767843925232,"profile":5347358027863023418,"path":10453049471345658681,"deps":[[198136567835728122,"memchr",false,9699424157645625460],[2779309023524819297,"aho_corasick",false,16163671123471872399],[7507008215594894126,"regex_syntax",false,6585556951696023581]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-automata-e1200410093b7b02/dep-lib-regex_automata","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/dep-lib-regex_syntax b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/dep-lib-regex_syntax new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/dep-lib-regex_syntax differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax new file mode 100644 index 0000000..df10320 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax @@ -0,0 +1 @@ +1d20f2e12799645b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax.json b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax.json new file mode 100644 index 0000000..fba3704 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"arbitrary\", \"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":742186494246220192,"profile":5347358027863023418,"path":4398073325667060412,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/dep-lib-regex_syntax","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/dep-lib-scopeguard b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/dep-lib-scopeguard new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/dep-lib-scopeguard differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard new file mode 100644 index 0000000..87c2b10 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard @@ -0,0 +1 @@ +1bc23a566b738de0 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard.json b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard.json new file mode 100644 index 0000000..cba6a92 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"default\", \"use_std\"]","target":3556356971060988614,"profile":5347358027863023418,"path":767245024837648762,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scopeguard-d2663eb5fcef9402/dep-lib-scopeguard","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/dep-lib-scraper b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/dep-lib-scraper new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/dep-lib-scraper differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper new file mode 100644 index 0000000..d1439f1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper @@ -0,0 +1 @@ +69828c98c0933a86 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper.json b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper.json new file mode 100644 index 0000000..faa72da --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"errors\", \"getopts\", \"main\"]","declared_features":"[\"atomic\", \"default\", \"deterministic\", \"errors\", \"getopts\", \"indexmap\", \"main\"]","target":678004358678959319,"profile":5347358027863023418,"path":17625620886595669706,"deps":[[966925859616469517,"ahash",false,2579172396930773201],[2399633497816108991,"tendril",false,475225466669851244],[3722963349756955755,"once_cell",false,2645443938906433080],[5658260411229319297,"selectors",false,4600286685549667846],[6894592641856567887,"html5ever",false,12635934091995945110],[7492350663910880704,"cssparser",false,3403947691320652709],[12290581011641529047,"ego_tree",false,17425480263678671476],[14686689205187145500,"getopts",false,6548033152791422234]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scraper-719afe7608b3dfad/dep-lib-scraper","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build new file mode 100644 index 0000000..3519e6a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build @@ -0,0 +1 @@ +77b3a4c333cd0ddd \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build.json new file mode 100644 index 0000000..1d63118 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"bench\"]","target":12318548087768197662,"profile":3033921117576893,"path":9277004110972596547,"deps":[[8351446744408386070,"phf_codegen",false,3208468087351648323]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/selectors-1826a9a489ea310c/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build new file mode 100644 index 0000000..cb86f9d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build @@ -0,0 +1 @@ +ca721eb699c1f27e \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build.json new file mode 100644 index 0000000..c888356 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5658260411229319297,"build_script_build",false,15928613079288689527]],"local":[{"Precalculated":"0.25.0"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/dep-lib-selectors b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/dep-lib-selectors new file mode 100644 index 0000000..a17ac72 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/dep-lib-selectors differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors new file mode 100644 index 0000000..fb3675a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors @@ -0,0 +1 @@ +06a625fd5d80d73f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors.json b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors.json new file mode 100644 index 0000000..6e1304f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"bench\"]","target":18301272685162166244,"profile":5347358027863023418,"path":858287208348789309,"deps":[[403167652641725433,"servo_arc",false,16951748471744513703],[1764276339024939380,"phf",false,14410669023738349975],[2687729594444538932,"debug_unreachable",false,3593908486175556121],[3666196340704888985,"smallvec",false,15974637115038226282],[5658260411229319297,"build_script_build",false,9147586659072504522],[6995234255362136112,"precomputed_hash",false,1087692531971602108],[7492350663910880704,"cssparser",false,3403947691320652709],[7521345276086848634,"fxhash",false,16248067456412535195],[9504753771229857410,"derive_more",false,16526886555631567127],[12848154260885479101,"bitflags",false,3683447833762113122],[13066042571740262168,"log",false,15119832979438329371]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/selectors-d01401445b4ae298/dep-lib-selectors","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build new file mode 100644 index 0000000..cf22d60 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build @@ -0,0 +1 @@ +38dffee120adde70 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build.json new file mode 100644 index 0000000..720c70a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10656518421724629931,"build_script_build",false,2649705701921682344]],"local":[{"RerunIfChanged":{"output":"debug/build/serde-00b2cf4d37e16c0d/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/dep-lib-serde b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/dep-lib-serde new file mode 100644 index 0000000..00e8a7f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/dep-lib-serde differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde new file mode 100644 index 0000000..a2d8588 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde @@ -0,0 +1 @@ +9fc87509f9106a36 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde.json new file mode 100644 index 0000000..8dcc3fc --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":5347358027863023418,"path":7531059400694801346,"deps":[[7262577012435935306,"serde_core",false,13967950544907063821],[10656518421724629931,"build_script_build",false,8133128333819830072]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-3a5c3b1b0f654256/dep-lib-serde","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build new file mode 100644 index 0000000..daf9ff5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build @@ -0,0 +1 @@ +a8735e124ca5c524 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build.json new file mode 100644 index 0000000..2661bce --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":3033921117576893,"path":6635502270125711080,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-63215c02dca3dcb6/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build new file mode 100644 index 0000000..9e33b46 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build @@ -0,0 +1 @@ +c87fce2dee63e16b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build.json new file mode 100644 index 0000000..a68e3ee --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":3033921117576893,"path":15949585533038675519,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build new file mode 100644 index 0000000..7c27511 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build @@ -0,0 +1 @@ +19f10fac1b69be99 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build.json new file mode 100644 index 0000000..eb8ecaf --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7262577012435935306,"build_script_build",false,7773604306440060872]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_core-13d332fbbf401748/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/dep-lib-serde_core b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/dep-lib-serde_core new file mode 100644 index 0000000..5197e5e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/dep-lib-serde_core differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core new file mode 100644 index 0000000..878ee7b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core @@ -0,0 +1 @@ +0dd268e50321d8c1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core.json new file mode 100644 index 0000000..e00567a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":5347358027863023418,"path":12654711647279149045,"deps":[[7262577012435935306,"build_script_build",false,11078407700949758233]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-16cfd65e06a37e7a/dep-lib-serde_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/dep-lib-servo_arc b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/dep-lib-servo_arc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/dep-lib-servo_arc differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc new file mode 100644 index 0000000..aadba77 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc @@ -0,0 +1 @@ +a7461abc6bb540eb \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc.json b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc.json new file mode 100644 index 0000000..7605ab8 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"gecko_refcount_logging\", \"serde\", \"servo\"]","target":7827887664671662080,"profile":5347358027863023418,"path":14655367987566525561,"deps":[[4462517779602467004,"stable_deref_trait",false,1420343492215214392]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/servo_arc-a635e1107c03b5e4/dep-lib-servo_arc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/dep-lib-siphasher b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/dep-lib-siphasher differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher new file mode 100644 index 0000000..a664393 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher @@ -0,0 +1 @@ +f8dbdfc86cd09c58 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher.json b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher.json new file mode 100644 index 0000000..18e411e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":6846127388476139628,"profile":5347358027863023418,"path":17851259713156859593,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-771f4d4daf8f4dea/dep-lib-siphasher","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/dep-lib-siphasher b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/dep-lib-siphasher differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher new file mode 100644 index 0000000..10ba9d8 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher @@ -0,0 +1 @@ +272c7d8c82c48628 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher.json b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher.json new file mode 100644 index 0000000..ad79cb9 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":6846127388476139628,"profile":5347358027863023418,"path":6118518449071069858,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-834de04fecf33a0a/dep-lib-siphasher","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/dep-lib-smallvec b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/dep-lib-smallvec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/dep-lib-smallvec differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec new file mode 100644 index 0000000..7bbcb95 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec @@ -0,0 +1 @@ +6ad79fa1d14fb1dd \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec.json b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec.json new file mode 100644 index 0000000..e8206f3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"arbitrary\", \"bincode\", \"const_generics\", \"const_new\", \"debugger_visualizer\", \"drain_filter\", \"drain_keep_rest\", \"impl_bincode\", \"malloc_size_of\", \"may_dangle\", \"serde\", \"specialization\", \"union\", \"unty\", \"write\"]","target":9091769176333489034,"profile":5347358027863023418,"path":3585606430555432908,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smallvec-6bb0dfc0967f3f53/dep-lib-smallvec","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/dep-lib-stable_deref_trait b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/dep-lib-stable_deref_trait new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/dep-lib-stable_deref_trait differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait new file mode 100644 index 0000000..b600a59 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait @@ -0,0 +1 @@ +38918680e112b613 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait.json b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait.json new file mode 100644 index 0000000..17af8cb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":5317002649412810881,"profile":5347358027863023418,"path":14726926103392049184,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/dep-lib-stable_deref_trait","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/dep-lib-string_cache b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/dep-lib-string_cache new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/dep-lib-string_cache differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache new file mode 100644 index 0000000..164dba2 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache @@ -0,0 +1 @@ +748491b03283732b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache.json b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache.json new file mode 100644 index 0000000..5462b87 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"serde\", \"serde_support\"]","declared_features":"[\"default\", \"malloc_size_of\", \"serde\", \"serde_support\"]","target":8038205195467990777,"profile":5347358027863023418,"path":5041389345795769244,"deps":[[2687729594444538932,"debug_unreachable",false,3593908486175556121],[4495526598637097934,"parking_lot",false,1231971181137645331],[6995234255362136112,"precomputed_hash",false,1087692531971602108],[9060940869921439196,"phf_shared",false,8103647149137653190],[10656518421724629931,"serde",false,3920965087371053215]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/string_cache-e873790d99344744/dep-lib-string_cache","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/dep-lib-string_cache_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/dep-lib-string_cache_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/dep-lib-string_cache_codegen differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen new file mode 100644 index 0000000..3f29656 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen @@ -0,0 +1 @@ +ad85925acb15ec89 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen.json b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen.json new file mode 100644 index 0000000..af86c18 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":4822312724886654266,"profile":3033921117576893,"path":4601242775275466368,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[9060940869921439196,"phf_shared",false,8103647149137653190],[17990358020177143287,"quote",false,13223646443693408163],[18124350542602697595,"phf_generator",false,16799703957552028514]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/dep-lib-string_cache_codegen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/dep-lib-syn b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/dep-lib-syn differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn new file mode 100644 index 0000000..4feee5e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn @@ -0,0 +1 @@ +124e7344c8a6f5fb \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn.json b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn.json new file mode 100644 index 0000000..920d89f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":3033921117576893,"path":4473125244233363114,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[10637008577242657367,"unicode_ident",false,14073169142073048241],[17990358020177143287,"quote",false,13223646443693408163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-2aa77fc1e3a70b43/dep-lib-syn","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/dep-lib-tendril b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/dep-lib-tendril new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/dep-lib-tendril differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril new file mode 100644 index 0000000..cb5e4a1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril @@ -0,0 +1 @@ +6c6213490b579806 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril.json b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril.json new file mode 100644 index 0000000..7f1b036 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"bench\", \"encoding\", \"encoding_rs\"]","target":11953572604185802203,"profile":5347358027863023418,"path":2316728390312874581,"deps":[[3353245243264097488,"futf",false,11518691901488039133],[4359956005902820838,"utf8",false,2777183037652860113],[10952224881603935644,"mac",false,6632663027669242744]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tendril-571b6474f862ecf6/dep-lib-tendril","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/dep-lib-thiserror b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/dep-lib-thiserror new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/dep-lib-thiserror differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror new file mode 100644 index 0000000..85ffe42 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror @@ -0,0 +1 @@ +8bd73905d4865914 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror.json b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror.json new file mode 100644 index 0000000..ab950e9 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":13586076721141200315,"profile":5347358027863023418,"path":9916039860939593390,"deps":[[8008191657135824715,"build_script_build",false,12484450135136385954],[15291996789830541733,"thiserror_impl",false,12313828012792074301]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-5603079bf135f2fd/dep-lib-thiserror","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build new file mode 100644 index 0000000..b70b7cd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build @@ -0,0 +1 @@ +fe25f85b6dd24e31 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build.json new file mode 100644 index 0000000..618d504 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":11125908387338071198,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-7069354ea445a65d/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build new file mode 100644 index 0000000..27d3842 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build @@ -0,0 +1 @@ +a2bbe1a040ad41ad \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build.json new file mode 100644 index 0000000..c6dde90 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8008191657135824715,"build_script_build",false,3553008523178157566]],"local":[{"RerunIfChanged":{"output":"debug/build/thiserror-b456ae825abaa28d/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/dep-lib-thiserror_impl b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/dep-lib-thiserror_impl new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/dep-lib-thiserror_impl differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl new file mode 100644 index 0000000..259e9c7 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl @@ -0,0 +1 @@ +3dd0b90f5681e3aa \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl.json b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl.json new file mode 100644 index 0000000..8e41380 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":6216210811039475267,"profile":3033921117576893,"path":200521672381438723,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[17332570067994900305,"syn",false,18155600851886099986],[17990358020177143287,"quote",false,13223646443693408163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-impl-7462c846dc67d23c/dep-lib-thiserror_impl","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/dep-lib-unicode_ident b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/dep-lib-unicode_ident new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/dep-lib-unicode_ident differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident new file mode 100644 index 0000000..54a14fd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident @@ -0,0 +1 @@ +b1bc4099c5f04dc3 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident.json b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident.json new file mode 100644 index 0000000..5c3d96f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":5438535436255082082,"profile":3033921117576893,"path":2101149359850431829,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-ident-1017dd60fc08fd88/dep-lib-unicode_ident","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/dep-lib-unicode_width b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/dep-lib-unicode_width new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/dep-lib-unicode_width differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width new file mode 100644 index 0000000..a187ab4 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width @@ -0,0 +1 @@ +99446165ee5dd89f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width.json b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width.json new file mode 100644 index 0000000..1d02013 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"cjk\", \"default\"]","declared_features":"[\"cjk\", \"core\", \"default\", \"no_std\", \"rustc-dep-of-std\", \"std\"]","target":16876147670056848225,"profile":5347358027863023418,"path":15995958440835305428,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-width-3846e86ff5e2928c/dep-lib-unicode_width","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/dep-lib-utf8 b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/dep-lib-utf8 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/dep-lib-utf8 differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8 b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8 new file mode 100644 index 0000000..b830f81 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8 @@ -0,0 +1 @@ +d1fc893342898a26 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8.json b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8.json new file mode 100644 index 0000000..f5a1bc5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":10206970129552530490,"profile":5347358027863023418,"path":998656151695515008,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/utf-8-fde59839729e6c84/dep-lib-utf8","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/dep-lib-version_check b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/dep-lib-version_check new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/dep-lib-version_check differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check new file mode 100644 index 0000000..80d85ee --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check @@ -0,0 +1 @@ +a47e7b56e9687d21 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check.json b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check.json new file mode 100644 index 0000000..081e803 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":18099224280402537651,"profile":3033921117576893,"path":16714296172389534947,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/version_check-924408caddcfebba/dep-lib-version_check","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build new file mode 100644 index 0000000..9fedd43 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build @@ -0,0 +1 @@ +25f099a4ae580959 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build.json new file mode 100644 index 0000000..7c80c1d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13102401248396471120,"build_script_build",false,7648833520711569261]],"local":[{"RerunIfChanged":{"output":"debug/build/zerocopy-561cdbb4b9a26819/output","paths":["build.rs","Cargo.toml"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/dep-lib-zerocopy b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/dep-lib-zerocopy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/dep-lib-zerocopy differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy new file mode 100644 index 0000000..d7ad98c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy @@ -0,0 +1 @@ +e1565875955db341 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy.json b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy.json new file mode 100644 index 0000000..7da8274 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":3084901215544504908,"profile":5347358027863023418,"path":9695254401025769007,"deps":[[13102401248396471120,"build_script_build",false,6415756651275087909]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-97ddaa70c3afd57d/dep-lib-zerocopy","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build new file mode 100644 index 0000000..42c13d8 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build @@ -0,0 +1 @@ +6d0f1dd48f1d266a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build.json new file mode 100644 index 0000000..ae44df6 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":5408242616063297496,"profile":3033921117576893,"path":14682106742689615346,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/output b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/output new file mode 100644 index 0000000..94882eb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(specialize) +cargo:rustc-check-cfg=cfg(folded_multiply) +cargo:rustc-cfg=folded_multiply diff --git a/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/root-output b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/root-output new file mode 100644 index 0000000..bdf2802 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/stderr b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build-script-build b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build-script-build new file mode 100755 index 0000000..2fad086 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091 b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091 new file mode 100755 index 0000000..2fad086 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091 differ diff --git a/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091.d b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091.d new file mode 100644 index 0000000..30fc7b9 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/output b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/root-output b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/root-output new file mode 100644 index 0000000..d36c128 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/stderr b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build-script-build b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build-script-build new file mode 100755 index 0000000..15acc8a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079 b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079 new file mode 100755 index 0000000..15acc8a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079 differ diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079.d b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079.d new file mode 100644 index 0000000..7748a48 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs new file mode 100644 index 0000000..e669024 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs @@ -0,0 +1,1656 @@ +use markup5ever :: { +expanded_name , local_name , namespace_prefix , namespace_url , ns +} ; use crate :: tokenizer :: states :: { +Plaintext , Rawtext , Rcdata , ScriptData +} ; use crate :: tree_builder :: tag_sets :: * ; use crate :: tree_builder :: types :: * ; use std :: borrow :: ToOwned ; use crate :: tendril :: SliceExt ; fn any_not_whitespace (x : & StrTendril) -> bool { +x . chars () . any (| c | ! c . is_ascii_whitespace ()) +} fn current_node < Handle > (open_elems : & [Handle]) -> & Handle { +open_elems . last () . expect ("no current element") +} # [doc (hidden)] impl < Handle , Sink > TreeBuilder < Handle , Sink > where Handle : Clone , Sink : TreeSink < Handle = Handle > , { +fn step (& mut self , mode : InsertionMode , token : Token) -> ProcessResult < Handle > { +self . debug_step (mode , & token) ; match mode { +Initial => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment_to_doc (text) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +if ! self . opts . iframe_srcdoc { +self . unexpected (& token) ; self . set_quirks_mode (Quirks) ; +} Reprocess (BeforeHtml , token) +} , +} +} +} , BeforeHtml => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => { +self . create_root (tag . attrs) ; self . mode = BeforeHead ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . create_root (vec ! ()) ; Reprocess (BeforeHead , token) +} , +} +} +} , BeforeHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => { +self . head_elem = Some (self . insert_element_for (tag)) ; self . mode = InHead ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . head_elem = Some (self . insert_phantom (local_name ! ("head"))) ; Reprocess (InHead , token) +} , +} +} +} , InHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) => { +self . parse_raw_data (tag , Rcdata) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noscript") , .. +}) => { +if (! self . opts . scripting_enabled) && (tag . name == local_name ! ("noscript")) { +self . insert_element_for (tag) ; self . mode = InHeadNoscript ; Done +} else { +self . parse_raw_data (tag , Rawtext) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) => { +let elem = create_element (& mut self . sink , QualName :: new (None , ns ! (html) , local_name ! ("script")) , tag . attrs) ; if self . is_fragment () { +self . sink . mark_script_already_started (& elem) ; +} self . insert_appropriately (AppendNode (elem . clone ()) , None) ; self . open_elems . push (elem) ; self . to_raw_text_mode (ScriptData) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => { +self . pop () ; self . mode = AfterHead ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) => { +self . insert_element_for (tag) ; self . active_formatting . push (Marker) ; self . frameset_ok = false ; self . mode = InTemplate ; self . template_modes . push (InTemplate) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +if ! self . in_html_elem_named (local_name ! ("template")) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (thorough_implied_end) ; self . expect_to_close (local_name ! ("template")) ; self . clear_active_formatting_to_marker () ; self . template_modes . pop () ; self . mode = self . reset_insertion_mode () ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . pop () ; Reprocess (AfterHead , token) +} , +} +} +} , InHeadNoscript => match token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("noscript") , .. +}) => { +self . pop () ; self . mode = InHead ; Done +} , CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InHead , token) , CommentToken (_) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noscript") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . unexpected (& token) ; self . pop () ; Reprocess (InHead , token) +} , +} +} +} , AfterHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) => { +self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = InBody ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . insert_element_for (tag) ; self . mode = InFrameset ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) => { +self . unexpected (& token) ; let head = self . head_elem . as_ref () . expect ("no head element") . clone () ; self . push (& head) ; let result = self . step (InHead , token) ; self . remove_from_stack (& head) ; result +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . insert_phantom (local_name ! ("body")) ; Reprocess (InBody , token) +} , +} +} +} , InBody => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (_ , text) => { +self . reconstruct_formatting () ; if any_not_whitespace (& text) { +self . frameset_ok = false ; +} self . append_text (text) +} , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => { +self . unexpected (& tag) ; if ! self . in_html_elem_named (local_name ! ("template")) { +let top = html_elem (& self . open_elems) ; self . sink . add_attrs_if_missing (top , tag . attrs) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +self . step (InHead , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) => { +self . unexpected (& tag) ; match self . body_elem () . cloned () { +Some (ref node) if self . open_elems . len () != 1 && ! self . in_html_elem_named (local_name ! ("template")) => { +self . frameset_ok = false ; self . sink . add_attrs_if_missing (node , tag . attrs) +} , _ => { +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . unexpected (& tag) ; if ! self . frameset_ok { +return Done ; +} let body = unwrap_or_return ! (self . body_elem () , Done) . clone () ; self . sink . remove_from_parent (& body) ; self . open_elems . truncate (1) ; self . insert_element_for (tag) ; self . mode = InFrameset ; Done +} , EOFToken => { +if ! self . template_modes . is_empty () { +self . step (InTemplate , token) +} else { +self . check_body_end () ; self . stop_parsing () +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("body")) { +self . check_body_end () ; self . mode = AfterBody ; +} else { +self . sink . parse_error (Borrowed (" with no in scope")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("body")) { +self . check_body_end () ; Reprocess (AfterBody , token) +} else { +self . sink . parse_error (Borrowed (" with no in scope")) ; Done +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("address") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("article") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("aside") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("details") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dialog") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dir") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("fieldset") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("figcaption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("figure") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("footer") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("header") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("main") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nav") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("p") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("search") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("section") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("summary") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ul") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("menu") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h6") , .. +}) => { +self . close_p_element_in_button_scope () ; if self . current_node_in (heading_tag) { +self . sink . parse_error (Borrowed ("nested heading tags")) ; self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("listing") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; self . ignore_lf = true ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("form") , .. +}) => { +if self . form_elem . is_some () && ! self . in_html_elem_named (local_name ! ("template")) { +self . sink . parse_error (Borrowed ("nested forms")) ; +} else { +self . close_p_element_in_button_scope () ; let elem = self . insert_element_for (tag) ; if ! self . in_html_elem_named (local_name ! ("template")) { +self . form_elem = Some (elem) ; +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dt") , .. +}) => { +declare_tag_set ! (close_list = "li") ; declare_tag_set ! (close_defn = "dd" "dt") ; declare_tag_set ! (extra_special = [special_tag] - "address" "div" "p") ; let list = match tag . name { +local_name ! ("li") => true , local_name ! ("dd") | local_name ! ("dt") => false , _ => unreachable ! () , +} ; self . frameset_ok = false ; let mut to_close = None ; for node in self . open_elems . iter () . rev () { +let name = self . sink . elem_name (node) ; let can_close = if list { +close_list (name) +} else { +close_defn (name) +} ; if can_close { +to_close = Some (name . local . clone ()) ; break ; +} if extra_special (name) { +break ; +} +} match to_close { +Some (name) => { +self . generate_implied_end_except (name . clone ()) ; self . expect_to_close (name) ; +} None => () , +} self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("plaintext") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; ToPlaintext +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("button") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("button")) { +self . sink . parse_error (Borrowed ("nested buttons")) ; self . generate_implied_end (cursory_implied_end) ; self . pop_until_named (local_name ! ("button")) ; +} self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("address") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("article") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("aside") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("button") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("details") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dialog") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dir") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("fieldset") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("figcaption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("figure") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("footer") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("header") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("hgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("listing") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("main") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("menu") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("nav") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("search") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("section") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("summary") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("ul") , .. +}) => { +if ! self . in_scope_named (default_scope , tag . name . clone ()) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("form") , .. +}) => { +if ! self . in_html_elem_named (local_name ! ("template")) { +let node = match self . form_elem . take () { +None => { +self . sink . parse_error (Borrowed ("Null form element pointer on ")) ; return Done ; +} Some (x) => x , +} ; if ! self . in_scope (default_scope , | n | self . sink . same_node (& node , & n)) { +self . sink . parse_error (Borrowed ("Form element not in scope on ")) ; return Done ; +} self . generate_implied_end (cursory_implied_end) ; let current = self . current_node () . clone () ; self . remove_from_stack (& node) ; if ! self . sink . same_node (& current , & node) { +self . sink . parse_error (Borrowed ("Bad open element on ")) ; +} +} else { +if ! self . in_scope_named (default_scope , local_name ! ("form")) { +self . sink . parse_error (Borrowed ("Form element not in scope on ")) ; return Done ; +} self . generate_implied_end (cursory_implied_end) ; if ! self . current_node_named (local_name ! ("form")) { +self . sink . parse_error (Borrowed ("Bad open element on ")) ; +} self . pop_until_named (local_name ! ("form")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("p") , .. +}) => { +if ! self . in_scope_named (button_scope , local_name ! ("p")) { +self . sink . parse_error (Borrowed ("No

tag to close")) ; self . insert_phantom (local_name ! ("p")) ; +} self . close_p_element () ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dt") , .. +}) => { +let in_scope = if tag . name == local_name ! ("li") { +self . in_scope_named (list_item_scope , tag . name . clone ()) +} else { +self . in_scope_named (default_scope , tag . name . clone ()) +} ; if in_scope { +self . generate_implied_end_except (tag . name . clone ()) ; self . expect_to_close (tag . name) ; +} else { +self . sink . parse_error (Borrowed ("No matching tag to close")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h6") , .. +}) => { +if self . in_scope (default_scope , | n | self . elem_in (& n , heading_tag)) { +self . generate_implied_end (cursory_implied_end) ; if ! self . current_node_named (tag . name) { +self . sink . parse_error (Borrowed ("Closing wrong heading tag")) ; +} self . pop_until (heading_tag) ; +} else { +self . sink . parse_error (Borrowed ("No heading tag to close")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("a") , .. +}) => { +self . handle_misnested_a_tags (& tag) ; self . reconstruct_formatting () ; self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("font") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("u") , .. +}) => { +self . reconstruct_formatting () ; self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nobr") , .. +}) => { +self . reconstruct_formatting () ; if self . in_scope_named (default_scope , local_name ! ("nobr")) { +self . sink . parse_error (Borrowed ("Nested ")) ; self . adoption_agency (local_name ! ("nobr")) ; self . reconstruct_formatting () ; +} self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("a") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("font") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("nobr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("u") , .. +}) => { +self . adoption_agency (tag . name) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("applet") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("marquee") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("object") , .. +}) => { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . active_formatting . push (Marker) ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("applet") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("marquee") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("object") , .. +}) => { +if ! self . in_scope_named (default_scope , tag . name . clone ()) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; self . clear_active_formatting_to_marker () ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) => { +if self . quirks_mode != Quirks { +self . close_p_element_in_button_scope () ; +} self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = InTable ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => { +self . unexpected (& tag) ; self . step (InBody , TagToken (Tag { +kind : StartTag , attrs : vec ! () , .. tag +})) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("area") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("embed") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("img") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("keygen") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("wbr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) => { +let keep_frameset_ok = match tag . name { +local_name ! ("input") => self . is_type_hidden (& tag) , _ => false , +} ; self . reconstruct_formatting () ; self . insert_and_pop_element_for (tag) ; if ! keep_frameset_ok { +self . frameset_ok = false ; +} DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("param") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("source") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("track") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_and_pop_element_for (tag) ; self . frameset_ok = false ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("image") , .. +}) => { +self . unexpected (& tag) ; self . step (InBody , TagToken (Tag { +name : local_name ! ("img") , .. tag +})) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("textarea") , .. +}) => { +self . ignore_lf = true ; self . frameset_ok = false ; self . parse_raw_data (tag , Rcdata) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("xmp") , .. +}) => { +self . close_p_element_in_button_scope () ; self . reconstruct_formatting () ; self . frameset_ok = false ; self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("iframe") , .. +}) => { +self . frameset_ok = false ; self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noembed") , .. +}) => { +self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("select") , .. +}) => { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = match self . mode { +InTable | InCaption | InTableBody | InRow | InCell => InSelectInTable , _ => InSelect , +} ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("optgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} self . reconstruct_formatting () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rb") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rtc") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("ruby")) { +self . generate_implied_end (cursory_implied_end) ; +} if ! self . current_node_named (local_name ! ("ruby")) { +self . unexpected (& tag) ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rp") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rt") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("ruby")) { +self . generate_implied_end_except (local_name ! ("rtc")) ; +} if ! self . current_node_named (local_name ! ("rtc")) && ! self . current_node_named (local_name ! ("ruby")) { +self . unexpected (& tag) ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("math") , .. +}) => self . enter_foreign (tag , ns ! (mathml)) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("svg") , .. +}) => self . enter_foreign (tag , ns ! (svg)) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frame") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . unexpected (& token) ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => { +if self . opts . scripting_enabled && tag . name == local_name ! ("noscript") { +self . parse_raw_data (tag , Rawtext) +} else { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; Done +} +} , (true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +self . process_end_tag_in_body (tag) ; Done +} , (_ , _) => panic ! ("impossible case in InBody mode") , +} +} +} , Text => match token { +CharacterTokens (_ , text) => self . append_text (text) , EOFToken => { +self . unexpected (& token) ; if self . current_node_named (local_name ! ("script")) { +let current = current_node (& self . open_elems) ; self . sink . mark_script_already_started (current) ; +} self . pop () ; Reprocess (self . orig_mode . take () . unwrap () , token) +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +let node = self . pop () ; self . mode = self . orig_mode . take () . unwrap () ; if tag . name == local_name ! ("script") { +return Script (node) ; +} Done +} , (_ , _) => panic ! ("impossible case in Text mode") , +} +} +} , InTable => match token { +NullCharacterToken => self . process_chars_in_table (token) , CharacterTokens (..) => self . process_chars_in_table (token) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) => { +self . pop_until_current (table_scope) ; self . active_formatting . push (Marker) ; self . insert_element_for (tag) ; self . mode = InCaption ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_element_for (tag) ; self . mode = InColumnGroup ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_phantom (local_name ! ("colgroup")) ; Reprocess (InColumnGroup , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_element_for (tag) ; self . mode = InTableBody ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_phantom (local_name ! ("tbody")) ; Reprocess (InTableBody , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) => { +self . unexpected (& token) ; if self . in_scope_named (table_scope , local_name ! ("table")) { +self . pop_until_named (local_name ! ("table")) ; Reprocess (self . reset_insertion_mode () , token) +} else { +Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("table")) { +self . pop_until_named (local_name ! ("table")) ; self . mode = self . reset_insertion_mode () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) => { +self . unexpected (& tag) ; if self . is_type_hidden (& tag) { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} else { +self . foster_parent_in_body (TagToken (tag)) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("form") , .. +}) => { +self . unexpected (& tag) ; if ! self . in_html_elem_named (local_name ! ("template")) && self . form_elem . is_none () { +self . form_elem = Some (self . insert_and_pop_element_for (tag)) ; +} Done +} , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; self . foster_parent_in_body (token) +} , +} +} +} , InTableText => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (split , text) => { +self . pending_table_text . push ((split , text)) ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +let pending = :: std :: mem :: take (& mut self . pending_table_text) ; let contains_nonspace = pending . iter () . any (| & (split , ref text) | { +match split { +Whitespace => false , NotWhitespace => true , NotSplit => any_not_whitespace (text) , +} +}) ; if contains_nonspace { +self . sink . parse_error (Borrowed ("Non-space table text")) ; for (split , text) in pending . into_iter () { +match self . foster_parent_in_body (CharacterTokens (split , text)) { +Done => () , _ => panic ! ("not prepared to handle this!") , +} +} +} else { +for (_ , text) in pending . into_iter () { +self . append_text (text) ; +} +} Reprocess (self . orig_mode . take () . unwrap () , token) +} , +} +} +} , InCaption => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("caption")) { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (local_name ! ("caption")) ; self . clear_active_formatting_to_marker () ; match tag { +Tag { +kind : EndTag , name : local_name ! ("caption") , .. +} => { +self . mode = InTable ; Done +} _ => Reprocess (InTable , TagToken (tag)) +} +} else { +self . unexpected (& tag) ; Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InBody , token) , +} +} +} , InColumnGroup => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) => { +if self . current_node_named (local_name ! ("colgroup")) { +self . pop () ; self . mode = InTable ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +if self . current_node_named (local_name ! ("colgroup")) { +self . pop () ; Reprocess (InTable , token) +} else { +self . unexpected (& token) +} +} , +} +} +} , InTableBody => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . pop_until_current (table_body_context) ; self . insert_element_for (tag) ; self . mode = InRow ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) => { +self . unexpected (& token) ; self . pop_until_current (table_body_context) ; self . insert_phantom (local_name ! ("tr")) ; Reprocess (InRow , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . pop_until_current (table_body_context) ; self . pop () ; self . mode = InTable ; +} else { +self . unexpected (& tag) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +declare_tag_set ! (table_outer = "table" "tbody" "tfoot") ; if self . in_scope (table_scope , | e | self . elem_in (& e , table_outer)) { +self . pop_until_current (table_body_context) ; self . pop () ; Reprocess (InTable , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InTable , token) , +} +} +} , InRow => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) => { +self . pop_until_current (table_row_context) ; self . insert_element_for (tag) ; self . mode = InCell ; self . active_formatting . push (Marker) ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; self . mode = InTableBody ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; Reprocess (InTableBody , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; Reprocess (InTableBody , TagToken (tag)) +} else { +Done +} +} else { +self . unexpected (& tag) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InTable , token) , +} +} +} , InCell => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; self . clear_active_formatting_to_marker () ; self . mode = InRow ; +} else { +self . unexpected (& tag) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope (table_scope , | n | self . elem_in (& n , td_th)) { +self . close_the_cell () ; Reprocess (InRow , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . close_the_cell () ; Reprocess (InRow , TagToken (tag)) +} else { +self . unexpected (& tag) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InBody , token) , +} +} +} , InSelect => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (_ , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("optgroup") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} self . insert_element_for (tag) ; self . pop () ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("optgroup") , .. +}) => { +if self . open_elems . len () >= 2 && self . current_node_named (local_name ! ("option")) && self . html_elem_named (& self . open_elems [self . open_elems . len () - 2] , local_name ! ("optgroup")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("select") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("select") , .. +}) => { +let in_scope = self . in_scope_named (select_scope , local_name ! ("select")) ; if ! in_scope || tag . kind == StartTag { +self . unexpected (& tag) ; +} if in_scope { +self . pop_until_named (local_name ! ("select")) ; self . mode = self . reset_insertion_mode () ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("keygen") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("textarea") , .. +}) => { +self . unexpected (& token) ; if self . in_scope_named (select_scope , local_name ! ("select")) { +self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , token) +} else { +Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , InSelectInTable => match token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) => { +self . unexpected (& token) ; self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => { +self . unexpected (& tag) ; if self . in_scope_named (table_scope , tag . name . clone ()) { +self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , TagToken (tag)) +} else { +Done +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InSelect , token) , +} +} +} , InTemplate => match token { +CharacterTokens (_ , _) => self . step (InBody , token) , CommentToken (_) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +self . step (InHead , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InTable) ; Reprocess (InTable , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InColumnGroup) ; Reprocess (InColumnGroup , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InTableBody) ; Reprocess (InTableBody , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InRow) ; Reprocess (InRow , token) +} , EOFToken => { +if ! self . in_html_elem_named (local_name ! ("template")) { +self . stop_parsing () +} else { +self . unexpected (& token) ; self . pop_until_named (local_name ! ("template")) ; self . clear_active_formatting_to_marker () ; self . template_modes . pop () ; self . mode = self . reset_insertion_mode () ; Reprocess (self . reset_insertion_mode () , token) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => { +self . template_modes . pop () ; self . template_modes . push (InBody) ; Reprocess (InBody , TagToken (tag)) +} , (_ , token) => self . unexpected (& token) , +} +} +} , AfterBody => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_html (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +if self . is_fragment () { +self . unexpected (& token) ; +} else { +self . mode = AfterAfterBody ; +} Done +} , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; Reprocess (InBody , token) +} , +} +} +} , InFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("frameset") , .. +}) => { +if self . open_elems . len () == 1 { +self . unexpected (& token) ; +} else { +self . pop () ; if ! self . is_fragment () && ! self . current_node_named (local_name ! ("frameset")) { +self . mode = AfterFrameset ; +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frame") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , EOFToken => { +if self . open_elems . len () != 1 { +self . unexpected (& token) ; +} self . stop_parsing () +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , AfterFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +self . mode = AfterAfterFrameset ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , AfterAfterBody => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; Reprocess (InBody , token) +} , +} +} +} , AfterAfterFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , EOFToken => self . stop_parsing () , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , +} +} fn step_foreign (& mut self , token : Token) -> ProcessResult < Handle > { +match token { +NullCharacterToken => { +self . unexpected (& token) ; self . append_text ("\u{fffd}" . to_tendril ()) +} , CharacterTokens (_ , text) => { +if any_not_whitespace (& text) { +self . frameset_ok = false ; +} self . append_text (text) +} , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("embed") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h6") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("img") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("listing") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("menu") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nobr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("p") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ruby") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("span") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("sub") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("sup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("u") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ul") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("var") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("p") , .. +}) => self . unexpected_start_tag_in_foreign_content (tag) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("font") , .. +}) => { +let unexpected = tag . attrs . iter () . any (| attr | { +matches ! (attr . name . expanded () , expanded_name ! ("" , "color") | expanded_name ! ("" , "face") | expanded_name ! ("" , "size")) +}) ; if unexpected { +self . unexpected_start_tag_in_foreign_content (tag) +} else { +self . foreign_start_tag (tag) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => self . foreign_start_tag (tag) , (true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +let mut first = true ; let mut stack_idx = self . open_elems . len () - 1 ; loop { +if stack_idx == 0 { +return Done ; +} let html ; let eq ; { +let node_name = self . sink . elem_name (& self . open_elems [stack_idx]) ; html = * node_name . ns == ns ! (html) ; eq = node_name . local . eq_ignore_ascii_case (& tag . name) ; +} if ! first && html { +let mode = self . mode ; return self . step (mode , TagToken (tag)) ; +} if eq { +self . open_elems . truncate (stack_idx) ; return Done ; +} if first { +self . unexpected (& tag) ; first = false ; +} stack_idx -= 1 ; +} +} , (_ , _) => panic ! ("impossible case in foreign content") , +} +} +} +} +} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/output b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/output new file mode 100644 index 0000000..2cbd6da --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/rules.rs diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/root-output b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/root-output new file mode 100644 index 0000000..5237abf --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/stderr b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build-script-build b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build-script-build new file mode 100755 index 0000000..f41d90c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46 b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46 new file mode 100755 index 0000000..f41d90c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46 differ diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46.d b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46.d new file mode 100644 index 0000000..2bef6fb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/build.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/macros/match_token.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/build.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/macros/match_token.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/build.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/macros/match_token.rs: diff --git a/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/output b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/output new file mode 100644 index 0000000..ce0c677 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/output @@ -0,0 +1,24 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_MUSL_V1_2_3 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_TIME_BITS +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(libc_thread_local) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock","nto80")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/root-output b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/root-output new file mode 100644 index 0000000..636ae6d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/stderr b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/output b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/output new file mode 100644 index 0000000..ce0c677 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/output @@ -0,0 +1,24 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_MUSL_V1_2_3 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_TIME_BITS +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(libc_thread_local) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock","nto80")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/root-output b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/root-output new file mode 100644 index 0000000..b9d3868 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/stderr b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build-script-build b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build-script-build new file mode 100755 index 0000000..3b5f5cb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a new file mode 100755 index 0000000..3b5f5cb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a differ diff --git a/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a.d b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a.d new file mode 100644 index 0000000..9904f9a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build-script-build b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build-script-build new file mode 100755 index 0000000..8c71929 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1 b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1 new file mode 100755 index 0000000..8c71929 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1 differ diff --git a/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1.d b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1.d new file mode 100644 index 0000000..27ef4fb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build-script-build b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build-script-build new file mode 100755 index 0000000..b68b774 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93 b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93 new file mode 100755 index 0000000..b68b774 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93 differ diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93.d b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93.d new file mode 100644 index 0000000..f449ea3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/output b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/output new file mode 100644 index 0000000..232d899 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(has_const_fn_trait_bound) +cargo:rustc-cfg=has_const_fn_trait_bound diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/root-output b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/root-output new file mode 100644 index 0000000..10f09e3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/stderr b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs new file mode 100644 index 0000000..467da59 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs @@ -0,0 +1,2927 @@ +pub type LocalName = :: string_cache :: Atom < LocalNameStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct LocalNameStaticSet ; +impl :: string_cache :: StaticAtomSet for LocalNameStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 12913932095322966823u64 , disps : & [(0u32 , 2u32) , (0u32 , 12u32) , (0u32 , 1u32) , (0u32 , 196u32) , (0u32 , 6u32) , (0u32 , 352u32) , (0u32 , 96u32) , (0u32 , 27u32) , (0u32 , 1u32) , (0u32 , 151u32) , (0u32 , 9u32) , (0u32 , 112u32) , (0u32 , 200u32) , (0u32 , 214u32) , (0u32 , 0u32) , (0u32 , 17u32) , (0u32 , 2u32) , (0u32 , 9u32) , (0u32 , 8u32) , (1u32 , 83u32) , (0u32 , 23u32) , (3u32 , 151u32) , (0u32 , 77u32) , (0u32 , 35u32) , (0u32 , 4u32) , (2u32 , 150u32) , (0u32 , 321u32) , (0u32 , 22u32) , (0u32 , 64u32) , (0u32 , 24u32) , (0u32 , 2u32) , (0u32 , 12u32) , (0u32 , 2u32) , (2u32 , 168u32) , (0u32 , 58u32) , (2u32 , 214u32) , (0u32 , 167u32) , (2u32 , 544u32) , (3u32 , 112u32) , (0u32 , 3u32) , (0u32 , 63u32) , (0u32 , 483u32) , (0u32 , 33u32) , (0u32 , 0u32) , (0u32 , 1u32) , (2u32 , 36u32) , (0u32 , 18u32) , (0u32 , 4u32) , (0u32 , 0u32) , (0u32 , 206u32) , (1u32 , 218u32) , (1u32 , 25u32) , (0u32 , 0u32) , (0u32 , 74u32) , (0u32 , 1u32) , (3u32 , 258u32) , (3u32 , 525u32) , (0u32 , 0u32) , (3u32 , 403u32) , (0u32 , 193u32) , (2u32 , 349u32) , (0u32 , 294u32) , (0u32 , 183u32) , (0u32 , 3u32) , (1u32 , 217u32) , (0u32 , 384u32) , (4u32 , 395u32) , (0u32 , 29u32) , (0u32 , 6u32) , (0u32 , 0u32) , (0u32 , 306u32) , (0u32 , 220u32) , (0u32 , 6u32) , (0u32 , 2u32) , (0u32 , 0u32) , (0u32 , 0u32) , (1u32 , 156u32) , (1u32 , 28u32) , (0u32 , 202u32) , (0u32 , 104u32) , (0u32 , 537u32) , (0u32 , 120u32) , (0u32 , 535u32) , (1u32 , 432u32) , (0u32 , 127u32) , (4u32 , 6u32) , (0u32 , 3u32) , (0u32 , 13u32) , (2u32 , 236u32) , (3u32 , 137u32) , (0u32 , 249u32) , (0u32 , 86u32) , (3u32 , 242u32) , (0u32 , 251u32) , (0u32 , 218u32) , (0u32 , 55u32) , (0u32 , 314u32) , (2u32 , 225u32) , (1u32 , 12u32) , (0u32 , 435u32) , (0u32 , 61u32) , (0u32 , 26u32) , (13u32 , 46u32) , (3u32 , 561u32) , (34u32 , 53u32) , (0u32 , 84u32) , (3u32 , 430u32) , (8u32 , 242u32) , (28u32 , 328u32) , (2u32 , 397u32) , (0u32 , 316u32) , (1u32 , 0u32) , (0u32 , 14u32) , (2u32 , 89u32) , (25u32 , 39u32) , (2u32 , 392u32) , (0u32 , 0u32) , (6u32 , 245u32) , (0u32 , 44u32) , (0u32 , 11u32)] , atoms : & ["columnspacing", +"kernelunitlength", +"color-interpolation", +"complexes", +"annotation-xml", +"specularconstant", +"mozbrowser", +"interval", +"gradientUnits", +"onmouseleave", +"writing-mode", +"aria-valuemax", +"animateTransform", +"definitionURL", +"background", +"aria-templateid", +"feGaussianBlur", +"subscriptshift", +"xmlns:xlink", +"fieldset", +"spreadmethod", +"formtarget", +"feDiffuseLighting", +"feturbulence", +"onbeforeeditfocus", +"colgroup", +"mathbackground", +"onkeydown", +"feColorMatrix", +"startoffset", +"autofocus", +"contextmenu", +"longdesc", +"aria-relevant", +"onbeforeprint", +"fill-rule", +"hreflang", +"domainofapplication", +"keytimes", +"numoctaves", +"partialdiff", +"aria-describedby", +"color-interpolation-filters", +"preserveaspectratio", +"actiontype", +"quotient", +"notation", +"autocomplete", +"contentStyleType", +"strikethrough-thickness", +"stop-color", +"itemtype", +"fepointlight", +"formmethod", +"seamless", +"plaintext", +"aria-modal", +"required", +"numOctaves", +"maxlength", +"piecewise", +"cellspacing", +"xChannelSelector", +"momentabout", +"onfinish", +"kernelmatrix", +"color-profile", +"fedropshadow", +"aria-haspopup", +"pointsatz", +"decoding", +"linearGradient", +"columnlines", +"onmousemove", +"codomain", +"prsubset", +"alignment-baseline", +"intercept", +"font-face-src", +"aria-multiselectable", +"keyPoints", +"diffuseconstant", +"xlink:arcrole", +"onafterupdate", +"foreignObject", +"autosubmit", +"scrolldelay", +"stretchy", +"font-weight", +"onafterprint", +"aria-pressed", +"line-height", +"basefrequency", +"aria-description", +"onhashchange", +"displaystyle", +"v-hanging", +"patterncontentunits", +"http-equiv", +"animation", +"vert-adv-y", +"onrowsdelete", +"aria-labelledby", +"unicode-range", +"listener", +"accent-height", +"dominant-baseline", +"datetime", +"aria-colspan", +"conjugate", +"onmousedown", +"equalrows", +"stitchtiles", +"edgemode", +"aria-autocomplete", +"aria-atomic", +"mathsize", +"glyphref", +"maskunits", +"clippathunits", +"aria-checked", +"enable-background", +"onbeforecut", +"onmouseover", +"pointsAtX", +"ondblclick", +"xchannelselector", +"symmetric", +"fediffuselighting", +"aria-multiline", +"oninvalid", +"markerHeight", +"repeatdur", +"vert-origin-y", +"requiredFeatures", +"elevation", +"viewtarget", +"aria-label", +"solidcolor", +"onforminput", +"textpath", +"spellcheck", +"patternTransform", +"aria-disabled", +"font-face-format", +"autoplay", +"altGlyph", +"imaginaryi", +"dataformatas", +"femorphology", +"x-height", +"onbefordeactivate", +"zoomAndPan", +"letter-spacing", +"aria-expanded", +"aria-braillelabel", +"mathcolor", +"equivalent", +"fontfamily", +"scriptlevel", +"rowspacing", +"maskUnits", +"glyphRef", +"glyph-orientation-horizontal", +"multicol", +"maskContentUnits", +"thinmathspace", +"condition", +"formnovalidate", +"attributeName", +"cellpadding", +"stroke-miterlimit", +"altglyph", +"selector", +"onbeforeunload", +"lowlimit", +"optgroup", +"feDistantLight", +"frameset", +"underline-thickness", +"strikethrough-position", +"onrowsinserted", +"definitionurl", +"fontweight", +"aria-placeholder", +"marker-start", +"ononline", +"xml:base", +"allowfullscreen", +"noresize", +"spreadMethod", +"feConvolveMatrix", +"limitingConeAngle", +"attributetype", +"selection", +"repeat-max", +"font-face-name", +"controllerchange", +"aria-selected", +"formenctype", +"datalist", +"rowalign", +"scalarproduct", +"limitingconeangle", +"mprescripts", +"aria-valuetext", +"disabled", +"stroke-width", +"noscript", +"onresize", +"filterUnits", +"aria-setsize", +"onbeforepaste", +"aria-busy", +"aria-controls", +"malignmark", +"aria-keyshortcuts", +"calcmode", +"marker-mid", +"onformchange", +"aria-flowto", +"animatemotion", +"amplitude", +"aria-valuemin", +"aria-posinset", +"lengthadjust", +"diffuseConstant", +"baseProfile", +"color-rendering", +"altGlyphDef", +"primitiveunits", +"preservealpha", +"aria-rowindex", +"ondeactivate", +"font-face-uri", +"feSpecularLighting", +"v-ideographic", +"stdDeviation", +"onsubmit", +"scriptsizemultiplier", +"onrowexit", +"font-face", +"gradienttransform", +"veryverythinmathspace", +"onselect", +"clip-rule", +"codebase", +"underline-position", +"v-mathematical", +"separator", +"matrixrow", +"selected", +"xlink:href", +"horiz-adv-x", +"controls", +"aria-current", +"onscroll", +"pointsAtZ", +"overflow", +"", +"onpagehide", +"visibility", +"feComponentTransfer", +"overline-position", +"rendering-intent", +"infinity", +"feconvolvematrix", +"repeatCount", +"onselectstart", +"pointsaty", +"direction", +"fecolormatrix", +"tabindex", +"placeholder", +"transpose", +"gradientunits", +"feDropShadow", +"xlink:role", +"edgeMode", +"gradientTransform", +"integers", +"stddeviation", +"repeat-start", +"cap-height", +"xlink:type", +"unselectable", +"contentstyletype", +"transform", +"stroke-linejoin", +"integrity", +"ondatasetchanged", +"foreignobject", +"radiogroup", +"contenteditable", +"template", +"statechange", +"pathlength", +"divergence", +"aria-hidden", +"ondragleave", +"maligngroup", +"outerproduct", +"aria-channel", +"systemlanguage", +"fetchpriority", +"polyline", +"lighting-color", +"property", +"animateColor", +"ondragdrop", +"repeat-min", +"specification", +"surfacescale", +"clippath", +"patternUnits", +"flood-opacity", +"referrerpolicy", +"factorial", +"hidefocus", +"stitchTiles", +"arabic-form", +"blockquote", +"mlabeledtr", +"novalidate", +"onpopstate", +"onerrorupdate", +"feSpotLight", +"stop-opacity", +"readonly", +"markerUnits", +"naturalnumbers", +"markerunits", +"font-family", +"patternunits", +"orientation", +"markerheight", +"aria-colindextext", +"attributeType", +"accesskey", +"clipPathUnits", +"keySplines", +"onstorage", +"font-style", +"fedisplacementmap", +"separators", +"verythinmathspace", +"primitiveUnits", +"surfaceScale", +"formaction", +"verythickmathspace", +"calcMode", +"xml:lang", +"fedistantlight", +"fontstyle", +"overline-thickness", +"onbounce", +"bevelled", +"onmouseout", +"exponent", +"prefetch", +"tablevalues", +"itemscope", +"manifest", +"nomodule", +"mathvariant", +"v-alphabetic", +"scrolling", +"keysplines", +"variance", +"feMorphology", +"preserveAlpha", +"viewTarget", +"aria-orientation", +"aria-rowcount", +"onlanguagechange", +"oncontrolselect", +"onmouseup", +"inputmode", +"notsubset", +"definition-src", +"aria-readonly", +"specularexponent", +"multiple", +"onunload", +"aria-colindex", +"reversed", +"onoffline", +"aria-rowindextext", +"externalresourcesrequired", +"datatemplate", +"fontsize", +"image-rendering", +"basefont", +"fill-opacity", +"radialgradient", +"frameborder", +"stroke-dasharray", +"encoding", +"animatetransform", +"movablelimits", +"filterres", +"font-stretch", +"clipPath", +"xlink:show", +"notanumber", +"onmouseenter", +"aria-dropeffect", +"progress", +"ondataavailable", +"valuetype", +"noframes", +"specularExponent", +"text-rendering", +"otherwise", +"baseline", +"framespacing", +"xlink:title", +"feOffset", +"aria-secret", +"aria-valuenow", +"emptyset", +"determinant", +"textlength", +"font-variant", +"horiz-origin-x", +"aria-brailleroledescription", +"onfocusout", +"menuitem", +"ondragend", +"baseline-shift", +"feComposite", +"pathLength", +"startOffset", +"glyph-orientation-vertical", +"textPath", +"onreadystatechange", +"stroke-opacity", +"accumulate", +"onbeforeupdate", +"shape-rendering", +"figcaption", +"thickmathspace", +"minlength", +"requiredextensions", +"repeat-template", +"vert-origin-x", +"lineargradient", +"download", +"onmovestart", +"patterntransform", +"superscriptshift", +"externalResourcesRequired", +"animatecolor", +"panose-1", +"filterRes", +"aria-colcount", +"missing-glyph", +"cartesianproduct", +"femergenode", +"ondragover", +"fespecularlighting", +"mphantom", +"aria-activedescendant", +"exponentiale", +"aria-invalid", +"requiredfeatures", +"additive", +"onbeforeactivate", +"altglyphitem", +"repeatcount", +"rationals", +"stroke-linecap", +"annotation", +"units-per-em", +"tableValues", +"mmultiscripts", +"aria-owns", +"ideographic", +"text-anchor", +"aria-sort", +"aria-datatype", +"irrelevant", +"preserveAspectRatio", +"markerWidth", +"columnalign", +"notprsubset", +"language", +"onbeforecopy", +"onfilterchange", +"altglyphdef", +"fePointLight", +"pointer-events", +"feDisplacementMap", +"ondatasetcomplete", +"aria-rowspan", +"columnspan", +"stroke-dashoffset", +"aria-required", +"occurrence", +"munderover", +"linethickness", +"feMergeNode", +"menclose", +"alignmentscope", +"markerwidth", +"accentunder", +"feoffset", +"columnwidth", +"textarea", +"fecomposite", +"itemprop", +"intersect", +"semantics", +"font-size-adjust", +"word-spacing", +"oncellchange", +"crossorigin", +"ondragstart", +"flood-color", +"glyph-name", +"pointsatx", +"textLength", +"eulergamma", +"aria-details", +"translate", +"filterunits", +"contentscripttype", +"mathematical", +"onrowenter", +"aria-grab", +"onfocusin", +"onpropertychange", +"zoomandpan", +"xlink:actuate", +"unicode-bidi", +"onmessage", +"fespotlight", +"clip-path", +"onmousewheel", +"marginwidth", +"aria-errormessage", +"baseFrequency", +"scriptminsize", +"systemLanguage", +"codetype", +"text-decoration", +"ondragenter", +"specularConstant", +"feTurbulence", +"font-size", +"accept-charset", +"draggable", +"maskcontentunits", +"onlosecapture", +"contentScriptType", +"rowlines", +"radialGradient", +"yChannelSelector", +"xml:space", +"aria-live", +"groupalign", +"onrepeat", +"onpageshow", +"vectorproduct", +"aria-roledescription", +"equalcolumns", +"factorof", +"onmoveend", +"onkeypress", +"operator", +"kernelUnitLength", +"oncontextmenu", +"onactivate", +"aria-level", +"pointsAtY", +"mediummathspace", +"animateMotion", +"baseprofile", +"veryverythickmathspace", +"alphabetic", +"keypoints", +"marker-end", +"laplacian", +"kernelMatrix", +"altGlyphItem", +"fegaussianblur", +"horiz-origin-y", +"imaginary", +"fecomponenttransfer", +"metadata", +"requiredExtensions", +"onchange", +"lengthAdjust", +"patternContentUnits", +"marginheight", +"attributename", +"ychannelselector", +"keyTimes", +"repeatDur", +"linebreak"] , hashes : & [3072954000u32 , 3434111473u32 , 2938551886u32 , 3761485389u32 , 1040004347u32 , 4048787516u32 , 2352150961u32 , 3813953811u32 , 1089255496u32 , 1746599759u32 , 3812424145u32 , 2627759492u32 , 1122986055u32 , 1411183032u32 , 540984354u32 , 2869380463u32 , 127349794u32 , 1324932700u32 , 3949169397u32 , 167018041u32 , 2338483475u32 , 1265818470u32 , 3017840974u32 , 2817038524u32 , 977519882u32 , 482099679u32 , 41264406u32 , 3792741489u32 , 3819629636u32 , 3023844475u32 , 2488083091u32 , 2389793136u32 , 3838527384u32 , 3895686923u32 , 1853897548u32 , 183626286u32 , 2619524090u32 , 1000927536u32 , 1343823872u32 , 3505831613u32 , 3140418151u32 , 2730644329u32 , 840604679u32 , 13967138u32 , 3674106722u32 , 890471348u32 , 1196494198u32 , 139625561u32 , 1496007974u32 , 3978549325u32 , 1531081973u32 , 876893636u32 , 3031015162u32 , 2901051737u32 , 1967061597u32 , 498024801u32 , 413668059u32 , 1014874794u32 , 2190494129u32 , 4155473355u32 , 1340310784u32 , 3087731897u32 , 738404731u32 , 3467076559u32 , 1500515759u32 , 1511898050u32 , 3123322936u32 , 1776997671u32 , 2893479988u32 , 2980412961u32 , 4208387215u32 , 1956396338u32 , 3139000449u32 , 3598404451u32 , 3848540887u32 , 1932517039u32 , 3727352922u32 , 2250640510u32 , 3569972244u32 , 882636649u32 , 3937177209u32 , 2909783456u32 , 1674115585u32 , 1463711312u32 , 917510687u32 , 3174660173u32 , 3588373335u32 , 4157184116u32 , 2754786514u32 , 3088760233u32 , 962337312u32 , 1029483847u32 , 4219469015u32 , 2550357363u32 , 3316294029u32 , 1693167880u32 , 3574495545u32 , 2965230298u32 , 1465547969u32 , 1344436999u32 , 3857554377u32 , 3436454788u32 , 1696233065u32 , 3054316836u32 , 1289272887u32 , 2749033157u32 , 3173400481u32 , 2832170387u32 , 3483791417u32 , 357019207u32 , 1494292933u32 , 610893786u32 , 1578024761u32 , 3522778558u32 , 1695163510u32 , 3441525639u32 , 191876287u32 , 53892155u32 , 1008080924u32 , 2648768565u32 , 2710653095u32 , 839481326u32 , 2363338602u32 , 2062376914u32 , 1713409972u32 , 3318082606u32 , 4064199297u32 , 3391938715u32 , 582074557u32 , 688563368u32 , 849353939u32 , 3420533286u32 , 3173625849u32 , 1137297938u32 , 1784113404u32 , 3074935477u32 , 1754753923u32 , 581625092u32 , 3200099719u32 , 872051764u32 , 1290517656u32 , 3345816294u32 , 2555432291u32 , 520649620u32 , 2351838155u32 , 2113798551u32 , 3482160649u32 , 3225919750u32 , 3538034810u32 , 1031924441u32 , 67060975u32 , 3022377460u32 , 251844155u32 , 4104071589u32 , 2813597207u32 , 3099170635u32 , 1159398089u32 , 487396000u32 , 4133853804u32 , 261387879u32 , 1152797465u32 , 585557574u32 , 3756296120u32 , 2143535654u32 , 284653812u32 , 2761967137u32 , 3172500845u32 , 1492357159u32 , 3572217425u32 , 3148690945u32 , 3303937590u32 , 1597870884u32 , 3473820876u32 , 1151125310u32 , 1327970202u32 , 2766318564u32 , 3251283326u32 , 3022346510u32 , 2822081788u32 , 657335448u32 , 2055579803u32 , 697370994u32 , 790236809u32 , 1436742140u32 , 369465691u32 , 1704381425u32 , 1545307082u32 , 3107512368u32 , 3553740950u32 , 3709793219u32 , 150393700u32 , 3296146244u32 , 175932733u32 , 3447324541u32 , 1529410224u32 , 742460070u32 , 951933631u32 , 3888122413u32 , 940673285u32 , 510569370u32 , 2481108222u32 , 11175636u32 , 742853127u32 , 4086049772u32 , 4279947214u32 , 3336988988u32 , 2253042667u32 , 2961964106u32 , 3496513502u32 , 1397943031u32 , 717168679u32 , 2440702496u32 , 835417400u32 , 1443202521u32 , 269731020u32 , 4197990453u32 , 431655942u32 , 1924991364u32 , 3503166008u32 , 2407704912u32 , 1462083347u32 , 1846373592u32 , 1004995609u32 , 1737183206u32 , 1086403303u32 , 322837783u32 , 898067958u32 , 268294220u32 , 3517724257u32 , 631093780u32 , 660920321u32 , 328232673u32 , 998270762u32 , 1622957280u32 , 3038336232u32 , 2875176293u32 , 143478574u32 , 577943792u32 , 2591735095u32 , 1106010321u32 , 130627326u32 , 59658625u32 , 2468381339u32 , 4125580644u32 , 1904259492u32 , 4179141959u32 , 1918948260u32 , 3161172129u32 , 4032437431u32 , 259654618u32 , 1980444132u32 , 1326112048u32 , 2985998690u32 , 3480491085u32 , 623782337u32 , 121548787u32 , 3263344947u32 , 2162760400u32 , 4010765371u32 , 4082073077u32 , 3730423347u32 , 680267915u32 , 1003700867u32 , 24676607u32 , 986461641u32 , 3064390904u32 , 1038372645u32 , 4004244404u32 , 3044528111u32 , 2145215358u32 , 316404133u32 , 2627228424u32 , 441619653u32 , 4227008938u32 , 2231254690u32 , 2770211272u32 , 3543883658u32 , 2705478669u32 , 427162403u32 , 1313537745u32 , 1359418558u32 , 2791371120u32 , 3247137570u32 , 1209573904u32 , 3629415669u32 , 1459652027u32 , 787973706u32 , 2990288183u32 , 388019751u32 , 3290302249u32 , 4067843623u32 , 904157188u32 , 906623274u32 , 1026931307u32 , 3192182081u32 , 2075053822u32 , 3041455211u32 , 3590479039u32 , 4016453314u32 , 1356155463u32 , 4287406983u32 , 4151148662u32 , 4257931290u32 , 6175338u32 , 3637562920u32 , 2537656704u32 , 3799256240u32 , 551601771u32 , 2274933261u32 , 4174481087u32 , 3231125223u32 , 2052860768u32 , 4193230156u32 , 1365633322u32 , 718491279u32 , 1048020461u32 , 326494834u32 , 3182531199u32 , 1421968030u32 , 1906307066u32 , 3199297686u32 , 1289880550u32 , 167340041u32 , 1694998203u32 , 507264248u32 , 2176790048u32 , 2701977759u32 , 2377326793u32 , 290068694u32 , 3390498297u32 , 3315223323u32 , 3173477931u32 , 4121432320u32 , 3221036252u32 , 1545869555u32 , 3367662520u32 , 1721701609u32 , 4001891308u32 , 1340705914u32 , 193163341u32 , 2607187618u32 , 1081021937u32 , 1109713652u32 , 2324745345u32 , 2509936390u32 , 868058960u32 , 235814134u32 , 3311581079u32 , 3859396703u32 , 4274065971u32 , 1713731671u32 , 2577707114u32 , 597485693u32 , 89533980u32 , 1764594812u32 , 236464811u32 , 42180808u32 , 1563912927u32 , 1700718142u32 , 2884343567u32 , 2974337319u32 , 1437637129u32 , 2927217335u32 , 2731266052u32 , 1585700207u32 , 2192643058u32 , 372536167u32 , 1980252733u32 , 540156035u32 , 1969026116u32 , 1054325476u32 , 3081310440u32 , 1855625123u32 , 1025361169u32 , 625288246u32 , 1085252765u32 , 3337178u32 , 1634030783u32 , 1123905875u32 , 1425318046u32 , 2753608321u32 , 2458868732u32 , 2907088801u32 , 1270941540u32 , 699250933u32 , 3776643770u32 , 496466373u32 , 844290399u32 , 1068196084u32 , 1013909549u32 , 2140727092u32 , 3725445512u32 , 3805722218u32 , 2519983718u32 , 2038498193u32 , 1670804630u32 , 2806594463u32 , 1857928766u32 , 4088548386u32 , 1490652026u32 , 314533796u32 , 1060911337u32 , 4110733451u32 , 731340681u32 , 3471797576u32 , 745064063u32 , 1402964693u32 , 3164895664u32 , 2986159298u32 , 3006277213u32 , 1622799733u32 , 3353385752u32 , 1466152561u32 , 909665113u32 , 2047753258u32 , 2384049441u32 , 115637463u32 , 1406178112u32 , 3391050331u32 , 3377397637u32 , 3608092222u32 , 4114830095u32 , 1704100245u32 , 3735993810u32 , 960352296u32 , 832628307u32 , 4266430317u32 , 3273539984u32 , 4019205149u32 , 1372447217u32 , 149474300u32 , 2152634883u32 , 33840900u32 , 3720179864u32 , 2005060454u32 , 1081225797u32 , 2007550408u32 , 3278498399u32 , 1064789251u32 , 207807063u32 , 2771320901u32 , 2488889144u32 , 1114315443u32 , 2117758015u32 , 1363498200u32 , 2286720981u32 , 797499465u32 , 3224307212u32 , 1271998022u32 , 3469436088u32 , 4197022858u32 , 4114207458u32 , 3862168567u32 , 798432117u32 , 23332298u32 , 2762337148u32 , 4214847380u32 , 3650491062u32 , 2229477384u32 , 2620153124u32 , 968834697u32 , 2213967518u32 , 3356497412u32 , 527925402u32 , 3472575083u32 , 3368766693u32 , 2271299428u32 , 1833541319u32 , 1160497299u32 , 4144887102u32 , 1659529969u32 , 859546789u32 , 1960989138u32 , 2673802232u32 , 836037603u32 , 3595420161u32 , 1528320406u32 , 3468989663u32 , 1747256964u32 , 2172529172u32 , 3084283302u32 , 2998850704u32 , 4080036470u32 , 3535003966u32 , 95564789u32 , 3646787135u32 , 3213189697u32 , 3855161187u32 , 990264918u32 , 2282081120u32 , 2112894915u32 , 570359024u32 , 2091062413u32 , 297387744u32 , 4118614427u32 , 1113648994u32 , 1493588833u32 , 303986147u32 , 4123782853u32 , 1108361085u32 , 611308476u32 , 11851321u32 , 2825708013u32 , 428550904u32 , 1961077096u32 , 1039356818u32 , 1281759160u32 , 3931194778u32 , 471362903u32 , 2660037162u32 , 3364582022u32 , 1270424231u32 , 189988860u32 , 909579565u32 , 225950890u32 , 3561280171u32 , 1099196523u32 , 2331857769u32 , 2068298677u32 , 3953335784u32 , 2196595662u32 , 3015830598u32 , 2798901808u32 , 4213661298u32 , 1647114263u32 , 3520680811u32 , 4018656289u32 , 631162154u32 , 1285071230u32 , 1733779952u32 , 3349181976u32 , 1268358839u32 , 3653391143u32 , 497920229u32 , 4260186941u32 , 2526332624u32 , 1469020628u32 , 3745411061u32 , 825000363u32 , 517970045u32 , 516688877u32 , 214212608u32 , 776053845u32 , 2994067376u32 , 1715378710u32 , 857129565u32 , 1346406727u32 , 1503507106u32 , 2410855252u32 , 938548574u32 , 3668239605u32 , 1213081654u32 , 3648607726u32 , 3937191824u32 , 4019313672u32 , 1943821868u32 , 1642132156u32 , 898289440u32 , 544785510u32 , 26369323u32 , 3978774502u32 , 1328456326u32 , 1784393862u32 , 2271863710u32 , 1070642373u32 , 3371793166u32 , 340120193u32 , 722849851u32 , 491646294u32 , 671572742u32 , 3394829011u32 , 1031843807u32 , 2720850668u32 , 948133874u32 , 3717621328u32 , 1867791235u32 , 3708044859u32 , 2146706716u32 , 1964478094u32 , 635163395u32 , 1882820659u32 , 1639866691u32 , 3564373280u32 , 1727774507u32 , 1660726878u32 , 2606928828u32 , 1582153498u32 , 155801033u32 , 1390052554u32 , 1638551108u32 , 297767543u32 , 671909442u32 , 3766194097u32 , 624093324u32 , 1341662051u32 , 3359083184u32 , 1079146945u32 , 1135843586u32 , 642136761u32 , 1751032114u32] } ; +& SET } fn empty_string_index () -> u32 { 259u32 } } pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (0u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_75_6E_69_74_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (1u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E : LocalName = LocalName :: pack_static (2u32) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_6C_65_78_65_73 : LocalName = LocalName :: pack_static (3u32) ; +pub const ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E_2D_78_6D_6C : LocalName = LocalName :: pack_static (4u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_63_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (5u32) ; +pub const ATOM_LOCALNAME__6D_6F_7A_62_72_6F_77_73_65_72 : LocalName = LocalName :: pack_static (6u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_76_61_6C : LocalName = LocalName :: pack_static (7u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (8u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6C_65_61_76_65 : LocalName = LocalName :: pack_static (9u32) ; +pub const ATOM_LOCALNAME__77_72_69_74_69_6E_67_2D_6D_6F_64_65 : LocalName = LocalName :: pack_static (10u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_61_78 : LocalName = LocalName :: pack_static (11u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (12u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_55_52_4C : LocalName = LocalName :: pack_static (13u32) ; +pub const ATOM_LOCALNAME__62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (14u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_74_65_6D_70_6C_61_74_65_69_64 : LocalName = LocalName :: pack_static (15u32) ; +pub const ATOM_LOCALNAME__66_65_47_61_75_73_73_69_61_6E_42_6C_75_72 : LocalName = LocalName :: pack_static (16u32) ; +pub const ATOM_LOCALNAME__73_75_62_73_63_72_69_70_74_73_68_69_66_74 : LocalName = LocalName :: pack_static (17u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_6E_73_3A_78_6C_69_6E_6B : LocalName = LocalName :: pack_static (18u32) ; +pub const ATOM_LOCALNAME__66_69_65_6C_64_73_65_74 : LocalName = LocalName :: pack_static (19u32) ; +pub const ATOM_LOCALNAME__73_70_72_65_61_64_6D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (20u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_74_61_72_67_65_74 : LocalName = LocalName :: pack_static (21u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_66_66_75_73_65_4C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (22u32) ; +pub const ATOM_LOCALNAME__66_65_74_75_72_62_75_6C_65_6E_63_65 : LocalName = LocalName :: pack_static (23u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_65_64_69_74_66_6F_63_75_73 : LocalName = LocalName :: pack_static (24u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_67_72_6F_75_70 : LocalName = LocalName :: pack_static (25u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (26u32) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_64_6F_77_6E : LocalName = LocalName :: pack_static (27u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6C_6F_72_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (28u32) ; +pub const ATOM_LOCALNAME__73_74_61_72_74_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (29u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_66_6F_63_75_73 : LocalName = LocalName :: pack_static (30u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_78_74_6D_65_6E_75 : LocalName = LocalName :: pack_static (31u32) ; +pub const ATOM_LOCALNAME__6C_6F_6E_67_64_65_73_63 : LocalName = LocalName :: pack_static (32u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_6C_65_76_61_6E_74 : LocalName = LocalName :: pack_static (33u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_72_69_6E_74 : LocalName = LocalName :: pack_static (34u32) ; +pub const ATOM_LOCALNAME__66_69_6C_6C_2D_72_75_6C_65 : LocalName = LocalName :: pack_static (35u32) ; +pub const ATOM_LOCALNAME__68_72_65_66_6C_61_6E_67 : LocalName = LocalName :: pack_static (36u32) ; +pub const ATOM_LOCALNAME__64_6F_6D_61_69_6E_6F_66_61_70_70_6C_69_63_61_74_69_6F_6E : LocalName = LocalName :: pack_static (37u32) ; +pub const ATOM_LOCALNAME__6B_65_79_74_69_6D_65_73 : LocalName = LocalName :: pack_static (38u32) ; +pub const ATOM_LOCALNAME__6E_75_6D_6F_63_74_61_76_65_73 : LocalName = LocalName :: pack_static (39u32) ; +pub const ATOM_LOCALNAME__70_61_72_74_69_61_6C_64_69_66_66 : LocalName = LocalName :: pack_static (40u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_62_65_64_62_79 : LocalName = LocalName :: pack_static (41u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E_2D_66_69_6C_74_65_72_73 : LocalName = LocalName :: pack_static (42u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_73_70_65_63_74_72_61_74_69_6F : LocalName = LocalName :: pack_static (43u32) ; +pub const ATOM_LOCALNAME__61_63_74_69_6F_6E_74_79_70_65 : LocalName = LocalName :: pack_static (44u32) ; +pub const ATOM_LOCALNAME__71_75_6F_74_69_65_6E_74 : LocalName = LocalName :: pack_static (45u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (46u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (47u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_74_79_6C_65_54_79_70_65 : LocalName = LocalName :: pack_static (48u32) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (49u32) ; +pub const ATOM_LOCALNAME__73_74_6F_70_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (50u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_74_79_70_65 : LocalName = LocalName :: pack_static (51u32) ; +pub const ATOM_LOCALNAME__66_65_70_6F_69_6E_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (52u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_6D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (53u32) ; +pub const ATOM_LOCALNAME__73_65_61_6D_6C_65_73_73 : LocalName = LocalName :: pack_static (54u32) ; +pub const ATOM_LOCALNAME__70_6C_61_69_6E_74_65_78_74 : LocalName = LocalName :: pack_static (55u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_6F_64_61_6C : LocalName = LocalName :: pack_static (56u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (57u32) ; +pub const ATOM_LOCALNAME__6E_75_6D_4F_63_74_61_76_65_73 : LocalName = LocalName :: pack_static (58u32) ; +pub const ATOM_LOCALNAME__6D_61_78_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (59u32) ; +pub const ATOM_LOCALNAME__70_69_65_63_65_77_69_73_65 : LocalName = LocalName :: pack_static (60u32) ; +pub const ATOM_LOCALNAME__63_65_6C_6C_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (61u32) ; +pub const ATOM_LOCALNAME__78_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (62u32) ; +pub const ATOM_LOCALNAME__6D_6F_6D_65_6E_74_61_62_6F_75_74 : LocalName = LocalName :: pack_static (63u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_69_6E_69_73_68 : LocalName = LocalName :: pack_static (64u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (65u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (66u32) ; +pub const ATOM_LOCALNAME__66_65_64_72_6F_70_73_68_61_64_6F_77 : LocalName = LocalName :: pack_static (67u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_68_61_73_70_6F_70_75_70 : LocalName = LocalName :: pack_static (68u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_7A : LocalName = LocalName :: pack_static (69u32) ; +pub const ATOM_LOCALNAME__64_65_63_6F_64_69_6E_67 : LocalName = LocalName :: pack_static (70u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_61_72_47_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (71u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (72u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6D_6F_76_65 : LocalName = LocalName :: pack_static (73u32) ; +pub const ATOM_LOCALNAME__63_6F_64_6F_6D_61_69_6E : LocalName = LocalName :: pack_static (74u32) ; +pub const ATOM_LOCALNAME__70_72_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (75u32) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_2D_62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (76u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_63_65_70_74 : LocalName = LocalName :: pack_static (77u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_73_72_63 : LocalName = LocalName :: pack_static (78u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_73_65_6C_65_63_74_61_62_6C_65 : LocalName = LocalName :: pack_static (79u32) ; +pub const ATOM_LOCALNAME__6B_65_79_50_6F_69_6E_74_73 : LocalName = LocalName :: pack_static (80u32) ; +pub const ATOM_LOCALNAME__64_69_66_66_75_73_65_63_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (81u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_72_63_72_6F_6C_65 : LocalName = LocalName :: pack_static (82u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_66_74_65_72_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (83u32) ; +pub const ATOM_LOCALNAME__66_6F_72_65_69_67_6E_4F_62_6A_65_63_74 : LocalName = LocalName :: pack_static (84u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_73_75_62_6D_69_74 : LocalName = LocalName :: pack_static (85u32) ; +pub const ATOM_LOCALNAME__73_63_72_6F_6C_6C_64_65_6C_61_79 : LocalName = LocalName :: pack_static (86u32) ; +pub const ATOM_LOCALNAME__73_74_72_65_74_63_68_79 : LocalName = LocalName :: pack_static (87u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_77_65_69_67_68_74 : LocalName = LocalName :: pack_static (88u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_66_74_65_72_70_72_69_6E_74 : LocalName = LocalName :: pack_static (89u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_72_65_73_73_65_64 : LocalName = LocalName :: pack_static (90u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (91u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_66_72_65_71_75_65_6E_63_79 : LocalName = LocalName :: pack_static (92u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (93u32) ; +pub const ATOM_LOCALNAME__6F_6E_68_61_73_68_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (94u32) ; +pub const ATOM_LOCALNAME__64_69_73_70_6C_61_79_73_74_79_6C_65 : LocalName = LocalName :: pack_static (95u32) ; +pub const ATOM_LOCALNAME__76_2D_68_61_6E_67_69_6E_67 : LocalName = LocalName :: pack_static (96u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_63_6F_6E_74_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (97u32) ; +pub const ATOM_LOCALNAME__68_74_74_70_2D_65_71_75_69_76 : LocalName = LocalName :: pack_static (98u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_69_6F_6E : LocalName = LocalName :: pack_static (99u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_61_64_76_2D_79 : LocalName = LocalName :: pack_static (100u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_73_64_65_6C_65_74_65 : LocalName = LocalName :: pack_static (101u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C_6C_65_64_62_79 : LocalName = LocalName :: pack_static (102u32) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_72_61_6E_67_65 : LocalName = LocalName :: pack_static (103u32) ; +pub const ATOM_LOCALNAME__6C_69_73_74_65_6E_65_72 : LocalName = LocalName :: pack_static (104u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (105u32) ; +pub const ATOM_LOCALNAME__64_6F_6D_69_6E_61_6E_74_2D_62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (106u32) ; +pub const ATOM_LOCALNAME__64_61_74_65_74_69_6D_65 : LocalName = LocalName :: pack_static (107u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_73_70_61_6E : LocalName = LocalName :: pack_static (108u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_6A_75_67_61_74_65 : LocalName = LocalName :: pack_static (109u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_64_6F_77_6E : LocalName = LocalName :: pack_static (110u32) ; +pub const ATOM_LOCALNAME__65_71_75_61_6C_72_6F_77_73 : LocalName = LocalName :: pack_static (111u32) ; +pub const ATOM_LOCALNAME__73_74_69_74_63_68_74_69_6C_65_73 : LocalName = LocalName :: pack_static (112u32) ; +pub const ATOM_LOCALNAME__65_64_67_65_6D_6F_64_65 : LocalName = LocalName :: pack_static (113u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_75_74_6F_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (114u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_74_6F_6D_69_63 : LocalName = LocalName :: pack_static (115u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_73_69_7A_65 : LocalName = LocalName :: pack_static (116u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_72_65_66 : LocalName = LocalName :: pack_static (117u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_75_6E_69_74_73 : LocalName = LocalName :: pack_static (118u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_70_61_74_68_75_6E_69_74_73 : LocalName = LocalName :: pack_static (119u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_68_65_63_6B_65_64 : LocalName = LocalName :: pack_static (120u32) ; +pub const ATOM_LOCALNAME__65_6E_61_62_6C_65_2D_62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (121u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_75_74 : LocalName = LocalName :: pack_static (122u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_76_65_72 : LocalName = LocalName :: pack_static (123u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_58 : LocalName = LocalName :: pack_static (124u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_62_6C_63_6C_69_63_6B : LocalName = LocalName :: pack_static (125u32) ; +pub const ATOM_LOCALNAME__78_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (126u32) ; +pub const ATOM_LOCALNAME__73_79_6D_6D_65_74_72_69_63 : LocalName = LocalName :: pack_static (127u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_66_66_75_73_65_6C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (128u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_6C_69_6E_65 : LocalName = LocalName :: pack_static (129u32) ; +pub const ATOM_LOCALNAME__6F_6E_69_6E_76_61_6C_69_64 : LocalName = LocalName :: pack_static (130u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_48_65_69_67_68_74 : LocalName = LocalName :: pack_static (131u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_64_75_72 : LocalName = LocalName :: pack_static (132u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_79 : LocalName = LocalName :: pack_static (133u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_46_65_61_74_75_72_65_73 : LocalName = LocalName :: pack_static (134u32) ; +pub const ATOM_LOCALNAME__65_6C_65_76_61_74_69_6F_6E : LocalName = LocalName :: pack_static (135u32) ; +pub const ATOM_LOCALNAME__76_69_65_77_74_61_72_67_65_74 : LocalName = LocalName :: pack_static (136u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C : LocalName = LocalName :: pack_static (137u32) ; +pub const ATOM_LOCALNAME__73_6F_6C_69_64_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (138u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_72_6D_69_6E_70_75_74 : LocalName = LocalName :: pack_static (139u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_70_61_74_68 : LocalName = LocalName :: pack_static (140u32) ; +pub const ATOM_LOCALNAME__73_70_65_6C_6C_63_68_65_63_6B : LocalName = LocalName :: pack_static (141u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (142u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_69_73_61_62_6C_65_64 : LocalName = LocalName :: pack_static (143u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_66_6F_72_6D_61_74 : LocalName = LocalName :: pack_static (144u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_70_6C_61_79 : LocalName = LocalName :: pack_static (145u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68 : LocalName = LocalName :: pack_static (146u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79_69 : LocalName = LocalName :: pack_static (147u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_66_6F_72_6D_61_74_61_73 : LocalName = LocalName :: pack_static (148u32) ; +pub const ATOM_LOCALNAME__66_65_6D_6F_72_70_68_6F_6C_6F_67_79 : LocalName = LocalName :: pack_static (149u32) ; +pub const ATOM_LOCALNAME__78_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (150u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_64_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (151u32) ; +pub const ATOM_LOCALNAME__7A_6F_6F_6D_41_6E_64_50_61_6E : LocalName = LocalName :: pack_static (152u32) ; +pub const ATOM_LOCALNAME__6C_65_74_74_65_72_2D_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (153u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_65_78_70_61_6E_64_65_64 : LocalName = LocalName :: pack_static (154u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_6C_61_62_65_6C : LocalName = LocalName :: pack_static (155u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (156u32) ; +pub const ATOM_LOCALNAME__65_71_75_69_76_61_6C_65_6E_74 : LocalName = LocalName :: pack_static (157u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_66_61_6D_69_6C_79 : LocalName = LocalName :: pack_static (158u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_6C_65_76_65_6C : LocalName = LocalName :: pack_static (159u32) ; +pub const ATOM_LOCALNAME__72_6F_77_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (160u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_55_6E_69_74_73 : LocalName = LocalName :: pack_static (161u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_52_65_66 : LocalName = LocalName :: pack_static (162u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_68_6F_72_69_7A_6F_6E_74_61_6C : LocalName = LocalName :: pack_static (163u32) ; +pub const ATOM_LOCALNAME__6D_75_6C_74_69_63_6F_6C : LocalName = LocalName :: pack_static (164u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_43_6F_6E_74_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (165u32) ; +pub const ATOM_LOCALNAME__74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (166u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_64_69_74_69_6F_6E : LocalName = LocalName :: pack_static (167u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_6E_6F_76_61_6C_69_64_61_74_65 : LocalName = LocalName :: pack_static (168u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_4E_61_6D_65 : LocalName = LocalName :: pack_static (169u32) ; +pub const ATOM_LOCALNAME__63_65_6C_6C_70_61_64_64_69_6E_67 : LocalName = LocalName :: pack_static (170u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6D_69_74_65_72_6C_69_6D_69_74 : LocalName = LocalName :: pack_static (171u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68 : LocalName = LocalName :: pack_static (172u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (173u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (174u32) ; +pub const ATOM_LOCALNAME__6C_6F_77_6C_69_6D_69_74 : LocalName = LocalName :: pack_static (175u32) ; +pub const ATOM_LOCALNAME__6F_70_74_67_72_6F_75_70 : LocalName = LocalName :: pack_static (176u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_73_74_61_6E_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (177u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_73_65_74 : LocalName = LocalName :: pack_static (178u32) ; +pub const ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (179u32) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (180u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_73_69_6E_73_65_72_74_65_64 : LocalName = LocalName :: pack_static (181u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_75_72_6C : LocalName = LocalName :: pack_static (182u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_77_65_69_67_68_74 : LocalName = LocalName :: pack_static (183u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_6C_61_63_65_68_6F_6C_64_65_72 : LocalName = LocalName :: pack_static (184u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_73_74_61_72_74 : LocalName = LocalName :: pack_static (185u32) ; +pub const ATOM_LOCALNAME__6F_6E_6F_6E_6C_69_6E_65 : LocalName = LocalName :: pack_static (186u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_62_61_73_65 : LocalName = LocalName :: pack_static (187u32) ; +pub const ATOM_LOCALNAME__61_6C_6C_6F_77_66_75_6C_6C_73_63_72_65_65_6E : LocalName = LocalName :: pack_static (188u32) ; +pub const ATOM_LOCALNAME__6E_6F_72_65_73_69_7A_65 : LocalName = LocalName :: pack_static (189u32) ; +pub const ATOM_LOCALNAME__73_70_72_65_61_64_4D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (190u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6E_76_6F_6C_76_65_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (191u32) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_43_6F_6E_65_41_6E_67_6C_65 : LocalName = LocalName :: pack_static (192u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_74_79_70_65 : LocalName = LocalName :: pack_static (193u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_69_6F_6E : LocalName = LocalName :: pack_static (194u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_61_78 : LocalName = LocalName :: pack_static (195u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_6E_61_6D_65 : LocalName = LocalName :: pack_static (196u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_6C_65_72_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (197u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_6C_65_63_74_65_64 : LocalName = LocalName :: pack_static (198u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_65_6E_63_74_79_70_65 : LocalName = LocalName :: pack_static (199u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_6C_69_73_74 : LocalName = LocalName :: pack_static (200u32) ; +pub const ATOM_LOCALNAME__72_6F_77_61_6C_69_67_6E : LocalName = LocalName :: pack_static (201u32) ; +pub const ATOM_LOCALNAME__73_63_61_6C_61_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (202u32) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_63_6F_6E_65_61_6E_67_6C_65 : LocalName = LocalName :: pack_static (203u32) ; +pub const ATOM_LOCALNAME__6D_70_72_65_73_63_72_69_70_74_73 : LocalName = LocalName :: pack_static (204u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_74_65_78_74 : LocalName = LocalName :: pack_static (205u32) ; +pub const ATOM_LOCALNAME__64_69_73_61_62_6C_65_64 : LocalName = LocalName :: pack_static (206u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_77_69_64_74_68 : LocalName = LocalName :: pack_static (207u32) ; +pub const ATOM_LOCALNAME__6E_6F_73_63_72_69_70_74 : LocalName = LocalName :: pack_static (208u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_73_69_7A_65 : LocalName = LocalName :: pack_static (209u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_55_6E_69_74_73 : LocalName = LocalName :: pack_static (210u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_74_73_69_7A_65 : LocalName = LocalName :: pack_static (211u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_61_73_74_65 : LocalName = LocalName :: pack_static (212u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_75_73_79 : LocalName = LocalName :: pack_static (213u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6E_74_72_6F_6C_73 : LocalName = LocalName :: pack_static (214u32) ; +pub const ATOM_LOCALNAME__6D_61_6C_69_67_6E_6D_61_72_6B : LocalName = LocalName :: pack_static (215u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6B_65_79_73_68_6F_72_74_63_75_74_73 : LocalName = LocalName :: pack_static (216u32) ; +pub const ATOM_LOCALNAME__63_61_6C_63_6D_6F_64_65 : LocalName = LocalName :: pack_static (217u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_6D_69_64 : LocalName = LocalName :: pack_static (218u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_72_6D_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (219u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_66_6C_6F_77_74_6F : LocalName = LocalName :: pack_static (220u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_6D_6F_74_69_6F_6E : LocalName = LocalName :: pack_static (221u32) ; +pub const ATOM_LOCALNAME__61_6D_70_6C_69_74_75_64_65 : LocalName = LocalName :: pack_static (222u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_69_6E : LocalName = LocalName :: pack_static (223u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_6F_73_69_6E_73_65_74 : LocalName = LocalName :: pack_static (224u32) ; +pub const ATOM_LOCALNAME__6C_65_6E_67_74_68_61_64_6A_75_73_74 : LocalName = LocalName :: pack_static (225u32) ; +pub const ATOM_LOCALNAME__64_69_66_66_75_73_65_43_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (226u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_50_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (227u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (228u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_44_65_66 : LocalName = LocalName :: pack_static (229u32) ; +pub const ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_75_6E_69_74_73 : LocalName = LocalName :: pack_static (230u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_6C_70_68_61 : LocalName = LocalName :: pack_static (231u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78 : LocalName = LocalName :: pack_static (232u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (233u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_75_72_69 : LocalName = LocalName :: pack_static (234u32) ; +pub const ATOM_LOCALNAME__66_65_53_70_65_63_75_6C_61_72_4C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (235u32) ; +pub const ATOM_LOCALNAME__76_2D_69_64_65_6F_67_72_61_70_68_69_63 : LocalName = LocalName :: pack_static (236u32) ; +pub const ATOM_LOCALNAME__73_74_64_44_65_76_69_61_74_69_6F_6E : LocalName = LocalName :: pack_static (237u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_75_62_6D_69_74 : LocalName = LocalName :: pack_static (238u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_73_69_7A_65_6D_75_6C_74_69_70_6C_69_65_72 : LocalName = LocalName :: pack_static (239u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_65_78_69_74 : LocalName = LocalName :: pack_static (240u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65 : LocalName = LocalName :: pack_static (241u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (242u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (243u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74 : LocalName = LocalName :: pack_static (244u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_2D_72_75_6C_65 : LocalName = LocalName :: pack_static (245u32) ; +pub const ATOM_LOCALNAME__63_6F_64_65_62_61_73_65 : LocalName = LocalName :: pack_static (246u32) ; +pub const ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (247u32) ; +pub const ATOM_LOCALNAME__76_2D_6D_61_74_68_65_6D_61_74_69_63_61_6C : LocalName = LocalName :: pack_static (248u32) ; +pub const ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72 : LocalName = LocalName :: pack_static (249u32) ; +pub const ATOM_LOCALNAME__6D_61_74_72_69_78_72_6F_77 : LocalName = LocalName :: pack_static (250u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_65_64 : LocalName = LocalName :: pack_static (251u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_68_72_65_66 : LocalName = LocalName :: pack_static (252u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_61_64_76_2D_78 : LocalName = LocalName :: pack_static (253u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_73 : LocalName = LocalName :: pack_static (254u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_75_72_72_65_6E_74 : LocalName = LocalName :: pack_static (255u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_63_72_6F_6C_6C : LocalName = LocalName :: pack_static (256u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_5A : LocalName = LocalName :: pack_static (257u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_66_6C_6F_77 : LocalName = LocalName :: pack_static (258u32) ; +pub const ATOM_LOCALNAME_ : LocalName = LocalName :: pack_static (259u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_67_65_68_69_64_65 : LocalName = LocalName :: pack_static (260u32) ; +pub const ATOM_LOCALNAME__76_69_73_69_62_69_6C_69_74_79 : LocalName = LocalName :: pack_static (261u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_6E_65_6E_74_54_72_61_6E_73_66_65_72 : LocalName = LocalName :: pack_static (262u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (263u32) ; +pub const ATOM_LOCALNAME__72_65_6E_64_65_72_69_6E_67_2D_69_6E_74_65_6E_74 : LocalName = LocalName :: pack_static (264u32) ; +pub const ATOM_LOCALNAME__69_6E_66_69_6E_69_74_79 : LocalName = LocalName :: pack_static (265u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6E_76_6F_6C_76_65_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (266u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_43_6F_75_6E_74 : LocalName = LocalName :: pack_static (267u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74_73_74_61_72_74 : LocalName = LocalName :: pack_static (268u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_79 : LocalName = LocalName :: pack_static (269u32) ; +pub const ATOM_LOCALNAME__64_69_72_65_63_74_69_6F_6E : LocalName = LocalName :: pack_static (270u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6C_6F_72_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (271u32) ; +pub const ATOM_LOCALNAME__74_61_62_69_6E_64_65_78 : LocalName = LocalName :: pack_static (272u32) ; +pub const ATOM_LOCALNAME__70_6C_61_63_65_68_6F_6C_64_65_72 : LocalName = LocalName :: pack_static (273u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_70_6F_73_65 : LocalName = LocalName :: pack_static (274u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (275u32) ; +pub const ATOM_LOCALNAME__66_65_44_72_6F_70_53_68_61_64_6F_77 : LocalName = LocalName :: pack_static (276u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_72_6F_6C_65 : LocalName = LocalName :: pack_static (277u32) ; +pub const ATOM_LOCALNAME__65_64_67_65_4D_6F_64_65 : LocalName = LocalName :: pack_static (278u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (279u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_67_65_72_73 : LocalName = LocalName :: pack_static (280u32) ; +pub const ATOM_LOCALNAME__73_74_64_64_65_76_69_61_74_69_6F_6E : LocalName = LocalName :: pack_static (281u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_73_74_61_72_74 : LocalName = LocalName :: pack_static (282u32) ; +pub const ATOM_LOCALNAME__63_61_70_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (283u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_79_70_65 : LocalName = LocalName :: pack_static (284u32) ; +pub const ATOM_LOCALNAME__75_6E_73_65_6C_65_63_74_61_62_6C_65 : LocalName = LocalName :: pack_static (285u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_74_79_6C_65_74_79_70_65 : LocalName = LocalName :: pack_static (286u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (287u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_6A_6F_69_6E : LocalName = LocalName :: pack_static (288u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_67_72_69_74_79 : LocalName = LocalName :: pack_static (289u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_68_61_6E_67_65_64 : LocalName = LocalName :: pack_static (290u32) ; +pub const ATOM_LOCALNAME__66_6F_72_65_69_67_6E_6F_62_6A_65_63_74 : LocalName = LocalName :: pack_static (291u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_6F_67_72_6F_75_70 : LocalName = LocalName :: pack_static (292u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_65_64_69_74_61_62_6C_65 : LocalName = LocalName :: pack_static (293u32) ; +pub const ATOM_LOCALNAME__74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (294u32) ; +pub const ATOM_LOCALNAME__73_74_61_74_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (295u32) ; +pub const ATOM_LOCALNAME__70_61_74_68_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (296u32) ; +pub const ATOM_LOCALNAME__64_69_76_65_72_67_65_6E_63_65 : LocalName = LocalName :: pack_static (297u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_68_69_64_64_65_6E : LocalName = LocalName :: pack_static (298u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_6C_65_61_76_65 : LocalName = LocalName :: pack_static (299u32) ; +pub const ATOM_LOCALNAME__6D_61_6C_69_67_6E_67_72_6F_75_70 : LocalName = LocalName :: pack_static (300u32) ; +pub const ATOM_LOCALNAME__6F_75_74_65_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (301u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_68_61_6E_6E_65_6C : LocalName = LocalName :: pack_static (302u32) ; +pub const ATOM_LOCALNAME__73_79_73_74_65_6D_6C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (303u32) ; +pub const ATOM_LOCALNAME__66_65_74_63_68_70_72_69_6F_72_69_74_79 : LocalName = LocalName :: pack_static (304u32) ; +pub const ATOM_LOCALNAME__70_6F_6C_79_6C_69_6E_65 : LocalName = LocalName :: pack_static (305u32) ; +pub const ATOM_LOCALNAME__6C_69_67_68_74_69_6E_67_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (306u32) ; +pub const ATOM_LOCALNAME__70_72_6F_70_65_72_74_79 : LocalName = LocalName :: pack_static (307u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_43_6F_6C_6F_72 : LocalName = LocalName :: pack_static (308u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_64_72_6F_70 : LocalName = LocalName :: pack_static (309u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_69_6E : LocalName = LocalName :: pack_static (310u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_69_66_69_63_61_74_69_6F_6E : LocalName = LocalName :: pack_static (311u32) ; +pub const ATOM_LOCALNAME__73_75_72_66_61_63_65_73_63_61_6C_65 : LocalName = LocalName :: pack_static (312u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_70_61_74_68 : LocalName = LocalName :: pack_static (313u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_55_6E_69_74_73 : LocalName = LocalName :: pack_static (314u32) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_64_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (315u32) ; +pub const ATOM_LOCALNAME__72_65_66_65_72_72_65_72_70_6F_6C_69_63_79 : LocalName = LocalName :: pack_static (316u32) ; +pub const ATOM_LOCALNAME__66_61_63_74_6F_72_69_61_6C : LocalName = LocalName :: pack_static (317u32) ; +pub const ATOM_LOCALNAME__68_69_64_65_66_6F_63_75_73 : LocalName = LocalName :: pack_static (318u32) ; +pub const ATOM_LOCALNAME__73_74_69_74_63_68_54_69_6C_65_73 : LocalName = LocalName :: pack_static (319u32) ; +pub const ATOM_LOCALNAME__61_72_61_62_69_63_2D_66_6F_72_6D : LocalName = LocalName :: pack_static (320u32) ; +pub const ATOM_LOCALNAME__62_6C_6F_63_6B_71_75_6F_74_65 : LocalName = LocalName :: pack_static (321u32) ; +pub const ATOM_LOCALNAME__6D_6C_61_62_65_6C_65_64_74_72 : LocalName = LocalName :: pack_static (322u32) ; +pub const ATOM_LOCALNAME__6E_6F_76_61_6C_69_64_61_74_65 : LocalName = LocalName :: pack_static (323u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_6F_70_73_74_61_74_65 : LocalName = LocalName :: pack_static (324u32) ; +pub const ATOM_LOCALNAME__6F_6E_65_72_72_6F_72_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (325u32) ; +pub const ATOM_LOCALNAME__66_65_53_70_6F_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (326u32) ; +pub const ATOM_LOCALNAME__73_74_6F_70_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (327u32) ; +pub const ATOM_LOCALNAME__72_65_61_64_6F_6E_6C_79 : LocalName = LocalName :: pack_static (328u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_55_6E_69_74_73 : LocalName = LocalName :: pack_static (329u32) ; +pub const ATOM_LOCALNAME__6E_61_74_75_72_61_6C_6E_75_6D_62_65_72_73 : LocalName = LocalName :: pack_static (330u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_75_6E_69_74_73 : LocalName = LocalName :: pack_static (331u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_6D_69_6C_79 : LocalName = LocalName :: pack_static (332u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_75_6E_69_74_73 : LocalName = LocalName :: pack_static (333u32) ; +pub const ATOM_LOCALNAME__6F_72_69_65_6E_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (334u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (335u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78_74_65_78_74 : LocalName = LocalName :: pack_static (336u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_54_79_70_65 : LocalName = LocalName :: pack_static (337u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_73_73_6B_65_79 : LocalName = LocalName :: pack_static (338u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_50_61_74_68_55_6E_69_74_73 : LocalName = LocalName :: pack_static (339u32) ; +pub const ATOM_LOCALNAME__6B_65_79_53_70_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (340u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_6F_72_61_67_65 : LocalName = LocalName :: pack_static (341u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_79_6C_65 : LocalName = LocalName :: pack_static (342u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_73_70_6C_61_63_65_6D_65_6E_74_6D_61_70 : LocalName = LocalName :: pack_static (343u32) ; +pub const ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72_73 : LocalName = LocalName :: pack_static (344u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (345u32) ; +pub const ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_55_6E_69_74_73 : LocalName = LocalName :: pack_static (346u32) ; +pub const ATOM_LOCALNAME__73_75_72_66_61_63_65_53_63_61_6C_65 : LocalName = LocalName :: pack_static (347u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_61_63_74_69_6F_6E : LocalName = LocalName :: pack_static (348u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (349u32) ; +pub const ATOM_LOCALNAME__63_61_6C_63_4D_6F_64_65 : LocalName = LocalName :: pack_static (350u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_6C_61_6E_67 : LocalName = LocalName :: pack_static (351u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_73_74_61_6E_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (352u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_73_74_79_6C_65 : LocalName = LocalName :: pack_static (353u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (354u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_6F_75_6E_63_65 : LocalName = LocalName :: pack_static (355u32) ; +pub const ATOM_LOCALNAME__62_65_76_65_6C_6C_65_64 : LocalName = LocalName :: pack_static (356u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_75_74 : LocalName = LocalName :: pack_static (357u32) ; +pub const ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (358u32) ; +pub const ATOM_LOCALNAME__70_72_65_66_65_74_63_68 : LocalName = LocalName :: pack_static (359u32) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65_76_61_6C_75_65_73 : LocalName = LocalName :: pack_static (360u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_73_63_6F_70_65 : LocalName = LocalName :: pack_static (361u32) ; +pub const ATOM_LOCALNAME__6D_61_6E_69_66_65_73_74 : LocalName = LocalName :: pack_static (362u32) ; +pub const ATOM_LOCALNAME__6E_6F_6D_6F_64_75_6C_65 : LocalName = LocalName :: pack_static (363u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_76_61_72_69_61_6E_74 : LocalName = LocalName :: pack_static (364u32) ; +pub const ATOM_LOCALNAME__76_2D_61_6C_70_68_61_62_65_74_69_63 : LocalName = LocalName :: pack_static (365u32) ; +pub const ATOM_LOCALNAME__73_63_72_6F_6C_6C_69_6E_67 : LocalName = LocalName :: pack_static (366u32) ; +pub const ATOM_LOCALNAME__6B_65_79_73_70_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (367u32) ; +pub const ATOM_LOCALNAME__76_61_72_69_61_6E_63_65 : LocalName = LocalName :: pack_static (368u32) ; +pub const ATOM_LOCALNAME__66_65_4D_6F_72_70_68_6F_6C_6F_67_79 : LocalName = LocalName :: pack_static (369u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_6C_70_68_61 : LocalName = LocalName :: pack_static (370u32) ; +pub const ATOM_LOCALNAME__76_69_65_77_54_61_72_67_65_74 : LocalName = LocalName :: pack_static (371u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6F_72_69_65_6E_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (372u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (373u32) ; +pub const ATOM_LOCALNAME__6F_6E_6C_61_6E_67_75_61_67_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (374u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_6E_74_72_6F_6C_73_65_6C_65_63_74 : LocalName = LocalName :: pack_static (375u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_75_70 : LocalName = LocalName :: pack_static (376u32) ; +pub const ATOM_LOCALNAME__69_6E_70_75_74_6D_6F_64_65 : LocalName = LocalName :: pack_static (377u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (378u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_2D_73_72_63 : LocalName = LocalName :: pack_static (379u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_61_64_6F_6E_6C_79 : LocalName = LocalName :: pack_static (380u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_65_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (381u32) ; +pub const ATOM_LOCALNAME__6D_75_6C_74_69_70_6C_65 : LocalName = LocalName :: pack_static (382u32) ; +pub const ATOM_LOCALNAME__6F_6E_75_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (383u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78 : LocalName = LocalName :: pack_static (384u32) ; +pub const ATOM_LOCALNAME__72_65_76_65_72_73_65_64 : LocalName = LocalName :: pack_static (385u32) ; +pub const ATOM_LOCALNAME__6F_6E_6F_66_66_6C_69_6E_65 : LocalName = LocalName :: pack_static (386u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78_74_65_78_74 : LocalName = LocalName :: pack_static (387u32) ; +pub const ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_72_65_73_6F_75_72_63_65_73_72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (388u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (389u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_73_69_7A_65 : LocalName = LocalName :: pack_static (390u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_65_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (391u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_66_6F_6E_74 : LocalName = LocalName :: pack_static (392u32) ; +pub const ATOM_LOCALNAME__66_69_6C_6C_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (393u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_61_6C_67_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (394u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_62_6F_72_64_65_72 : LocalName = LocalName :: pack_static (395u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_61_72_72_61_79 : LocalName = LocalName :: pack_static (396u32) ; +pub const ATOM_LOCALNAME__65_6E_63_6F_64_69_6E_67 : LocalName = LocalName :: pack_static (397u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (398u32) ; +pub const ATOM_LOCALNAME__6D_6F_76_61_62_6C_65_6C_69_6D_69_74_73 : LocalName = LocalName :: pack_static (399u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_72_65_73 : LocalName = LocalName :: pack_static (400u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_72_65_74_63_68 : LocalName = LocalName :: pack_static (401u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_50_61_74_68 : LocalName = LocalName :: pack_static (402u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_73_68_6F_77 : LocalName = LocalName :: pack_static (403u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_61_6E_75_6D_62_65_72 : LocalName = LocalName :: pack_static (404u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_65_6E_74_65_72 : LocalName = LocalName :: pack_static (405u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_72_6F_70_65_66_66_65_63_74 : LocalName = LocalName :: pack_static (406u32) ; +pub const ATOM_LOCALNAME__70_72_6F_67_72_65_73_73 : LocalName = LocalName :: pack_static (407u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_61_76_61_69_6C_61_62_6C_65 : LocalName = LocalName :: pack_static (408u32) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65_74_79_70_65 : LocalName = LocalName :: pack_static (409u32) ; +pub const ATOM_LOCALNAME__6E_6F_66_72_61_6D_65_73 : LocalName = LocalName :: pack_static (410u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_45_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (411u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (412u32) ; +pub const ATOM_LOCALNAME__6F_74_68_65_72_77_69_73_65 : LocalName = LocalName :: pack_static (413u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (414u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (415u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_69_74_6C_65 : LocalName = LocalName :: pack_static (416u32) ; +pub const ATOM_LOCALNAME__66_65_4F_66_66_73_65_74 : LocalName = LocalName :: pack_static (417u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_63_72_65_74 : LocalName = LocalName :: pack_static (418u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6E_6F_77 : LocalName = LocalName :: pack_static (419u32) ; +pub const ATOM_LOCALNAME__65_6D_70_74_79_73_65_74 : LocalName = LocalName :: pack_static (420u32) ; +pub const ATOM_LOCALNAME__64_65_74_65_72_6D_69_6E_61_6E_74 : LocalName = LocalName :: pack_static (421u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (422u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_76_61_72_69_61_6E_74 : LocalName = LocalName :: pack_static (423u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_78 : LocalName = LocalName :: pack_static (424u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (425u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_6F_75_74 : LocalName = LocalName :: pack_static (426u32) ; +pub const ATOM_LOCALNAME__6D_65_6E_75_69_74_65_6D : LocalName = LocalName :: pack_static (427u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_64 : LocalName = LocalName :: pack_static (428u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65_2D_73_68_69_66_74 : LocalName = LocalName :: pack_static (429u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_73_69_74_65 : LocalName = LocalName :: pack_static (430u32) ; +pub const ATOM_LOCALNAME__70_61_74_68_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (431u32) ; +pub const ATOM_LOCALNAME__73_74_61_72_74_4F_66_66_73_65_74 : LocalName = LocalName :: pack_static (432u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_76_65_72_74_69_63_61_6C : LocalName = LocalName :: pack_static (433u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_50_61_74_68 : LocalName = LocalName :: pack_static (434u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_61_64_79_73_74_61_74_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (435u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (436u32) ; +pub const ATOM_LOCALNAME__61_63_63_75_6D_75_6C_61_74_65 : LocalName = LocalName :: pack_static (437u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (438u32) ; +pub const ATOM_LOCALNAME__73_68_61_70_65_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (439u32) ; +pub const ATOM_LOCALNAME__66_69_67_63_61_70_74_69_6F_6E : LocalName = LocalName :: pack_static (440u32) ; +pub const ATOM_LOCALNAME__74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (441u32) ; +pub const ATOM_LOCALNAME__6D_69_6E_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (442u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_65_78_74_65_6E_73_69_6F_6E_73 : LocalName = LocalName :: pack_static (443u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (444u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_78 : LocalName = LocalName :: pack_static (445u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_61_72_67_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (446u32) ; +pub const ATOM_LOCALNAME__64_6F_77_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (447u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65_73_74_61_72_74 : LocalName = LocalName :: pack_static (448u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (449u32) ; +pub const ATOM_LOCALNAME__73_75_70_65_72_73_63_72_69_70_74_73_68_69_66_74 : LocalName = LocalName :: pack_static (450u32) ; +pub const ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_52_65_73_6F_75_72_63_65_73_52_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (451u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (452u32) ; +pub const ATOM_LOCALNAME__70_61_6E_6F_73_65_2D_31 : LocalName = LocalName :: pack_static (453u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_52_65_73 : LocalName = LocalName :: pack_static (454u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (455u32) ; +pub const ATOM_LOCALNAME__6D_69_73_73_69_6E_67_2D_67_6C_79_70_68 : LocalName = LocalName :: pack_static (456u32) ; +pub const ATOM_LOCALNAME__63_61_72_74_65_73_69_61_6E_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (457u32) ; +pub const ATOM_LOCALNAME__66_65_6D_65_72_67_65_6E_6F_64_65 : LocalName = LocalName :: pack_static (458u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_6F_76_65_72 : LocalName = LocalName :: pack_static (459u32) ; +pub const ATOM_LOCALNAME__66_65_73_70_65_63_75_6C_61_72_6C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (460u32) ; +pub const ATOM_LOCALNAME__6D_70_68_61_6E_74_6F_6D : LocalName = LocalName :: pack_static (461u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_63_74_69_76_65_64_65_73_63_65_6E_64_61_6E_74 : LocalName = LocalName :: pack_static (462u32) ; +pub const ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74_69_61_6C_65 : LocalName = LocalName :: pack_static (463u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_69_6E_76_61_6C_69_64 : LocalName = LocalName :: pack_static (464u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_66_65_61_74_75_72_65_73 : LocalName = LocalName :: pack_static (465u32) ; +pub const ATOM_LOCALNAME__61_64_64_69_74_69_76_65 : LocalName = LocalName :: pack_static (466u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (467u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_69_74_65_6D : LocalName = LocalName :: pack_static (468u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (469u32) ; +pub const ATOM_LOCALNAME__72_61_74_69_6F_6E_61_6C_73 : LocalName = LocalName :: pack_static (470u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_63_61_70 : LocalName = LocalName :: pack_static (471u32) ; +pub const ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (472u32) ; +pub const ATOM_LOCALNAME__75_6E_69_74_73_2D_70_65_72_2D_65_6D : LocalName = LocalName :: pack_static (473u32) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65_56_61_6C_75_65_73 : LocalName = LocalName :: pack_static (474u32) ; +pub const ATOM_LOCALNAME__6D_6D_75_6C_74_69_73_63_72_69_70_74_73 : LocalName = LocalName :: pack_static (475u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6F_77_6E_73 : LocalName = LocalName :: pack_static (476u32) ; +pub const ATOM_LOCALNAME__69_64_65_6F_67_72_61_70_68_69_63 : LocalName = LocalName :: pack_static (477u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_61_6E_63_68_6F_72 : LocalName = LocalName :: pack_static (478u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_6F_72_74 : LocalName = LocalName :: pack_static (479u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_61_74_61_74_79_70_65 : LocalName = LocalName :: pack_static (480u32) ; +pub const ATOM_LOCALNAME__69_72_72_65_6C_65_76_61_6E_74 : LocalName = LocalName :: pack_static (481u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_73_70_65_63_74_52_61_74_69_6F : LocalName = LocalName :: pack_static (482u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_57_69_64_74_68 : LocalName = LocalName :: pack_static (483u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_61_6C_69_67_6E : LocalName = LocalName :: pack_static (484u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_70_72_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (485u32) ; +pub const ATOM_LOCALNAME__6C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (486u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_6F_70_79 : LocalName = LocalName :: pack_static (487u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_69_6C_74_65_72_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (488u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_64_65_66 : LocalName = LocalName :: pack_static (489u32) ; +pub const ATOM_LOCALNAME__66_65_50_6F_69_6E_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (490u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_65_72_2D_65_76_65_6E_74_73 : LocalName = LocalName :: pack_static (491u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_73_70_6C_61_63_65_6D_65_6E_74_4D_61_70 : LocalName = LocalName :: pack_static (492u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (493u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_73_70_61_6E : LocalName = LocalName :: pack_static (494u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_6E : LocalName = LocalName :: pack_static (495u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (496u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (497u32) ; +pub const ATOM_LOCALNAME__6F_63_63_75_72_72_65_6E_63_65 : LocalName = LocalName :: pack_static (498u32) ; +pub const ATOM_LOCALNAME__6D_75_6E_64_65_72_6F_76_65_72 : LocalName = LocalName :: pack_static (499u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (500u32) ; +pub const ATOM_LOCALNAME__66_65_4D_65_72_67_65_4E_6F_64_65 : LocalName = LocalName :: pack_static (501u32) ; +pub const ATOM_LOCALNAME__6D_65_6E_63_6C_6F_73_65 : LocalName = LocalName :: pack_static (502u32) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_73_63_6F_70_65 : LocalName = LocalName :: pack_static (503u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_77_69_64_74_68 : LocalName = LocalName :: pack_static (504u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74_75_6E_64_65_72 : LocalName = LocalName :: pack_static (505u32) ; +pub const ATOM_LOCALNAME__66_65_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (506u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_77_69_64_74_68 : LocalName = LocalName :: pack_static (507u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_61_72_65_61 : LocalName = LocalName :: pack_static (508u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_73_69_74_65 : LocalName = LocalName :: pack_static (509u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_70_72_6F_70 : LocalName = LocalName :: pack_static (510u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_73_65_63_74 : LocalName = LocalName :: pack_static (511u32) ; +pub const ATOM_LOCALNAME__73_65_6D_61_6E_74_69_63_73 : LocalName = LocalName :: pack_static (512u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65_2D_61_64_6A_75_73_74 : LocalName = LocalName :: pack_static (513u32) ; +pub const ATOM_LOCALNAME__77_6F_72_64_2D_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (514u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_65_6C_6C_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (515u32) ; +pub const ATOM_LOCALNAME__63_72_6F_73_73_6F_72_69_67_69_6E : LocalName = LocalName :: pack_static (516u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_73_74_61_72_74 : LocalName = LocalName :: pack_static (517u32) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_64_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (518u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6E_61_6D_65 : LocalName = LocalName :: pack_static (519u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_78 : LocalName = LocalName :: pack_static (520u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (521u32) ; +pub const ATOM_LOCALNAME__65_75_6C_65_72_67_61_6D_6D_61 : LocalName = LocalName :: pack_static (522u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_74_61_69_6C_73 : LocalName = LocalName :: pack_static (523u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_6C_61_74_65 : LocalName = LocalName :: pack_static (524u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_75_6E_69_74_73 : LocalName = LocalName :: pack_static (525u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_63_72_69_70_74_74_79_70_65 : LocalName = LocalName :: pack_static (526u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_65_6D_61_74_69_63_61_6C : LocalName = LocalName :: pack_static (527u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_65_6E_74_65_72 : LocalName = LocalName :: pack_static (528u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_67_72_61_62 : LocalName = LocalName :: pack_static (529u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_69_6E : LocalName = LocalName :: pack_static (530u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_72_6F_70_65_72_74_79_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (531u32) ; +pub const ATOM_LOCALNAME__7A_6F_6F_6D_61_6E_64_70_61_6E : LocalName = LocalName :: pack_static (532u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_63_74_75_61_74_65 : LocalName = LocalName :: pack_static (533u32) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_62_69_64_69 : LocalName = LocalName :: pack_static (534u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_65_73_73_61_67_65 : LocalName = LocalName :: pack_static (535u32) ; +pub const ATOM_LOCALNAME__66_65_73_70_6F_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (536u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_2D_70_61_74_68 : LocalName = LocalName :: pack_static (537u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_77_68_65_65_6C : LocalName = LocalName :: pack_static (538u32) ; +pub const ATOM_LOCALNAME__6D_61_72_67_69_6E_77_69_64_74_68 : LocalName = LocalName :: pack_static (539u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_65_72_72_6F_72_6D_65_73_73_61_67_65 : LocalName = LocalName :: pack_static (540u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_46_72_65_71_75_65_6E_63_79 : LocalName = LocalName :: pack_static (541u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_6D_69_6E_73_69_7A_65 : LocalName = LocalName :: pack_static (542u32) ; +pub const ATOM_LOCALNAME__73_79_73_74_65_6D_4C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (543u32) ; +pub const ATOM_LOCALNAME__63_6F_64_65_74_79_70_65 : LocalName = LocalName :: pack_static (544u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_64_65_63_6F_72_61_74_69_6F_6E : LocalName = LocalName :: pack_static (545u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_74_65_72 : LocalName = LocalName :: pack_static (546u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_43_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (547u32) ; +pub const ATOM_LOCALNAME__66_65_54_75_72_62_75_6C_65_6E_63_65 : LocalName = LocalName :: pack_static (548u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65 : LocalName = LocalName :: pack_static (549u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_70_74_2D_63_68_61_72_73_65_74 : LocalName = LocalName :: pack_static (550u32) ; +pub const ATOM_LOCALNAME__64_72_61_67_67_61_62_6C_65 : LocalName = LocalName :: pack_static (551u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_63_6F_6E_74_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (552u32) ; +pub const ATOM_LOCALNAME__6F_6E_6C_6F_73_65_63_61_70_74_75_72_65 : LocalName = LocalName :: pack_static (553u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_63_72_69_70_74_54_79_70_65 : LocalName = LocalName :: pack_static (554u32) ; +pub const ATOM_LOCALNAME__72_6F_77_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (555u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_61_6C_47_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (556u32) ; +pub const ATOM_LOCALNAME__79_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (557u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_73_70_61_63_65 : LocalName = LocalName :: pack_static (558u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_69_76_65 : LocalName = LocalName :: pack_static (559u32) ; +pub const ATOM_LOCALNAME__67_72_6F_75_70_61_6C_69_67_6E : LocalName = LocalName :: pack_static (560u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_70_65_61_74 : LocalName = LocalName :: pack_static (561u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_67_65_73_68_6F_77 : LocalName = LocalName :: pack_static (562u32) ; +pub const ATOM_LOCALNAME__76_65_63_74_6F_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (563u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (564u32) ; +pub const ATOM_LOCALNAME__65_71_75_61_6C_63_6F_6C_75_6D_6E_73 : LocalName = LocalName :: pack_static (565u32) ; +pub const ATOM_LOCALNAME__66_61_63_74_6F_72_6F_66 : LocalName = LocalName :: pack_static (566u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65_65_6E_64 : LocalName = LocalName :: pack_static (567u32) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_70_72_65_73_73 : LocalName = LocalName :: pack_static (568u32) ; +pub const ATOM_LOCALNAME__6F_70_65_72_61_74_6F_72 : LocalName = LocalName :: pack_static (569u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_55_6E_69_74_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (570u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_6E_74_65_78_74_6D_65_6E_75 : LocalName = LocalName :: pack_static (571u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (572u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_65_76_65_6C : LocalName = LocalName :: pack_static (573u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_59 : LocalName = LocalName :: pack_static (574u32) ; +pub const ATOM_LOCALNAME__6D_65_64_69_75_6D_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (575u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_4D_6F_74_69_6F_6E : LocalName = LocalName :: pack_static (576u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (577u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (578u32) ; +pub const ATOM_LOCALNAME__61_6C_70_68_61_62_65_74_69_63 : LocalName = LocalName :: pack_static (579u32) ; +pub const ATOM_LOCALNAME__6B_65_79_70_6F_69_6E_74_73 : LocalName = LocalName :: pack_static (580u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_65_6E_64 : LocalName = LocalName :: pack_static (581u32) ; +pub const ATOM_LOCALNAME__6C_61_70_6C_61_63_69_61_6E : LocalName = LocalName :: pack_static (582u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (583u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_49_74_65_6D : LocalName = LocalName :: pack_static (584u32) ; +pub const ATOM_LOCALNAME__66_65_67_61_75_73_73_69_61_6E_62_6C_75_72 : LocalName = LocalName :: pack_static (585u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_79 : LocalName = LocalName :: pack_static (586u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79 : LocalName = LocalName :: pack_static (587u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_6E_65_6E_74_74_72_61_6E_73_66_65_72 : LocalName = LocalName :: pack_static (588u32) ; +pub const ATOM_LOCALNAME__6D_65_74_61_64_61_74_61 : LocalName = LocalName :: pack_static (589u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_45_78_74_65_6E_73_69_6F_6E_73 : LocalName = LocalName :: pack_static (590u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (591u32) ; +pub const ATOM_LOCALNAME__6C_65_6E_67_74_68_41_64_6A_75_73_74 : LocalName = LocalName :: pack_static (592u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_43_6F_6E_74_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (593u32) ; +pub const ATOM_LOCALNAME__6D_61_72_67_69_6E_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (594u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_6E_61_6D_65 : LocalName = LocalName :: pack_static (595u32) ; +pub const ATOM_LOCALNAME__79_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (596u32) ; +pub const ATOM_LOCALNAME__6B_65_79_54_69_6D_65_73 : LocalName = LocalName :: pack_static (597u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_44_75_72 : LocalName = LocalName :: pack_static (598u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_62_72_65_61_6B : LocalName = LocalName :: pack_static (599u32) ; +pub const ATOM_LOCALNAME__2A : LocalName = LocalName :: pack_inline (10752u64 , 1u8) ; +pub const ATOM_LOCALNAME__61 : LocalName = LocalName :: pack_inline (24832u64 , 1u8) ; +pub const ATOM_LOCALNAME__61_62_62_72 : LocalName = LocalName :: pack_inline (491276886272u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_62_73 : LocalName = LocalName :: pack_inline (1935827200u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74 : LocalName = LocalName :: pack_inline (32772479036645632u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_63_65_70_74 : LocalName = LocalName :: pack_inline (32774678059901184u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_72_6F_6E_79_6D : LocalName = LocalName :: pack_inline (7888457647255675136u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (31084746153091328u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_74_69_76_65 : LocalName = LocalName :: pack_inline (28559167944089856u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_74_75_61_74_65 : LocalName = LocalName :: pack_inline (7310575252220895488u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_64_64_72_65_73_73 : LocalName = LocalName :: pack_inline (8319104478668415232u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E : LocalName = LocalName :: pack_inline (121390429397248u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959284992u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_6C_74 : LocalName = LocalName :: pack_inline (1953259776u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_6C_74_69_6D_67 : LocalName = LocalName :: pack_inline (29112222293451008u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_6C_74_74_65_78_74 : LocalName = LocalName :: pack_inline (8392569456448790784u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_6E_64 : LocalName = LocalName :: pack_inline (1684955392u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65 : LocalName = LocalName :: pack_inline (7310575217677328640u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_70_70_6C_65_74 : LocalName = LocalName :: pack_inline (32762613715722496u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_70_70_6C_79 : LocalName = LocalName :: pack_inline (133506649841920u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_70_70_72_6F_78 : LocalName = LocalName :: pack_inline (33899534508646656u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_73 : LocalName = LocalName :: pack_inline (32492094982611200u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_73_68 : LocalName = LocalName :: pack_inline (7526481874927116544u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_74 : LocalName = LocalName :: pack_inline (32773569959321856u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_74_68 : LocalName = LocalName :: pack_inline (7526763349903827200u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_73_63 : LocalName = LocalName :: pack_inline (27992893401751808u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_73_63_68 : LocalName = LocalName :: pack_inline (7521982673346257152u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_68_69_76_65 : LocalName = LocalName :: pack_inline (7311146942148534528u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_72_6F_6C_65 : LocalName = LocalName :: pack_inline (7308338832400867584u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_65_63 : LocalName = LocalName :: pack_inline (27977568958439680u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_65_63_68 : LocalName = LocalName :: pack_inline (7521967348902945024u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_69_6E : LocalName = LocalName :: pack_inline (31078191748768000u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_69_6E_68 : LocalName = LocalName :: pack_inline (7525067971693273344u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_74_61_6E : LocalName = LocalName :: pack_inline (31069399950713088u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_74_61_6E_68 : LocalName = LocalName :: pack_inline (7525059179895218432u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_65_61 : LocalName = LocalName :: pack_inline (418313822464u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_72_67 : LocalName = LocalName :: pack_inline (1735549184u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_72_74_69_63_6C_65 : LocalName = LocalName :: pack_inline (7308325599891841280u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_73_63_65_6E_74 : LocalName = LocalName :: pack_inline (32772479037694208u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_73_69_64_65 : LocalName = LocalName :: pack_inline (111481940304128u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_73_79_6E_63 : LocalName = LocalName :: pack_inline (109326135156992u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_75_64_69_6F : LocalName = LocalName :: pack_inline (122498447663360u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_78_69_73 : LocalName = LocalName :: pack_inline (495690735872u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_7A_69_6D_75_74_68 : LocalName = LocalName :: pack_inline (7526769990024454400u64 , 7u8) ; +pub const ATOM_LOCALNAME__62 : LocalName = LocalName :: pack_inline (25088u64 , 1u8) ; +pub const ATOM_LOCALNAME__62_61_73_65 : LocalName = LocalName :: pack_inline (435727458816u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_62_6F_78 : LocalName = LocalName :: pack_inline (517264794112u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_64_69 : LocalName = LocalName :: pack_inline (1768186368u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_64_6F : LocalName = LocalName :: pack_inline (1868849664u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_65_67_69_6E : LocalName = LocalName :: pack_inline (121398985318912u64 , 5u8) ; +pub const ATOM_LOCALNAME__62_67_63_6F_6C_6F_72 : LocalName = LocalName :: pack_inline (8245928668403556864u64 , 7u8) ; +pub const ATOM_LOCALNAME__62_67_73_6F_75_6E_64 : LocalName = LocalName :: pack_inline (7236850772768940544u64 , 7u8) ; +pub const ATOM_LOCALNAME__62_69_61_73 : LocalName = LocalName :: pack_inline (495555535360u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_69_67 : LocalName = LocalName :: pack_inline (1734959616u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959285248u64 , 5u8) ; +pub const ATOM_LOCALNAME__62_6F_64_79 : LocalName = LocalName :: pack_inline (521376064000u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_6F_72_64_65_72 : LocalName = LocalName :: pack_inline (32199629436051968u64 , 6u8) ; +pub const ATOM_LOCALNAME__62_72 : LocalName = LocalName :: pack_inline (7496192u64 , 2u8) ; +pub const ATOM_LOCALNAME__62_75_74_74_6F_6E : LocalName = LocalName :: pack_inline (31084793398911488u64 , 6u8) ; +pub const ATOM_LOCALNAME__62_76_61_72 : LocalName = LocalName :: pack_inline (491261420032u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_79 : LocalName = LocalName :: pack_inline (7954944u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_61_6E_76_61_73 : LocalName = LocalName :: pack_inline (32476783607636736u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_61_70_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015409509120u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_61_72_64 : LocalName = LocalName :: pack_inline (431415714560u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_65_69_6C_69_6E_67 : LocalName = LocalName :: pack_inline (7453010347690386176u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_65_6E_74_65_72 : LocalName = LocalName :: pack_inline (32199698087764736u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_68_61_72 : LocalName = LocalName :: pack_inline (491260502784u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_68_61_72_6F_66_66 : LocalName = LocalName :: pack_inline (7378707576544322304u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_68_61_72_73_65_74 : LocalName = LocalName :: pack_inline (8387236816145113856u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_68_65_63_6B_65_64 : LocalName = LocalName :: pack_inline (7234306451087844096u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_69 : LocalName = LocalName :: pack_inline (6906624u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_69_72_63_6C_65 : LocalName = LocalName :: pack_inline (28548147024847616u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_69_74_65 : LocalName = LocalName :: pack_inline (435744760576u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6C_61_73_73 : LocalName = LocalName :: pack_inline (126939392926464u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_61_73_73_69_64 : LocalName = LocalName :: pack_inline (7235441215740338944u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6C_65_61_72 : LocalName = LocalName :: pack_inline (125762638996224u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_69_70 : LocalName = LocalName :: pack_inline (482805048064u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6C_6F_73_65 : LocalName = LocalName :: pack_inline (111546465018624u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_6F_73_75_72_65 : LocalName = LocalName :: pack_inline (7310034283826799360u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6E : LocalName = LocalName :: pack_inline (7234304u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_6F_64_65 : LocalName = LocalName :: pack_inline (435476718336u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_6C : LocalName = LocalName :: pack_inline (1819239168u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72 : LocalName = LocalName :: pack_inline (125822886175488u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_73 : LocalName = LocalName :: pack_inline (495740478208u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_73_70_61_6E : LocalName = LocalName :: pack_inline (7953762057955795712u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_61_63_74 : LocalName = LocalName :: pack_inline (8386654066594243328u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_6F_73_65 : LocalName = LocalName :: pack_inline (7310309148815483648u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74 : LocalName = LocalName :: pack_inline (8389754706581218048u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6F_72_64_73 : LocalName = LocalName :: pack_inline (32480064980345600u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_6F_73 : LocalName = LocalName :: pack_inline (1936679680u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_73_68 : LocalName = LocalName :: pack_inline (448613278464u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_74 : LocalName = LocalName :: pack_inline (1953456896u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_74_68 : LocalName = LocalName :: pack_inline (448630055680u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_73_63 : LocalName = LocalName :: pack_inline (1668506368u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_73_63_68 : LocalName = LocalName :: pack_inline (448345105152u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_73_79_6D_62_6F_6C : LocalName = LocalName :: pack_inline (7813572100839662336u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_75_72_6C : LocalName = LocalName :: pack_inline (465776763648u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_75_72_73_6F_72 : LocalName = LocalName :: pack_inline (32210688977232640u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_78 : LocalName = LocalName :: pack_inline (7889664u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_79 : LocalName = LocalName :: pack_inline (7955200u64 , 2u8) ; +pub const ATOM_LOCALNAME__64 : LocalName = LocalName :: pack_inline (25600u64 , 1u8) ; +pub const ATOM_LOCALNAME__64_61_74_61 : LocalName = LocalName :: pack_inline (418564367360u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_61_74_61_66_6C_64 : LocalName = LocalName :: pack_inline (7236271270027944960u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_61_74_61_73_72_63 : LocalName = LocalName :: pack_inline (7165916819501442048u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_64 : LocalName = LocalName :: pack_inline (6579200u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_65_63_6C_61_72_65 : LocalName = LocalName :: pack_inline (7310012263327687680u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_66_61_75_6C_74 : LocalName = LocalName :: pack_inline (8389209267074589696u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_66_65_72 : LocalName = LocalName :: pack_inline (125779835184128u64 , 5u8) ; +pub const ATOM_LOCALNAME__64_65_66_73 : LocalName = LocalName :: pack_inline (495639159808u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_65_67_72_65_65 : LocalName = LocalName :: pack_inline (28540514683151360u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_65_6C : LocalName = LocalName :: pack_inline (1818584064u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_65_70_74_68 : LocalName = LocalName :: pack_inline (114849311187968u64 , 5u8) ; +pub const ATOM_LOCALNAME__64_65_73_63 : LocalName = LocalName :: pack_inline (427137786880u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_65_73_63_65_6E_74 : LocalName = LocalName :: pack_inline (8389754633650004992u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_74_61_69_6C_73 : LocalName = LocalName :: pack_inline (8317138479132009472u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_66_6E : LocalName = LocalName :: pack_inline (1852204032u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_61_6C_6F_67 : LocalName = LocalName :: pack_inline (29114433882645504u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_69_66_66 : LocalName = LocalName :: pack_inline (439804847104u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_69_72 : LocalName = LocalName :: pack_inline (1919509504u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_72_6E_61_6D_65 : LocalName = LocalName :: pack_inline (7308604897285989376u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_73_63_61_72_64 : LocalName = LocalName :: pack_inline (7237954630903751680u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_73_70_6C_61_79 : LocalName = LocalName :: pack_inline (8746391181558637568u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_76 : LocalName = LocalName :: pack_inline (1986618368u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_76_69_64_65 : LocalName = LocalName :: pack_inline (28539376768738304u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_69_76_69_73_6F_72 : LocalName = LocalName :: pack_inline (8245936339534046208u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_6C : LocalName = LocalName :: pack_inline (7103488u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_6F_6D_61_69_6E : LocalName = LocalName :: pack_inline (31078114606932992u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_74 : LocalName = LocalName :: pack_inline (7627776u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_75_72 : LocalName = LocalName :: pack_inline (1920295936u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_78 : LocalName = LocalName :: pack_inline (7889920u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_79 : LocalName = LocalName :: pack_inline (7955456u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_64_67_65 : LocalName = LocalName :: pack_inline (435526329600u64 , 4u8) ; +pub const ATOM_LOCALNAME__65_6C_6C_69_70_73_65 : LocalName = LocalName :: pack_inline (7310310218245367040u64 , 7u8) ; +pub const ATOM_LOCALNAME__65_6D : LocalName = LocalName :: pack_inline (7169280u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_6D_62_65_64 : LocalName = LocalName :: pack_inline (110386605810944u64 , 5u8) ; +pub const ATOM_LOCALNAME__65_6E_63_74_79_70_65 : LocalName = LocalName :: pack_inline (7309475736013661440u64 , 7u8) ; +pub const ATOM_LOCALNAME__65_6E_64 : LocalName = LocalName :: pack_inline (1684956416u64 , 3u8) ; +pub const ATOM_LOCALNAME__65_71 : LocalName = LocalName :: pack_inline (7431424u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_76_65_6E_74 : LocalName = LocalName :: pack_inline (128017497482496u64 , 5u8) ; +pub const ATOM_LOCALNAME__65_78_69_73_74_73 : LocalName = LocalName :: pack_inline (32497661361284352u64 , 6u8) ; +pub const ATOM_LOCALNAME__65_78_70 : LocalName = LocalName :: pack_inline (1886938368u64 , 3u8) ; +pub const ATOM_LOCALNAME__66_61_63_65 : LocalName = LocalName :: pack_inline (435459024384u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_61_6C_73_65 : LocalName = LocalName :: pack_inline (111546413966848u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_42_6C_65_6E_64 : LocalName = LocalName :: pack_inline (7236833166875780608u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_6C_6F_6F_64 : LocalName = LocalName :: pack_inline (7237125637035877888u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_41 : LocalName = LocalName :: pack_inline (4711731085130950144u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_42 : LocalName = LocalName :: pack_inline (4783788679168878080u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_47 : LocalName = LocalName :: pack_inline (5144076649358517760u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_52 : LocalName = LocalName :: pack_inline (5936710183775725056u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_49_6D_61_67_65 : LocalName = LocalName :: pack_inline (7306916042442630656u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_4D_65_72_67_65 : LocalName = LocalName :: pack_inline (7306934699847673344u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_54_69_6C_65 : LocalName = LocalName :: pack_inline (28548172291073536u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_65_62_6C_65_6E_64 : LocalName = LocalName :: pack_inline (7236833167412651520u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_6C_6F_6F_64 : LocalName = LocalName :: pack_inline (7237125637572748800u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_61 : LocalName = LocalName :: pack_inline (7017574094881515008u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_62 : LocalName = LocalName :: pack_inline (7089631688919442944u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_67 : LocalName = LocalName :: pack_inline (7449919659109082624u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_72 : LocalName = LocalName :: pack_inline (8242553193526289920u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_69_6D_61_67_65 : LocalName = LocalName :: pack_inline (7306916042979501568u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_6D_65_72_67_65 : LocalName = LocalName :: pack_inline (7306934700384544256u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_6E_63_65 : LocalName = LocalName :: pack_inline (111477728306688u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_74_63_68 : LocalName = LocalName :: pack_inline (114776363853312u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_74_69_6C_65 : LocalName = LocalName :: pack_inline (28548172827944448u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_69_67_75_72_65 : LocalName = LocalName :: pack_inline (28554821219476992u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_69_6C_6C : LocalName = LocalName :: pack_inline (465675314688u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72 : LocalName = LocalName :: pack_inline (32199698054473216u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_72 : LocalName = LocalName :: pack_inline (125822936311296u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_6E : LocalName = LocalName :: pack_inline (7235072u64 , 2u8) ; +pub const ATOM_LOCALNAME__66_6F_6E_74 : LocalName = LocalName :: pack_inline (500069000704u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_6F_6F_74_65_72 : LocalName = LocalName :: pack_inline (32199698105198080u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6F_72 : LocalName = LocalName :: pack_inline (1919903232u64 , 3u8) ; +pub const ATOM_LOCALNAME__66_6F_72_61_6C_6C : LocalName = LocalName :: pack_inline (30518463272281600u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6F_72_6D : LocalName = LocalName :: pack_inline (470071338496u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_61_74 : LocalName = LocalName :: pack_inline (32758219997668864u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65 : LocalName = LocalName :: pack_inline (111520460727808u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_72_6F_6D : LocalName = LocalName :: pack_inline (470021203456u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_78 : LocalName = LocalName :: pack_inline (7890432u64 , 2u8) ; +pub const ATOM_LOCALNAME__66_79 : LocalName = LocalName :: pack_inline (7955968u64 , 2u8) ; +pub const ATOM_LOCALNAME__67 : LocalName = LocalName :: pack_inline (26368u64 , 1u8) ; +pub const ATOM_LOCALNAME__67_31 : LocalName = LocalName :: pack_inline (3237632u64 , 2u8) ; +pub const ATOM_LOCALNAME__67_32 : LocalName = LocalName :: pack_inline (3303168u64 , 2u8) ; +pub const ATOM_LOCALNAME__67_63_64 : LocalName = LocalName :: pack_inline (1684236032u64 , 3u8) ; +pub const ATOM_LOCALNAME__67_65_71 : LocalName = LocalName :: pack_inline (1902470912u64 , 3u8) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68 : LocalName = LocalName :: pack_inline (114832282773248u64 , 5u8) ; +pub const ATOM_LOCALNAME__67_72_61_64 : LocalName = LocalName :: pack_inline (431131617024u64 , 4u8) ; +pub const ATOM_LOCALNAME__67_74 : LocalName = LocalName :: pack_inline (7628544u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_31 : LocalName = LocalName :: pack_inline (3237888u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_32 : LocalName = LocalName :: pack_inline (3303424u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_33 : LocalName = LocalName :: pack_inline (3368960u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_34 : LocalName = LocalName :: pack_inline (3434496u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_35 : LocalName = LocalName :: pack_inline (3500032u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_36 : LocalName = LocalName :: pack_inline (3565568u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_61_6E_64_6C_65_72 : LocalName = LocalName :: pack_inline (8243113871575967744u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_61_6E_67_69_6E_67 : LocalName = LocalName :: pack_inline (7453010326299174912u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_65_61_64 : LocalName = LocalName :: pack_inline (431130765312u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_65_61_64_65_72 : LocalName = LocalName :: pack_inline (32199629150185472u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_65_61_64_65_72_73 : LocalName = LocalName :: pack_inline (8318822943511898112u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_65_69_67_68_74 : LocalName = LocalName :: pack_inline (32765890657609728u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_67_72_6F_75_70 : LocalName = LocalName :: pack_inline (31654318912792576u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_69_64_64_65_6E : LocalName = LocalName :: pack_inline (31073729293936640u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_69_67_68 : LocalName = LocalName :: pack_inline (448411559936u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_6B_65_72_6E : LocalName = LocalName :: pack_inline (121437606864896u64 , 5u8) ; +pub const ATOM_LOCALNAME__68_72 : LocalName = LocalName :: pack_inline (7497728u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_72_65_66 : LocalName = LocalName :: pack_inline (439788660736u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797365248u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_74_6D_6C : LocalName = LocalName :: pack_inline (465692813312u64 , 4u8) ; +pub const ATOM_LOCALNAME__69 : LocalName = LocalName :: pack_inline (26880u64 , 1u8) ; +pub const ATOM_LOCALNAME__69_63_6F_6E : LocalName = LocalName :: pack_inline (474315188480u64 , 4u8) ; +pub const ATOM_LOCALNAME__69_64 : LocalName = LocalName :: pack_inline (6580480u64 , 2u8) ; +pub const ATOM_LOCALNAME__69_64_65_6E_74 : LocalName = LocalName :: pack_inline (128017496303872u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_66_72_61_6D_65 : LocalName = LocalName :: pack_inline (28549237946345728u64 , 6u8) ; +pub const ATOM_LOCALNAME__69_6D_61_67_65 : LocalName = LocalName :: pack_inline (111494690597120u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6D_67 : LocalName = LocalName :: pack_inline (1735223552u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6D_70_6C_69_65_73 : LocalName = LocalName :: pack_inline (8315168201473091840u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_6E : LocalName = LocalName :: pack_inline (7235840u64 , 2u8) ; +pub const ATOM_LOCALNAME__69_6E_32 : LocalName = LocalName :: pack_inline (846096640u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_64_65_78 : LocalName = LocalName :: pack_inline (132376871987456u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6E_70_75_74 : LocalName = LocalName :: pack_inline (128047746279680u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6E_73 : LocalName = LocalName :: pack_inline (1936615680u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_74 : LocalName = LocalName :: pack_inline (1953392896u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_76_65_72_73_65 : LocalName = LocalName :: pack_inline (7310312400256657664u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_73_69_6E_64_65_78 : LocalName = LocalName :: pack_inline (8675450682577479936u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_73_6D_61_70 : LocalName = LocalName :: pack_inline (123563750418688u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_74_65_6D_69_64 : LocalName = LocalName :: pack_inline (28263416245545216u64 , 6u8) ; +pub const ATOM_LOCALNAME__69_74_65_6D_72_65_66 : LocalName = LocalName :: pack_inline (7378429378695555328u64 , 7u8) ; +pub const ATOM_LOCALNAME__6B : LocalName = LocalName :: pack_inline (27392u64 , 1u8) ; +pub const ATOM_LOCALNAME__6B_31 : LocalName = LocalName :: pack_inline (3238656u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_32 : LocalName = LocalName :: pack_inline (3304192u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_33 : LocalName = LocalName :: pack_inline (3369728u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_34 : LocalName = LocalName :: pack_inline (3435264u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_62_64 : LocalName = LocalName :: pack_inline (1684171520u64 , 3u8) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_69_6E_67 : LocalName = LocalName :: pack_inline (7453010356431317760u64 , 7u8) ; +pub const ATOM_LOCALNAME__6B_65_79_67_65_6E : LocalName = LocalName :: pack_inline (31073742530898688u64 , 6u8) ; +pub const ATOM_LOCALNAME__6B_69_6E_64 : LocalName = LocalName :: pack_inline (431349132032u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_61_62_65_6C : LocalName = LocalName :: pack_inline (119182698048512u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_61_6D_62_64_61 : LocalName = LocalName :: pack_inline (27413446645607424u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_61_6E_67 : LocalName = LocalName :: pack_inline (444233509888u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_61_72_67_65_6F_70 : LocalName = LocalName :: pack_inline (8101805749637835776u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_63_6D : LocalName = LocalName :: pack_inline (1835232256u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_65_67_65_6E_64 : LocalName = LocalName :: pack_inline (28268879476517888u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_65_71 : LocalName = LocalName :: pack_inline (1902472192u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_69 : LocalName = LocalName :: pack_inline (6908928u64 , 2u8) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74 : LocalName = LocalName :: pack_inline (127996156013568u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_69_6E_65 : LocalName = LocalName :: pack_inline (435644099584u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_6E_6B : LocalName = LocalName :: pack_inline (461413903360u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_73_74 : LocalName = LocalName :: pack_inline (500152495104u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_73_74_69_6E_67 : LocalName = LocalName :: pack_inline (7453010382218161152u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6E : LocalName = LocalName :: pack_inline (7236608u64 , 2u8) ; +pub const ATOM_LOCALNAME__6C_6F_61_64_69_6E_67 : LocalName = LocalName :: pack_inline (7453010313197087744u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6F_63_61_6C : LocalName = LocalName :: pack_inline (119165535874048u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_6F_67 : LocalName = LocalName :: pack_inline (1735355392u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_6F_67_62_61_73_65 : LocalName = LocalName :: pack_inline (7310293695422491648u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6F_6F_70 : LocalName = LocalName :: pack_inline (482905910272u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_6F_77 : LocalName = LocalName :: pack_inline (2003790848u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_6F_77_73_72_63 : LocalName = LocalName :: pack_inline (27991862944951296u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_71_75_6F_74_65 : LocalName = LocalName :: pack_inline (28556994708335616u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797366272u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_74 : LocalName = LocalName :: pack_inline (7629824u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_61_63_72_6F_73 : LocalName = LocalName :: pack_inline (32492159406009600u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015191407872u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_61_69_6E : LocalName = LocalName :: pack_inline (474214395136u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_70 : LocalName = LocalName :: pack_inline (1885433088u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_61_72_6B : LocalName = LocalName :: pack_inline (461480488192u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72 : LocalName = LocalName :: pack_inline (32199659499908352u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_72_71_75_65_65 : LocalName = LocalName :: pack_inline (7306375100589239552u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_61_73_6B : LocalName = LocalName :: pack_inline (461497265408u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_74_68 : LocalName = LocalName :: pack_inline (448629140736u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_74_72_69_78 : LocalName = LocalName :: pack_inline (33892937505008896u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_78 : LocalName = LocalName :: pack_inline (2019650816u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_61_78_73_69_7A_65 : LocalName = LocalName :: pack_inline (7312272889651227904u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_65_61_6E : LocalName = LocalName :: pack_inline (474080439552u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_64_69_61 : LocalName = LocalName :: pack_inline (107105283828992u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_65_64_69_61_6E : LocalName = LocalName :: pack_inline (31069352722001152u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_65_6E_75 : LocalName = LocalName :: pack_inline (504363314432u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_72_72_6F_72 : LocalName = LocalName :: pack_inline (32210684681219328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_65_74_61 : LocalName = LocalName :: pack_inline (418564631808u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_74_65_72 : LocalName = LocalName :: pack_inline (125780070067456u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_65_74_68_6F_64 : LocalName = LocalName :: pack_inline (28269992091151616u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_66_65_6E_63_65_64 : LocalName = LocalName :: pack_inline (7234297702239333632u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_66_72_61_63 : LocalName = LocalName :: pack_inline (109270182292736u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_67_6C_79_70_68 : LocalName = LocalName :: pack_inline (29397064389979392u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_69 : LocalName = LocalName :: pack_inline (6909184u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_69_6E : LocalName = LocalName :: pack_inline (1852402944u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_69_6E_73_69_7A_65 : LocalName = LocalName :: pack_inline (7312272889483980032u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_69_6E_75_73 : LocalName = LocalName :: pack_inline (126948200770816u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_6E : LocalName = LocalName :: pack_inline (7236864u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_6F : LocalName = LocalName :: pack_inline (7302400u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_6F_64_65 : LocalName = LocalName :: pack_inline (435476720896u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_6F_6D_65_6E_74 : LocalName = LocalName :: pack_inline (32772479205207296u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_6F_76_65_72 : LocalName = LocalName :: pack_inline (125780104277248u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_70_61_64_64_65_64 : LocalName = LocalName :: pack_inline (7234298758734834944u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_70_61_74_68 : LocalName = LocalName :: pack_inline (114849060252928u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_72_6F_6F_74 : LocalName = LocalName :: pack_inline (128021959961856u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_72_6F_77 : LocalName = LocalName :: pack_inline (512970878208u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_73 : LocalName = LocalName :: pack_inline (7564544u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797366528u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_73_71_72_74 : LocalName = LocalName :: pack_inline (128034878483712u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_73_74_79_6C_65 : LocalName = LocalName :: pack_inline (28548241548340480u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_73_75_62 : LocalName = LocalName :: pack_inline (422877293824u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_73_75_62_73_75_70 : LocalName = LocalName :: pack_inline (8103509971237563648u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_73_75_70 : LocalName = LocalName :: pack_inline (483006835968u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_74_61_62_6C_65 : LocalName = LocalName :: pack_inline (28548142445391104u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_74_64 : LocalName = LocalName :: pack_inline (1685351680u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_74_65_78_74 : LocalName = LocalName :: pack_inline (128060447026432u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_74_72 : LocalName = LocalName :: pack_inline (1920232704u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_75_6E_64_65_72 : LocalName = LocalName :: pack_inline (32199629369339136u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_75_74_65_64 : LocalName = LocalName :: pack_inline (110386908327168u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_61_6D_65 : LocalName = LocalName :: pack_inline (435626798592u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_61_72_67_73 : LocalName = LocalName :: pack_inline (126888137813504u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_61_76 : LocalName = LocalName :: pack_inline (1986096640u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_65_71 : LocalName = LocalName :: pack_inline (1902472704u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_65_73_74 : LocalName = LocalName :: pack_inline (500152233472u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_65_78_74_69_64 : LocalName = LocalName :: pack_inline (28263446628101632u64 , 6u8) ; +pub const ATOM_LOCALNAME__6E_6F_62_72 : LocalName = LocalName :: pack_inline (491277741568u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_6F_65_6D_62_65_64 : LocalName = LocalName :: pack_inline (7234296598433328640u64 , 7u8) ; +pub const ATOM_LOCALNAME__6E_6F_68_72_65_66 : LocalName = LocalName :: pack_inline (28821989677297152u64 , 6u8) ; +pub const ATOM_LOCALNAME__6E_6F_6E_63_65 : LocalName = LocalName :: pack_inline (111477728964096u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_6F_6E_65 : LocalName = LocalName :: pack_inline (435644493312u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_6F_73_68_61_64_65 : LocalName = LocalName :: pack_inline (7306071596742962688u64 , 7u8) ; +pub const ATOM_LOCALNAME__6E_6F_74 : LocalName = LocalName :: pack_inline (1953459712u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_6F_74_69_6E : LocalName = LocalName :: pack_inline (121399204081152u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_6F_77_72_61_70 : LocalName = LocalName :: pack_inline (31632341649550848u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_62_6A_65_63_74 : LocalName = LocalName :: pack_inline (32760384526118656u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_66_66_73_65_74 : LocalName = LocalName :: pack_inline (32762643612069632u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6C : LocalName = LocalName :: pack_inline (7106304u64 , 2u8) ; +pub const ATOM_LOCALNAME__6F_6E_61_62_6F_72_74 : LocalName = LocalName :: pack_inline (8390891524076760832u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_67_69_6E : LocalName = LocalName :: pack_inline (7956003901867454208u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_62_6C_75_72 : LocalName = LocalName :: pack_inline (32217255713337088u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_6C_69_63_6B : LocalName = LocalName :: pack_inline (7738144498998210304u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_70_79 : LocalName = LocalName :: pack_inline (34182095893851904u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_75_74 : LocalName = LocalName :: pack_inline (128047528177408u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67 : LocalName = LocalName :: pack_inline (29099066540322560u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_6F_70 : LocalName = LocalName :: pack_inline (31647734493507328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_65_6E_64 : LocalName = LocalName :: pack_inline (110425310916352u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_6E_65_72_72_6F_72 : LocalName = LocalName :: pack_inline (8245935278392241920u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73 : LocalName = LocalName :: pack_inline (8319665216747892480u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_68_65_6C_70 : LocalName = LocalName :: pack_inline (31644380191158016u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_69_6E_70_75_74 : LocalName = LocalName :: pack_inline (8391737100192345856u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_75_70 : LocalName = LocalName :: pack_inline (8103516581024132864u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_6C_6F_61_64 : LocalName = LocalName :: pack_inline (28254628859506432u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65 : LocalName = LocalName :: pack_inline (28559193597177600u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_73_74_65 : LocalName = LocalName :: pack_inline (7310594957464465152u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_73_65_74 : LocalName = LocalName :: pack_inline (8387236760596147968u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_61_72_74 : LocalName = LocalName :: pack_inline (8390876208525373184u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_6F_70 : LocalName = LocalName :: pack_inline (31647743335100160u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_7A_6F_6F_6D : LocalName = LocalName :: pack_inline (30803297047572224u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_inline (8751735851445153536u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_70_65_6E : LocalName = LocalName :: pack_inline (474148269824u64 , 4u8) ; +pub const ATOM_LOCALNAME__6F_70_74_69_6D_75_6D : LocalName = LocalName :: pack_inline (7887330622101810944u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_70_74_69_6F_6E : LocalName = LocalName :: pack_inline (31084746153946880u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_72 : LocalName = LocalName :: pack_inline (7499520u64 , 2u8) ; +pub const ATOM_LOCALNAME__6F_72_64_65_72 : LocalName = LocalName :: pack_inline (125779802484480u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_72_69_65_6E_74 : LocalName = LocalName :: pack_inline (32772479138295552u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_72_69_67_69_6E : LocalName = LocalName :: pack_inline (31078140309827328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_74_68_65_72 : LocalName = LocalName :: pack_inline (125779869724416u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_75_74_70_75_74 : LocalName = LocalName :: pack_inline (32780223149076224u64 , 6u8) ; +pub const ATOM_LOCALNAME__70 : LocalName = LocalName :: pack_inline (28672u64 , 1u8) ; +pub const ATOM_LOCALNAME__70_61_72_61_6D : LocalName = LocalName :: pack_inline (120265298243584u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_61_72_73_65 : LocalName = LocalName :: pack_inline (111546514632704u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_61_74_68 : LocalName = LocalName :: pack_inline (448629141504u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E : LocalName = LocalName :: pack_inline (7958535042360242176u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_69 : LocalName = LocalName :: pack_inline (6909952u64 , 2u8) ; +pub const ATOM_LOCALNAME__70_69_63_74_75_72_65 : LocalName = LocalName :: pack_inline (7310034287920246784u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_69_65_63_65 : LocalName = LocalName :: pack_inline (111477577576448u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_69_6E_67 : LocalName = LocalName :: pack_inline (444234035200u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_6C_75_73 : LocalName = LocalName :: pack_inline (495891279872u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73 : LocalName = LocalName :: pack_inline (32497639885860864u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_6F_6C_79_67_6F_6E : LocalName = LocalName :: pack_inline (7957692837794902016u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_6F_73_74_65_72 : LocalName = LocalName :: pack_inline (32199698172309504u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_6F_77_65_72 : LocalName = LocalName :: pack_inline (125780121055232u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_72_65 : LocalName = LocalName :: pack_inline (1701998592u64 , 3u8) ; +pub const ATOM_LOCALNAME__70_72_65_6C_6F_61_64 : LocalName = LocalName :: pack_inline (7233184987882876928u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_69_6D_65_73 : LocalName = LocalName :: pack_inline (32481142916673536u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_inline (8386676005320945664u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_inline (7308332183992823808u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_6F_6D_70_74 : LocalName = LocalName :: pack_inline (32774712621953024u64 , 6u8) ; +pub const ATOM_LOCALNAME__71 : LocalName = LocalName :: pack_inline (28928u64 , 1u8) ; +pub const ATOM_LOCALNAME__72 : LocalName = LocalName :: pack_inline (29184u64 , 1u8) ; +pub const ATOM_LOCALNAME__72_61_64_69_75_73 : LocalName = LocalName :: pack_inline (32498717837849088u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_62 : LocalName = LocalName :: pack_inline (6451712u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_65_61_6C : LocalName = LocalName :: pack_inline (465490506240u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_61_6C_73 : LocalName = LocalName :: pack_inline (126909327700480u64 , 5u8) ; +pub const ATOM_LOCALNAME__72_65_63_74 : LocalName = LocalName :: pack_inline (499883799040u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_58 : LocalName = LocalName :: pack_inline (379675046400u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_59 : LocalName = LocalName :: pack_inline (383970013696u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_78 : LocalName = LocalName :: pack_inline (517113999872u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_79 : LocalName = LocalName :: pack_inline (521408967168u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_6C : LocalName = LocalName :: pack_inline (1818587648u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_65_6C_6E : LocalName = LocalName :: pack_inline (474264990208u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_6D : LocalName = LocalName :: pack_inline (1835364864u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74 : LocalName = LocalName :: pack_inline (32758185603723776u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_65_70_6C_61_63_65 : LocalName = LocalName :: pack_inline (7305790138895135232u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_65_73_74_61_72_74 : LocalName = LocalName :: pack_inline (8390876208524784128u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_65_73_75_6C_74 : LocalName = LocalName :: pack_inline (32770349001437696u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_65_76 : LocalName = LocalName :: pack_inline (1986359808u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_6F_6C_65 : LocalName = LocalName :: pack_inline (435610939904u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_6F_74 : LocalName = LocalName :: pack_inline (500085780992u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_74_61_74_65 : LocalName = LocalName :: pack_inline (28556934561886720u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_6F_77_73 : LocalName = LocalName :: pack_inline (495925031424u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_77_73_70_61_6E : LocalName = LocalName :: pack_inline (7953762058140348928u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_70 : LocalName = LocalName :: pack_inline (7369216u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_71_75_6F_74_65 : LocalName = LocalName :: pack_inline (28556994708337152u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797367808u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_74 : LocalName = LocalName :: pack_inline (7631360u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_74_63 : LocalName = LocalName :: pack_inline (1668575744u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_75_62_79 : LocalName = LocalName :: pack_inline (521342906880u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_75_6C_65 : LocalName = LocalName :: pack_inline (435611333120u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_75_6C_65_73 : LocalName = LocalName :: pack_inline (126879448527360u64 , 5u8) ; +pub const ATOM_LOCALNAME__72_78 : LocalName = LocalName :: pack_inline (7893504u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_79 : LocalName = LocalName :: pack_inline (7959040u64 , 2u8) ; +pub const ATOM_LOCALNAME__73 : LocalName = LocalName :: pack_inline (29440u64 , 1u8) ; +pub const ATOM_LOCALNAME__73_61_6D_70 : LocalName = LocalName :: pack_inline (482871440128u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_61_6E_64_62_6F_78 : LocalName = LocalName :: pack_inline (8678263190454366976u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_63_61_6C_65 : LocalName = LocalName :: pack_inline (111516164780800u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_63_68_65_6D_65 : LocalName = LocalName :: pack_inline (28549254958248704u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_63_6F_70_65 : LocalName = LocalName :: pack_inline (111533579531008u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_63_6F_70_65_64 : LocalName = LocalName :: pack_inline (28259031250596608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74 : LocalName = LocalName :: pack_inline (32774695491433216u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_64_65_76 : LocalName = LocalName :: pack_inline (508507222784u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_61_72_63_68 : LocalName = LocalName :: pack_inline (29382740489368320u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_65_63 : LocalName = LocalName :: pack_inline (1667592960u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_63_68 : LocalName = LocalName :: pack_inline (448344191744u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015191671552u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_65_65_64 : LocalName = LocalName :: pack_inline (431197876992u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74 : LocalName = LocalName :: pack_inline (32760384559870720u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_65_70 : LocalName = LocalName :: pack_inline (1885696768u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_74 : LocalName = LocalName :: pack_inline (1952805632u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_74_64_69_66_66 : LocalName = LocalName :: pack_inline (7378700919663588096u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_68_61_70_65 : LocalName = LocalName :: pack_inline (111533344977664u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_68_6F_77 : LocalName = LocalName :: pack_inline (512970224384u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_6E : LocalName = LocalName :: pack_inline (1852404480u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_69_6E_68 : LocalName = LocalName :: pack_inline (448529003264u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_7A_65 : LocalName = LocalName :: pack_inline (435845427968u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_7A_65_73 : LocalName = LocalName :: pack_inline (126879682622208u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6C_6F_70_65 : LocalName = LocalName :: pack_inline (111533580120832u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6C_6F_74 : LocalName = LocalName :: pack_inline (500085584640u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_6D_61_6C_6C : LocalName = LocalName :: pack_inline (119212746830592u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6F_75_72_63_65 : LocalName = LocalName :: pack_inline (28538315895436032u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_65 : LocalName = LocalName :: pack_inline (111477510927104u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_65_72 : LocalName = LocalName :: pack_inline (32199624855941888u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_inline (7453010308902187776u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_70_61_6E : LocalName = LocalName :: pack_inline (474081161984u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_70_65_65_64 : LocalName = LocalName :: pack_inline (110386656342784u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_72_63 : LocalName = LocalName :: pack_inline (1668444928u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_72_63_64_6F_63 : LocalName = LocalName :: pack_inline (27988499650212608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_72_63_6C_61_6E_67 : LocalName = LocalName :: pack_inline (7453001551497556736u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_72_63_73_65_74 : LocalName = LocalName :: pack_inline (32762643562525440u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_61_6E_64_62_79 : LocalName = LocalName :: pack_inline (8746663851551126272u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_74_61_72_74 : LocalName = LocalName :: pack_inline (128034610115328u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_6D_68 : LocalName = LocalName :: pack_inline (114819062854400u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_6D_76 : LocalName = LocalName :: pack_inline (130212225643264u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_70 : LocalName = LocalName :: pack_inline (482738467584u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_74_6F_70 : LocalName = LocalName :: pack_inline (482906239744u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65 : LocalName = LocalName :: pack_inline (28547073283748608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_69_6E_67 : LocalName = LocalName :: pack_inline (29113321772053248u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65 : LocalName = LocalName :: pack_inline (28547099053552384u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6E_67 : LocalName = LocalName :: pack_inline (29113347541857024u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_79_6C_65 : LocalName = LocalName :: pack_inline (111516568548096u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_75_62 : LocalName = LocalName :: pack_inline (1651864320u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_75_62_73_65_74 : LocalName = LocalName :: pack_inline (32762643545944832u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_75_6D : LocalName = LocalName :: pack_inline (1836413696u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_75_6D_6D_61_72_79 : LocalName = LocalName :: pack_inline (8751164148550038272u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_75_70 : LocalName = LocalName :: pack_inline (1886745344u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_76_67 : LocalName = LocalName :: pack_inline (1735815936u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_77_69_74_63_68 : LocalName = LocalName :: pack_inline (29382749214700288u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_79_6D_62_6F_6C : LocalName = LocalName :: pack_inline (30521766018904832u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65 : LocalName = LocalName :: pack_inline (111516181427200u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_61_6E : LocalName = LocalName :: pack_inline (1851880448u64 , 3u8) ; +pub const ATOM_LOCALNAME__74_61_6E_68 : LocalName = LocalName :: pack_inline (448528479232u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74 : LocalName = LocalName :: pack_inline (32762592273462272u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_58 : LocalName = LocalName :: pack_inline (6373830867611120640u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_59 : LocalName = LocalName :: pack_inline (6445888461649048576u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_78 : LocalName = LocalName :: pack_inline (8679673876824814592u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_79 : LocalName = LocalName :: pack_inline (8751731470862742528u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_62_6F_64_79 : LocalName = LocalName :: pack_inline (133472272413696u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_62_72_65_61_6B : LocalName = LocalName :: pack_inline (30224910846686208u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_64 : LocalName = LocalName :: pack_inline (6583296u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_65_6E_64_73_74_6F : LocalName = LocalName :: pack_inline (8031170910694503424u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_65_78_74 : LocalName = LocalName :: pack_inline (500236121088u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_66_6F_6F_74 : LocalName = LocalName :: pack_inline (128021959177216u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_68 : LocalName = LocalName :: pack_inline (6845440u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_68_65_61_64 : LocalName = LocalName :: pack_inline (110369475949568u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_69_6D_65 : LocalName = LocalName :: pack_inline (435627324416u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_69_6D_65_73 : LocalName = LocalName :: pack_inline (126879464518656u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_69_74_6C_65 : LocalName = LocalName :: pack_inline (111516483941376u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_6F : LocalName = LocalName :: pack_inline (7304192u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_6F_67_67_6C_65 : LocalName = LocalName :: pack_inline (28548164020564992u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_72 : LocalName = LocalName :: pack_inline (7500800u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_72_61_63_6B : LocalName = LocalName :: pack_inline (118074580825088u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_72_65_66 : LocalName = LocalName :: pack_inline (439788663808u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_72_75_65 : LocalName = LocalName :: pack_inline (435762131968u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_73_70_61_6E : LocalName = LocalName :: pack_inline (121364777497600u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_74 : LocalName = LocalName :: pack_inline (7631872u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_79_70_65 : LocalName = LocalName :: pack_inline (435678704640u64 , 4u8) ; +pub const ATOM_LOCALNAME__75 : LocalName = LocalName :: pack_inline (29952u64 , 1u8) ; +pub const ATOM_LOCALNAME__75_31 : LocalName = LocalName :: pack_inline (3241216u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_32 : LocalName = LocalName :: pack_inline (3306752u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_6C : LocalName = LocalName :: pack_inline (7107840u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65 : LocalName = LocalName :: pack_inline (7306086968263079168u64 , 7u8) ; +pub const ATOM_LOCALNAME__75_6E_69_6F_6E : LocalName = LocalName :: pack_inline (121424789271808u64 , 5u8) ; +pub const ATOM_LOCALNAME__75_70_6C_69_6D_69_74 : LocalName = LocalName :: pack_inline (8388356080512562432u64 , 7u8) ; +pub const ATOM_LOCALNAME__75_73_65 : LocalName = LocalName :: pack_inline (1702065408u64 , 3u8) ; +pub const ATOM_LOCALNAME__75_73_65_6D_61_70 : LocalName = LocalName :: pack_inline (31632319872988416u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_6C_69_67_6E : LocalName = LocalName :: pack_inline (31075949925725696u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65 : LocalName = LocalName :: pack_inline (111555003905536u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65_73 : LocalName = LocalName :: pack_inline (32481177325630976u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_72 : LocalName = LocalName :: pack_inline (1918989824u64 , 3u8) ; +pub const ATOM_LOCALNAME__76_65_63_74_6F_72 : LocalName = LocalName :: pack_inline (32210693019497984u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_65_72_73_69_6F_6E : LocalName = LocalName :: pack_inline (7957695011148363264u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_69_64_65_6F : LocalName = LocalName :: pack_inline (122481267013120u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_69_65_77 : LocalName = LocalName :: pack_inline (512802518528u64 , 4u8) ; +pub const ATOM_LOCALNAME__76_69_65_77_42_6F_78 : LocalName = LocalName :: pack_inline (8678228087536186880u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_69_65_77_62_6F_78 : LocalName = LocalName :: pack_inline (8678263271908275712u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_6B_65_72_6E : LocalName = LocalName :: pack_inline (121437606868480u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959290368u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797368832u64 , 6u8) ; +pub const ATOM_LOCALNAME__77_62_72 : LocalName = LocalName :: pack_inline (1919055616u64 , 3u8) ; +pub const ATOM_LOCALNAME__77_68_65_6E : LocalName = LocalName :: pack_inline (474147747584u64 , 4u8) ; +pub const ATOM_LOCALNAME__77_69_64_74_68 : LocalName = LocalName :: pack_inline (114849110128384u64 , 5u8) ; +pub const ATOM_LOCALNAME__77_69_64_74_68_73 : LocalName = LocalName :: pack_inline (32484471431853824u64 , 6u8) ; +pub const ATOM_LOCALNAME__77_72_61_70 : LocalName = LocalName :: pack_inline (482671228672u64 , 4u8) ; +pub const ATOM_LOCALNAME__78 : LocalName = LocalName :: pack_inline (30720u64 , 1u8) ; +pub const ATOM_LOCALNAME__78_31 : LocalName = LocalName :: pack_inline (3241984u64 , 2u8) ; +pub const ATOM_LOCALNAME__78_32 : LocalName = LocalName :: pack_inline (3307520u64 , 2u8) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959290880u64 , 5u8) ; +pub const ATOM_LOCALNAME__78_6D_6C_6E_73 : LocalName = LocalName :: pack_inline (126918102710272u64 , 5u8) ; +pub const ATOM_LOCALNAME__78_6D_70 : LocalName = LocalName :: pack_inline (1886222336u64 , 3u8) ; +pub const ATOM_LOCALNAME__78_6F_72 : LocalName = LocalName :: pack_inline (1919907840u64 , 3u8) ; +pub const ATOM_LOCALNAME__78_72_65_66 : LocalName = LocalName :: pack_inline (439788664832u64 , 4u8) ; +pub const ATOM_LOCALNAME__79 : LocalName = LocalName :: pack_inline (30976u64 , 1u8) ; +pub const ATOM_LOCALNAME__79_31 : LocalName = LocalName :: pack_inline (3242240u64 , 2u8) ; +pub const ATOM_LOCALNAME__79_32 : LocalName = LocalName :: pack_inline (3307776u64 , 2u8) ; +pub const ATOM_LOCALNAME__7A : LocalName = LocalName :: pack_inline (31232u64 , 1u8) ; +# [doc = "Takes a local name as a string and returns its key in the string cache."] # [macro_export] macro_rules ! local_name { ("columnspacing") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_63_69_6E_67 } ; +("kernelunitlength") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_75_6E_69_74_6C_65_6E_67_74_68 } ; +("color-interpolation") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E } ; +("complexes") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_6C_65_78_65_73 } ; +("annotation-xml") => { $ crate :: ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E_2D_78_6D_6C } ; +("specularconstant") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_63_6F_6E_73_74_61_6E_74 } ; +("mozbrowser") => { $ crate :: ATOM_LOCALNAME__6D_6F_7A_62_72_6F_77_73_65_72 } ; +("interval") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_76_61_6C } ; +("gradientUnits") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_55_6E_69_74_73 } ; +("onmouseleave") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6C_65_61_76_65 } ; +("writing-mode") => { $ crate :: ATOM_LOCALNAME__77_72_69_74_69_6E_67_2D_6D_6F_64_65 } ; +("aria-valuemax") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_61_78 } ; +("animateTransform") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_54_72_61_6E_73_66_6F_72_6D } ; +("definitionURL") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_55_52_4C } ; +("background") => { $ crate :: ATOM_LOCALNAME__62_61_63_6B_67_72_6F_75_6E_64 } ; +("aria-templateid") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_74_65_6D_70_6C_61_74_65_69_64 } ; +("feGaussianBlur") => { $ crate :: ATOM_LOCALNAME__66_65_47_61_75_73_73_69_61_6E_42_6C_75_72 } ; +("subscriptshift") => { $ crate :: ATOM_LOCALNAME__73_75_62_73_63_72_69_70_74_73_68_69_66_74 } ; +("xmlns:xlink") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_6E_73_3A_78_6C_69_6E_6B } ; +("fieldset") => { $ crate :: ATOM_LOCALNAME__66_69_65_6C_64_73_65_74 } ; +("spreadmethod") => { $ crate :: ATOM_LOCALNAME__73_70_72_65_61_64_6D_65_74_68_6F_64 } ; +("formtarget") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_74_61_72_67_65_74 } ; +("feDiffuseLighting") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_66_66_75_73_65_4C_69_67_68_74_69_6E_67 } ; +("feturbulence") => { $ crate :: ATOM_LOCALNAME__66_65_74_75_72_62_75_6C_65_6E_63_65 } ; +("onbeforeeditfocus") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_65_64_69_74_66_6F_63_75_73 } ; +("colgroup") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_67_72_6F_75_70 } ; +("mathbackground") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_62_61_63_6B_67_72_6F_75_6E_64 } ; +("onkeydown") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_64_6F_77_6E } ; +("feColorMatrix") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6C_6F_72_4D_61_74_72_69_78 } ; +("startoffset") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74_6F_66_66_73_65_74 } ; +("autofocus") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_66_6F_63_75_73 } ; +("contextmenu") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_78_74_6D_65_6E_75 } ; +("longdesc") => { $ crate :: ATOM_LOCALNAME__6C_6F_6E_67_64_65_73_63 } ; +("aria-relevant") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_6C_65_76_61_6E_74 } ; +("onbeforeprint") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_72_69_6E_74 } ; +("fill-rule") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C_2D_72_75_6C_65 } ; +("hreflang") => { $ crate :: ATOM_LOCALNAME__68_72_65_66_6C_61_6E_67 } ; +("domainofapplication") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_61_69_6E_6F_66_61_70_70_6C_69_63_61_74_69_6F_6E } ; +("keytimes") => { $ crate :: ATOM_LOCALNAME__6B_65_79_74_69_6D_65_73 } ; +("numoctaves") => { $ crate :: ATOM_LOCALNAME__6E_75_6D_6F_63_74_61_76_65_73 } ; +("partialdiff") => { $ crate :: ATOM_LOCALNAME__70_61_72_74_69_61_6C_64_69_66_66 } ; +("aria-describedby") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_62_65_64_62_79 } ; +("color-interpolation-filters") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E_2D_66_69_6C_74_65_72_73 } ; +("preserveaspectratio") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_73_70_65_63_74_72_61_74_69_6F } ; +("actiontype") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_6F_6E_74_79_70_65 } ; +("quotient") => { $ crate :: ATOM_LOCALNAME__71_75_6F_74_69_65_6E_74 } ; +("notation") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_61_74_69_6F_6E } ; +("autocomplete") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_63_6F_6D_70_6C_65_74_65 } ; +("contentStyleType") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_74_79_6C_65_54_79_70_65 } ; +("strikethrough-thickness") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_74_68_69_63_6B_6E_65_73_73 } ; +("stop-color") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70_2D_63_6F_6C_6F_72 } ; +("itemtype") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_74_79_70_65 } ; +("fepointlight") => { $ crate :: ATOM_LOCALNAME__66_65_70_6F_69_6E_74_6C_69_67_68_74 } ; +("formmethod") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_6D_65_74_68_6F_64 } ; +("seamless") => { $ crate :: ATOM_LOCALNAME__73_65_61_6D_6C_65_73_73 } ; +("plaintext") => { $ crate :: ATOM_LOCALNAME__70_6C_61_69_6E_74_65_78_74 } ; +("aria-modal") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_6F_64_61_6C } ; +("required") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64 } ; +("numOctaves") => { $ crate :: ATOM_LOCALNAME__6E_75_6D_4F_63_74_61_76_65_73 } ; +("maxlength") => { $ crate :: ATOM_LOCALNAME__6D_61_78_6C_65_6E_67_74_68 } ; +("piecewise") => { $ crate :: ATOM_LOCALNAME__70_69_65_63_65_77_69_73_65 } ; +("cellspacing") => { $ crate :: ATOM_LOCALNAME__63_65_6C_6C_73_70_61_63_69_6E_67 } ; +("xChannelSelector") => { $ crate :: ATOM_LOCALNAME__78_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 } ; +("momentabout") => { $ crate :: ATOM_LOCALNAME__6D_6F_6D_65_6E_74_61_62_6F_75_74 } ; +("onfinish") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_69_6E_69_73_68 } ; +("kernelmatrix") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_6D_61_74_72_69_78 } ; +("color-profile") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_70_72_6F_66_69_6C_65 } ; +("fedropshadow") => { $ crate :: ATOM_LOCALNAME__66_65_64_72_6F_70_73_68_61_64_6F_77 } ; +("aria-haspopup") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_68_61_73_70_6F_70_75_70 } ; +("pointsatz") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_7A } ; +("decoding") => { $ crate :: ATOM_LOCALNAME__64_65_63_6F_64_69_6E_67 } ; +("linearGradient") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_61_72_47_72_61_64_69_65_6E_74 } ; +("columnlines") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_6C_69_6E_65_73 } ; +("onmousemove") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6D_6F_76_65 } ; +("codomain") => { $ crate :: ATOM_LOCALNAME__63_6F_64_6F_6D_61_69_6E } ; +("prsubset") => { $ crate :: ATOM_LOCALNAME__70_72_73_75_62_73_65_74 } ; +("alignment-baseline") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_2D_62_61_73_65_6C_69_6E_65 } ; +("intercept") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_63_65_70_74 } ; +("font-face-src") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_73_72_63 } ; +("aria-multiselectable") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_73_65_6C_65_63_74_61_62_6C_65 } ; +("keyPoints") => { $ crate :: ATOM_LOCALNAME__6B_65_79_50_6F_69_6E_74_73 } ; +("diffuseconstant") => { $ crate :: ATOM_LOCALNAME__64_69_66_66_75_73_65_63_6F_6E_73_74_61_6E_74 } ; +("xlink:arcrole") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_72_63_72_6F_6C_65 } ; +("onafterupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_66_74_65_72_75_70_64_61_74_65 } ; +("foreignObject") => { $ crate :: ATOM_LOCALNAME__66_6F_72_65_69_67_6E_4F_62_6A_65_63_74 } ; +("autosubmit") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_73_75_62_6D_69_74 } ; +("scrolldelay") => { $ crate :: ATOM_LOCALNAME__73_63_72_6F_6C_6C_64_65_6C_61_79 } ; +("stretchy") => { $ crate :: ATOM_LOCALNAME__73_74_72_65_74_63_68_79 } ; +("font-weight") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_77_65_69_67_68_74 } ; +("onafterprint") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_66_74_65_72_70_72_69_6E_74 } ; +("aria-pressed") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_72_65_73_73_65_64 } ; +("line-height") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_2D_68_65_69_67_68_74 } ; +("basefrequency") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_66_72_65_71_75_65_6E_63_79 } ; +("aria-description") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_70_74_69_6F_6E } ; +("onhashchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_68_61_73_68_63_68_61_6E_67_65 } ; +("displaystyle") => { $ crate :: ATOM_LOCALNAME__64_69_73_70_6C_61_79_73_74_79_6C_65 } ; +("v-hanging") => { $ crate :: ATOM_LOCALNAME__76_2D_68_61_6E_67_69_6E_67 } ; +("patterncontentunits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_63_6F_6E_74_65_6E_74_75_6E_69_74_73 } ; +("http-equiv") => { $ crate :: ATOM_LOCALNAME__68_74_74_70_2D_65_71_75_69_76 } ; +("animation") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_69_6F_6E } ; +("vert-adv-y") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_61_64_76_2D_79 } ; +("onrowsdelete") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_73_64_65_6C_65_74_65 } ; +("aria-labelledby") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C_6C_65_64_62_79 } ; +("unicode-range") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_72_61_6E_67_65 } ; +("listener") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74_65_6E_65_72 } ; +("accent-height") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74_2D_68_65_69_67_68_74 } ; +("dominant-baseline") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_69_6E_61_6E_74_2D_62_61_73_65_6C_69_6E_65 } ; +("datetime") => { $ crate :: ATOM_LOCALNAME__64_61_74_65_74_69_6D_65 } ; +("aria-colspan") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_73_70_61_6E } ; +("conjugate") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_6A_75_67_61_74_65 } ; +("onmousedown") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_64_6F_77_6E } ; +("equalrows") => { $ crate :: ATOM_LOCALNAME__65_71_75_61_6C_72_6F_77_73 } ; +("stitchtiles") => { $ crate :: ATOM_LOCALNAME__73_74_69_74_63_68_74_69_6C_65_73 } ; +("edgemode") => { $ crate :: ATOM_LOCALNAME__65_64_67_65_6D_6F_64_65 } ; +("aria-autocomplete") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_75_74_6F_63_6F_6D_70_6C_65_74_65 } ; +("aria-atomic") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_74_6F_6D_69_63 } ; +("mathsize") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_73_69_7A_65 } ; +("glyphref") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_72_65_66 } ; +("maskunits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_75_6E_69_74_73 } ; +("clippathunits") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_70_61_74_68_75_6E_69_74_73 } ; +("aria-checked") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_68_65_63_6B_65_64 } ; +("enable-background") => { $ crate :: ATOM_LOCALNAME__65_6E_61_62_6C_65_2D_62_61_63_6B_67_72_6F_75_6E_64 } ; +("onbeforecut") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_75_74 } ; +("onmouseover") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_76_65_72 } ; +("pointsAtX") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_58 } ; +("ondblclick") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_62_6C_63_6C_69_63_6B } ; +("xchannelselector") => { $ crate :: ATOM_LOCALNAME__78_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 } ; +("symmetric") => { $ crate :: ATOM_LOCALNAME__73_79_6D_6D_65_74_72_69_63 } ; +("fediffuselighting") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_66_66_75_73_65_6C_69_67_68_74_69_6E_67 } ; +("aria-multiline") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_6C_69_6E_65 } ; +("oninvalid") => { $ crate :: ATOM_LOCALNAME__6F_6E_69_6E_76_61_6C_69_64 } ; +("markerHeight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_48_65_69_67_68_74 } ; +("repeatdur") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_64_75_72 } ; +("vert-origin-y") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_79 } ; +("requiredFeatures") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_46_65_61_74_75_72_65_73 } ; +("elevation") => { $ crate :: ATOM_LOCALNAME__65_6C_65_76_61_74_69_6F_6E } ; +("viewtarget") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_74_61_72_67_65_74 } ; +("aria-label") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C } ; +("solidcolor") => { $ crate :: ATOM_LOCALNAME__73_6F_6C_69_64_63_6F_6C_6F_72 } ; +("onforminput") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_72_6D_69_6E_70_75_74 } ; +("textpath") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_70_61_74_68 } ; +("spellcheck") => { $ crate :: ATOM_LOCALNAME__73_70_65_6C_6C_63_68_65_63_6B } ; +("patternTransform") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_54_72_61_6E_73_66_6F_72_6D } ; +("aria-disabled") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_69_73_61_62_6C_65_64 } ; +("font-face-format") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_66_6F_72_6D_61_74 } ; +("autoplay") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_70_6C_61_79 } ; +("altGlyph") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68 } ; +("imaginaryi") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79_69 } ; +("dataformatas") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_66_6F_72_6D_61_74_61_73 } ; +("femorphology") => { $ crate :: ATOM_LOCALNAME__66_65_6D_6F_72_70_68_6F_6C_6F_67_79 } ; +("x-height") => { $ crate :: ATOM_LOCALNAME__78_2D_68_65_69_67_68_74 } ; +("onbefordeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_64_65_61_63_74_69_76_61_74_65 } ; +("zoomAndPan") => { $ crate :: ATOM_LOCALNAME__7A_6F_6F_6D_41_6E_64_50_61_6E } ; +("letter-spacing") => { $ crate :: ATOM_LOCALNAME__6C_65_74_74_65_72_2D_73_70_61_63_69_6E_67 } ; +("aria-expanded") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_65_78_70_61_6E_64_65_64 } ; +("aria-braillelabel") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_6C_61_62_65_6C } ; +("mathcolor") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_63_6F_6C_6F_72 } ; +("equivalent") => { $ crate :: ATOM_LOCALNAME__65_71_75_69_76_61_6C_65_6E_74 } ; +("fontfamily") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_66_61_6D_69_6C_79 } ; +("scriptlevel") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_6C_65_76_65_6C } ; +("rowspacing") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73_70_61_63_69_6E_67 } ; +("maskUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_55_6E_69_74_73 } ; +("glyphRef") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_52_65_66 } ; +("glyph-orientation-horizontal") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_68_6F_72_69_7A_6F_6E_74_61_6C } ; +("multicol") => { $ crate :: ATOM_LOCALNAME__6D_75_6C_74_69_63_6F_6C } ; +("maskContentUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_43_6F_6E_74_65_6E_74_55_6E_69_74_73 } ; +("thinmathspace") => { $ crate :: ATOM_LOCALNAME__74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("condition") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_64_69_74_69_6F_6E } ; +("formnovalidate") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_6E_6F_76_61_6C_69_64_61_74_65 } ; +("attributeName") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_4E_61_6D_65 } ; +("cellpadding") => { $ crate :: ATOM_LOCALNAME__63_65_6C_6C_70_61_64_64_69_6E_67 } ; +("stroke-miterlimit") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6D_69_74_65_72_6C_69_6D_69_74 } ; +("altglyph") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68 } ; +("selector") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_6F_72 } ; +("onbeforeunload") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_6E_6C_6F_61_64 } ; +("lowlimit") => { $ crate :: ATOM_LOCALNAME__6C_6F_77_6C_69_6D_69_74 } ; +("optgroup") => { $ crate :: ATOM_LOCALNAME__6F_70_74_67_72_6F_75_70 } ; +("feDistantLight") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_73_74_61_6E_74_4C_69_67_68_74 } ; +("frameset") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_73_65_74 } ; +("underline-thickness") => { $ crate :: ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 } ; +("strikethrough-position") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_70_6F_73_69_74_69_6F_6E } ; +("onrowsinserted") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_73_69_6E_73_65_72_74_65_64 } ; +("definitionurl") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_75_72_6C } ; +("fontweight") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_77_65_69_67_68_74 } ; +("aria-placeholder") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_6C_61_63_65_68_6F_6C_64_65_72 } ; +("marker-start") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_73_74_61_72_74 } ; +("ononline") => { $ crate :: ATOM_LOCALNAME__6F_6E_6F_6E_6C_69_6E_65 } ; +("xml:base") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_62_61_73_65 } ; +("allowfullscreen") => { $ crate :: ATOM_LOCALNAME__61_6C_6C_6F_77_66_75_6C_6C_73_63_72_65_65_6E } ; +("noresize") => { $ crate :: ATOM_LOCALNAME__6E_6F_72_65_73_69_7A_65 } ; +("spreadMethod") => { $ crate :: ATOM_LOCALNAME__73_70_72_65_61_64_4D_65_74_68_6F_64 } ; +("feConvolveMatrix") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6E_76_6F_6C_76_65_4D_61_74_72_69_78 } ; +("limitingConeAngle") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_43_6F_6E_65_41_6E_67_6C_65 } ; +("attributetype") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_74_79_70_65 } ; +("selection") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_69_6F_6E } ; +("repeat-max") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_61_78 } ; +("font-face-name") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_6E_61_6D_65 } ; +("controllerchange") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_6C_65_72_63_68_61_6E_67_65 } ; +("aria-selected") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_6C_65_63_74_65_64 } ; +("formenctype") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_65_6E_63_74_79_70_65 } ; +("datalist") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_6C_69_73_74 } ; +("rowalign") => { $ crate :: ATOM_LOCALNAME__72_6F_77_61_6C_69_67_6E } ; +("scalarproduct") => { $ crate :: ATOM_LOCALNAME__73_63_61_6C_61_72_70_72_6F_64_75_63_74 } ; +("limitingconeangle") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_63_6F_6E_65_61_6E_67_6C_65 } ; +("mprescripts") => { $ crate :: ATOM_LOCALNAME__6D_70_72_65_73_63_72_69_70_74_73 } ; +("aria-valuetext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_74_65_78_74 } ; +("disabled") => { $ crate :: ATOM_LOCALNAME__64_69_73_61_62_6C_65_64 } ; +("stroke-width") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_77_69_64_74_68 } ; +("noscript") => { $ crate :: ATOM_LOCALNAME__6E_6F_73_63_72_69_70_74 } ; +("onresize") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_73_69_7A_65 } ; +("filterUnits") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_55_6E_69_74_73 } ; +("aria-setsize") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_74_73_69_7A_65 } ; +("onbeforepaste") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_61_73_74_65 } ; +("aria-busy") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_75_73_79 } ; +("aria-controls") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6E_74_72_6F_6C_73 } ; +("malignmark") => { $ crate :: ATOM_LOCALNAME__6D_61_6C_69_67_6E_6D_61_72_6B } ; +("aria-keyshortcuts") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6B_65_79_73_68_6F_72_74_63_75_74_73 } ; +("calcmode") => { $ crate :: ATOM_LOCALNAME__63_61_6C_63_6D_6F_64_65 } ; +("marker-mid") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_6D_69_64 } ; +("onformchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_72_6D_63_68_61_6E_67_65 } ; +("aria-flowto") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_66_6C_6F_77_74_6F } ; +("animatemotion") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_6D_6F_74_69_6F_6E } ; +("amplitude") => { $ crate :: ATOM_LOCALNAME__61_6D_70_6C_69_74_75_64_65 } ; +("aria-valuemin") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_69_6E } ; +("aria-posinset") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_6F_73_69_6E_73_65_74 } ; +("lengthadjust") => { $ crate :: ATOM_LOCALNAME__6C_65_6E_67_74_68_61_64_6A_75_73_74 } ; +("diffuseConstant") => { $ crate :: ATOM_LOCALNAME__64_69_66_66_75_73_65_43_6F_6E_73_74_61_6E_74 } ; +("baseProfile") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_50_72_6F_66_69_6C_65 } ; +("color-rendering") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_72_65_6E_64_65_72_69_6E_67 } ; +("altGlyphDef") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_44_65_66 } ; +("primitiveunits") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_75_6E_69_74_73 } ; +("preservealpha") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_6C_70_68_61 } ; +("aria-rowindex") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78 } ; +("ondeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_65_61_63_74_69_76_61_74_65 } ; +("font-face-uri") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_75_72_69 } ; +("feSpecularLighting") => { $ crate :: ATOM_LOCALNAME__66_65_53_70_65_63_75_6C_61_72_4C_69_67_68_74_69_6E_67 } ; +("v-ideographic") => { $ crate :: ATOM_LOCALNAME__76_2D_69_64_65_6F_67_72_61_70_68_69_63 } ; +("stdDeviation") => { $ crate :: ATOM_LOCALNAME__73_74_64_44_65_76_69_61_74_69_6F_6E } ; +("onsubmit") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_75_62_6D_69_74 } ; +("scriptsizemultiplier") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_73_69_7A_65_6D_75_6C_74_69_70_6C_69_65_72 } ; +("onrowexit") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_65_78_69_74 } ; +("font-face") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65 } ; +("gradienttransform") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_74_72_61_6E_73_66_6F_72_6D } ; +("veryverythinmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("onselect") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74 } ; +("clip-rule") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_2D_72_75_6C_65 } ; +("codebase") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65_62_61_73_65 } ; +("underline-position") => { $ crate :: ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E } ; +("v-mathematical") => { $ crate :: ATOM_LOCALNAME__76_2D_6D_61_74_68_65_6D_61_74_69_63_61_6C } ; +("separator") => { $ crate :: ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72 } ; +("matrixrow") => { $ crate :: ATOM_LOCALNAME__6D_61_74_72_69_78_72_6F_77 } ; +("selected") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_65_64 } ; +("xlink:href") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_68_72_65_66 } ; +("horiz-adv-x") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_61_64_76_2D_78 } ; +("controls") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_73 } ; +("aria-current") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_75_72_72_65_6E_74 } ; +("onscroll") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_63_72_6F_6C_6C } ; +("pointsAtZ") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_5A } ; +("overflow") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_66_6C_6F_77 } ; +("") => { $ crate :: ATOM_LOCALNAME_ } ; +("onpagehide") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_67_65_68_69_64_65 } ; +("visibility") => { $ crate :: ATOM_LOCALNAME__76_69_73_69_62_69_6C_69_74_79 } ; +("feComponentTransfer") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_6E_65_6E_74_54_72_61_6E_73_66_65_72 } ; +("overline-position") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E } ; +("rendering-intent") => { $ crate :: ATOM_LOCALNAME__72_65_6E_64_65_72_69_6E_67_2D_69_6E_74_65_6E_74 } ; +("infinity") => { $ crate :: ATOM_LOCALNAME__69_6E_66_69_6E_69_74_79 } ; +("feconvolvematrix") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6E_76_6F_6C_76_65_6D_61_74_72_69_78 } ; +("repeatCount") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_43_6F_75_6E_74 } ; +("onselectstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74_73_74_61_72_74 } ; +("pointsaty") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_79 } ; +("direction") => { $ crate :: ATOM_LOCALNAME__64_69_72_65_63_74_69_6F_6E } ; +("fecolormatrix") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6C_6F_72_6D_61_74_72_69_78 } ; +("tabindex") => { $ crate :: ATOM_LOCALNAME__74_61_62_69_6E_64_65_78 } ; +("placeholder") => { $ crate :: ATOM_LOCALNAME__70_6C_61_63_65_68_6F_6C_64_65_72 } ; +("transpose") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_70_6F_73_65 } ; +("gradientunits") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_75_6E_69_74_73 } ; +("feDropShadow") => { $ crate :: ATOM_LOCALNAME__66_65_44_72_6F_70_53_68_61_64_6F_77 } ; +("xlink:role") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_72_6F_6C_65 } ; +("edgeMode") => { $ crate :: ATOM_LOCALNAME__65_64_67_65_4D_6F_64_65 } ; +("gradientTransform") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_54_72_61_6E_73_66_6F_72_6D } ; +("integers") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_67_65_72_73 } ; +("stddeviation") => { $ crate :: ATOM_LOCALNAME__73_74_64_64_65_76_69_61_74_69_6F_6E } ; +("repeat-start") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_73_74_61_72_74 } ; +("cap-height") => { $ crate :: ATOM_LOCALNAME__63_61_70_2D_68_65_69_67_68_74 } ; +("xlink:type") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_79_70_65 } ; +("unselectable") => { $ crate :: ATOM_LOCALNAME__75_6E_73_65_6C_65_63_74_61_62_6C_65 } ; +("contentstyletype") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_74_79_6C_65_74_79_70_65 } ; +("transform") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_66_6F_72_6D } ; +("stroke-linejoin") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_6A_6F_69_6E } ; +("integrity") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_67_72_69_74_79 } ; +("ondatasetchanged") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_68_61_6E_67_65_64 } ; +("foreignobject") => { $ crate :: ATOM_LOCALNAME__66_6F_72_65_69_67_6E_6F_62_6A_65_63_74 } ; +("radiogroup") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_6F_67_72_6F_75_70 } ; +("contenteditable") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_65_64_69_74_61_62_6C_65 } ; +("template") => { $ crate :: ATOM_LOCALNAME__74_65_6D_70_6C_61_74_65 } ; +("statechange") => { $ crate :: ATOM_LOCALNAME__73_74_61_74_65_63_68_61_6E_67_65 } ; +("pathlength") => { $ crate :: ATOM_LOCALNAME__70_61_74_68_6C_65_6E_67_74_68 } ; +("divergence") => { $ crate :: ATOM_LOCALNAME__64_69_76_65_72_67_65_6E_63_65 } ; +("aria-hidden") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_68_69_64_64_65_6E } ; +("ondragleave") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_6C_65_61_76_65 } ; +("maligngroup") => { $ crate :: ATOM_LOCALNAME__6D_61_6C_69_67_6E_67_72_6F_75_70 } ; +("outerproduct") => { $ crate :: ATOM_LOCALNAME__6F_75_74_65_72_70_72_6F_64_75_63_74 } ; +("aria-channel") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_68_61_6E_6E_65_6C } ; +("systemlanguage") => { $ crate :: ATOM_LOCALNAME__73_79_73_74_65_6D_6C_61_6E_67_75_61_67_65 } ; +("fetchpriority") => { $ crate :: ATOM_LOCALNAME__66_65_74_63_68_70_72_69_6F_72_69_74_79 } ; +("polyline") => { $ crate :: ATOM_LOCALNAME__70_6F_6C_79_6C_69_6E_65 } ; +("lighting-color") => { $ crate :: ATOM_LOCALNAME__6C_69_67_68_74_69_6E_67_2D_63_6F_6C_6F_72 } ; +("property") => { $ crate :: ATOM_LOCALNAME__70_72_6F_70_65_72_74_79 } ; +("animateColor") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_43_6F_6C_6F_72 } ; +("ondragdrop") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_64_72_6F_70 } ; +("repeat-min") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_69_6E } ; +("specification") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_69_66_69_63_61_74_69_6F_6E } ; +("surfacescale") => { $ crate :: ATOM_LOCALNAME__73_75_72_66_61_63_65_73_63_61_6C_65 } ; +("clippath") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_70_61_74_68 } ; +("patternUnits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_55_6E_69_74_73 } ; +("flood-opacity") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_64_2D_6F_70_61_63_69_74_79 } ; +("referrerpolicy") => { $ crate :: ATOM_LOCALNAME__72_65_66_65_72_72_65_72_70_6F_6C_69_63_79 } ; +("factorial") => { $ crate :: ATOM_LOCALNAME__66_61_63_74_6F_72_69_61_6C } ; +("hidefocus") => { $ crate :: ATOM_LOCALNAME__68_69_64_65_66_6F_63_75_73 } ; +("stitchTiles") => { $ crate :: ATOM_LOCALNAME__73_74_69_74_63_68_54_69_6C_65_73 } ; +("arabic-form") => { $ crate :: ATOM_LOCALNAME__61_72_61_62_69_63_2D_66_6F_72_6D } ; +("blockquote") => { $ crate :: ATOM_LOCALNAME__62_6C_6F_63_6B_71_75_6F_74_65 } ; +("mlabeledtr") => { $ crate :: ATOM_LOCALNAME__6D_6C_61_62_65_6C_65_64_74_72 } ; +("novalidate") => { $ crate :: ATOM_LOCALNAME__6E_6F_76_61_6C_69_64_61_74_65 } ; +("onpopstate") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_6F_70_73_74_61_74_65 } ; +("onerrorupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_72_72_6F_72_75_70_64_61_74_65 } ; +("feSpotLight") => { $ crate :: ATOM_LOCALNAME__66_65_53_70_6F_74_4C_69_67_68_74 } ; +("stop-opacity") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70_2D_6F_70_61_63_69_74_79 } ; +("readonly") => { $ crate :: ATOM_LOCALNAME__72_65_61_64_6F_6E_6C_79 } ; +("markerUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_55_6E_69_74_73 } ; +("naturalnumbers") => { $ crate :: ATOM_LOCALNAME__6E_61_74_75_72_61_6C_6E_75_6D_62_65_72_73 } ; +("markerunits") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_75_6E_69_74_73 } ; +("font-family") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_6D_69_6C_79 } ; +("patternunits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_75_6E_69_74_73 } ; +("orientation") => { $ crate :: ATOM_LOCALNAME__6F_72_69_65_6E_74_61_74_69_6F_6E } ; +("markerheight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_68_65_69_67_68_74 } ; +("aria-colindextext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78_74_65_78_74 } ; +("attributeType") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_54_79_70_65 } ; +("accesskey") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_73_73_6B_65_79 } ; +("clipPathUnits") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_50_61_74_68_55_6E_69_74_73 } ; +("keySplines") => { $ crate :: ATOM_LOCALNAME__6B_65_79_53_70_6C_69_6E_65_73 } ; +("onstorage") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_6F_72_61_67_65 } ; +("font-style") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_79_6C_65 } ; +("fedisplacementmap") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_73_70_6C_61_63_65_6D_65_6E_74_6D_61_70 } ; +("separators") => { $ crate :: ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72_73 } ; +("verythinmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("primitiveUnits") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_55_6E_69_74_73 } ; +("surfaceScale") => { $ crate :: ATOM_LOCALNAME__73_75_72_66_61_63_65_53_63_61_6C_65 } ; +("formaction") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_61_63_74_69_6F_6E } ; +("verythickmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("calcMode") => { $ crate :: ATOM_LOCALNAME__63_61_6C_63_4D_6F_64_65 } ; +("xml:lang") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_6C_61_6E_67 } ; +("fedistantlight") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_73_74_61_6E_74_6C_69_67_68_74 } ; +("fontstyle") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_73_74_79_6C_65 } ; +("overline-thickness") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 } ; +("onbounce") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_6F_75_6E_63_65 } ; +("bevelled") => { $ crate :: ATOM_LOCALNAME__62_65_76_65_6C_6C_65_64 } ; +("onmouseout") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_75_74 } ; +("exponent") => { $ crate :: ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74 } ; +("prefetch") => { $ crate :: ATOM_LOCALNAME__70_72_65_66_65_74_63_68 } ; +("tablevalues") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65_76_61_6C_75_65_73 } ; +("itemscope") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_73_63_6F_70_65 } ; +("manifest") => { $ crate :: ATOM_LOCALNAME__6D_61_6E_69_66_65_73_74 } ; +("nomodule") => { $ crate :: ATOM_LOCALNAME__6E_6F_6D_6F_64_75_6C_65 } ; +("mathvariant") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_76_61_72_69_61_6E_74 } ; +("v-alphabetic") => { $ crate :: ATOM_LOCALNAME__76_2D_61_6C_70_68_61_62_65_74_69_63 } ; +("scrolling") => { $ crate :: ATOM_LOCALNAME__73_63_72_6F_6C_6C_69_6E_67 } ; +("keysplines") => { $ crate :: ATOM_LOCALNAME__6B_65_79_73_70_6C_69_6E_65_73 } ; +("variance") => { $ crate :: ATOM_LOCALNAME__76_61_72_69_61_6E_63_65 } ; +("feMorphology") => { $ crate :: ATOM_LOCALNAME__66_65_4D_6F_72_70_68_6F_6C_6F_67_79 } ; +("preserveAlpha") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_6C_70_68_61 } ; +("viewTarget") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_54_61_72_67_65_74 } ; +("aria-orientation") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6F_72_69_65_6E_74_61_74_69_6F_6E } ; +("aria-rowcount") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_63_6F_75_6E_74 } ; +("onlanguagechange") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_61_6E_67_75_61_67_65_63_68_61_6E_67_65 } ; +("oncontrolselect") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_6E_74_72_6F_6C_73_65_6C_65_63_74 } ; +("onmouseup") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_75_70 } ; +("inputmode") => { $ crate :: ATOM_LOCALNAME__69_6E_70_75_74_6D_6F_64_65 } ; +("notsubset") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_73_75_62_73_65_74 } ; +("definition-src") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_2D_73_72_63 } ; +("aria-readonly") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_61_64_6F_6E_6C_79 } ; +("specularexponent") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_65_78_70_6F_6E_65_6E_74 } ; +("multiple") => { $ crate :: ATOM_LOCALNAME__6D_75_6C_74_69_70_6C_65 } ; +("onunload") => { $ crate :: ATOM_LOCALNAME__6F_6E_75_6E_6C_6F_61_64 } ; +("aria-colindex") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78 } ; +("reversed") => { $ crate :: ATOM_LOCALNAME__72_65_76_65_72_73_65_64 } ; +("onoffline") => { $ crate :: ATOM_LOCALNAME__6F_6E_6F_66_66_6C_69_6E_65 } ; +("aria-rowindextext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78_74_65_78_74 } ; +("externalresourcesrequired") => { $ crate :: ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_72_65_73_6F_75_72_63_65_73_72_65_71_75_69_72_65_64 } ; +("datatemplate") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_74_65_6D_70_6C_61_74_65 } ; +("fontsize") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_73_69_7A_65 } ; +("image-rendering") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_65_2D_72_65_6E_64_65_72_69_6E_67 } ; +("basefont") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_66_6F_6E_74 } ; +("fill-opacity") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C_2D_6F_70_61_63_69_74_79 } ; +("radialgradient") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_61_6C_67_72_61_64_69_65_6E_74 } ; +("frameborder") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_62_6F_72_64_65_72 } ; +("stroke-dasharray") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_61_72_72_61_79 } ; +("encoding") => { $ crate :: ATOM_LOCALNAME__65_6E_63_6F_64_69_6E_67 } ; +("animatetransform") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_74_72_61_6E_73_66_6F_72_6D } ; +("movablelimits") => { $ crate :: ATOM_LOCALNAME__6D_6F_76_61_62_6C_65_6C_69_6D_69_74_73 } ; +("filterres") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_72_65_73 } ; +("font-stretch") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_72_65_74_63_68 } ; +("clipPath") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_50_61_74_68 } ; +("xlink:show") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_73_68_6F_77 } ; +("notanumber") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_61_6E_75_6D_62_65_72 } ; +("onmouseenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_65_6E_74_65_72 } ; +("aria-dropeffect") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_72_6F_70_65_66_66_65_63_74 } ; +("progress") => { $ crate :: ATOM_LOCALNAME__70_72_6F_67_72_65_73_73 } ; +("ondataavailable") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_61_76_61_69_6C_61_62_6C_65 } ; +("valuetype") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65_74_79_70_65 } ; +("noframes") => { $ crate :: ATOM_LOCALNAME__6E_6F_66_72_61_6D_65_73 } ; +("specularExponent") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_45_78_70_6F_6E_65_6E_74 } ; +("text-rendering") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_72_65_6E_64_65_72_69_6E_67 } ; +("otherwise") => { $ crate :: ATOM_LOCALNAME__6F_74_68_65_72_77_69_73_65 } ; +("baseline") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65 } ; +("framespacing") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_73_70_61_63_69_6E_67 } ; +("xlink:title") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_69_74_6C_65 } ; +("feOffset") => { $ crate :: ATOM_LOCALNAME__66_65_4F_66_66_73_65_74 } ; +("aria-secret") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_63_72_65_74 } ; +("aria-valuenow") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6E_6F_77 } ; +("emptyset") => { $ crate :: ATOM_LOCALNAME__65_6D_70_74_79_73_65_74 } ; +("determinant") => { $ crate :: ATOM_LOCALNAME__64_65_74_65_72_6D_69_6E_61_6E_74 } ; +("textlength") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_6C_65_6E_67_74_68 } ; +("font-variant") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_76_61_72_69_61_6E_74 } ; +("horiz-origin-x") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_78 } ; +("aria-brailleroledescription") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E } ; +("onfocusout") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_6F_75_74 } ; +("menuitem") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_75_69_74_65_6D } ; +("ondragend") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_64 } ; +("baseline-shift") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65_2D_73_68_69_66_74 } ; +("feComposite") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_73_69_74_65 } ; +("pathLength") => { $ crate :: ATOM_LOCALNAME__70_61_74_68_4C_65_6E_67_74_68 } ; +("startOffset") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74_4F_66_66_73_65_74 } ; +("glyph-orientation-vertical") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_76_65_72_74_69_63_61_6C } ; +("textPath") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_50_61_74_68 } ; +("onreadystatechange") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_61_64_79_73_74_61_74_65_63_68_61_6E_67_65 } ; +("stroke-opacity") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6F_70_61_63_69_74_79 } ; +("accumulate") => { $ crate :: ATOM_LOCALNAME__61_63_63_75_6D_75_6C_61_74_65 } ; +("onbeforeupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_70_64_61_74_65 } ; +("shape-rendering") => { $ crate :: ATOM_LOCALNAME__73_68_61_70_65_2D_72_65_6E_64_65_72_69_6E_67 } ; +("figcaption") => { $ crate :: ATOM_LOCALNAME__66_69_67_63_61_70_74_69_6F_6E } ; +("thickmathspace") => { $ crate :: ATOM_LOCALNAME__74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("minlength") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_6C_65_6E_67_74_68 } ; +("requiredextensions") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_65_78_74_65_6E_73_69_6F_6E_73 } ; +("repeat-template") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_74_65_6D_70_6C_61_74_65 } ; +("vert-origin-x") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_78 } ; +("lineargradient") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_61_72_67_72_61_64_69_65_6E_74 } ; +("download") => { $ crate :: ATOM_LOCALNAME__64_6F_77_6E_6C_6F_61_64 } ; +("onmovestart") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65_73_74_61_72_74 } ; +("patterntransform") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_74_72_61_6E_73_66_6F_72_6D } ; +("superscriptshift") => { $ crate :: ATOM_LOCALNAME__73_75_70_65_72_73_63_72_69_70_74_73_68_69_66_74 } ; +("externalResourcesRequired") => { $ crate :: ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_52_65_73_6F_75_72_63_65_73_52_65_71_75_69_72_65_64 } ; +("animatecolor") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_63_6F_6C_6F_72 } ; +("panose-1") => { $ crate :: ATOM_LOCALNAME__70_61_6E_6F_73_65_2D_31 } ; +("filterRes") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_52_65_73 } ; +("aria-colcount") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_63_6F_75_6E_74 } ; +("missing-glyph") => { $ crate :: ATOM_LOCALNAME__6D_69_73_73_69_6E_67_2D_67_6C_79_70_68 } ; +("cartesianproduct") => { $ crate :: ATOM_LOCALNAME__63_61_72_74_65_73_69_61_6E_70_72_6F_64_75_63_74 } ; +("femergenode") => { $ crate :: ATOM_LOCALNAME__66_65_6D_65_72_67_65_6E_6F_64_65 } ; +("ondragover") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_6F_76_65_72 } ; +("fespecularlighting") => { $ crate :: ATOM_LOCALNAME__66_65_73_70_65_63_75_6C_61_72_6C_69_67_68_74_69_6E_67 } ; +("mphantom") => { $ crate :: ATOM_LOCALNAME__6D_70_68_61_6E_74_6F_6D } ; +("aria-activedescendant") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_63_74_69_76_65_64_65_73_63_65_6E_64_61_6E_74 } ; +("exponentiale") => { $ crate :: ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74_69_61_6C_65 } ; +("aria-invalid") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_69_6E_76_61_6C_69_64 } ; +("requiredfeatures") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_66_65_61_74_75_72_65_73 } ; +("additive") => { $ crate :: ATOM_LOCALNAME__61_64_64_69_74_69_76_65 } ; +("onbeforeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_61_63_74_69_76_61_74_65 } ; +("altglyphitem") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_69_74_65_6D } ; +("repeatcount") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_63_6F_75_6E_74 } ; +("rationals") => { $ crate :: ATOM_LOCALNAME__72_61_74_69_6F_6E_61_6C_73 } ; +("stroke-linecap") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_63_61_70 } ; +("annotation") => { $ crate :: ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E } ; +("units-per-em") => { $ crate :: ATOM_LOCALNAME__75_6E_69_74_73_2D_70_65_72_2D_65_6D } ; +("tableValues") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65_56_61_6C_75_65_73 } ; +("mmultiscripts") => { $ crate :: ATOM_LOCALNAME__6D_6D_75_6C_74_69_73_63_72_69_70_74_73 } ; +("aria-owns") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6F_77_6E_73 } ; +("ideographic") => { $ crate :: ATOM_LOCALNAME__69_64_65_6F_67_72_61_70_68_69_63 } ; +("text-anchor") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_61_6E_63_68_6F_72 } ; +("aria-sort") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_6F_72_74 } ; +("aria-datatype") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_61_74_61_74_79_70_65 } ; +("irrelevant") => { $ crate :: ATOM_LOCALNAME__69_72_72_65_6C_65_76_61_6E_74 } ; +("preserveAspectRatio") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_73_70_65_63_74_52_61_74_69_6F } ; +("markerWidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_57_69_64_74_68 } ; +("columnalign") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_61_6C_69_67_6E } ; +("notprsubset") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_70_72_73_75_62_73_65_74 } ; +("language") => { $ crate :: ATOM_LOCALNAME__6C_61_6E_67_75_61_67_65 } ; +("onbeforecopy") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_6F_70_79 } ; +("onfilterchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_69_6C_74_65_72_63_68_61_6E_67_65 } ; +("altglyphdef") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_64_65_66 } ; +("fePointLight") => { $ crate :: ATOM_LOCALNAME__66_65_50_6F_69_6E_74_4C_69_67_68_74 } ; +("pointer-events") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_65_72_2D_65_76_65_6E_74_73 } ; +("feDisplacementMap") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_73_70_6C_61_63_65_6D_65_6E_74_4D_61_70 } ; +("ondatasetcomplete") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_6F_6D_70_6C_65_74_65 } ; +("aria-rowspan") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_73_70_61_6E } ; +("columnspan") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_6E } ; +("stroke-dashoffset") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_6F_66_66_73_65_74 } ; +("aria-required") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_71_75_69_72_65_64 } ; +("occurrence") => { $ crate :: ATOM_LOCALNAME__6F_63_63_75_72_72_65_6E_63_65 } ; +("munderover") => { $ crate :: ATOM_LOCALNAME__6D_75_6E_64_65_72_6F_76_65_72 } ; +("linethickness") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_74_68_69_63_6B_6E_65_73_73 } ; +("feMergeNode") => { $ crate :: ATOM_LOCALNAME__66_65_4D_65_72_67_65_4E_6F_64_65 } ; +("menclose") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_63_6C_6F_73_65 } ; +("alignmentscope") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_73_63_6F_70_65 } ; +("markerwidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_77_69_64_74_68 } ; +("accentunder") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74_75_6E_64_65_72 } ; +("feoffset") => { $ crate :: ATOM_LOCALNAME__66_65_6F_66_66_73_65_74 } ; +("columnwidth") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_77_69_64_74_68 } ; +("textarea") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_61_72_65_61 } ; +("fecomposite") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_73_69_74_65 } ; +("itemprop") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_70_72_6F_70 } ; +("intersect") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_73_65_63_74 } ; +("semantics") => { $ crate :: ATOM_LOCALNAME__73_65_6D_61_6E_74_69_63_73 } ; +("font-size-adjust") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65_2D_61_64_6A_75_73_74 } ; +("word-spacing") => { $ crate :: ATOM_LOCALNAME__77_6F_72_64_2D_73_70_61_63_69_6E_67 } ; +("oncellchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_65_6C_6C_63_68_61_6E_67_65 } ; +("crossorigin") => { $ crate :: ATOM_LOCALNAME__63_72_6F_73_73_6F_72_69_67_69_6E } ; +("ondragstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_73_74_61_72_74 } ; +("flood-color") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_64_2D_63_6F_6C_6F_72 } ; +("glyph-name") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6E_61_6D_65 } ; +("pointsatx") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_78 } ; +("textLength") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_4C_65_6E_67_74_68 } ; +("eulergamma") => { $ crate :: ATOM_LOCALNAME__65_75_6C_65_72_67_61_6D_6D_61 } ; +("aria-details") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_74_61_69_6C_73 } ; +("translate") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_6C_61_74_65 } ; +("filterunits") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_75_6E_69_74_73 } ; +("contentscripttype") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_63_72_69_70_74_74_79_70_65 } ; +("mathematical") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_65_6D_61_74_69_63_61_6C } ; +("onrowenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_65_6E_74_65_72 } ; +("aria-grab") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_67_72_61_62 } ; +("onfocusin") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_69_6E } ; +("onpropertychange") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_72_6F_70_65_72_74_79_63_68_61_6E_67_65 } ; +("zoomandpan") => { $ crate :: ATOM_LOCALNAME__7A_6F_6F_6D_61_6E_64_70_61_6E } ; +("xlink:actuate") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_63_74_75_61_74_65 } ; +("unicode-bidi") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_62_69_64_69 } ; +("onmessage") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_65_73_73_61_67_65 } ; +("fespotlight") => { $ crate :: ATOM_LOCALNAME__66_65_73_70_6F_74_6C_69_67_68_74 } ; +("clip-path") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_2D_70_61_74_68 } ; +("onmousewheel") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_77_68_65_65_6C } ; +("marginwidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_67_69_6E_77_69_64_74_68 } ; +("aria-errormessage") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_65_72_72_6F_72_6D_65_73_73_61_67_65 } ; +("baseFrequency") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_46_72_65_71_75_65_6E_63_79 } ; +("scriptminsize") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_6D_69_6E_73_69_7A_65 } ; +("systemLanguage") => { $ crate :: ATOM_LOCALNAME__73_79_73_74_65_6D_4C_61_6E_67_75_61_67_65 } ; +("codetype") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65_74_79_70_65 } ; +("text-decoration") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_64_65_63_6F_72_61_74_69_6F_6E } ; +("ondragenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_74_65_72 } ; +("specularConstant") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_43_6F_6E_73_74_61_6E_74 } ; +("feTurbulence") => { $ crate :: ATOM_LOCALNAME__66_65_54_75_72_62_75_6C_65_6E_63_65 } ; +("font-size") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65 } ; +("accept-charset") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_70_74_2D_63_68_61_72_73_65_74 } ; +("draggable") => { $ crate :: ATOM_LOCALNAME__64_72_61_67_67_61_62_6C_65 } ; +("maskcontentunits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_63_6F_6E_74_65_6E_74_75_6E_69_74_73 } ; +("onlosecapture") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_6F_73_65_63_61_70_74_75_72_65 } ; +("contentScriptType") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_63_72_69_70_74_54_79_70_65 } ; +("rowlines") => { $ crate :: ATOM_LOCALNAME__72_6F_77_6C_69_6E_65_73 } ; +("radialGradient") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_61_6C_47_72_61_64_69_65_6E_74 } ; +("yChannelSelector") => { $ crate :: ATOM_LOCALNAME__79_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 } ; +("xml:space") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_73_70_61_63_65 } ; +("aria-live") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_69_76_65 } ; +("groupalign") => { $ crate :: ATOM_LOCALNAME__67_72_6F_75_70_61_6C_69_67_6E } ; +("onrepeat") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_70_65_61_74 } ; +("onpageshow") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_67_65_73_68_6F_77 } ; +("vectorproduct") => { $ crate :: ATOM_LOCALNAME__76_65_63_74_6F_72_70_72_6F_64_75_63_74 } ; +("aria-roledescription") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E } ; +("equalcolumns") => { $ crate :: ATOM_LOCALNAME__65_71_75_61_6C_63_6F_6C_75_6D_6E_73 } ; +("factorof") => { $ crate :: ATOM_LOCALNAME__66_61_63_74_6F_72_6F_66 } ; +("onmoveend") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65_65_6E_64 } ; +("onkeypress") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_70_72_65_73_73 } ; +("operator") => { $ crate :: ATOM_LOCALNAME__6F_70_65_72_61_74_6F_72 } ; +("kernelUnitLength") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_55_6E_69_74_4C_65_6E_67_74_68 } ; +("oncontextmenu") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_6E_74_65_78_74_6D_65_6E_75 } ; +("onactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_63_74_69_76_61_74_65 } ; +("aria-level") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_65_76_65_6C } ; +("pointsAtY") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_59 } ; +("mediummathspace") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_75_6D_6D_61_74_68_73_70_61_63_65 } ; +("animateMotion") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_4D_6F_74_69_6F_6E } ; +("baseprofile") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_70_72_6F_66_69_6C_65 } ; +("veryverythickmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("alphabetic") => { $ crate :: ATOM_LOCALNAME__61_6C_70_68_61_62_65_74_69_63 } ; +("keypoints") => { $ crate :: ATOM_LOCALNAME__6B_65_79_70_6F_69_6E_74_73 } ; +("marker-end") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_65_6E_64 } ; +("laplacian") => { $ crate :: ATOM_LOCALNAME__6C_61_70_6C_61_63_69_61_6E } ; +("kernelMatrix") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_4D_61_74_72_69_78 } ; +("altGlyphItem") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_49_74_65_6D } ; +("fegaussianblur") => { $ crate :: ATOM_LOCALNAME__66_65_67_61_75_73_73_69_61_6E_62_6C_75_72 } ; +("horiz-origin-y") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_79 } ; +("imaginary") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79 } ; +("fecomponenttransfer") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_6E_65_6E_74_74_72_61_6E_73_66_65_72 } ; +("metadata") => { $ crate :: ATOM_LOCALNAME__6D_65_74_61_64_61_74_61 } ; +("requiredExtensions") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_45_78_74_65_6E_73_69_6F_6E_73 } ; +("onchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_68_61_6E_67_65 } ; +("lengthAdjust") => { $ crate :: ATOM_LOCALNAME__6C_65_6E_67_74_68_41_64_6A_75_73_74 } ; +("patternContentUnits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_43_6F_6E_74_65_6E_74_55_6E_69_74_73 } ; +("marginheight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_67_69_6E_68_65_69_67_68_74 } ; +("attributename") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_6E_61_6D_65 } ; +("ychannelselector") => { $ crate :: ATOM_LOCALNAME__79_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 } ; +("keyTimes") => { $ crate :: ATOM_LOCALNAME__6B_65_79_54_69_6D_65_73 } ; +("repeatDur") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_44_75_72 } ; +("linebreak") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_62_72_65_61_6B } ; +("*") => { $ crate :: ATOM_LOCALNAME__2A } ; +("a") => { $ crate :: ATOM_LOCALNAME__61 } ; +("abbr") => { $ crate :: ATOM_LOCALNAME__61_62_62_72 } ; +("abs") => { $ crate :: ATOM_LOCALNAME__61_62_73 } ; +("accent") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74 } ; +("accept") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_70_74 } ; +("acronym") => { $ crate :: ATOM_LOCALNAME__61_63_72_6F_6E_79_6D } ; +("action") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_6F_6E } ; +("active") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_76_65 } ; +("actuate") => { $ crate :: ATOM_LOCALNAME__61_63_74_75_61_74_65 } ; +("address") => { $ crate :: ATOM_LOCALNAME__61_64_64_72_65_73_73 } ; +("align") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E } ; +("alink") => { $ crate :: ATOM_LOCALNAME__61_6C_69_6E_6B } ; +("alt") => { $ crate :: ATOM_LOCALNAME__61_6C_74 } ; +("altimg") => { $ crate :: ATOM_LOCALNAME__61_6C_74_69_6D_67 } ; +("alttext") => { $ crate :: ATOM_LOCALNAME__61_6C_74_74_65_78_74 } ; +("and") => { $ crate :: ATOM_LOCALNAME__61_6E_64 } ; +("animate") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65 } ; +("applet") => { $ crate :: ATOM_LOCALNAME__61_70_70_6C_65_74 } ; +("apply") => { $ crate :: ATOM_LOCALNAME__61_70_70_6C_79 } ; +("approx") => { $ crate :: ATOM_LOCALNAME__61_70_70_72_6F_78 } ; +("arccos") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_73 } ; +("arccosh") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_73_68 } ; +("arccot") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_74 } ; +("arccoth") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_74_68 } ; +("arccsc") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_73_63 } ; +("arccsch") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_73_63_68 } ; +("archive") => { $ crate :: ATOM_LOCALNAME__61_72_63_68_69_76_65 } ; +("arcrole") => { $ crate :: ATOM_LOCALNAME__61_72_63_72_6F_6C_65 } ; +("arcsec") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_65_63 } ; +("arcsech") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_65_63_68 } ; +("arcsin") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_69_6E } ; +("arcsinh") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_69_6E_68 } ; +("arctan") => { $ crate :: ATOM_LOCALNAME__61_72_63_74_61_6E } ; +("arctanh") => { $ crate :: ATOM_LOCALNAME__61_72_63_74_61_6E_68 } ; +("area") => { $ crate :: ATOM_LOCALNAME__61_72_65_61 } ; +("arg") => { $ crate :: ATOM_LOCALNAME__61_72_67 } ; +("article") => { $ crate :: ATOM_LOCALNAME__61_72_74_69_63_6C_65 } ; +("ascent") => { $ crate :: ATOM_LOCALNAME__61_73_63_65_6E_74 } ; +("aside") => { $ crate :: ATOM_LOCALNAME__61_73_69_64_65 } ; +("async") => { $ crate :: ATOM_LOCALNAME__61_73_79_6E_63 } ; +("audio") => { $ crate :: ATOM_LOCALNAME__61_75_64_69_6F } ; +("axis") => { $ crate :: ATOM_LOCALNAME__61_78_69_73 } ; +("azimuth") => { $ crate :: ATOM_LOCALNAME__61_7A_69_6D_75_74_68 } ; +("b") => { $ crate :: ATOM_LOCALNAME__62 } ; +("base") => { $ crate :: ATOM_LOCALNAME__62_61_73_65 } ; +("bbox") => { $ crate :: ATOM_LOCALNAME__62_62_6F_78 } ; +("bdi") => { $ crate :: ATOM_LOCALNAME__62_64_69 } ; +("bdo") => { $ crate :: ATOM_LOCALNAME__62_64_6F } ; +("begin") => { $ crate :: ATOM_LOCALNAME__62_65_67_69_6E } ; +("bgcolor") => { $ crate :: ATOM_LOCALNAME__62_67_63_6F_6C_6F_72 } ; +("bgsound") => { $ crate :: ATOM_LOCALNAME__62_67_73_6F_75_6E_64 } ; +("bias") => { $ crate :: ATOM_LOCALNAME__62_69_61_73 } ; +("big") => { $ crate :: ATOM_LOCALNAME__62_69_67 } ; +("blink") => { $ crate :: ATOM_LOCALNAME__62_6C_69_6E_6B } ; +("body") => { $ crate :: ATOM_LOCALNAME__62_6F_64_79 } ; +("border") => { $ crate :: ATOM_LOCALNAME__62_6F_72_64_65_72 } ; +("br") => { $ crate :: ATOM_LOCALNAME__62_72 } ; +("button") => { $ crate :: ATOM_LOCALNAME__62_75_74_74_6F_6E } ; +("bvar") => { $ crate :: ATOM_LOCALNAME__62_76_61_72 } ; +("by") => { $ crate :: ATOM_LOCALNAME__62_79 } ; +("canvas") => { $ crate :: ATOM_LOCALNAME__63_61_6E_76_61_73 } ; +("caption") => { $ crate :: ATOM_LOCALNAME__63_61_70_74_69_6F_6E } ; +("card") => { $ crate :: ATOM_LOCALNAME__63_61_72_64 } ; +("ceiling") => { $ crate :: ATOM_LOCALNAME__63_65_69_6C_69_6E_67 } ; +("center") => { $ crate :: ATOM_LOCALNAME__63_65_6E_74_65_72 } ; +("char") => { $ crate :: ATOM_LOCALNAME__63_68_61_72 } ; +("charoff") => { $ crate :: ATOM_LOCALNAME__63_68_61_72_6F_66_66 } ; +("charset") => { $ crate :: ATOM_LOCALNAME__63_68_61_72_73_65_74 } ; +("checked") => { $ crate :: ATOM_LOCALNAME__63_68_65_63_6B_65_64 } ; +("ci") => { $ crate :: ATOM_LOCALNAME__63_69 } ; +("circle") => { $ crate :: ATOM_LOCALNAME__63_69_72_63_6C_65 } ; +("cite") => { $ crate :: ATOM_LOCALNAME__63_69_74_65 } ; +("class") => { $ crate :: ATOM_LOCALNAME__63_6C_61_73_73 } ; +("classid") => { $ crate :: ATOM_LOCALNAME__63_6C_61_73_73_69_64 } ; +("clear") => { $ crate :: ATOM_LOCALNAME__63_6C_65_61_72 } ; +("clip") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70 } ; +("close") => { $ crate :: ATOM_LOCALNAME__63_6C_6F_73_65 } ; +("closure") => { $ crate :: ATOM_LOCALNAME__63_6C_6F_73_75_72_65 } ; +("cn") => { $ crate :: ATOM_LOCALNAME__63_6E } ; +("code") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65 } ; +("col") => { $ crate :: ATOM_LOCALNAME__63_6F_6C } ; +("color") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72 } ; +("cols") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_73 } ; +("colspan") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_73_70_61_6E } ; +("compact") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_61_63_74 } ; +("compose") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_6F_73_65 } ; +("content") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74 } ; +("coords") => { $ crate :: ATOM_LOCALNAME__63_6F_6F_72_64_73 } ; +("cos") => { $ crate :: ATOM_LOCALNAME__63_6F_73 } ; +("cosh") => { $ crate :: ATOM_LOCALNAME__63_6F_73_68 } ; +("cot") => { $ crate :: ATOM_LOCALNAME__63_6F_74 } ; +("coth") => { $ crate :: ATOM_LOCALNAME__63_6F_74_68 } ; +("csc") => { $ crate :: ATOM_LOCALNAME__63_73_63 } ; +("csch") => { $ crate :: ATOM_LOCALNAME__63_73_63_68 } ; +("csymbol") => { $ crate :: ATOM_LOCALNAME__63_73_79_6D_62_6F_6C } ; +("curl") => { $ crate :: ATOM_LOCALNAME__63_75_72_6C } ; +("cursor") => { $ crate :: ATOM_LOCALNAME__63_75_72_73_6F_72 } ; +("cx") => { $ crate :: ATOM_LOCALNAME__63_78 } ; +("cy") => { $ crate :: ATOM_LOCALNAME__63_79 } ; +("d") => { $ crate :: ATOM_LOCALNAME__64 } ; +("data") => { $ crate :: ATOM_LOCALNAME__64_61_74_61 } ; +("datafld") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_66_6C_64 } ; +("datasrc") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_73_72_63 } ; +("dd") => { $ crate :: ATOM_LOCALNAME__64_64 } ; +("declare") => { $ crate :: ATOM_LOCALNAME__64_65_63_6C_61_72_65 } ; +("default") => { $ crate :: ATOM_LOCALNAME__64_65_66_61_75_6C_74 } ; +("defer") => { $ crate :: ATOM_LOCALNAME__64_65_66_65_72 } ; +("defs") => { $ crate :: ATOM_LOCALNAME__64_65_66_73 } ; +("degree") => { $ crate :: ATOM_LOCALNAME__64_65_67_72_65_65 } ; +("del") => { $ crate :: ATOM_LOCALNAME__64_65_6C } ; +("depth") => { $ crate :: ATOM_LOCALNAME__64_65_70_74_68 } ; +("desc") => { $ crate :: ATOM_LOCALNAME__64_65_73_63 } ; +("descent") => { $ crate :: ATOM_LOCALNAME__64_65_73_63_65_6E_74 } ; +("details") => { $ crate :: ATOM_LOCALNAME__64_65_74_61_69_6C_73 } ; +("dfn") => { $ crate :: ATOM_LOCALNAME__64_66_6E } ; +("dialog") => { $ crate :: ATOM_LOCALNAME__64_69_61_6C_6F_67 } ; +("diff") => { $ crate :: ATOM_LOCALNAME__64_69_66_66 } ; +("dir") => { $ crate :: ATOM_LOCALNAME__64_69_72 } ; +("dirname") => { $ crate :: ATOM_LOCALNAME__64_69_72_6E_61_6D_65 } ; +("discard") => { $ crate :: ATOM_LOCALNAME__64_69_73_63_61_72_64 } ; +("display") => { $ crate :: ATOM_LOCALNAME__64_69_73_70_6C_61_79 } ; +("div") => { $ crate :: ATOM_LOCALNAME__64_69_76 } ; +("divide") => { $ crate :: ATOM_LOCALNAME__64_69_76_69_64_65 } ; +("divisor") => { $ crate :: ATOM_LOCALNAME__64_69_76_69_73_6F_72 } ; +("dl") => { $ crate :: ATOM_LOCALNAME__64_6C } ; +("domain") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_61_69_6E } ; +("dt") => { $ crate :: ATOM_LOCALNAME__64_74 } ; +("dur") => { $ crate :: ATOM_LOCALNAME__64_75_72 } ; +("dx") => { $ crate :: ATOM_LOCALNAME__64_78 } ; +("dy") => { $ crate :: ATOM_LOCALNAME__64_79 } ; +("edge") => { $ crate :: ATOM_LOCALNAME__65_64_67_65 } ; +("ellipse") => { $ crate :: ATOM_LOCALNAME__65_6C_6C_69_70_73_65 } ; +("em") => { $ crate :: ATOM_LOCALNAME__65_6D } ; +("embed") => { $ crate :: ATOM_LOCALNAME__65_6D_62_65_64 } ; +("enctype") => { $ crate :: ATOM_LOCALNAME__65_6E_63_74_79_70_65 } ; +("end") => { $ crate :: ATOM_LOCALNAME__65_6E_64 } ; +("eq") => { $ crate :: ATOM_LOCALNAME__65_71 } ; +("event") => { $ crate :: ATOM_LOCALNAME__65_76_65_6E_74 } ; +("exists") => { $ crate :: ATOM_LOCALNAME__65_78_69_73_74_73 } ; +("exp") => { $ crate :: ATOM_LOCALNAME__65_78_70 } ; +("face") => { $ crate :: ATOM_LOCALNAME__66_61_63_65 } ; +("false") => { $ crate :: ATOM_LOCALNAME__66_61_6C_73_65 } ; +("feBlend") => { $ crate :: ATOM_LOCALNAME__66_65_42_6C_65_6E_64 } ; +("feFlood") => { $ crate :: ATOM_LOCALNAME__66_65_46_6C_6F_6F_64 } ; +("feFuncA") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_41 } ; +("feFuncB") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_42 } ; +("feFuncG") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_47 } ; +("feFuncR") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_52 } ; +("feImage") => { $ crate :: ATOM_LOCALNAME__66_65_49_6D_61_67_65 } ; +("feMerge") => { $ crate :: ATOM_LOCALNAME__66_65_4D_65_72_67_65 } ; +("feTile") => { $ crate :: ATOM_LOCALNAME__66_65_54_69_6C_65 } ; +("feblend") => { $ crate :: ATOM_LOCALNAME__66_65_62_6C_65_6E_64 } ; +("feflood") => { $ crate :: ATOM_LOCALNAME__66_65_66_6C_6F_6F_64 } ; +("fefunca") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_61 } ; +("fefuncb") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_62 } ; +("fefuncg") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_67 } ; +("fefuncr") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_72 } ; +("feimage") => { $ crate :: ATOM_LOCALNAME__66_65_69_6D_61_67_65 } ; +("femerge") => { $ crate :: ATOM_LOCALNAME__66_65_6D_65_72_67_65 } ; +("fence") => { $ crate :: ATOM_LOCALNAME__66_65_6E_63_65 } ; +("fetch") => { $ crate :: ATOM_LOCALNAME__66_65_74_63_68 } ; +("fetile") => { $ crate :: ATOM_LOCALNAME__66_65_74_69_6C_65 } ; +("figure") => { $ crate :: ATOM_LOCALNAME__66_69_67_75_72_65 } ; +("fill") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C } ; +("filter") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72 } ; +("floor") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_72 } ; +("fn") => { $ crate :: ATOM_LOCALNAME__66_6E } ; +("font") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74 } ; +("footer") => { $ crate :: ATOM_LOCALNAME__66_6F_6F_74_65_72 } ; +("for") => { $ crate :: ATOM_LOCALNAME__66_6F_72 } ; +("forall") => { $ crate :: ATOM_LOCALNAME__66_6F_72_61_6C_6C } ; +("form") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D } ; +("format") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_61_74 } ; +("frame") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65 } ; +("from") => { $ crate :: ATOM_LOCALNAME__66_72_6F_6D } ; +("fx") => { $ crate :: ATOM_LOCALNAME__66_78 } ; +("fy") => { $ crate :: ATOM_LOCALNAME__66_79 } ; +("g") => { $ crate :: ATOM_LOCALNAME__67 } ; +("g1") => { $ crate :: ATOM_LOCALNAME__67_31 } ; +("g2") => { $ crate :: ATOM_LOCALNAME__67_32 } ; +("gcd") => { $ crate :: ATOM_LOCALNAME__67_63_64 } ; +("geq") => { $ crate :: ATOM_LOCALNAME__67_65_71 } ; +("glyph") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68 } ; +("grad") => { $ crate :: ATOM_LOCALNAME__67_72_61_64 } ; +("gt") => { $ crate :: ATOM_LOCALNAME__67_74 } ; +("h1") => { $ crate :: ATOM_LOCALNAME__68_31 } ; +("h2") => { $ crate :: ATOM_LOCALNAME__68_32 } ; +("h3") => { $ crate :: ATOM_LOCALNAME__68_33 } ; +("h4") => { $ crate :: ATOM_LOCALNAME__68_34 } ; +("h5") => { $ crate :: ATOM_LOCALNAME__68_35 } ; +("h6") => { $ crate :: ATOM_LOCALNAME__68_36 } ; +("handler") => { $ crate :: ATOM_LOCALNAME__68_61_6E_64_6C_65_72 } ; +("hanging") => { $ crate :: ATOM_LOCALNAME__68_61_6E_67_69_6E_67 } ; +("head") => { $ crate :: ATOM_LOCALNAME__68_65_61_64 } ; +("header") => { $ crate :: ATOM_LOCALNAME__68_65_61_64_65_72 } ; +("headers") => { $ crate :: ATOM_LOCALNAME__68_65_61_64_65_72_73 } ; +("height") => { $ crate :: ATOM_LOCALNAME__68_65_69_67_68_74 } ; +("hgroup") => { $ crate :: ATOM_LOCALNAME__68_67_72_6F_75_70 } ; +("hidden") => { $ crate :: ATOM_LOCALNAME__68_69_64_64_65_6E } ; +("high") => { $ crate :: ATOM_LOCALNAME__68_69_67_68 } ; +("hkern") => { $ crate :: ATOM_LOCALNAME__68_6B_65_72_6E } ; +("hr") => { $ crate :: ATOM_LOCALNAME__68_72 } ; +("href") => { $ crate :: ATOM_LOCALNAME__68_72_65_66 } ; +("hspace") => { $ crate :: ATOM_LOCALNAME__68_73_70_61_63_65 } ; +("html") => { $ crate :: ATOM_LOCALNAME__68_74_6D_6C } ; +("i") => { $ crate :: ATOM_LOCALNAME__69 } ; +("icon") => { $ crate :: ATOM_LOCALNAME__69_63_6F_6E } ; +("id") => { $ crate :: ATOM_LOCALNAME__69_64 } ; +("ident") => { $ crate :: ATOM_LOCALNAME__69_64_65_6E_74 } ; +("iframe") => { $ crate :: ATOM_LOCALNAME__69_66_72_61_6D_65 } ; +("image") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_65 } ; +("img") => { $ crate :: ATOM_LOCALNAME__69_6D_67 } ; +("implies") => { $ crate :: ATOM_LOCALNAME__69_6D_70_6C_69_65_73 } ; +("in") => { $ crate :: ATOM_LOCALNAME__69_6E } ; +("in2") => { $ crate :: ATOM_LOCALNAME__69_6E_32 } ; +("index") => { $ crate :: ATOM_LOCALNAME__69_6E_64_65_78 } ; +("input") => { $ crate :: ATOM_LOCALNAME__69_6E_70_75_74 } ; +("ins") => { $ crate :: ATOM_LOCALNAME__69_6E_73 } ; +("int") => { $ crate :: ATOM_LOCALNAME__69_6E_74 } ; +("inverse") => { $ crate :: ATOM_LOCALNAME__69_6E_76_65_72_73_65 } ; +("isindex") => { $ crate :: ATOM_LOCALNAME__69_73_69_6E_64_65_78 } ; +("ismap") => { $ crate :: ATOM_LOCALNAME__69_73_6D_61_70 } ; +("itemid") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_69_64 } ; +("itemref") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_72_65_66 } ; +("k") => { $ crate :: ATOM_LOCALNAME__6B } ; +("k1") => { $ crate :: ATOM_LOCALNAME__6B_31 } ; +("k2") => { $ crate :: ATOM_LOCALNAME__6B_32 } ; +("k3") => { $ crate :: ATOM_LOCALNAME__6B_33 } ; +("k4") => { $ crate :: ATOM_LOCALNAME__6B_34 } ; +("kbd") => { $ crate :: ATOM_LOCALNAME__6B_62_64 } ; +("kerning") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_69_6E_67 } ; +("keygen") => { $ crate :: ATOM_LOCALNAME__6B_65_79_67_65_6E } ; +("kind") => { $ crate :: ATOM_LOCALNAME__6B_69_6E_64 } ; +("label") => { $ crate :: ATOM_LOCALNAME__6C_61_62_65_6C } ; +("lambda") => { $ crate :: ATOM_LOCALNAME__6C_61_6D_62_64_61 } ; +("lang") => { $ crate :: ATOM_LOCALNAME__6C_61_6E_67 } ; +("largeop") => { $ crate :: ATOM_LOCALNAME__6C_61_72_67_65_6F_70 } ; +("lcm") => { $ crate :: ATOM_LOCALNAME__6C_63_6D } ; +("legend") => { $ crate :: ATOM_LOCALNAME__6C_65_67_65_6E_64 } ; +("leq") => { $ crate :: ATOM_LOCALNAME__6C_65_71 } ; +("li") => { $ crate :: ATOM_LOCALNAME__6C_69 } ; +("limit") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74 } ; +("line") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65 } ; +("link") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_6B } ; +("list") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74 } ; +("listing") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74_69_6E_67 } ; +("ln") => { $ crate :: ATOM_LOCALNAME__6C_6E } ; +("loading") => { $ crate :: ATOM_LOCALNAME__6C_6F_61_64_69_6E_67 } ; +("local") => { $ crate :: ATOM_LOCALNAME__6C_6F_63_61_6C } ; +("log") => { $ crate :: ATOM_LOCALNAME__6C_6F_67 } ; +("logbase") => { $ crate :: ATOM_LOCALNAME__6C_6F_67_62_61_73_65 } ; +("loop") => { $ crate :: ATOM_LOCALNAME__6C_6F_6F_70 } ; +("low") => { $ crate :: ATOM_LOCALNAME__6C_6F_77 } ; +("lowsrc") => { $ crate :: ATOM_LOCALNAME__6C_6F_77_73_72_63 } ; +("lquote") => { $ crate :: ATOM_LOCALNAME__6C_71_75_6F_74_65 } ; +("lspace") => { $ crate :: ATOM_LOCALNAME__6C_73_70_61_63_65 } ; +("lt") => { $ crate :: ATOM_LOCALNAME__6C_74 } ; +("macros") => { $ crate :: ATOM_LOCALNAME__6D_61_63_72_6F_73 } ; +("maction") => { $ crate :: ATOM_LOCALNAME__6D_61_63_74_69_6F_6E } ; +("main") => { $ crate :: ATOM_LOCALNAME__6D_61_69_6E } ; +("map") => { $ crate :: ATOM_LOCALNAME__6D_61_70 } ; +("mark") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B } ; +("marker") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72 } ; +("marquee") => { $ crate :: ATOM_LOCALNAME__6D_61_72_71_75_65_65 } ; +("mask") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B } ; +("math") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68 } ; +("matrix") => { $ crate :: ATOM_LOCALNAME__6D_61_74_72_69_78 } ; +("max") => { $ crate :: ATOM_LOCALNAME__6D_61_78 } ; +("maxsize") => { $ crate :: ATOM_LOCALNAME__6D_61_78_73_69_7A_65 } ; +("mean") => { $ crate :: ATOM_LOCALNAME__6D_65_61_6E } ; +("media") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_61 } ; +("median") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_61_6E } ; +("menu") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_75 } ; +("merror") => { $ crate :: ATOM_LOCALNAME__6D_65_72_72_6F_72 } ; +("meta") => { $ crate :: ATOM_LOCALNAME__6D_65_74_61 } ; +("meter") => { $ crate :: ATOM_LOCALNAME__6D_65_74_65_72 } ; +("method") => { $ crate :: ATOM_LOCALNAME__6D_65_74_68_6F_64 } ; +("mfenced") => { $ crate :: ATOM_LOCALNAME__6D_66_65_6E_63_65_64 } ; +("mfrac") => { $ crate :: ATOM_LOCALNAME__6D_66_72_61_63 } ; +("mglyph") => { $ crate :: ATOM_LOCALNAME__6D_67_6C_79_70_68 } ; +("mi") => { $ crate :: ATOM_LOCALNAME__6D_69 } ; +("min") => { $ crate :: ATOM_LOCALNAME__6D_69_6E } ; +("minsize") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_73_69_7A_65 } ; +("minus") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_75_73 } ; +("mn") => { $ crate :: ATOM_LOCALNAME__6D_6E } ; +("mo") => { $ crate :: ATOM_LOCALNAME__6D_6F } ; +("mode") => { $ crate :: ATOM_LOCALNAME__6D_6F_64_65 } ; +("moment") => { $ crate :: ATOM_LOCALNAME__6D_6F_6D_65_6E_74 } ; +("mover") => { $ crate :: ATOM_LOCALNAME__6D_6F_76_65_72 } ; +("mpadded") => { $ crate :: ATOM_LOCALNAME__6D_70_61_64_64_65_64 } ; +("mpath") => { $ crate :: ATOM_LOCALNAME__6D_70_61_74_68 } ; +("mroot") => { $ crate :: ATOM_LOCALNAME__6D_72_6F_6F_74 } ; +("mrow") => { $ crate :: ATOM_LOCALNAME__6D_72_6F_77 } ; +("ms") => { $ crate :: ATOM_LOCALNAME__6D_73 } ; +("mspace") => { $ crate :: ATOM_LOCALNAME__6D_73_70_61_63_65 } ; +("msqrt") => { $ crate :: ATOM_LOCALNAME__6D_73_71_72_74 } ; +("mstyle") => { $ crate :: ATOM_LOCALNAME__6D_73_74_79_6C_65 } ; +("msub") => { $ crate :: ATOM_LOCALNAME__6D_73_75_62 } ; +("msubsup") => { $ crate :: ATOM_LOCALNAME__6D_73_75_62_73_75_70 } ; +("msup") => { $ crate :: ATOM_LOCALNAME__6D_73_75_70 } ; +("mtable") => { $ crate :: ATOM_LOCALNAME__6D_74_61_62_6C_65 } ; +("mtd") => { $ crate :: ATOM_LOCALNAME__6D_74_64 } ; +("mtext") => { $ crate :: ATOM_LOCALNAME__6D_74_65_78_74 } ; +("mtr") => { $ crate :: ATOM_LOCALNAME__6D_74_72 } ; +("munder") => { $ crate :: ATOM_LOCALNAME__6D_75_6E_64_65_72 } ; +("muted") => { $ crate :: ATOM_LOCALNAME__6D_75_74_65_64 } ; +("name") => { $ crate :: ATOM_LOCALNAME__6E_61_6D_65 } ; +("nargs") => { $ crate :: ATOM_LOCALNAME__6E_61_72_67_73 } ; +("nav") => { $ crate :: ATOM_LOCALNAME__6E_61_76 } ; +("neq") => { $ crate :: ATOM_LOCALNAME__6E_65_71 } ; +("nest") => { $ crate :: ATOM_LOCALNAME__6E_65_73_74 } ; +("nextid") => { $ crate :: ATOM_LOCALNAME__6E_65_78_74_69_64 } ; +("nobr") => { $ crate :: ATOM_LOCALNAME__6E_6F_62_72 } ; +("noembed") => { $ crate :: ATOM_LOCALNAME__6E_6F_65_6D_62_65_64 } ; +("nohref") => { $ crate :: ATOM_LOCALNAME__6E_6F_68_72_65_66 } ; +("nonce") => { $ crate :: ATOM_LOCALNAME__6E_6F_6E_63_65 } ; +("none") => { $ crate :: ATOM_LOCALNAME__6E_6F_6E_65 } ; +("noshade") => { $ crate :: ATOM_LOCALNAME__6E_6F_73_68_61_64_65 } ; +("not") => { $ crate :: ATOM_LOCALNAME__6E_6F_74 } ; +("notin") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_69_6E } ; +("nowrap") => { $ crate :: ATOM_LOCALNAME__6E_6F_77_72_61_70 } ; +("object") => { $ crate :: ATOM_LOCALNAME__6F_62_6A_65_63_74 } ; +("offset") => { $ crate :: ATOM_LOCALNAME__6F_66_66_73_65_74 } ; +("ol") => { $ crate :: ATOM_LOCALNAME__6F_6C } ; +("onabort") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_62_6F_72_74 } ; +("onbegin") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_67_69_6E } ; +("onblur") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_6C_75_72 } ; +("onclick") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6C_69_63_6B } ; +("oncopy") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_70_79 } ; +("oncut") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_75_74 } ; +("ondrag") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67 } ; +("ondrop") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_6F_70 } ; +("onend") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_6E_64 } ; +("onerror") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_72_72_6F_72 } ; +("onfocus") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73 } ; +("onhelp") => { $ crate :: ATOM_LOCALNAME__6F_6E_68_65_6C_70 } ; +("oninput") => { $ crate :: ATOM_LOCALNAME__6F_6E_69_6E_70_75_74 } ; +("onkeyup") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_75_70 } ; +("onload") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_6F_61_64 } ; +("onmove") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65 } ; +("onpaste") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_73_74_65 } ; +("onreset") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_73_65_74 } ; +("onstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_61_72_74 } ; +("onstop") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_6F_70 } ; +("onzoom") => { $ crate :: ATOM_LOCALNAME__6F_6E_7A_6F_6F_6D } ; +("opacity") => { $ crate :: ATOM_LOCALNAME__6F_70_61_63_69_74_79 } ; +("open") => { $ crate :: ATOM_LOCALNAME__6F_70_65_6E } ; +("optimum") => { $ crate :: ATOM_LOCALNAME__6F_70_74_69_6D_75_6D } ; +("option") => { $ crate :: ATOM_LOCALNAME__6F_70_74_69_6F_6E } ; +("or") => { $ crate :: ATOM_LOCALNAME__6F_72 } ; +("order") => { $ crate :: ATOM_LOCALNAME__6F_72_64_65_72 } ; +("orient") => { $ crate :: ATOM_LOCALNAME__6F_72_69_65_6E_74 } ; +("origin") => { $ crate :: ATOM_LOCALNAME__6F_72_69_67_69_6E } ; +("other") => { $ crate :: ATOM_LOCALNAME__6F_74_68_65_72 } ; +("output") => { $ crate :: ATOM_LOCALNAME__6F_75_74_70_75_74 } ; +("p") => { $ crate :: ATOM_LOCALNAME__70 } ; +("param") => { $ crate :: ATOM_LOCALNAME__70_61_72_61_6D } ; +("parse") => { $ crate :: ATOM_LOCALNAME__70_61_72_73_65 } ; +("path") => { $ crate :: ATOM_LOCALNAME__70_61_74_68 } ; +("pattern") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E } ; +("pi") => { $ crate :: ATOM_LOCALNAME__70_69 } ; +("picture") => { $ crate :: ATOM_LOCALNAME__70_69_63_74_75_72_65 } ; +("piece") => { $ crate :: ATOM_LOCALNAME__70_69_65_63_65 } ; +("ping") => { $ crate :: ATOM_LOCALNAME__70_69_6E_67 } ; +("plus") => { $ crate :: ATOM_LOCALNAME__70_6C_75_73 } ; +("points") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73 } ; +("polygon") => { $ crate :: ATOM_LOCALNAME__70_6F_6C_79_67_6F_6E } ; +("poster") => { $ crate :: ATOM_LOCALNAME__70_6F_73_74_65_72 } ; +("power") => { $ crate :: ATOM_LOCALNAME__70_6F_77_65_72 } ; +("pre") => { $ crate :: ATOM_LOCALNAME__70_72_65 } ; +("preload") => { $ crate :: ATOM_LOCALNAME__70_72_65_6C_6F_61_64 } ; +("primes") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_65_73 } ; +("product") => { $ crate :: ATOM_LOCALNAME__70_72_6F_64_75_63_74 } ; +("profile") => { $ crate :: ATOM_LOCALNAME__70_72_6F_66_69_6C_65 } ; +("prompt") => { $ crate :: ATOM_LOCALNAME__70_72_6F_6D_70_74 } ; +("q") => { $ crate :: ATOM_LOCALNAME__71 } ; +("r") => { $ crate :: ATOM_LOCALNAME__72 } ; +("radius") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_75_73 } ; +("rb") => { $ crate :: ATOM_LOCALNAME__72_62 } ; +("real") => { $ crate :: ATOM_LOCALNAME__72_65_61_6C } ; +("reals") => { $ crate :: ATOM_LOCALNAME__72_65_61_6C_73 } ; +("rect") => { $ crate :: ATOM_LOCALNAME__72_65_63_74 } ; +("refX") => { $ crate :: ATOM_LOCALNAME__72_65_66_58 } ; +("refY") => { $ crate :: ATOM_LOCALNAME__72_65_66_59 } ; +("refx") => { $ crate :: ATOM_LOCALNAME__72_65_66_78 } ; +("refy") => { $ crate :: ATOM_LOCALNAME__72_65_66_79 } ; +("rel") => { $ crate :: ATOM_LOCALNAME__72_65_6C } ; +("reln") => { $ crate :: ATOM_LOCALNAME__72_65_6C_6E } ; +("rem") => { $ crate :: ATOM_LOCALNAME__72_65_6D } ; +("repeat") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74 } ; +("replace") => { $ crate :: ATOM_LOCALNAME__72_65_70_6C_61_63_65 } ; +("restart") => { $ crate :: ATOM_LOCALNAME__72_65_73_74_61_72_74 } ; +("result") => { $ crate :: ATOM_LOCALNAME__72_65_73_75_6C_74 } ; +("rev") => { $ crate :: ATOM_LOCALNAME__72_65_76 } ; +("role") => { $ crate :: ATOM_LOCALNAME__72_6F_6C_65 } ; +("root") => { $ crate :: ATOM_LOCALNAME__72_6F_6F_74 } ; +("rotate") => { $ crate :: ATOM_LOCALNAME__72_6F_74_61_74_65 } ; +("rows") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73 } ; +("rowspan") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73_70_61_6E } ; +("rp") => { $ crate :: ATOM_LOCALNAME__72_70 } ; +("rquote") => { $ crate :: ATOM_LOCALNAME__72_71_75_6F_74_65 } ; +("rspace") => { $ crate :: ATOM_LOCALNAME__72_73_70_61_63_65 } ; +("rt") => { $ crate :: ATOM_LOCALNAME__72_74 } ; +("rtc") => { $ crate :: ATOM_LOCALNAME__72_74_63 } ; +("ruby") => { $ crate :: ATOM_LOCALNAME__72_75_62_79 } ; +("rule") => { $ crate :: ATOM_LOCALNAME__72_75_6C_65 } ; +("rules") => { $ crate :: ATOM_LOCALNAME__72_75_6C_65_73 } ; +("rx") => { $ crate :: ATOM_LOCALNAME__72_78 } ; +("ry") => { $ crate :: ATOM_LOCALNAME__72_79 } ; +("s") => { $ crate :: ATOM_LOCALNAME__73 } ; +("samp") => { $ crate :: ATOM_LOCALNAME__73_61_6D_70 } ; +("sandbox") => { $ crate :: ATOM_LOCALNAME__73_61_6E_64_62_6F_78 } ; +("scale") => { $ crate :: ATOM_LOCALNAME__73_63_61_6C_65 } ; +("scheme") => { $ crate :: ATOM_LOCALNAME__73_63_68_65_6D_65 } ; +("scope") => { $ crate :: ATOM_LOCALNAME__73_63_6F_70_65 } ; +("scoped") => { $ crate :: ATOM_LOCALNAME__73_63_6F_70_65_64 } ; +("script") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74 } ; +("sdev") => { $ crate :: ATOM_LOCALNAME__73_64_65_76 } ; +("search") => { $ crate :: ATOM_LOCALNAME__73_65_61_72_63_68 } ; +("sec") => { $ crate :: ATOM_LOCALNAME__73_65_63 } ; +("sech") => { $ crate :: ATOM_LOCALNAME__73_65_63_68 } ; +("section") => { $ crate :: ATOM_LOCALNAME__73_65_63_74_69_6F_6E } ; +("seed") => { $ crate :: ATOM_LOCALNAME__73_65_65_64 } ; +("select") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74 } ; +("sep") => { $ crate :: ATOM_LOCALNAME__73_65_70 } ; +("set") => { $ crate :: ATOM_LOCALNAME__73_65_74 } ; +("setdiff") => { $ crate :: ATOM_LOCALNAME__73_65_74_64_69_66_66 } ; +("shape") => { $ crate :: ATOM_LOCALNAME__73_68_61_70_65 } ; +("show") => { $ crate :: ATOM_LOCALNAME__73_68_6F_77 } ; +("sin") => { $ crate :: ATOM_LOCALNAME__73_69_6E } ; +("sinh") => { $ crate :: ATOM_LOCALNAME__73_69_6E_68 } ; +("size") => { $ crate :: ATOM_LOCALNAME__73_69_7A_65 } ; +("sizes") => { $ crate :: ATOM_LOCALNAME__73_69_7A_65_73 } ; +("slope") => { $ crate :: ATOM_LOCALNAME__73_6C_6F_70_65 } ; +("slot") => { $ crate :: ATOM_LOCALNAME__73_6C_6F_74 } ; +("small") => { $ crate :: ATOM_LOCALNAME__73_6D_61_6C_6C } ; +("source") => { $ crate :: ATOM_LOCALNAME__73_6F_75_72_63_65 } ; +("space") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_65 } ; +("spacer") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_65_72 } ; +("spacing") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_69_6E_67 } ; +("span") => { $ crate :: ATOM_LOCALNAME__73_70_61_6E } ; +("speed") => { $ crate :: ATOM_LOCALNAME__73_70_65_65_64 } ; +("src") => { $ crate :: ATOM_LOCALNAME__73_72_63 } ; +("srcdoc") => { $ crate :: ATOM_LOCALNAME__73_72_63_64_6F_63 } ; +("srclang") => { $ crate :: ATOM_LOCALNAME__73_72_63_6C_61_6E_67 } ; +("srcset") => { $ crate :: ATOM_LOCALNAME__73_72_63_73_65_74 } ; +("standby") => { $ crate :: ATOM_LOCALNAME__73_74_61_6E_64_62_79 } ; +("start") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74 } ; +("stemh") => { $ crate :: ATOM_LOCALNAME__73_74_65_6D_68 } ; +("stemv") => { $ crate :: ATOM_LOCALNAME__73_74_65_6D_76 } ; +("step") => { $ crate :: ATOM_LOCALNAME__73_74_65_70 } ; +("stop") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70 } ; +("strike") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65 } ; +("string") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6E_67 } ; +("stroke") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65 } ; +("strong") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6E_67 } ; +("style") => { $ crate :: ATOM_LOCALNAME__73_74_79_6C_65 } ; +("sub") => { $ crate :: ATOM_LOCALNAME__73_75_62 } ; +("subset") => { $ crate :: ATOM_LOCALNAME__73_75_62_73_65_74 } ; +("sum") => { $ crate :: ATOM_LOCALNAME__73_75_6D } ; +("summary") => { $ crate :: ATOM_LOCALNAME__73_75_6D_6D_61_72_79 } ; +("sup") => { $ crate :: ATOM_LOCALNAME__73_75_70 } ; +("svg") => { $ crate :: ATOM_LOCALNAME__73_76_67 } ; +("switch") => { $ crate :: ATOM_LOCALNAME__73_77_69_74_63_68 } ; +("symbol") => { $ crate :: ATOM_LOCALNAME__73_79_6D_62_6F_6C } ; +("table") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65 } ; +("tan") => { $ crate :: ATOM_LOCALNAME__74_61_6E } ; +("tanh") => { $ crate :: ATOM_LOCALNAME__74_61_6E_68 } ; +("target") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74 } ; +("targetX") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_58 } ; +("targetY") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_59 } ; +("targetx") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_78 } ; +("targety") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_79 } ; +("tbody") => { $ crate :: ATOM_LOCALNAME__74_62_6F_64_79 } ; +("tbreak") => { $ crate :: ATOM_LOCALNAME__74_62_72_65_61_6B } ; +("td") => { $ crate :: ATOM_LOCALNAME__74_64 } ; +("tendsto") => { $ crate :: ATOM_LOCALNAME__74_65_6E_64_73_74_6F } ; +("text") => { $ crate :: ATOM_LOCALNAME__74_65_78_74 } ; +("tfoot") => { $ crate :: ATOM_LOCALNAME__74_66_6F_6F_74 } ; +("th") => { $ crate :: ATOM_LOCALNAME__74_68 } ; +("thead") => { $ crate :: ATOM_LOCALNAME__74_68_65_61_64 } ; +("time") => { $ crate :: ATOM_LOCALNAME__74_69_6D_65 } ; +("times") => { $ crate :: ATOM_LOCALNAME__74_69_6D_65_73 } ; +("title") => { $ crate :: ATOM_LOCALNAME__74_69_74_6C_65 } ; +("to") => { $ crate :: ATOM_LOCALNAME__74_6F } ; +("toggle") => { $ crate :: ATOM_LOCALNAME__74_6F_67_67_6C_65 } ; +("tr") => { $ crate :: ATOM_LOCALNAME__74_72 } ; +("track") => { $ crate :: ATOM_LOCALNAME__74_72_61_63_6B } ; +("tref") => { $ crate :: ATOM_LOCALNAME__74_72_65_66 } ; +("true") => { $ crate :: ATOM_LOCALNAME__74_72_75_65 } ; +("tspan") => { $ crate :: ATOM_LOCALNAME__74_73_70_61_6E } ; +("tt") => { $ crate :: ATOM_LOCALNAME__74_74 } ; +("type") => { $ crate :: ATOM_LOCALNAME__74_79_70_65 } ; +("u") => { $ crate :: ATOM_LOCALNAME__75 } ; +("u1") => { $ crate :: ATOM_LOCALNAME__75_31 } ; +("u2") => { $ crate :: ATOM_LOCALNAME__75_32 } ; +("ul") => { $ crate :: ATOM_LOCALNAME__75_6C } ; +("unicode") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65 } ; +("union") => { $ crate :: ATOM_LOCALNAME__75_6E_69_6F_6E } ; +("uplimit") => { $ crate :: ATOM_LOCALNAME__75_70_6C_69_6D_69_74 } ; +("use") => { $ crate :: ATOM_LOCALNAME__75_73_65 } ; +("usemap") => { $ crate :: ATOM_LOCALNAME__75_73_65_6D_61_70 } ; +("valign") => { $ crate :: ATOM_LOCALNAME__76_61_6C_69_67_6E } ; +("value") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65 } ; +("values") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65_73 } ; +("var") => { $ crate :: ATOM_LOCALNAME__76_61_72 } ; +("vector") => { $ crate :: ATOM_LOCALNAME__76_65_63_74_6F_72 } ; +("version") => { $ crate :: ATOM_LOCALNAME__76_65_72_73_69_6F_6E } ; +("video") => { $ crate :: ATOM_LOCALNAME__76_69_64_65_6F } ; +("view") => { $ crate :: ATOM_LOCALNAME__76_69_65_77 } ; +("viewBox") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_42_6F_78 } ; +("viewbox") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_62_6F_78 } ; +("vkern") => { $ crate :: ATOM_LOCALNAME__76_6B_65_72_6E } ; +("vlink") => { $ crate :: ATOM_LOCALNAME__76_6C_69_6E_6B } ; +("vspace") => { $ crate :: ATOM_LOCALNAME__76_73_70_61_63_65 } ; +("wbr") => { $ crate :: ATOM_LOCALNAME__77_62_72 } ; +("when") => { $ crate :: ATOM_LOCALNAME__77_68_65_6E } ; +("width") => { $ crate :: ATOM_LOCALNAME__77_69_64_74_68 } ; +("widths") => { $ crate :: ATOM_LOCALNAME__77_69_64_74_68_73 } ; +("wrap") => { $ crate :: ATOM_LOCALNAME__77_72_61_70 } ; +("x") => { $ crate :: ATOM_LOCALNAME__78 } ; +("x1") => { $ crate :: ATOM_LOCALNAME__78_31 } ; +("x2") => { $ crate :: ATOM_LOCALNAME__78_32 } ; +("xlink") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B } ; +("xmlns") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_6E_73 } ; +("xmp") => { $ crate :: ATOM_LOCALNAME__78_6D_70 } ; +("xor") => { $ crate :: ATOM_LOCALNAME__78_6F_72 } ; +("xref") => { $ crate :: ATOM_LOCALNAME__78_72_65_66 } ; +("y") => { $ crate :: ATOM_LOCALNAME__79 } ; +("y1") => { $ crate :: ATOM_LOCALNAME__79_31 } ; +("y2") => { $ crate :: ATOM_LOCALNAME__79_32 } ; +("z") => { $ crate :: ATOM_LOCALNAME__7A } ; +}pub type Prefix = :: string_cache :: Atom < PrefixStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct PrefixStaticSet ; +impl :: string_cache :: StaticAtomSet for PrefixStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 12913932095322966823u64 , disps : & [(0u32 , 0u32)] , atoms : & [""] , hashes : & [4082073077u32] } ; +& SET } fn empty_string_index () -> u32 { 0u32 } } pub const ATOM_PREFIX_ : Prefix = Prefix :: pack_static (0u32) ; +pub const ATOM_PREFIX__2A : Prefix = Prefix :: pack_inline (10752u64 , 1u8) ; +pub const ATOM_PREFIX__68_74_6D_6C : Prefix = Prefix :: pack_inline (465692813312u64 , 4u8) ; +pub const ATOM_PREFIX__6D_61_74_68_6D_6C : Prefix = Prefix :: pack_inline (30519592881319168u64 , 6u8) ; +pub const ATOM_PREFIX__73_76_67 : Prefix = Prefix :: pack_inline (1735815936u64 , 3u8) ; +pub const ATOM_PREFIX__78_6C_69_6E_6B : Prefix = Prefix :: pack_inline (118121959290880u64 , 5u8) ; +pub const ATOM_PREFIX__78_6D_6C : Prefix = Prefix :: pack_inline (1819113472u64 , 3u8) ; +pub const ATOM_PREFIX__78_6D_6C_6E_73 : Prefix = Prefix :: pack_inline (126918102710272u64 , 5u8) ; +# [doc = "Takes a namespace prefix string and returns its key in a string cache."] # [macro_export] macro_rules ! namespace_prefix { ("") => { $ crate :: ATOM_PREFIX_ } ; +("*") => { $ crate :: ATOM_PREFIX__2A } ; +("html") => { $ crate :: ATOM_PREFIX__68_74_6D_6C } ; +("mathml") => { $ crate :: ATOM_PREFIX__6D_61_74_68_6D_6C } ; +("svg") => { $ crate :: ATOM_PREFIX__73_76_67 } ; +("xlink") => { $ crate :: ATOM_PREFIX__78_6C_69_6E_6B } ; +("xml") => { $ crate :: ATOM_PREFIX__78_6D_6C } ; +("xmlns") => { $ crate :: ATOM_PREFIX__78_6D_6C_6E_73 } ; +}pub type Namespace = :: string_cache :: Atom < NamespaceStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct NamespaceStaticSet ; +impl :: string_cache :: StaticAtomSet for NamespaceStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 15467950696543387533u64 , disps : & [(1u32 , 0u32) , (1u32 , 4u32)] , atoms : & ["http://www.w3.org/1999/xhtml", +"http://www.w3.org/2000/svg", +"http://www.w3.org/XML/1998/namespace", +"http://www.w3.org/1998/Math/MathML", +"http://www.w3.org/1999/xlink", +"", +"http://www.w3.org/2000/xmlns/"] , hashes : & [1895391709u32 , 3069293938u32 , 2770585642u32 , 1216229735u32 , 2535599242u32 , 811901650u32 , 830072559u32] } ; +& SET } fn empty_string_index () -> u32 { 5u32 } } pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_68_74_6D_6C : Namespace = Namespace :: pack_static (0u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_73_76_67 : Namespace = Namespace :: pack_static (1u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_58_4D_4C_2F_31_39_39_38_2F_6E_61_6D_65_73_70_61_63_65 : Namespace = Namespace :: pack_static (2u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_38_2F_4D_61_74_68_2F_4D_61_74_68_4D_4C : Namespace = Namespace :: pack_static (3u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_6C_69_6E_6B : Namespace = Namespace :: pack_static (4u32) ; +pub const ATOM_NAMESPACE_ : Namespace = Namespace :: pack_static (5u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_78_6D_6C_6E_73_2F : Namespace = Namespace :: pack_static (6u32) ; +pub const ATOM_NAMESPACE__2A : Namespace = Namespace :: pack_inline (10752u64 , 1u8) ; +# [doc = "Takes a namespace url string and returns its key in a string cache."] # [macro_export] macro_rules ! namespace_url { ("http://www.w3.org/1999/xhtml") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_68_74_6D_6C } ; +("http://www.w3.org/2000/svg") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_73_76_67 } ; +("http://www.w3.org/XML/1998/namespace") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_58_4D_4C_2F_31_39_39_38_2F_6E_61_6D_65_73_70_61_63_65 } ; +("http://www.w3.org/1998/Math/MathML") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_38_2F_4D_61_74_68_2F_4D_61_74_68_4D_4C } ; +("http://www.w3.org/1999/xlink") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_6C_69_6E_6B } ; +("") => { $ crate :: ATOM_NAMESPACE_ } ; +("http://www.w3.org/2000/xmlns/") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_78_6D_6C_6E_73_2F } ; +("*") => { $ crate :: ATOM_NAMESPACE__2A } ; +} + /// Maps the input of [`namespace_prefix!`](macro.namespace_prefix.html) to + /// the output of [`namespace_url!`](macro.namespace_url.html). + /// + #[macro_export] macro_rules! ns { + +() => { namespace_url!("") }; +(*) => { namespace_url!("*") }; +(html) => { namespace_url!("http://www.w3.org/1999/xhtml") }; +(xml) => { namespace_url!("http://www.w3.org/XML/1998/namespace") }; +(xmlns) => { namespace_url!("http://www.w3.org/2000/xmlns/") }; +(xlink) => { namespace_url!("http://www.w3.org/1999/xlink") }; +(svg) => { namespace_url!("http://www.w3.org/2000/svg") }; +(mathml) => { namespace_url!("http://www.w3.org/1998/Math/MathML") }; +} diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs new file mode 100644 index 0000000..5c967d5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs @@ -0,0 +1,11844 @@ + +/// A map of entity names to their codepoints. The second codepoint will +/// be 0 if the entity contains a single codepoint. Entities have their preceding '&' removed. +/// +/// # Examples +/// +/// ``` +/// use markup5ever::data::NAMED_ENTITIES; +/// +/// assert_eq!(NAMED_ENTITIES.get("gt;").unwrap(), &(62, 0)); +/// ``` + +pub static NAMED_ENTITIES: Map<&'static str, (u32, u32)> = ::phf::Map { + key: 12913932095322966823, + disps: &[ + (0, 147), + (0, 2), + (0, 236), + (0, 9), + (0, 66), + (0, 0), + (0, 38), + (0, 154), + (0, 0), + (0, 2), + (0, 777), + (0, 73), + (0, 65), + (0, 0), + (0, 1), + (0, 0), + (0, 24), + (0, 131), + (0, 0), + (0, 5), + (0, 0), + (0, 193), + (0, 25), + (0, 7), + (0, 442), + (0, 154), + (0, 240), + (0, 8), + (0, 6), + (0, 53), + (0, 17), + (0, 4), + (0, 35), + (0, 346), + (0, 91), + (0, 85), + (0, 89), + (0, 0), + (0, 787), + (0, 27), + (0, 1), + (0, 4), + (0, 7), + (0, 79), + (0, 7), + (0, 44), + (0, 82), + (0, 437), + (0, 4), + (0, 58), + (0, 3), + (0, 51), + (0, 1), + (0, 65), + (0, 249), + (0, 9), + (0, 1), + (0, 66), + (0, 30), + (0, 1244), + (0, 21), + (0, 1), + (0, 15), + (0, 510), + (0, 5), + (0, 0), + (0, 9), + (0, 0), + (0, 5), + (0, 86), + (0, 46), + (0, 118), + (0, 28), + (0, 30), + (0, 0), + (0, 0), + (0, 0), + (0, 1009), + (0, 1), + (0, 10), + (0, 259), + (0, 326), + (0, 29), + (0, 1), + (0, 0), + (0, 889), + (0, 9), + (0, 165), + (0, 73), + (0, 19), + (0, 69), + (0, 237), + (0, 6), + (0, 686), + (0, 2), + (0, 6), + (0, 83), + (0, 1955), + (0, 116), + (0, 161), + (0, 2), + (0, 88), + (0, 10), + (0, 1066), + (0, 1), + (0, 1414), + (0, 3), + (0, 57), + (0, 10), + (0, 9), + (0, 276), + (0, 464), + (0, 26), + (0, 458), + (0, 9), + (0, 699), + (0, 117), + (0, 1136), + (0, 26), + (0, 218), + (0, 31), + (0, 46), + (0, 261), + (0, 183), + (0, 319), + (0, 1553), + (0, 232), + (0, 1), + (0, 1279), + (0, 13), + (0, 8), + (0, 1), + (0, 1728), + (0, 600), + (0, 4), + (0, 584), + (0, 1), + (0, 146), + (0, 342), + (0, 1442), + (0, 223), + (0, 473), + (0, 230), + (0, 510), + (0, 19), + (0, 255), + (0, 90), + (0, 152), + (0, 1), + (0, 1773), + (0, 3333), + (0, 1), + (0, 1855), + (0, 30), + (0, 1151), + (0, 132), + (0, 980), + (0, 0), + (0, 11), + (0, 1021), + (0, 398), + (0, 2985), + (0, 936), + (0, 26), + (0, 1563), + (0, 15), + (0, 26), + (0, 2), + (0, 570), + (0, 868), + (0, 200), + (0, 302), + (0, 27), + (0, 686), + (0, 196), + (0, 16), + (0, 33), + (0, 19), + (0, 162), + (0, 11), + (0, 24), + (0, 8), + (0, 7), + (0, 83), + (0, 766), + (0, 8), + (0, 1639), + (0, 555), + (0, 191), + (0, 0), + (0, 4), + (0, 28), + (0, 32), + (0, 25), + (0, 564), + (0, 11), + (0, 3), + (0, 8), + (0, 25), + (0, 3), + (0, 225), + (0, 47), + (0, 274), + (0, 51), + (0, 60), + (0, 2), + (0, 142), + (0, 84), + (0, 1236), + (0, 374), + (0, 528), + (0, 742), + (0, 156), + (0, 1), + (0, 0), + (0, 148), + (0, 7), + (0, 1), + (0, 5), + (0, 174), + (0, 479), + (0, 465), + (0, 125), + (0, 94), + (0, 8), + (0, 63), + (0, 119), + (0, 844), + (0, 147), + (0, 1), + (0, 325), + (0, 224), + (0, 1), + (0, 757), + (0, 4), + (0, 2), + (0, 69), + (0, 17), + (0, 165), + (0, 118), + (0, 20), + (0, 88), + (0, 12), + (0, 184), + (0, 1), + (0, 349), + (0, 319), + (0, 22), + (0, 247), + (0, 15), + (0, 255), + (0, 0), + (0, 0), + (0, 4), + (0, 0), + (0, 1951), + (0, 18), + (0, 58), + (0, 620), + (0, 495), + (0, 5), + (0, 2), + (0, 1166), + (0, 2), + (0, 0), + (0, 29), + (0, 2), + (0, 51), + (0, 7), + (0, 1075), + (0, 48), + (0, 680), + (0, 2970), + (0, 1), + (0, 255), + (0, 16), + (0, 57), + (0, 13), + (0, 2), + (0, 364), + (0, 75), + (0, 1821), + (0, 1), + (0, 0), + (0, 2), + (0, 10), + (0, 372), + (0, 6), + (0, 123), + (0, 1753), + (0, 103), + (0, 2), + (0, 2), + (0, 441), + (0, 38), + (0, 3), + (0, 4), + (0, 79), + (0, 0), + (0, 1), + (0, 272), + (0, 3), + (0, 2), + (0, 0), + (0, 42), + (0, 522), + (0, 42), + (0, 462), + (0, 31), + (0, 3), + (0, 18), + (0, 88), + (0, 13), + (0, 47), + (0, 2005), + (0, 76), + (0, 88), + (0, 18), + (0, 36), + (0, 26), + (0, 29), + (0, 7), + (0, 47), + (0, 14), + (0, 46), + (0, 169), + (0, 205), + (0, 1), + (0, 100), + (0, 523), + (0, 93), + (0, 23), + (0, 6), + (0, 74), + (0, 1), + (0, 4), + (0, 4), + (0, 115), + (0, 6), + (0, 5511), + (0, 6), + (0, 815), + (0, 2), + (0, 123), + (0, 332), + (0, 693), + (0, 328), + (0, 752), + (0, 39), + (0, 13), + (0, 101), + (0, 0), + (0, 2031), + (0, 65), + (0, 842), + (0, 13), + (0, 5), + (0, 1114), + (0, 25), + (0, 167), + (0, 457), + (0, 828), + (0, 156), + (0, 2), + (0, 500), + (0, 0), + (0, 348), + (0, 0), + (0, 15), + (0, 4), + (0, 7), + (0, 0), + (0, 596), + (0, 531), + (0, 92), + (0, 79), + (0, 1122), + (0, 108), + (0, 44), + (0, 75), + (0, 225), + (0, 438), + (0, 37), + (0, 12), + (0, 1), + (0, 1095), + (0, 131), + (0, 36), + (0, 299), + (0, 784), + (0, 1576), + (0, 396), + (0, 6), + (0, 0), + (0, 219), + (0, 6), + (0, 233), + (0, 726), + (0, 22), + (0, 301), + (0, 28), + (0, 1363), + (0, 45), + (0, 1761), + (0, 0), + (0, 744), + (0, 25), + (0, 2), + (0, 10), + (0, 6), + (0, 2), + (0, 1417), + (0, 822), + (0, 101), + (0, 4), + (0, 60), + (0, 226), + (0, 28), + (0, 13), + (0, 598), + (0, 4), + (0, 75), + (0, 2555), + (0, 6), + (0, 0), + (0, 74), + (0, 256), + (0, 11), + (0, 0), + (0, 231), + (0, 0), + (0, 4), + (0, 409), + (0, 68), + (0, 19), + (0, 176), + (0, 1), + (0, 416), + (0, 903), + (0, 28), + (0, 4), + (0, 287), + (0, 1781), + (0, 2163), + (0, 19), + (0, 3), + (0, 173), + (0, 1), + (0, 195), + (0, 67), + (0, 14), + (0, 157), + (0, 1), + (0, 130), + (0, 44), + (0, 68), + (0, 19), + (0, 11), + (0, 14), + (0, 198), + (0, 2), + (0, 30), + (0, 457), + (0, 634), + (0, 365), + (0, 10), + (0, 68), + (0, 63), + (0, 850), + (0, 28), + (0, 57), + (0, 638), + (0, 33), + (0, 250), + (0, 228), + (0, 2719), + (0, 21), + (0, 1), + (0, 71), + (0, 0), + (0, 132), + (0, 551), + (0, 23), + (0, 0), + (0, 831), + (0, 3), + (0, 2), + (0, 0), + (0, 7), + (0, 4873), + (0, 285), + (0, 21), + (0, 232), + (0, 1950), + (0, 164), + (0, 33), + (0, 237), + (0, 0), + (0, 1755), + (0, 0), + (0, 1922), + (0, 80), + (0, 4), + (0, 319), + (0, 6), + (0, 65), + (0, 1664), + (0, 319), + (0, 176), + (0, 784), + (0, 4), + (0, 15), + (0, 15), + (0, 4), + (0, 1), + (0, 8), + (0, 1009), + (0, 123), + (0, 83), + (0, 0), + (0, 25), + (0, 66), + (0, 11), + (0, 18), + (0, 7), + (0, 136), + (0, 0), + (0, 6), + (0, 648), + (0, 424), + (0, 0), + (0, 100), + (0, 579), + (0, 74), + (0, 6), + (0, 188), + (0, 3469), + (0, 293), + (0, 1), + (0, 145), + (0, 87), + (0, 46), + (0, 1088), + (0, 45), + (0, 131), + (0, 2375), + (0, 87), + (0, 2), + (0, 0), + (0, 1), + (0, 0), + (0, 167), + (0, 29), + (0, 121), + (0, 249), + (0, 9), + (0, 260), + (0, 24), + (0, 143), + (0, 59), + (0, 321), + (0, 273), + (0, 86), + (0, 457), + (0, 1028), + (0, 1327), + (0, 1093), + (0, 53), + (0, 324), + (0, 17), + (0, 7), + (0, 441), + (0, 312), + (0, 701), + (0, 10), + (0, 473), + (0, 2398), + (0, 460), + (0, 0), + (0, 364), + (0, 394), + (0, 334), + (0, 156), + (0, 560), + (0, 366), + (0, 456), + (0, 609), + (0, 224), + (0, 51), + (0, 972), + (0, 48), + (0, 964), + (0, 0), + (0, 0), + (0, 1371), + (0, 104), + (0, 73), + (0, 463), + (0, 1), + (0, 24), + (0, 40), + (0, 2), + (0, 162), + (0, 1), + (0, 49), + (0, 0), + (0, 0), + (0, 352), + (0, 243), + (0, 679), + (0, 64), + (0, 473), + (0, 95), + (0, 215), + (0, 312), + (0, 141), + (0, 4), + (0, 1024), + (0, 0), + (0, 1211), + (0, 11), + (0, 8), + (0, 25), + (0, 194), + (0, 261), + (0, 25), + (0, 145), + (0, 69), + (0, 125), + (0, 1), + (0, 2), + (0, 198), + (0, 180), + (0, 350), + (0, 1), + (0, 36), + (0, 340), + (0, 29), + (0, 99), + (0, 868), + (0, 0), + (0, 542), + (0, 255), + (0, 273), + (0, 12), + (0, 975), + (0, 3664), + (0, 206), + (0, 240), + (0, 2), + (0, 838), + (0, 316), + (0, 107), + (0, 1), + (0, 53), + (0, 62), + (0, 3), + (0, 1500), + (0, 1009), + (0, 145), + (0, 243), + (0, 1418), + (0, 6), + (0, 51), + (0, 225), + (0, 85), + (0, 10), + (0, 1), + (0, 69), + (0, 36), + (0, 22), + (0, 3), + (0, 69), + (0, 8), + (0, 47), + (0, 1351), + (0, 283), + (0, 12), + (0, 226), + (0, 603), + (0, 62), + (0, 2070), + (0, 8), + (0, 2), + (0, 631), + (0, 276), + (0, 449), + (0, 115), + (0, 240), + (0, 27), + (0, 1106), + (0, 7), + (0, 1), + (0, 85), + (0, 0), + (0, 42), + (0, 7), + (0, 1), + (0, 1611), + (0, 17), + (0, 0), + (0, 1), + (0, 143), + (0, 257), + (0, 220), + (0, 397), + (0, 353), + (0, 1), + (0, 5), + (0, 935), + (0, 1), + (0, 9), + (0, 5), + (0, 53), + (0, 4), + (0, 2559), + (0, 37), + (0, 75), + (0, 540), + (0, 2488), + (0, 136), + (0, 236), + (0, 57), + (0, 12), + (0, 54), + (0, 14), + (0, 648), + (0, 4), + (0, 0), + (0, 9), + (0, 635), + (0, 0), + (0, 357), + (0, 115), + (0, 91), + (0, 7), + (0, 221), + (0, 892), + (0, 2383), + (0, 551), + (0, 29), + (0, 18), + (0, 1416), + (0, 2697), + (0, 69), + (0, 131), + (0, 97), + (0, 1671), + (0, 39), + (0, 0), + (0, 179), + (0, 0), + (0, 360), + (0, 144), + (0, 649), + (0, 1516), + (0, 163), + (0, 52), + (0, 5), + (0, 531), + (0, 1028), + (0, 121), + (0, 204), + (0, 364), + (0, 867), + (0, 123), + (0, 38), + (0, 8), + (0, 2334), + (0, 9), + (0, 34), + (0, 351), + (0, 166), + (0, 1), + (0, 902), + (0, 832), + (0, 117), + (0, 256), + (0, 41), + (0, 4846), + (0, 444), + (0, 225), + (0, 25), + (0, 0), + (0, 1963), + (0, 0), + (0, 1834), + (0, 90), + (0, 30), + (0, 1786), + (0, 6), + (0, 42), + (0, 284), + (0, 281), + (0, 192), + (0, 11), + (0, 187), + (0, 2), + (0, 7), + (0, 4), + (0, 33), + (0, 847), + (0, 1), + (0, 0), + (0, 223), + (0, 52), + (0, 979), + (0, 11), + (0, 6), + (0, 121), + (0, 337), + (0, 92), + (0, 49), + (0, 87), + (0, 596), + (0, 58), + (0, 0), + (0, 0), + (0, 30), + (0, 19), + (0, 4), + (0, 849), + (0, 0), + (0, 12), + (0, 145), + (0, 857), + (0, 1), + (0, 177), + (0, 45), + (0, 3), + (0, 18), + (0, 5), + (0, 59), + (0, 1254), + (0, 335), + (0, 16), + (0, 26), + (0, 15), + (0, 1733), + (0, 1), + (0, 0), + (0, 1006), + (0, 1001), + (0, 219), + (0, 12), + (0, 271), + (0, 5), + (0, 34), + (0, 7), + (0, 11), + (0, 1), + (0, 12), + (0, 102), + (0, 31), + (0, 65), + (0, 408), + (0, 12), + (0, 2), + (0, 88), + (0, 3280), + (0, 93), + (0, 4546), + (0, 1530), + (0, 14), + (0, 26), + (0, 34), + (0, 4), + (0, 1), + (0, 279), + (0, 696), + (0, 64), + (0, 221), + (0, 39), + (0, 71), + (0, 81), + (0, 0), + (0, 15), + (0, 210), + (0, 72), + (0, 696), + (0, 2337), + (0, 954), + (0, 170), + (0, 1415), + (0, 180), + (0, 2104), + (0, 4), + (0, 38), + (0, 2), + (0, 5), + (0, 14), + (0, 98), + (0, 1), + (0, 193), + (0, 188), + (0, 61), + (0, 91), + (0, 1085), + (0, 586), + (0, 20), + (0, 611), + (0, 33), + (0, 5063), + (0, 0), + (0, 3200), + (0, 22), + (0, 757), + (0, 51), + (0, 1), + (0, 6), + (0, 150), + (0, 7), + (0, 1), + (0, 51), + (0, 526), + (0, 30), + (0, 0), + (0, 193), + (0, 482), + (0, 38), + (0, 2391), + (0, 2), + (0, 27), + (0, 30), + (0, 35), + (0, 0), + (0, 0), + (0, 1), + (0, 131), + (0, 2952), + (0, 38), + (0, 215), + (0, 5), + (0, 0), + (0, 1659), + (0, 181), + (0, 39), + (0, 23), + (0, 14), + (0, 3862), + (0, 197), + (0, 1), + (0, 0), + (0, 2428), + (0, 239), + (0, 1), + (0, 0), + (0, 106), + (0, 0), + (0, 9), + (0, 0), + (0, 85), + (0, 867), + (0, 205), + (0, 138), + (0, 1413), + (0, 70), + (0, 498), + (0, 1), + (0, 2269), + (0, 16), + (0, 6), + (0, 0), + (0, 2), + (0, 30), + (0, 282), + (0, 566), + (0, 54), + (0, 54), + (0, 182), + (0, 131), + (0, 1240), + (0, 89), + (0, 15), + (0, 36), + (0, 450), + (0, 9), + (0, 79), + (0, 2435), + (0, 5), + (0, 1589), + (0, 2), + (0, 97), + (0, 962), + (0, 21), + (0, 36), + (0, 409), + (0, 537), + (0, 1068), + (0, 9), + (0, 126), + (0, 830), + (0, 1), + (0, 1392), + (0, 1), + (0, 55), + (0, 2), + (0, 1), + (0, 305), + (0, 3260), + (0, 427), + (0, 262), + (0, 5), + (0, 253), + (0, 879), + (0, 52), + (0, 160), + (0, 4056), + (0, 3806), + (0, 6), + (0, 1539), + (0, 9), + (0, 580), + (0, 198), + (0, 617), + (0, 65), + (0, 14), + (0, 2), + (0, 50), + (0, 0), + (0, 50), + (0, 32), + (0, 6), + (0, 1402), + (0, 1074), + (0, 4601), + (0, 230), + (0, 23), + (0, 40), + (0, 789), + (0, 938), + (0, 1555), + (0, 2), + (0, 594), + (0, 2), + (0, 14), + (0, 223), + (0, 8), + (0, 75), + (0, 1198), + (0, 136), + (0, 0), + (0, 3), + (0, 864), + (0, 137), + (0, 9290), + (0, 0), + (0, 209), + (0, 165), + (0, 836), + (0, 103), + (0, 720), + (0, 708), + (0, 2), + (0, 0), + (0, 150), + (0, 1021), + (0, 41), + (0, 3329), + (0, 1), + (0, 191), + (0, 1), + (0, 148), + (0, 27), + (0, 154), + (0, 1498), + (0, 733), + (0, 154), + (0, 1), + (0, 3982), + (0, 8095), + (0, 3), + (0, 67), + (0, 1001), + (0, 703), + (0, 756), + (0, 76), + (0, 34), + (0, 963), + (0, 1197), + (0, 0), + (0, 2), + (0, 121), + (0, 1062), + (0, 776), + (0, 145), + (0, 276), + (0, 0), + (0, 20), + (0, 5030), + (0, 100), + (0, 3104), + (0, 1), + (0, 1), + (0, 15), + (0, 0), + (0, 2313), + (0, 31), + (0, 5277), + (0, 11), + (0, 434), + (0, 112), + (0, 2), + (0, 635), + (0, 339), + (0, 1103), + (0, 23), + (0, 86), + (0, 1), + (0, 145), + (0, 61), + (0, 1242), + (0, 0), + (0, 0), + (0, 2), + (0, 4), + (0, 28), + (0, 7), + (0, 5580), + (0, 22), + (0, 1125), + (0, 20), + (0, 137), + (0, 3609), + (0, 131), + (0, 6), + (0, 0), + (0, 1289), + (0, 2), + (0, 1559), + (0, 598), + (0, 11), + (0, 1909), + (0, 1591), + (0, 22), + (0, 0), + (0, 23), + (0, 296), + (0, 19), + (0, 8441), + (0, 0), + (0, 9), + (0, 8), + (0, 2), + (0, 1993), + (0, 69), + (0, 19), + (0, 19), + (0, 5), + (0, 331), + (0, 16), + (0, 6), + (0, 3347), + (0, 49), + (0, 17), + (0, 1), + (0, 516), + (0, 156), + (0, 26), + (0, 501), + (0, 72), + (0, 106), + (0, 2), + (0, 336), + (0, 22), + (0, 0), + (0, 107), + (0, 939), + (0, 341), + (0, 19), + (0, 2877), + (0, 6), + (0, 177), + (0, 821), + (0, 1100), + (0, 194), + (0, 24), + (0, 599), + (0, 18), + (0, 21), + (0, 17), + (0, 42), + (0, 7), + (0, 86), + (0, 0), + (0, 238), + (0, 8), + (0, 5), + (0, 1), + (0, 68), + (0, 9193), + (0, 11), + (0, 6763), + (0, 158), + (0, 386), + (0, 4041), + (0, 63), + (0, 1819), + (0, 18), + (0, 0), + (0, 2036), + (0, 345), + (0, 2203), + (0, 113), + (0, 6), + (0, 371), + (0, 7), + (0, 194), + (0, 26), + (0, 3184), + (0, 185), + (0, 136), + (0, 35), + (0, 1883), + (0, 981), + (0, 1497), + (0, 140), + (0, 6), + (0, 0), + (0, 5), + (0, 4246), + (0, 121), + (0, 404), + (0, 398), + (0, 260), + (0, 368), + (0, 212), + (0, 2), + (0, 30), + (0, 45), + (0, 988), + (0, 82), + (0, 79), + (0, 1556), + (0, 5), + (0, 168), + (0, 0), + (0, 336), + (0, 1699), + (0, 141), + (0, 13), + (0, 0), + (0, 242), + (0, 40), + (0, 263), + (0, 6464), + (0, 1332), + (0, 4), + (0, 459), + (0, 7), + (0, 20), + (0, 1), + (0, 3523), + (0, 19), + (0, 0), + (0, 11), + (0, 8), + (0, 24), + (0, 608), + (0, 8), + (0, 50), + (0, 1), + (0, 2), + (0, 1723), + (0, 157), + (1, 108), + (0, 3), + (0, 0), + (0, 7122), + (0, 151), + (0, 4), + (0, 0), + (0, 1), + (0, 30), + (0, 5289), + (0, 2), + (0, 122), + (0, 66), + (0, 3), + (0, 7), + (0, 8258), + (0, 227), + (0, 3), + (0, 652), + (0, 574), + (0, 376), + (0, 522), + (0, 110), + (0, 1), + (0, 920), + (0, 2012), + (0, 4754), + (0, 412), + (0, 2774), + (0, 12), + (0, 1262), + (0, 144), + (0, 181), + (0, 94), + (0, 1903), + (0, 249), + (0, 8), + (0, 9), + (0, 96), + (0, 1323), + (0, 65), + (0, 20), + (0, 1270), + (0, 0), + (0, 1551), + (0, 13), + (0, 0), + (0, 5090), + (0, 2007), + (0, 6405), + (1, 891), + (0, 2327), + (0, 2029), + (0, 1078), + (0, 2), + (0, 3), + (0, 1), + (0, 661), + (0, 71), + (0, 43), + (0, 73), + (0, 12), + (0, 223), + (0, 90), + (0, 1360), + (0, 5), + (0, 329), + (0, 29), + (0, 398), + (0, 25), + (0, 14), + (0, 980), + (0, 271), + (0, 0), + (0, 466), + (0, 6142), + (0, 247), + (0, 172), + (0, 47), + (0, 38), + (0, 1576), + (0, 364), + (0, 4167), + (0, 3656), + (0, 3934), + (0, 721), + (0, 1329), + (0, 96), + (0, 625), + (0, 82), + (0, 72), + (0, 1763), + (0, 20), + (0, 947), + (0, 62), + (0, 478), + (0, 0), + (0, 1), + (0, 5), + (0, 1), + (0, 272), + (0, 1522), + (0, 857), + (0, 10), + (0, 4), + (0, 51), + (0, 252), + (0, 4), + (0, 90), + (0, 65), + (0, 1148), + (0, 990), + (0, 39), + (0, 6), + (0, 3926), + (0, 49), + (0, 1362), + (0, 9), + (0, 35), + (0, 0), + (0, 3880), + (0, 330), + (0, 32), + (0, 16), + (0, 5919), + (0, 22), + (0, 122), + (0, 3527), + (0, 16), + (0, 1085), + (0, 308), + (0, 134), + (0, 185), + (0, 138), + (0, 2443), + (0, 754), + (0, 506), + (0, 184), + (0, 6121), + (0, 1), + (0, 162), + (0, 17), + (0, 28), + (0, 17), + (0, 3843), + (0, 5), + (0, 158), + (0, 29), + (0, 42), + (0, 664), + (0, 388), + (0, 1209), + (0, 0), + (0, 1640), + (0, 58), + (0, 1), + (0, 18), + (0, 41), + (0, 7498), + (0, 7138), + (0, 5), + (0, 134), + (0, 9), + (0, 1), + (0, 207), + (0, 82), + (0, 7984), + (0, 42), + (0, 903), + (0, 258), + (0, 9392), + (0, 36), + (0, 46), + (0, 0), + (0, 228), + (0, 1633), + (0, 2445), + (0, 163), + (0, 885), + (0, 2340), + (0, 1173), + (0, 137), + (0, 5859), + (0, 202), + (0, 12), + (0, 1147), + (0, 3825), + (0, 525), + (0, 198), + (0, 182), + (0, 326), + (0, 210), + (0, 3107), + (0, 50), + (0, 257), + (0, 47), + (0, 832), + (0, 4166), + (0, 1592), + (0, 16), + (0, 10), + (1, 6970), + (0, 36), + (0, 16), + (0, 1), + (0, 9), + (0, 31), + (0, 4294), + (0, 4069), + (0, 28), + (0, 476), + (0, 2810), + (0, 403), + (0, 225), + (0, 583), + (0, 29), + (0, 261), + (0, 705), + (0, 5), + (0, 1938), + (0, 948), + (0, 7), + (0, 3653), + (0, 612), + (0, 7244), + (0, 29), + (0, 154), + (0, 111), + (0, 164), + (0, 61), + (0, 36), + (0, 226), + (0, 7905), + (0, 767), + (0, 0), + (0, 32), + (0, 6), + (0, 949), + (0, 2011), + (0, 25), + (0, 0), + (0, 27), + (0, 993), + (0, 108), + (0, 496), + (0, 2591), + (0, 2225), + (1, 1620), + (0, 182), + (0, 369), + (0, 2765), + (0, 165), + (0, 78), + (0, 313), + (0, 163), + (0, 26), + (0, 5609), + (0, 123), + (0, 8), + (0, 750), + (0, 3621), + (0, 272), + (0, 1), + (0, 0), + (0, 2785), + (0, 1), + (0, 9118), + (0, 1166), + (0, 1564), + (0, 0), + (0, 2468), + (0, 20), + (0, 4), + (0, 1506), + (1, 371), + (0, 533), + (0, 7), + (0, 38), + (0, 1051), + (0, 4), + (0, 7), + (0, 5), + (0, 1), + (0, 1177), + (0, 6404), + (0, 64), + (0, 51), + (0, 17), + (0, 4), + (0, 3), + (0, 0), + (0, 31), + (0, 367), + (0, 211), + (0, 1066), + (0, 693), + (0, 74), + (0, 1175), + (0, 25), + (0, 900), + (0, 1848), + (0, 19), + (0, 64), + (0, 18), + (0, 28), + (1, 4212), + (0, 1909), + (0, 1480), + (0, 176), + (0, 33), + (0, 0), + (0, 223), + (0, 2), + (0, 34), + (0, 444), + (0, 1564), + (0, 25), + (0, 1085), + (0, 808), + (0, 5), + (0, 0), + (0, 27), + (0, 6328), + (0, 9), + (0, 69), + (0, 282), + (0, 1832), + (1, 8685), + (0, 299), + (0, 6813), + (0, 4), + (0, 167), + (0, 348), + (0, 4403), + (1, 3801), + (0, 66), + (0, 6324), + (0, 1879), + (0, 33), + (0, 145), + (0, 180), + (0, 4675), + (0, 11), + (0, 0), + (0, 38), + (0, 1119), + (0, 100), + (0, 430), + (0, 843), + (0, 77), + (0, 8663), + (0, 7), + (0, 6805), + (1, 2379), + (0, 1556), + (0, 6029), + (0, 6596), + (0, 99), + (0, 6554), + (0, 1025), + (0, 1223), + (0, 58), + (0, 7), + (0, 737), + (0, 443), + (0, 407), + (0, 219), + (0, 2227), + (0, 2286), + (0, 4165), + (0, 54), + (0, 298), + (2, 3184), + (0, 185), + (0, 8251), + (0, 0), + (0, 33), + (0, 30), + (0, 2), + (0, 310), + (0, 802), + (0, 5196), + (0, 2985), + (0, 211), + (0, 66), + (0, 74), + (0, 97), + (0, 40), + (0, 1), + (0, 521), + (0, 8), + (0, 813), + (0, 974), + (0, 3396), + (1, 5828), + (0, 40), + (0, 277), + (0, 17), + (0, 597), + (0, 718), + (0, 280), + (0, 9), + (0, 4), + (0, 340), + (0, 0), + (0, 552), + (0, 1), + (0, 275), + (1, 5278), + (0, 58), + (0, 3), + (0, 5371), + (0, 1), + (0, 16), + (0, 162), + (1, 8009), + (0, 835), + (0, 4572), + (0, 242), + (0, 510), + (0, 1), + (0, 52), + (0, 57), + (0, 517), + (0, 4415), + (0, 16), + (0, 3225), + (0, 31), + (0, 99), + (0, 0), + (0, 146), + (0, 0), + (0, 161), + (0, 4), + (0, 4), + (0, 216), + (0, 0), + (0, 1160), + (0, 5675), + (0, 154), + (0, 112), + (0, 132), + (0, 2), + (0, 66), + (0, 53), + (0, 51), + (0, 0), + (0, 325), + (0, 2296), + (0, 109), + (0, 7514), + (0, 2850), + (0, 44), + (0, 1530), + (0, 248), + (0, 654), + (0, 44), + (0, 2282), + (0, 299), + (0, 2151), + (0, 2886), + (0, 114), + (0, 5823), + (0, 182), + (0, 872), + (0, 0), + (0, 3170), + (0, 0), + (0, 50), + (0, 71), + (0, 33), + (0, 11), + (0, 1), + (0, 1258), + (0, 14), + (0, 3255), + (0, 216), + (0, 6127), + (0, 2144), + (0, 0), + (0, 2588), + (0, 1169), + (0, 1311), + (0, 588), + (0, 5), + (0, 174), + (0, 1393), + (0, 63), + (0, 50), + (0, 3955), + (0, 473), + (0, 1519), + (0, 0), + (0, 327), + (0, 2475), + (0, 15), + (0, 0), + (2, 2826), + (0, 2896), + (0, 0), + (0, 7005), + (1, 2910), + (0, 217), + (0, 2121), + (0, 75), + (0, 336), + (0, 9830), + (1, 1127), + (0, 26), + (0, 250), + (0, 1550), + (0, 31), + (0, 170), + (0, 21), + (0, 3383), + (0, 3241), + (0, 8864), + (0, 426), + (0, 45), + (0, 5113), + (0, 622), + (0, 288), + (0, 3), + (0, 3236), + (0, 23), + (0, 3996), + (0, 2), + (0, 2), + (0, 584), + (0, 0), + (0, 4), + (0, 0), + (0, 6088), + (0, 5672), + (0, 3725), + (0, 1803), + (0, 230), + (0, 251), + (0, 725), + (0, 2059), + (0, 421), + (0, 86), + (0, 5), + (0, 6924), + (0, 28), + (0, 1440), + (0, 1976), + (0, 1836), + (0, 2), + (1, 1615), + (0, 4462), + (0, 4846), + (0, 5436), + (0, 123), + (1, 519), + (0, 87), + (0, 1595), + (0, 2401), + (0, 5), + (0, 0), + (1, 341), + (0, 4), + (0, 899), + (0, 1939), + (0, 2), + (0, 1105), + (0, 1273), + (0, 74), + (0, 56), + (0, 1685), + (0, 1154), + (0, 1130), + (0, 19), + (0, 5971), + (0, 2940), + (0, 8020), + (0, 0), + (0, 116), + (2, 5930), + (0, 41), + (0, 162), + (0, 57), + (0, 1375), + (0, 398), + (0, 4008), + (0, 9287), + (0, 817), + (0, 0), + (0, 2793), + (0, 556), + (0, 997), + (0, 282), + (0, 0), + (0, 553), + (0, 5742), + (0, 382), + (0, 6670), + (0, 5301), + (0, 0), + (2, 9658), + (0, 463), + (1, 2981), + (0, 3716), + (0, 4894), + (0, 35), + (1, 75), + (0, 86), + (0, 3384), + (0, 0), + (0, 73), + (0, 635), + (0, 2), + (0, 7793), + (1, 126), + (0, 21), + (0, 173), + (0, 505), + (0, 1558), + (0, 45), + (0, 3137), + (2, 9424), + (0, 4030), + (0, 1749), + (0, 172), + (0, 1309), + (0, 240), + (0, 735), + (0, 400), + (0, 4), + (0, 160), + (0, 0), + (0, 1), + (0, 105), + (0, 1), + (0, 5051), + (0, 365), + (0, 146), + (0, 30), + (0, 3), + (0, 470), + (0, 452), + (0, 1824), + (0, 1716), + (0, 15), + (0, 1028), + (0, 332), + (0, 3606), + (0, 19), + (0, 6), + (0, 405), + (0, 7770), + (0, 4300), + (0, 247), + (0, 7550), + (0, 6643), + (2, 1261), + (0, 7147), + (0, 30), + (0, 9), + (0, 223), + (0, 403), + (0, 372), + (3, 4276), + (0, 9288), + (0, 6212), + (0, 714), + (4, 6377), + (0, 4), + (0, 46), + (1, 8403), + (0, 142), + (0, 4462), + (0, 7581), + (0, 12), + (0, 0), + (0, 4864), + (0, 2961), + (0, 265), + (0, 19), + (0, 119), + (0, 5454), + (2, 2981), + (0, 3230), + (0, 3), + (0, 0), + (0, 6000), + (1, 9805), + (0, 354), + (0, 61), + (0, 8529), + (0, 0), + (0, 2076), + (0, 629), + (1, 1194), + (0, 3377), + (0, 0), + (0, 1956), + (0, 1749), + (3, 3998), + (0, 109), + (0, 16), + (0, 1467), + (0, 5195), + (0, 35), + (0, 9700), + (0, 4738), + ], + entries: &[ + ("blacktrianglel", (0, 0)), + ("sharp", (0, 0)), + ("bowtie", (0, 0)), + ("NotPrecedesSlantEqual;", (8928, 0)), + ("Aci", (0, 0)), + ("Atilde;", (195, 0)), + ("Zacute;", (377, 0)), + ("gvertn", (0, 0)), + ("ordm", (186, 0)), + ("LeftV", (0, 0)), + ("circlearrowl", (0, 0)), + ("updo", (0, 0)), + ("wcirc", (0, 0)), + ("gtlPar;", (10645, 0)), + ("leftharpoondow", (0, 0)), + ("NotGreaterLess", (0, 0)), + ("curlyeqpr", (0, 0)), + ("Downarrow", (0, 0)), + ("mdas", (0, 0)), + ("timesd;", (10800, 0)), + ("smash", (0, 0)), + ("VerticalL", (0, 0)), + ("LessSlantE", (0, 0)), + ("Lamb", (0, 0)), + ("prap;", (10935, 0)), + ("Updownarro", (0, 0)), + ("right", (0, 0)), + ("bull", (0, 0)), + ("plusdo", (0, 0)), + ("Iuk", (0, 0)), + ("xmap;", (10236, 0)), + ("We", (0, 0)), + ("iiiin", (0, 0)), + ("Rsh;", (8625, 0)), + ("sac", (0, 0)), + ("nVDash;", (8879, 0)), + ("ns", (0, 0)), + ("NotNestedGr", (0, 0)), + ("RightCe", (0, 0)), + ("lce", (0, 0)), + ("lb", (0, 0)), + ("dArr;", (8659, 0)), + ("Hfr;", (8460, 0)), + ("lnE", (0, 0)), + ("emsp14", (0, 0)), + ("Ubre", (0, 0)), + ("bumpE", (0, 0)), + ("DoubleDo", (0, 0)), + ("g", (0, 0)), + ("grave", (0, 0)), + ("DoubleDownAr", (0, 0)), + ("bigt", (0, 0)), + ("nbu", (0, 0)), + ("Becau", (0, 0)), + ("curvearrowright;", (8631, 0)), + ("RightDownVector", (0, 0)), + ("xwedge;", (8896, 0)), + ("CircleTi", (0, 0)), + ("dashv", (0, 0)), + ("CupCa", (0, 0)), + ("vpro", (0, 0)), + ("scsim", (0, 0)), + ("kgr", (0, 0)), + ("fpartint", (0, 0)), + ("ShortDo", (0, 0)), + ("iiot", (0, 0)), + ("escr", (0, 0)), + ("lmidot", (0, 0)), + ("na", (0, 0)), + ("bigcup;", (8899, 0)), + ("bn", (0, 0)), + ("gneq", (0, 0)), + ("rBar", (0, 0)), + ("preceq;", (10927, 0)), + ("MediumSp", (0, 0)), + ("Ha", (0, 0)), + ("xve", (0, 0)), + ("tce", (0, 0)), + ("bsim", (0, 0)), + ("NotGreaterSlantEq", (0, 0)), + ("LeftAngleBra", (0, 0)), + ("nat", (0, 0)), + ("Acirc", (194, 0)), + ("Kappa", (0, 0)), + ("Uscr", (0, 0)), + ("intca", (0, 0)), + ("cylct", (0, 0)), + ("blk14", (0, 0)), + ("vdash", (0, 0)), + ("Laplacetr", (0, 0)), + ("Imaginar", (0, 0)), + ("Uma", (0, 0)), + ("DoubleLongRightArrow", (0, 0)), + ("lurd", (0, 0)), + ("icirc", (238, 0)), + ("lsquor;", (8218, 0)), + ("Idot", (0, 0)), + ("LessFull", (0, 0)), + ("ShortRightAr", (0, 0)), + ("DownLeftTeeVe", (0, 0)), + ("iiiint;", (10764, 0)), + ("ods", (0, 0)), + ("cwcon", (0, 0)), + ("ruluha", (0, 0)), + ("leftrightsquiga", (0, 0)), + ("odash", (0, 0)), + ("gel", (0, 0)), + ("Bu", (0, 0)), + ("xscr;", (120013, 0)), + ("succn", (0, 0)), + ("capdot;", (10816, 0)), + ("rat", (0, 0)), + ("topfor", (0, 0)), + ("NestedG", (0, 0)), + ("ContourIn", (0, 0)), + ("EqualT", (0, 0)), + ("Gscr;", (119970, 0)), + ("UpperLeftAr", (0, 0)), + ("pc", (0, 0)), + ("drcro", (0, 0)), + ("Vsc", (0, 0)), + ("thetasy", (0, 0)), + ("Clockwise", (0, 0)), + ("bigvee;", (8897, 0)), + ("jopf;", (120155, 0)), + ("Hcir", (0, 0)), + ("sw", (0, 0)), + ("Upsilon", (0, 0)), + ("CounterClockwiseContourIntegral;", (8755, 0)), + ("plusdu", (0, 0)), + ("searr;", (8600, 0)), + ("mnplus;", (8723, 0)), + ("shchc", (0, 0)), + ("clubsuit", (0, 0)), + ("epars", (0, 0)), + ("SquareUni", (0, 0)), + ("NotSubs", (0, 0)), + ("nltr", (0, 0)), + ("curly", (0, 0)), + ("NotGreater", (0, 0)), + ("DoubleLe", (0, 0)), + ("DoubleLongLeftRigh", (0, 0)), + ("ori", (0, 0)), + ("LeftAngl", (0, 0)), + ("jma", (0, 0)), + ("SquareSubs", (0, 0)), + ("Or", (0, 0)), + ("gna", (0, 0)), + ("circledast", (0, 0)), + ("RightUpVe", (0, 0)), + ("leftt", (0, 0)), + ("EmptySmallS", (0, 0)), + ("natu", (0, 0)), + ("succe", (0, 0)), + ("downdownar", (0, 0)), + ("Ogr", (0, 0)), + ("GT", (62, 0)), + ("YAcy;", (1071, 0)), + ("lcedil", (0, 0)), + ("clu", (0, 0)), + ("sd", (0, 0)), + ("nprec;", (8832, 0)), + ("NotSucceedsEq", (0, 0)), + ("slar", (0, 0)), + ("LongLeftRightA", (0, 0)), + ("smt;", (10922, 0)), + ("UnionPlus", (0, 0)), + ("col", (0, 0)), + ("clubsu", (0, 0)), + ("ruluh", (0, 0)), + ("vprop;", (8733, 0)), + ("gtreqles", (0, 0)), + ("succcurl", (0, 0)), + ("dotminus;", (8760, 0)), + ("DoubleLeftTee", (0, 0)), + ("duhar;", (10607, 0)), + ("Suc", (0, 0)), + ("DiacriticalDoubleAc", (0, 0)), + ("eqcolon;", (8789, 0)), + ("upharpoo", (0, 0)), + ("looparrow", (0, 0)), + ("ycirc;", (375, 0)), + ("gtra", (0, 0)), + ("succnsim;", (8937, 0)), + ("LeftRightV", (0, 0)), + ("dag", (0, 0)), + ("NotLessSlantEqual", (0, 0)), + ("varsigm", (0, 0)), + ("m", (0, 0)), + ("ouml", (246, 0)), + ("hkse", (0, 0)), + ("NotEqualTilde", (0, 0)), + ("NotGreaterTi", (0, 0)), + ("approxe", (0, 0)), + ("LeftTeeVe", (0, 0)), + ("sem", (0, 0)), + ("ou", (0, 0)), + ("straight", (0, 0)), + ("scc", (0, 0)), + ("ReverseElem", (0, 0)), + ("curlyeqprec;", (8926, 0)), + ("efr;", (120098, 0)), + ("ropl", (0, 0)), + ("downarro", (0, 0)), + ("Tild", (0, 0)), + ("SquareSubsetEqual;", (8849, 0)), + ("NotV", (0, 0)), + ("Ea", (0, 0)), + ("Lopf", (0, 0)), + ("swarr;", (8601, 0)), + ("rtimes;", (8906, 0)), + ("h", (0, 0)), + ("ntlg;", (8824, 0)), + ("Omicron;", (927, 0)), + ("Map;", (10501, 0)), + ("Gce", (0, 0)), + ("ZeroWidthSpac", (0, 0)), + ("Topf;", (120139, 0)), + ("ic", (0, 0)), + ("uarr;", (8593, 0)), + ("util", (0, 0)), + ("frac13", (0, 0)), + ("Longleftrightarro", (0, 0)), + ("Ufr", (0, 0)), + ("infin", (0, 0)), + ("Eq", (0, 0)), + ("cudarrl;", (10552, 0)), + ("Beta", (0, 0)), + ("NotEl", (0, 0)), + ("KHcy;", (1061, 0)), + ("diamonds", (0, 0)), + ("cca", (0, 0)), + ("LessF", (0, 0)), + ("nshortparallel;", (8742, 0)), + ("vsc", (0, 0)), + ("OverParenthe", (0, 0)), + ("Diamond", (0, 0)), + ("RightTri", (0, 0)), + ("iscr", (0, 0)), + ("HumpEqu", (0, 0)), + ("centerdot;", (183, 0)), + ("DownArrowUpA", (0, 0)), + ("lagran;", (8466, 0)), + ("dotpl", (0, 0)), + ("ulcorne", (0, 0)), + ("UpperLeftArr", (0, 0)), + ("lAarr", (0, 0)), + ("lhb", (0, 0)), + ("supnE", (0, 0)), + ("Brev", (0, 0)), + ("ulco", (0, 0)), + ("ccap", (0, 0)), + ("OverBracket", (0, 0)), + ("lArr", (0, 0)), + ("supplus", (0, 0)), + ("expe", (0, 0)), + ("expecta", (0, 0)), + ("om", (0, 0)), + ("eg;", (10906, 0)), + ("Ici", (0, 0)), + ("leftthreetime", (0, 0)), + ("iprod", (0, 0)), + ("ssetmn;", (8726, 0)), + ("A", (0, 0)), + ("ntrianglelefteq;", (8940, 0)), + ("Laplac", (0, 0)), + ("smeparsl;", (10724, 0)), + ("RightT", (0, 0)), + ("rsq", (0, 0)), + ("LeftUpDownVector;", (10577, 0)), + ("Rcedil;", (342, 0)), + ("Iot", (0, 0)), + ("NotSucceeds;", (8833, 0)), + ("uum", (0, 0)), + ("Llef", (0, 0)), + ("NegativeThinS", (0, 0)), + ("fj", (0, 0)), + ("breve", (0, 0)), + ("tbr", (0, 0)), + ("bkarow;", (10509, 0)), + ("NotSquare", (0, 0)), + ("RightArrowBar;", (8677, 0)), + ("RightDownVecto", (0, 0)), + ("Fi", (0, 0)), + ("Kfr", (0, 0)), + ("rightarrow;", (8594, 0)), + ("UpEquilib", (0, 0)), + ("leftrightsqu", (0, 0)), + ("succcurlye", (0, 0)), + ("blacktrianglele", (0, 0)), + ("Lcedi", (0, 0)), + ("djcy", (0, 0)), + ("ndash", (0, 0)), + ("LeftUpDownV", (0, 0)), + ("LessSlantEqu", (0, 0)), + ("RightDownTe", (0, 0)), + ("Ycy", (0, 0)), + ("exc", (0, 0)), + ("lef", (0, 0)), + ("ratai", (0, 0)), + ("LessFullEqual", (0, 0)), + ("icirc;", (238, 0)), + ("Nf", (0, 0)), + ("NotLessGr", (0, 0)), + ("gtreq", (0, 0)), + ("nvDa", (0, 0)), + ("Gcirc", (0, 0)), + ("otil", (0, 0)), + ("Hf", (0, 0)), + ("LeftUpTe", (0, 0)), + ("ThinSpace;", (8201, 0)), + ("el;", (10905, 0)), + ("Qf", (0, 0)), + ("backprime", (0, 0)), + ("LeftTr", (0, 0)), + ("DownRig", (0, 0)), + ("xhArr;", (10234, 0)), + ("Rop", (0, 0)), + ("DownTeeArrow", (0, 0)), + ("lozeng", (0, 0)), + ("CloseCurlyDoubleQu", (0, 0)), + ("Kcy", (0, 0)), + ("gsc", (0, 0)), + ("ReverseEquilibriu", (0, 0)), + ("GreaterSla", (0, 0)), + ("larrsim", (0, 0)), + ("vangrt;", (10652, 0)), + ("Rcaro", (0, 0)), + ("nco", (0, 0)), + ("LessEqual", (0, 0)), + ("uHar;", (10595, 0)), + ("andd", (0, 0)), + ("hstrok;", (295, 0)), + ("hyb", (0, 0)), + ("PrecedesTild", (0, 0)), + ("rangle;", (10217, 0)), + ("ContourIntegr", (0, 0)), + ("RBarr", (0, 0)), + ("Vscr", (0, 0)), + ("Negativ", (0, 0)), + ("Yo", (0, 0)), + ("cula", (0, 0)), + ("nGt", (0, 0)), + ("lesseqqg", (0, 0)), + ("rscr;", (120007, 0)), + ("nesim", (0, 0)), + ("LeftDownTeeVector;", (10593, 0)), + ("barv", (0, 0)), + ("succnapprox;", (10938, 0)), + ("lbrksld;", (10639, 0)), + ("triangl", (0, 0)), + ("CircleDo", (0, 0)), + ("xlarr", (0, 0)), + ("larrbf", (0, 0)), + ("larr", (0, 0)), + ("fal", (0, 0)), + ("Triple", (0, 0)), + ("opar", (0, 0)), + ("Uci", (0, 0)), + ("Roun", (0, 0)), + ("DoubleRightAr", (0, 0)), + ("planckh", (0, 0)), + ("EmptyVer", (0, 0)), + ("Prim", (0, 0)), + ("apo", (0, 0)), + ("RightTriangleEqua", (0, 0)), + ("blackt", (0, 0)), + ("Diac", (0, 0)), + ("UnderBracket", (0, 0)), + ("larrlp", (0, 0)), + ("Dot;", (168, 0)), + ("asympeq", (0, 0)), + ("mDDo", (0, 0)), + ("Uuml;", (220, 0)), + ("Tce", (0, 0)), + ("Integral", (0, 0)), + ("llcor", (0, 0)), + ("Prece", (0, 0)), + ("Part", (0, 0)), + ("herco", (0, 0)), + ("cacute", (0, 0)), + ("profli", (0, 0)), + ("of", (0, 0)), + ("uopf", (0, 0)), + ("Ti", (0, 0)), + ("edot;", (279, 0)), + ("drcor", (0, 0)), + ("RightArrowLeftArro", (0, 0)), + ("rightsquigarrow;", (8605, 0)), + ("upuparr", (0, 0)), + ("queste", (0, 0)), + ("Longleft", (0, 0)), + ("laemptyv", (0, 0)), + ("trie", (0, 0)), + ("hAr", (0, 0)), + ("xutr", (0, 0)), + ("siml;", (10909, 0)), + ("sup1", (185, 0)), + ("PrecedesSlan", (0, 0)), + ("Ntilde", (209, 0)), + ("uwa", (0, 0)), + ("frac34", (190, 0)), + ("boxVR;", (9568, 0)), + ("zig", (0, 0)), + ("dotsqua", (0, 0)), + ("dtr", (0, 0)), + ("Diacritic", (0, 0)), + ("gjcy;", (1107, 0)), + ("epsiv;", (1013, 0)), + ("IE", (0, 0)), + ("boxDR", (0, 0)), + ("fa", (0, 0)), + ("npara", (0, 0)), + ("frac45", (0, 0)), + ("pi;", (960, 0)), + ("cirmi", (0, 0)), + ("leftthreeti", (0, 0)), + ("bigotimes", (0, 0)), + ("bigsqc", (0, 0)), + ("xlarr;", (10229, 0)), + ("lhbl", (0, 0)), + ("ldc", (0, 0)), + ("ugrave;", (249, 0)), + ("NotHumpDownHump;", (8782, 824)), + ("Rho;", (929, 0)), + ("rarrs", (0, 0)), + ("NotLessS", (0, 0)), + ("inca", (0, 0)), + ("RoundImplies", (0, 0)), + ("FilledVerySmallS", (0, 0)), + ("esi", (0, 0)), + ("orslo", (0, 0)), + ("ddag", (0, 0)), + ("curre", (0, 0)), + ("uuarr;", (8648, 0)), + ("up", (0, 0)), + ("ccar", (0, 0)), + ("ri", (0, 0)), + ("lhard", (0, 0)), + ("nles", (0, 0)), + ("Utild", (0, 0)), + ("eqcirc;", (8790, 0)), + ("ltime", (0, 0)), + ("yacy;", (1103, 0)), + ("malt;", (10016, 0)), + ("aac", (0, 0)), + ("RoundImp", (0, 0)), + ("phmmat", (0, 0)), + ("RightDownTeeVect", (0, 0)), + ("cap;", (8745, 0)), + ("jm", (0, 0)), + ("looparrowle", (0, 0)), + ("profline;", (8978, 0)), + ("plus", (0, 0)), + ("straightepsi", (0, 0)), + ("RightCeili", (0, 0)), + ("awconin", (0, 0)), + ("mapstodown", (0, 0)), + ("triangleleft", (0, 0)), + ("gc", (0, 0)), + ("oo", (0, 0)), + ("zet", (0, 0)), + ("setmin", (0, 0)), + ("twix", (0, 0)), + ("mapstoleft", (0, 0)), + ("LowerLeftArrow", (0, 0)), + ("sqsub", (0, 0)), + ("iocy", (0, 0)), + ("imagpar", (0, 0)), + ("softcy", (0, 0)), + ("acd;", (8767, 0)), + ("Ium", (0, 0)), + ("DoubleLongRightArrow;", (10233, 0)), + ("Pri", (0, 0)), + ("tfr", (0, 0)), + ("DoubleLo", (0, 0)), + ("Tilde;", (8764, 0)), + ("Equal", (0, 0)), + ("Iu", (0, 0)), + ("Hs", (0, 0)), + ("nvl", (0, 0)), + ("ClockwiseContourIntegra", (0, 0)), + ("RightTriangleBar", (0, 0)), + ("downharpoonle", (0, 0)), + ("expec", (0, 0)), + ("bigotim", (0, 0)), + ("AMP;", (38, 0)), + ("boxH;", (9552, 0)), + ("Intersectio", (0, 0)), + ("aum", (0, 0)), + ("niv", (0, 0)), + ("nlefta", (0, 0)), + ("lesseq", (0, 0)), + ("mar", (0, 0)), + ("male", (0, 0)), + ("curlyeqpre", (0, 0)), + ("LowerRight", (0, 0)), + ("lon", (0, 0)), + ("Exponenti", (0, 0)), + ("nexist", (0, 0)), + ("siml", (0, 0)), + ("NotGreaterT", (0, 0)), + ("rfloor;", (8971, 0)), + ("Bsc", (0, 0)), + ("Otim", (0, 0)), + ("capbrcup", (0, 0)), + ("varkappa;", (1008, 0)), + ("circ", (0, 0)), + ("plan", (0, 0)), + ("Sacu", (0, 0)), + ("varsig", (0, 0)), + ("RoundImpli", (0, 0)), + ("jsercy;", (1112, 0)), + ("di", (0, 0)), + ("bepsi", (0, 0)), + ("hearts", (0, 0)), + ("nleqsla", (0, 0)), + ("RuleDel", (0, 0)), + ("boxhd", (0, 0)), + ("profl", (0, 0)), + ("downharpo", (0, 0)), + ("raemptyv;", (10675, 0)), + ("ominus", (0, 0)), + ("bsolb;", (10693, 0)), + ("straightepsilon;", (1013, 0)), + ("nsub", (0, 0)), + ("DoubleLongLeftArro", (0, 0)), + ("ensp", (0, 0)), + ("Aopf", (0, 0)), + ("gacute", (0, 0)), + ("Colone;", (10868, 0)), + ("zw", (0, 0)), + ("leftharpoo", (0, 0)), + ("UpArrowDownAr", (0, 0)), + ("IEcy", (0, 0)), + ("shortpar", (0, 0)), + ("nGtv;", (8811, 824)), + ("downh", (0, 0)), + ("commat;", (64, 0)), + ("ContourIntegral;", (8750, 0)), + ("eacut", (0, 0)), + ("gnapprox;", (10890, 0)), + ("breve;", (728, 0)), + ("iinf", (0, 0)), + ("hom", (0, 0)), + ("nlA", (0, 0)), + ("cupdo", (0, 0)), + ("ee", (0, 0)), + ("TScy;", (1062, 0)), + ("LeftDoubl", (0, 0)), + ("Succee", (0, 0)), + ("curlyv", (0, 0)), + ("rightarro", (0, 0)), + ("rbrace", (0, 0)), + ("NotGreaterFullE", (0, 0)), + ("quest;", (63, 0)), + ("cuvee", (0, 0)), + ("Cou", (0, 0)), + ("ReverseE", (0, 0)), + ("barwedg", (0, 0)), + ("succc", (0, 0)), + ("B", (0, 0)), + ("Uring", (0, 0)), + ("supne;", (8843, 0)), + ("capca", (0, 0)), + ("ohba", (0, 0)), + ("CloseCurlyQuote", (0, 0)), + ("nleqs", (0, 0)), + ("thksi", (0, 0)), + ("dol", (0, 0)), + ("ro", (0, 0)), + ("NotSucceedsSlantEqu", (0, 0)), + ("VerticalTi", (0, 0)), + ("LessGrea", (0, 0)), + ("copro", (0, 0)), + ("LessSlantEqual", (0, 0)), + ("upsilo", (0, 0)), + ("osol", (0, 0)), + ("peri", (0, 0)), + ("NotTildeE", (0, 0)), + ("varsupse", (0, 0)), + ("Eogon;", (280, 0)), + ("Ys", (0, 0)), + ("NotGreaterSlant", (0, 0)), + ("PrecedesEqual;", (10927, 0)), + ("FilledSmall", (0, 0)), + ("updownarrow;", (8597, 0)), + ("cupdot;", (8845, 0)), + ("Verb", (0, 0)), + ("subse", (0, 0)), + ("swar", (0, 0)), + ("pop", (0, 0)), + ("YAcy", (0, 0)), + ("PrecedesEqual", (0, 0)), + ("rHa", (0, 0)), + ("Bernoullis;", (8492, 0)), + ("DownRigh", (0, 0)), + ("circlearrowlef", (0, 0)), + ("hair", (0, 0)), + ("odi", (0, 0)), + ("NotTildeFullEqu", (0, 0)), + ("ntrianglele", (0, 0)), + ("Verbar;", (8214, 0)), + ("llcorner;", (8990, 0)), + ("AMP", (38, 0)), + ("hardc", (0, 0)), + ("LessFullEqu", (0, 0)), + ("ucy", (0, 0)), + ("rtri", (0, 0)), + ("Longleftarrow;", (10232, 0)), + ("SquareSupersetE", (0, 0)), + ("gesles;", (10900, 0)), + ("gg", (0, 0)), + ("Nscr;", (119977, 0)), + ("sqsubsete", (0, 0)), + ("twoheadrig", (0, 0)), + ("curvear", (0, 0)), + ("eqcirc", (0, 0)), + ("ClockwiseContourInt", (0, 0)), + ("Mop", (0, 0)), + ("pointint", (0, 0)), + ("NotTild", (0, 0)), + ("empt", (0, 0)), + ("Sma", (0, 0)), + ("aleph;", (8501, 0)), + ("copysr;", (8471, 0)), + ("la", (0, 0)), + ("lAa", (0, 0)), + ("Iop", (0, 0)), + ("CloseCurlyDoubleQuot", (0, 0)), + ("ltrie;", (8884, 0)), + ("rul", (0, 0)), + ("Umacr;", (362, 0)), + ("NJcy;", (1034, 0)), + ("NotSupersetEqual;", (8841, 0)), + ("rlar", (0, 0)), + ("NotPrecedesEqual", (0, 0)), + ("sopf;", (120164, 0)), + ("fork;", (8916, 0)), + ("Jopf;", (120129, 0)), + ("nsccue", (0, 0)), + ("leftrightarrow;", (8596, 0)), + ("ForAll", (0, 0)), + ("urin", (0, 0)), + ("nvap", (0, 0)), + ("squf;", (9642, 0)), + ("Gbreve", (0, 0)), + ("lmidot;", (320, 0)), + ("mapstoleft;", (8612, 0)), + ("er", (0, 0)), + ("LeftDownTeeVe", (0, 0)), + ("ominu", (0, 0)), + ("sharp;", (9839, 0)), + ("ccaps;", (10829, 0)), + ("Thet", (0, 0)), + ("Upsilo", (0, 0)), + ("rightharpoonup;", (8640, 0)), + ("spades;", (9824, 0)), + ("rightharpoond", (0, 0)), + ("SquareSubset;", (8847, 0)), + ("yscr;", (120014, 0)), + ("iac", (0, 0)), + ("permil", (0, 0)), + ("Rsh", (0, 0)), + ("rangd", (0, 0)), + ("els", (0, 0)), + ("cuepr", (0, 0)), + ("Ama", (0, 0)), + ("TripleDot;", (8411, 0)), + ("OpenCurlyDoubleQuote;", (8220, 0)), + ("gesl;", (8923, 65024)), + ("yci", (0, 0)), + ("nlAr", (0, 0)), + ("notnivc", (0, 0)), + ("gscr;", (8458, 0)), + ("NegativeMe", (0, 0)), + ("twi", (0, 0)), + ("lvertneqq", (0, 0)), + ("eth", (240, 0)), + ("Pi", (0, 0)), + ("MediumSpac", (0, 0)), + ("ultri", (0, 0)), + ("LongLeftA", (0, 0)), + ("SquareSupers", (0, 0)), + ("TildeT", (0, 0)), + ("FilledSmallSquare;", (9724, 0)), + ("nvrAr", (0, 0)), + ("nsho", (0, 0)), + ("RightAngl", (0, 0)), + ("dcy;", (1076, 0)), + ("RightVecto", (0, 0)), + ("szlig", (223, 0)), + ("NotSucce", (0, 0)), + ("lna", (0, 0)), + ("Not;", (10988, 0)), + ("InvisibleTimes", (0, 0)), + ("acir", (0, 0)), + ("uharr", (0, 0)), + ("RightFloor", (0, 0)), + ("npars", (0, 0)), + ("DownArro", (0, 0)), + ("squ", (0, 0)), + ("numer", (0, 0)), + ("Cc", (0, 0)), + ("succappr", (0, 0)), + ("cwco", (0, 0)), + ("dso", (0, 0)), + ("bu", (0, 0)), + ("Alph", (0, 0)), + ("UpTeeArrow;", (8613, 0)), + ("upharpoonrig", (0, 0)), + ("rarrt", (0, 0)), + ("expectati", (0, 0)), + ("easter", (0, 0)), + ("nsime", (0, 0)), + ("OpenC", (0, 0)), + ("lparl", (0, 0)), + ("LongRightA", (0, 0)), + ("NotGreate", (0, 0)), + ("LeftTria", (0, 0)), + ("sscr", (0, 0)), + ("drbkarow;", (10512, 0)), + ("Fscr;", (8497, 0)), + ("scap", (0, 0)), + ("minusdu", (0, 0)), + ("ycy", (0, 0)), + ("curlyve", (0, 0)), + ("trpezium", (0, 0)), + ("smtes", (0, 0)), + ("subr", (0, 0)), + ("For", (0, 0)), + ("dzcy;", (1119, 0)), + ("UpEquilibriu", (0, 0)), + ("order", (0, 0)), + ("iogon;", (303, 0)), + ("racute;", (341, 0)), + ("shortparallel", (0, 0)), + ("TildeFul", (0, 0)), + ("Ro", (0, 0)), + ("proflin", (0, 0)), + ("iukc", (0, 0)), + ("VeryThi", (0, 0)), + ("blo", (0, 0)), + ("Lmidot;", (319, 0)), + ("IJlig", (0, 0)), + ("LeftAng", (0, 0)), + ("circe", (0, 0)), + ("Ts", (0, 0)), + ("exponentiale;", (8519, 0)), + ("TildeFullE", (0, 0)), + ("angmsdab;", (10665, 0)), + ("Jo", (0, 0)), + ("Lscr;", (8466, 0)), + ("dis", (0, 0)), + ("Ut", (0, 0)), + ("odo", (0, 0)), + ("uwangle;", (10663, 0)), + ("apaci", (0, 0)), + ("comm", (0, 0)), + ("cirs", (0, 0)), + ("risin", (0, 0)), + ("NotSquareSupe", (0, 0)), + ("uparrow", (0, 0)), + ("UnderBracke", (0, 0)), + ("xlar", (0, 0)), + ("NotPrecedesEqual;", (10927, 824)), + ("Zscr;", (119989, 0)), + ("barwedge", (0, 0)), + ("Oop", (0, 0)), + ("bigsq", (0, 0)), + ("llcorn", (0, 0)), + ("backepsil", (0, 0)), + ("LJc", (0, 0)), + ("kh", (0, 0)), + ("varsupsetneq;", (8843, 65024)), + ("ve", (0, 0)), + ("omicron;", (959, 0)), + ("leftrightarro", (0, 0)), + ("leftrightarr", (0, 0)), + ("caret", (0, 0)), + ("topf", (0, 0)), + ("sdot", (0, 0)), + ("thickappr", (0, 0)), + ("radi", (0, 0)), + ("dopf;", (120149, 0)), + ("nex", (0, 0)), + ("copy", (169, 0)), + ("NotLessE", (0, 0)), + ("vltri", (0, 0)), + ("comma;", (44, 0)), + ("hoar", (0, 0)), + ("orig", (0, 0)), + ("nshortparal", (0, 0)), + ("rightsquiga", (0, 0)), + ("RightDown", (0, 0)), + ("ap", (0, 0)), + ("nltrie", (0, 0)), + ("HumpDow", (0, 0)), + ("straightph", (0, 0)), + ("circlearrowleft;", (8634, 0)), + ("tw", (0, 0)), + ("olci", (0, 0)), + ("phmm", (0, 0)), + ("SOFT", (0, 0)), + ("gopf", (0, 0)), + ("dotsquare", (0, 0)), + ("Bumpeq", (0, 0)), + ("erar", (0, 0)), + ("boxbo", (0, 0)), + ("nVDas", (0, 0)), + ("shch", (0, 0)), + ("OverBra", (0, 0)), + ("angmsdac", (0, 0)), + ("RightArrowLef", (0, 0)), + ("bigca", (0, 0)), + ("NotReverseElemen", (0, 0)), + ("perp", (0, 0)), + ("appr", (0, 0)), + ("js", (0, 0)), + ("profline", (0, 0)), + ("Wedge", (0, 0)), + ("LeftArrow;", (8592, 0)), + ("nwnear;", (10535, 0)), + ("eqvparsl", (0, 0)), + ("Vbar;", (10987, 0)), + ("lpa", (0, 0)), + ("searrow", (0, 0)), + ("DJ", (0, 0)), + ("nlarr;", (8602, 0)), + ("bigci", (0, 0)), + ("Clockwi", (0, 0)), + ("Sups", (0, 0)), + ("loarr", (0, 0)), + ("Cro", (0, 0)), + ("Beca", (0, 0)), + ("cirf", (0, 0)), + ("NotLeftTriangleEqu", (0, 0)), + ("vartriangl", (0, 0)), + ("real", (0, 0)), + ("ZeroWidthSp", (0, 0)), + ("lba", (0, 0)), + ("NotRightTriangleBar", (0, 0)), + ("oplus;", (8853, 0)), + ("times", (215, 0)), + ("rightr", (0, 0)), + ("leftri", (0, 0)), + ("Dcaron", (0, 0)), + ("rarrbfs;", (10528, 0)), + ("nLeftrightarr", (0, 0)), + ("ReverseUpE", (0, 0)), + ("DownLeftRightVector;", (10576, 0)), + ("pert", (0, 0)), + ("DoubleLongRightArro", (0, 0)), + ("iukcy;", (1110, 0)), + ("lowa", (0, 0)), + ("og", (0, 0)), + ("Cente", (0, 0)), + ("kcedil;", (311, 0)), + ("DoubleLongLeftRightArro", (0, 0)), + ("bnot", (0, 0)), + ("nrarrw;", (8605, 824)), + ("rfr;", (120111, 0)), + ("oti", (0, 0)), + ("Left", (0, 0)), + ("OverParenthesis;", (9180, 0)), + ("measuredangle", (0, 0)), + ("fpart", (0, 0)), + ("dotsquar", (0, 0)), + ("NotSquareSubsetEq", (0, 0)), + ("DiacriticalAcute", (0, 0)), + ("DS", (0, 0)), + ("downharpoonleft;", (8643, 0)), + ("harrcir", (0, 0)), + ("DownLeftRightVec", (0, 0)), + ("Egr", (0, 0)), + ("Jserc", (0, 0)), + ("ShortL", (0, 0)), + ("lessd", (0, 0)), + ("succcu", (0, 0)), + ("dotplu", (0, 0)), + ("PlusM", (0, 0)), + ("hyph", (0, 0)), + ("rightleftarrows;", (8644, 0)), + ("LeftTe", (0, 0)), + ("EmptySmallSqua", (0, 0)), + ("NotGreaterFullEq", (0, 0)), + ("cl", (0, 0)), + ("rppo", (0, 0)), + ("ldqu", (0, 0)), + ("DiacriticalDot", (0, 0)), + ("nvdas", (0, 0)), + ("LessTil", (0, 0)), + ("LowerRightArrow", (0, 0)), + ("dalet", (0, 0)), + ("Otilde", (213, 0)), + ("sh", (0, 0)), + ("lbrke;", (10635, 0)), + ("seArr;", (8664, 0)), + ("oma", (0, 0)), + ("gEl", (0, 0)), + ("NonBreakingSpace", (0, 0)), + ("LessEqualGreat", (0, 0)), + ("uhblk;", (9600, 0)), + ("timesba", (0, 0)), + ("bopf", (0, 0)), + ("CloseCu", (0, 0)), + ("curlyvee", (0, 0)), + ("thksim;", (8764, 0)), + ("boxvH;", (9578, 0)), + ("luruha", (0, 0)), + ("vns", (0, 0)), + ("Hopf;", (8461, 0)), + ("CloseCurlyDoub", (0, 0)), + ("Square;", (9633, 0)), + ("subs", (0, 0)), + ("fltn", (0, 0)), + ("diga", (0, 0)), + ("rfloo", (0, 0)), + ("nspar;", (8742, 0)), + ("rightleftar", (0, 0)), + ("precnapprox;", (10937, 0)), + ("leftharpo", (0, 0)), + ("nleq;", (8816, 0)), + ("boxVR", (0, 0)), + ("range", (0, 0)), + ("robrk", (0, 0)), + ("xup", (0, 0)), + ("vangrt", (0, 0)), + ("nLeftrightarro", (0, 0)), + ("var", (0, 0)), + ("nRi", (0, 0)), + ("gnE", (0, 0)), + ("cros", (0, 0)), + ("pla", (0, 0)), + ("RightF", (0, 0)), + ("DoubleUpDownArrow;", (8661, 0)), + ("trianglerighte", (0, 0)), + ("Sfr", (0, 0)), + ("copys", (0, 0)), + ("xcir", (0, 0)), + ("odbla", (0, 0)), + ("rHar", (0, 0)), + ("yuc", (0, 0)), + ("alefsy", (0, 0)), + ("bigwedge;", (8896, 0)), + ("olar", (0, 0)), + ("Igrave", (204, 0)), + ("EmptyVerySmallSquar", (0, 0)), + ("ContourInte", (0, 0)), + ("vartrianglerigh", (0, 0)), + ("NegativeThinSpac", (0, 0)), + ("twoheadrightarrow;", (8608, 0)), + ("subne", (0, 0)), + ("NegativeTh", (0, 0)), + ("lBarr", (0, 0)), + ("oeli", (0, 0)), + ("Iota", (0, 0)), + ("intcal;", (8890, 0)), + ("equals", (0, 0)), + ("frac2", (0, 0)), + ("abreve;", (259, 0)), + ("upharpoonri", (0, 0)), + ("DiacriticalDoub", (0, 0)), + ("pe", (0, 0)), + ("SquareSubsetEqua", (0, 0)), + ("Lambda;", (923, 0)), + ("Dashv;", (10980, 0)), + ("Za", (0, 0)), + ("NonBreak", (0, 0)), + ("LeftUpDownVe", (0, 0)), + ("setm", (0, 0)), + ("spadesu", (0, 0)), + ("Nacut", (0, 0)), + ("approx;", (8776, 0)), + ("parsl;", (11005, 0)), + ("leftrightharpoons", (0, 0)), + ("rarrap", (0, 0)), + ("NestedGreaterGreat", (0, 0)), + ("plusacir;", (10787, 0)), + ("CircleTimes", (0, 0)), + ("dwa", (0, 0)), + ("cul", (0, 0)), + ("SupersetEqua", (0, 0)), + ("downha", (0, 0)), + ("sqcaps;", (8851, 65024)), + ("Therefo", (0, 0)), + ("hookrightarrow;", (8618, 0)), + ("boxDL;", (9559, 0)), + ("complexes;", (8450, 0)), + ("dopf", (0, 0)), + ("nLeftrightarrow;", (8654, 0)), + ("leftthr", (0, 0)), + ("rulu", (0, 0)), + ("NotElemen", (0, 0)), + ("LessFullE", (0, 0)), + ("EmptySmallSq", (0, 0)), + ("rAtail;", (10524, 0)), + ("zigrar", (0, 0)), + ("DownArr", (0, 0)), + ("Yopf", (0, 0)), + ("boxtimes", (0, 0)), + ("Upsil", (0, 0)), + ("nrarrc;", (10547, 824)), + ("DownLe", (0, 0)), + ("Bopf", (0, 0)), + ("minusdu;", (10794, 0)), + ("TSHc", (0, 0)), + ("Gdot;", (288, 0)), + ("LessEqua", (0, 0)), + ("Re", (0, 0)), + ("icy;", (1080, 0)), + ("im", (0, 0)), + ("bumpE;", (10926, 0)), + ("Ema", (0, 0)), + ("or", (0, 0)), + ("djc", (0, 0)), + ("phmma", (0, 0)), + ("ocir", (0, 0)), + ("profsurf;", (8979, 0)), + ("looparrowleft;", (8619, 0)), + ("lefth", (0, 0)), + ("nabl", (0, 0)), + ("iq", (0, 0)), + ("emac", (0, 0)), + ("odot", (0, 0)), + ("RightAngleBracke", (0, 0)), + ("wcir", (0, 0)), + ("LeftTeeArro", (0, 0)), + ("oelig;", (339, 0)), + ("nlef", (0, 0)), + ("imagline;", (8464, 0)), + ("ssm", (0, 0)), + ("NotGrea", (0, 0)), + ("LowerLef", (0, 0)), + ("Lfr;", (120079, 0)), + ("DownRightVecto", (0, 0)), + ("longmaps", (0, 0)), + ("sol", (0, 0)), + ("exponential", (0, 0)), + ("barwedge;", (8965, 0)), + ("ltq", (0, 0)), + ("LongRightArr", (0, 0)), + ("aa", (0, 0)), + ("ofr;", (120108, 0)), + ("numsp;", (8199, 0)), + ("oscr", (0, 0)), + ("Iacut", (0, 0)), + ("lvertneq", (0, 0)), + ("udar", (0, 0)), + ("to", (0, 0)), + ("varsupsetn", (0, 0)), + ("racute", (0, 0)), + ("kfr;", (120104, 0)), + ("mid;", (8739, 0)), + ("npolint", (0, 0)), + ("ContourIntegra", (0, 0)), + ("rightthree", (0, 0)), + ("velli", (0, 0)), + ("ngeq", (0, 0)), + ("nums", (0, 0)), + ("upd", (0, 0)), + ("thor", (0, 0)), + ("rthree;", (8908, 0)), + ("Pf", (0, 0)), + ("mapstoup", (0, 0)), + ("NotGreaterSlantE", (0, 0)), + ("Poin", (0, 0)), + ("Laplacetrf", (0, 0)), + ("roa", (0, 0)), + ("precn", (0, 0)), + ("imaglin", (0, 0)), + ("hookl", (0, 0)), + ("Ccedil;", (199, 0)), + ("searhk;", (10533, 0)), + ("downharpoon", (0, 0)), + ("RightUpDownVe", (0, 0)), + ("cf", (0, 0)), + ("Efr", (0, 0)), + ("Rrightarrow;", (8667, 0)), + ("bigodo", (0, 0)), + ("Wcir", (0, 0)), + ("loang;", (10220, 0)), + ("rightsquig", (0, 0)), + ("langd", (0, 0)), + ("laem", (0, 0)), + ("nsqsu", (0, 0)), + ("smallsetminu", (0, 0)), + ("dl", (0, 0)), + ("DiacriticalD", (0, 0)), + ("DownLeftVe", (0, 0)), + ("DownLeftVectorBar;", (10582, 0)), + ("vzig", (0, 0)), + ("varnothing;", (8709, 0)), + ("Rri", (0, 0)), + ("NonBre", (0, 0)), + ("andv;", (10842, 0)), + ("NotLessSlantEqual;", (10877, 824)), + ("isindot", (0, 0)), + ("nspa", (0, 0)), + ("complemen", (0, 0)), + ("frac56;", (8538, 0)), + ("ReverseUpEqui", (0, 0)), + ("varsubs", (0, 0)), + ("sacut", (0, 0)), + ("bnequi", (0, 0)), + ("DownArrow", (0, 0)), + ("UpperRight", (0, 0)), + ("Jsercy", (0, 0)), + ("ac", (0, 0)), + ("lfi", (0, 0)), + ("natura", (0, 0)), + ("TildeEqua", (0, 0)), + ("UpArrowBar;", (10514, 0)), + ("uparr", (0, 0)), + ("Uogon;", (370, 0)), + ("pcy", (0, 0)), + ("Dcaron;", (270, 0)), + ("Cconint;", (8752, 0)), + ("LessFul", (0, 0)), + ("ReverseUpEq", (0, 0)), + ("cylc", (0, 0)), + ("DoubleLeftTee;", (10980, 0)), + ("oopf;", (120160, 0)), + ("nR", (0, 0)), + ("hami", (0, 0)), + ("nesea", (0, 0)), + ("mcy", (0, 0)), + ("boxm", (0, 0)), + ("RightTeeArro", (0, 0)), + ("varsubsetneqq", (0, 0)), + ("lthr", (0, 0)), + ("dharl", (0, 0)), + ("mD", (0, 0)), + ("OpenCurly", (0, 0)), + ("UpperLeftA", (0, 0)), + ("DownLeftRightVector", (0, 0)), + ("lneqq;", (8808, 0)), + ("rightsq", (0, 0)), + ("DotE", (0, 0)), + ("SquareIntersect", (0, 0)), + ("Succeeds;", (8827, 0)), + ("ReverseElemen", (0, 0)), + ("RightArrowLeftArr", (0, 0)), + ("gla", (0, 0)), + ("CircleM", (0, 0)), + ("VeryThinSpac", (0, 0)), + ("elin", (0, 0)), + ("xu", (0, 0)), + ("UpEquil", (0, 0)), + ("big", (0, 0)), + ("Bfr;", (120069, 0)), + ("Cross;", (10799, 0)), + ("gdo", (0, 0)), + ("ctdot", (0, 0)), + ("larrfs", (0, 0)), + ("vnsub;", (8834, 8402)), + ("leftharpoonu", (0, 0)), + ("cdot;", (267, 0)), + ("NotExist", (0, 0)), + ("NotCongru", (0, 0)), + ("lB", (0, 0)), + ("curlyvee;", (8910, 0)), + ("ShortLe", (0, 0)), + ("prece", (0, 0)), + ("Aring;", (197, 0)), + ("tar", (0, 0)), + ("Zdo", (0, 0)), + ("Bscr", (0, 0)), + ("upupar", (0, 0)), + ("NotSquareSuperset;", (8848, 824)), + ("origof", (0, 0)), + ("sset", (0, 0)), + ("Differential", (0, 0)), + ("NegativeThickSpace", (0, 0)), + ("CloseCurlyQuote;", (8217, 0)), + ("SquareIntersection", (0, 0)), + ("su", (0, 0)), + ("downarr", (0, 0)), + ("GreaterEq", (0, 0)), + ("leftrightharpo", (0, 0)), + ("LessFu", (0, 0)), + ("ecolon;", (8789, 0)), + ("LeftVe", (0, 0)), + ("ks", (0, 0)), + ("Theref", (0, 0)), + ("Sci", (0, 0)), + ("lrhar", (0, 0)), + ("ntilde;", (241, 0)), + ("iop", (0, 0)), + ("suphso", (0, 0)), + ("DoubleLongLeftRightArr", (0, 0)), + ("hyp", (0, 0)), + ("Ntild", (0, 0)), + ("rdldh", (0, 0)), + ("notni", (0, 0)), + ("rdca;", (10551, 0)), + ("Ccedi", (0, 0)), + ("leftarrow", (0, 0)), + ("Leftarrow", (0, 0)), + ("Dia", (0, 0)), + ("IOcy", (0, 0)), + ("Vcy;", (1042, 0)), + ("zd", (0, 0)), + ("QUOT;", (34, 0)), + ("YAc", (0, 0)), + ("angz", (0, 0)), + ("co", (0, 0)), + ("Lleftarro", (0, 0)), + ("odiv;", (10808, 0)), + ("Leftri", (0, 0)), + ("Horizo", (0, 0)), + ("Longlefta", (0, 0)), + ("LeftVecto", (0, 0)), + ("Nscr", (0, 0)), + ("Aa", (0, 0)), + ("RightUpVectorBar;", (10580, 0)), + ("Con", (0, 0)), + ("ldrdhar", (0, 0)), + ("Iuml", (207, 0)), + ("sacu", (0, 0)), + ("nLt", (0, 0)), + ("circlearr", (0, 0)), + ("AEli", (0, 0)), + ("Lacute", (0, 0)), + ("NotSuc", (0, 0)), + ("llarr", (0, 0)), + ("Negat", (0, 0)), + ("intercal", (0, 0)), + ("twoheadrighta", (0, 0)), + ("lefthar", (0, 0)), + ("middot", (183, 0)), + ("prc", (0, 0)), + ("Minu", (0, 0)), + ("tau", (0, 0)), + ("yacy", (0, 0)), + ("andand;", (10837, 0)), + ("LeftDownTeeVecto", (0, 0)), + ("ntriangl", (0, 0)), + ("scpolin", (0, 0)), + ("DownArrowUpArr", (0, 0)), + ("jmath;", (567, 0)), + ("ique", (0, 0)), + ("Ho", (0, 0)), + ("Ari", (0, 0)), + ("nscr;", (120003, 0)), + ("utilde;", (361, 0)), + ("succnsim", (0, 0)), + ("Bopf;", (120121, 0)), + ("InvisibleCo", (0, 0)), + ("barwe", (0, 0)), + ("lam", (0, 0)), + ("capcu", (0, 0)), + ("NotCu", (0, 0)), + ("rarrhk;", (8618, 0)), + ("bf", (0, 0)), + ("wfr;", (120116, 0)), + ("GreaterSl", (0, 0)), + ("wreat", (0, 0)), + ("leftthreetimes;", (8907, 0)), + ("a", (0, 0)), + ("mapsto", (0, 0)), + ("acute", (180, 0)), + ("mldr", (0, 0)), + ("VerticalLi", (0, 0)), + ("rnmid", (0, 0)), + ("Succ", (0, 0)), + ("LeftTriangle", (0, 0)), + ("dz", (0, 0)), + ("hy", (0, 0)), + ("LongLeftRig", (0, 0)), + ("LeftDoubleBrac", (0, 0)), + ("NonB", (0, 0)), + ("DownLeftTe", (0, 0)), + ("frac18;", (8539, 0)), + ("disi", (0, 0)), + ("Longleftrightarrow;", (10234, 0)), + ("lambda;", (955, 0)), + ("rBarr;", (10511, 0)), + ("boxt", (0, 0)), + ("nvle", (0, 0)), + ("ograv", (0, 0)), + ("poin", (0, 0)), + ("xlArr;", (10232, 0)), + ("rdquor;", (8221, 0)), + ("Iukcy", (0, 0)), + ("tp", (0, 0)), + ("ge;", (8805, 0)), + ("rceil;", (8969, 0)), + ("Lt;", (8810, 0)), + ("acirc;", (226, 0)), + ("bullet;", (8226, 0)), + ("sm", (0, 0)), + ("LJ", (0, 0)), + ("rightha", (0, 0)), + ("NotGreaterSlantEqual", (0, 0)), + ("hookleftarrow;", (8617, 0)), + ("qopf", (0, 0)), + ("ShortRightArrow", (0, 0)), + ("rppol", (0, 0)), + ("caps", (0, 0)), + ("quo", (0, 0)), + ("ycirc", (0, 0)), + ("digamm", (0, 0)), + ("LT", (60, 0)), + ("rlarr", (0, 0)), + ("Udblac", (0, 0)), + ("yen;", (165, 0)), + ("luruhar", (0, 0)), + ("ddarr", (0, 0)), + ("nexist;", (8708, 0)), + ("RoundImplie", (0, 0)), + ("rightharpoondo", (0, 0)), + ("nsqsupe;", (8931, 0)), + ("Minus", (0, 0)), + ("bigv", (0, 0)), + ("Backs", (0, 0)), + ("nleftrigh", (0, 0)), + ("plusa", (0, 0)), + ("rtr", (0, 0)), + ("NotLessG", (0, 0)), + ("Barw", (0, 0)), + ("ShortRightA", (0, 0)), + ("vrt", (0, 0)), + ("epl", (0, 0)), + ("lbra", (0, 0)), + ("nh", (0, 0)), + ("bigtriangledown", (0, 0)), + ("longmapst", (0, 0)), + ("LeftTriangleEqu", (0, 0)), + ("zac", (0, 0)), + ("bigtriangleup", (0, 0)), + ("lesdot;", (10879, 0)), + ("hai", (0, 0)), + ("llar", (0, 0)), + ("sma", (0, 0)), + ("fltns", (0, 0)), + ("Icirc", (206, 0)), + ("MediumSpa", (0, 0)), + ("cwconint;", (8754, 0)), + ("blacklo", (0, 0)), + ("Cl", (0, 0)), + ("ncedil;", (326, 0)), + ("lopf", (0, 0)), + ("Is", (0, 0)), + ("eqslan", (0, 0)), + ("ohbar", (0, 0)), + ("xodot;", (10752, 0)), + ("rarrb", (0, 0)), + ("supds", (0, 0)), + ("down", (0, 0)), + ("Differentia", (0, 0)), + ("nhA", (0, 0)), + ("LeftCeiling", (0, 0)), + ("measure", (0, 0)), + ("NotLessSlantE", (0, 0)), + ("supseteq", (0, 0)), + ("Ecir", (0, 0)), + ("Afr;", (120068, 0)), + ("barve", (0, 0)), + ("LeftDoubleBracket", (0, 0)), + ("downdowna", (0, 0)), + ("planckh;", (8462, 0)), + ("Aogon", (0, 0)), + ("plusb;", (8862, 0)), + ("center", (0, 0)), + ("PrecedesEqu", (0, 0)), + ("rsh;", (8625, 0)), + ("Mellin", (0, 0)), + ("SubsetEqu", (0, 0)), + ("gve", (0, 0)), + ("LeftArrowRightArrow", (0, 0)), + ("Ar", (0, 0)), + ("loang", (0, 0)), + ("supmul", (0, 0)), + ("Horizontal", (0, 0)), + ("Cac", (0, 0)), + ("supe;", (8839, 0)), + ("LeftRightArrow", (0, 0)), + ("gbreve;", (287, 0)), + ("LeftVect", (0, 0)), + ("micro;", (181, 0)), + ("fl", (0, 0)), + ("RightCeiling", (0, 0)), + ("em", (0, 0)), + ("Rca", (0, 0)), + ("OpenCurlyDoubl", (0, 0)), + ("bcong;", (8780, 0)), + ("HorizontalLin", (0, 0)), + ("nvHa", (0, 0)), + ("CloseCurlyDoubleQuo", (0, 0)), + ("rAr", (0, 0)), + ("RightDownVectorB", (0, 0)), + ("NotNestedGreaterGr", (0, 0)), + ("rightthreetime", (0, 0)), + ("nlArr;", (8653, 0)), + ("DownArrowUpAr", (0, 0)), + ("Iti", (0, 0)), + ("nsupseteqq", (0, 0)), + ("nrarr;", (8603, 0)), + ("lesdoto;", (10881, 0)), + ("angmsdah;", (10671, 0)), + ("OverPare", (0, 0)), + ("kfr", (0, 0)), + ("lsi", (0, 0)), + ("Be", (0, 0)), + ("ReverseU", (0, 0)), + ("low", (0, 0)), + ("asympeq;", (8781, 0)), + ("leftarrowtail", (0, 0)), + ("andv", (0, 0)), + ("iquest;", (191, 0)), + ("heartsuit", (0, 0)), + ("blacktrian", (0, 0)), + ("UnderBrack", (0, 0)), + ("vert", (0, 0)), + ("quat", (0, 0)), + ("cir", (0, 0)), + ("wf", (0, 0)), + ("downdownarrows", (0, 0)), + ("smallset", (0, 0)), + ("sccue", (0, 0)), + ("RightTriangleEqual;", (8885, 0)), + ("quaternio", (0, 0)), + ("DownRightTeeVecto", (0, 0)), + ("eqv", (0, 0)), + ("npreceq", (0, 0)), + ("Zac", (0, 0)), + ("oli", (0, 0)), + ("parsim", (0, 0)), + ("supdsub", (0, 0)), + ("equiv;", (8801, 0)), + ("ola", (0, 0)), + ("dtdot;", (8945, 0)), + ("raempt", (0, 0)), + ("LeftAngle", (0, 0)), + ("nshort", (0, 0)), + ("Rarrtl", (0, 0)), + ("frac4", (0, 0)), + ("ltrP", (0, 0)), + ("curvearrow", (0, 0)), + ("mdash", (0, 0)), + ("nearhk", (0, 0)), + ("suplar", (0, 0)), + ("GreaterEqualLes", (0, 0)), + ("kjcy", (0, 0)), + ("vartheta;", (977, 0)), + ("llco", (0, 0)), + ("boxHU;", (9577, 0)), + ("rightthr", (0, 0)), + ("nharr", (0, 0)), + ("para", (182, 0)), + ("W", (0, 0)), + ("andslope", (0, 0)), + ("sqsupsete", (0, 0)), + ("CircleMinus;", (8854, 0)), + ("nexi", (0, 0)), + ("Hilber", (0, 0)), + ("iex", (0, 0)), + ("UnionPlu", (0, 0)), + ("Bumpe", (0, 0)), + ("acu", (0, 0)), + ("cw", (0, 0)), + ("Eop", (0, 0)), + ("bigupl", (0, 0)), + ("mapstodown;", (8615, 0)), + ("hslash", (0, 0)), + ("Congruent", (0, 0)), + ("nGg", (0, 0)), + ("supE;", (10950, 0)), + ("parsl", (0, 0)), + ("lsa", (0, 0)), + ("spadesuit;", (9824, 0)), + ("ju", (0, 0)), + ("Juk", (0, 0)), + ("cwint;", (8753, 0)), + ("Equilibrium;", (8652, 0)), + ("Lon", (0, 0)), + ("NotNestedLe", (0, 0)), + ("succsim", (0, 0)), + ("varr", (0, 0)), + ("rbrke", (0, 0)), + ("Precedes", (0, 0)), + ("angmsd;", (8737, 0)), + ("lth", (0, 0)), + ("dal", (0, 0)), + ("GJc", (0, 0)), + ("ldrushar", (0, 0)), + ("Upsi;", (978, 0)), + ("nLtv", (0, 0)), + ("rationa", (0, 0)), + ("downharpoonr", (0, 0)), + ("DoubleDownArrow", (0, 0)), + ("urcorner", (0, 0)), + ("tscy;", (1094, 0)), + ("upharpoonleft;", (8639, 0)), + ("vBarv", (0, 0)), + ("square;", (9633, 0)), + ("HumpEqua", (0, 0)), + ("jcy;", (1081, 0)), + ("gtlPar", (0, 0)), + ("nsucceq", (0, 0)), + ("sacute;", (347, 0)), + ("eta;", (951, 0)), + ("bop", (0, 0)), + ("PrecedesSlantEqual;", (8828, 0)), + ("VerticalB", (0, 0)), + ("NotSucceedsSlantEq", (0, 0)), + ("vsupnE;", (10956, 65024)), + ("hoa", (0, 0)), + ("ea", (0, 0)), + ("leftrighth", (0, 0)), + ("LT;", (60, 0)), + ("divo", (0, 0)), + ("sra", (0, 0)), + ("DownLeftR", (0, 0)), + ("lopa", (0, 0)), + ("Esim;", (10867, 0)), + ("rhov", (0, 0)), + ("xha", (0, 0)), + ("NotNestedLessLess", (0, 0)), + ("DoubleLongLeftRightAr", (0, 0)), + ("kcy", (0, 0)), + ("Zop", (0, 0)), + ("nvdash;", (8876, 0)), + ("NonBreakin", (0, 0)), + ("NotLeftTriangleE", (0, 0)), + ("subedot", (0, 0)), + ("LeftDouble", (0, 0)), + ("hba", (0, 0)), + ("DoubleUpArr", (0, 0)), + ("D", (0, 0)), + ("bull;", (8226, 0)), + ("EmptySmallSqu", (0, 0)), + ("Rule", (0, 0)), + ("RightTeeV", (0, 0)), + ("Imag", (0, 0)), + ("Sh", (0, 0)), + ("lesdo", (0, 0)), + ("EmptyVery", (0, 0)), + ("nla", (0, 0)), + ("nv", (0, 0)), + ("botto", (0, 0)), + ("NotEle", (0, 0)), + ("InvisibleComm", (0, 0)), + ("cen", (0, 0)), + ("QU", (0, 0)), + ("llt", (0, 0)), + ("boxhu", (0, 0)), + ("psi", (0, 0)), + ("LongLeftArr", (0, 0)), + ("NotSucceedsEqual;", (10928, 824)), + ("bempt", (0, 0)), + ("mcom", (0, 0)), + ("p", (0, 0)), + ("Abrev", (0, 0)), + ("Longl", (0, 0)), + ("ClockwiseContour", (0, 0)), + ("NotSucceedsTi", (0, 0)), + ("curlyeqsuc", (0, 0)), + ("rpargt", (0, 0)), + ("lacut", (0, 0)), + ("TildeFullEqual;", (8773, 0)), + ("NotRightTri", (0, 0)), + ("rsaqu", (0, 0)), + ("shortparall", (0, 0)), + ("homt", (0, 0)), + ("nvg", (0, 0)), + ("rlhar", (0, 0)), + ("nr", (0, 0)), + ("bprime;", (8245, 0)), + ("zeta;", (950, 0)), + ("LeftTriangleBa", (0, 0)), + ("supsetn", (0, 0)), + ("kgreen;", (312, 0)), + ("uua", (0, 0)), + ("exi", (0, 0)), + ("LongLeftRightArro", (0, 0)), + ("dzc", (0, 0)), + ("Pcy;", (1055, 0)), + ("SquareSupersetEq", (0, 0)), + ("rba", (0, 0)), + ("Clockwis", (0, 0)), + ("DJc", (0, 0)), + ("fpartint;", (10765, 0)), + ("gesles", (0, 0)), + ("CloseCurly", (0, 0)), + ("lowbar;", (95, 0)), + ("toea", (0, 0)), + ("OverParenthesis", (0, 0)), + ("measu", (0, 0)), + ("inodo", (0, 0)), + ("jop", (0, 0)), + ("Psi", (0, 0)), + ("Yscr", (0, 0)), + ("RightUpVect", (0, 0)), + ("NotGreaterGreat", (0, 0)), + ("acy;", (1072, 0)), + ("ulcor", (0, 0)), + ("gla;", (10917, 0)), + ("emacr", (0, 0)), + ("nsupe", (0, 0)), + ("lltri;", (9722, 0)), + ("COPY;", (169, 0)), + ("NotSucceedsSl", (0, 0)), + ("lagran", (0, 0)), + ("thetav", (0, 0)), + ("boxVL", (0, 0)), + ("risingdo", (0, 0)), + ("NotSucceedsTil", (0, 0)), + ("blan", (0, 0)), + ("NotTildeFullEqual", (0, 0)), + ("DoubleLongLef", (0, 0)), + ("top", (0, 0)), + ("tin", (0, 0)), + ("olcross", (0, 0)), + ("intege", (0, 0)), + ("YIcy", (0, 0)), + ("dw", (0, 0)), + ("nleftrightar", (0, 0)), + ("doteq", (0, 0)), + ("S", (0, 0)), + ("egs", (0, 0)), + ("jmat", (0, 0)), + ("vdas", (0, 0)), + ("vsup", (0, 0)), + ("DZcy;", (1039, 0)), + ("rational", (0, 0)), + ("rthr", (0, 0)), + ("imagpart", (0, 0)), + ("RightUpDownVect", (0, 0)), + ("GreaterGrea", (0, 0)), + ("Uri", (0, 0)), + ("blacktriang", (0, 0)), + ("GreaterSlantE", (0, 0)), + ("ncy", (0, 0)), + ("colone;", (8788, 0)), + ("rpargt;", (10644, 0)), + ("lH", (0, 0)), + ("lgE", (0, 0)), + ("ari", (0, 0)), + ("Vf", (0, 0)), + ("Oma", (0, 0)), + ("lAtail;", (10523, 0)), + ("escr;", (8495, 0)), + ("cylcty", (0, 0)), + ("Updownarr", (0, 0)), + ("spades", (0, 0)), + ("DDotrahd;", (10513, 0)), + ("AEl", (0, 0)), + ("fem", (0, 0)), + ("image;", (8465, 0)), + ("CapitalDifferential", (0, 0)), + ("leftrightsquig", (0, 0)), + ("prurel", (0, 0)), + ("fallin", (0, 0)), + ("agr", (0, 0)), + ("DoubleUpA", (0, 0)), + ("uhar", (0, 0)), + ("DownLeftVectorB", (0, 0)), + ("RightAngleBrac", (0, 0)), + ("dsol;", (10742, 0)), + ("vcy;", (1074, 0)), + ("NestedGr", (0, 0)), + ("lopar", (0, 0)), + ("Lmid", (0, 0)), + ("aeli", (0, 0)), + ("nsubset;", (8834, 8402)), + ("LeftRightArr", (0, 0)), + ("longlef", (0, 0)), + ("leftleft", (0, 0)), + ("NewLin", (0, 0)), + ("dash;", (8208, 0)), + ("Udbl", (0, 0)), + ("thickappro", (0, 0)), + ("LeftUpV", (0, 0)), + ("awconint", (0, 0)), + ("DoubleLeftArr", (0, 0)), + ("qfr", (0, 0)), + ("DoubleVert", (0, 0)), + ("rob", (0, 0)), + ("hArr;", (8660, 0)), + ("backepsilo", (0, 0)), + ("DSc", (0, 0)), + ("RightVe", (0, 0)), + ("ba", (0, 0)), + ("bigcup", (0, 0)), + ("lv", (0, 0)), + ("Rev", (0, 0)), + ("fltns;", (9649, 0)), + ("lAtail", (0, 0)), + ("OElig", (0, 0)), + ("looparrowlef", (0, 0)), + ("swarr", (0, 0)), + ("olt;", (10688, 0)), + ("Zc", (0, 0)), + ("rightlefta", (0, 0)), + ("OEl", (0, 0)), + ("triangleright;", (9657, 0)), + ("cupbrca", (0, 0)), + ("square", (0, 0)), + ("Cr", (0, 0)), + ("longleftrig", (0, 0)), + ("lced", (0, 0)), + ("As", (0, 0)), + ("eacute", (233, 0)), + ("backsimeq;", (8909, 0)), + ("rightharp", (0, 0)), + ("not;", (172, 0)), + ("ord", (0, 0)), + ("Gbreve;", (286, 0)), + ("lve", (0, 0)), + ("rarrb;", (8677, 0)), + ("hairsp", (0, 0)), + ("Pi;", (928, 0)), + ("ltc", (0, 0)), + ("Dcar", (0, 0)), + ("nvlA", (0, 0)), + ("Dag", (0, 0)), + ("Imacr;", (298, 0)), + ("fi", (0, 0)), + ("leftarrowtai", (0, 0)), + ("Ascr", (0, 0)), + ("midast;", (42, 0)), + ("aogo", (0, 0)), + ("AElig", (198, 0)), + ("RightArrowL", (0, 0)), + ("oh", (0, 0)), + ("I", (0, 0)), + ("DiacriticalG", (0, 0)), + ("NestedLessLess;", (8810, 0)), + ("Int;", (8748, 0)), + ("capdo", (0, 0)), + ("straighte", (0, 0)), + ("NotExis", (0, 0)), + ("CupC", (0, 0)), + ("napprox", (0, 0)), + ("NotSquareSubsetEqual;", (8930, 0)), + ("ssmi", (0, 0)), + ("loti", (0, 0)), + ("SucceedsEqu", (0, 0)), + ("hf", (0, 0)), + ("Dash", (0, 0)), + ("lceil;", (8968, 0)), + ("sim", (0, 0)), + ("tcar", (0, 0)), + ("ccaps", (0, 0)), + ("frac12;", (189, 0)), + ("ufr", (0, 0)), + ("iff", (0, 0)), + ("noti", (0, 0)), + ("Das", (0, 0)), + ("Tfr", (0, 0)), + ("apE;", (10864, 0)), + ("equa", (0, 0)), + ("leftleftarr", (0, 0)), + ("NewL", (0, 0)), + ("ShortRi", (0, 0)), + ("ddagge", (0, 0)), + ("diamondsu", (0, 0)), + ("Ya", (0, 0)), + ("ul", (0, 0)), + ("LongRightArrow", (0, 0)), + ("Hilbe", (0, 0)), + ("ntgl;", (8825, 0)), + ("DoubleLeftRigh", (0, 0)), + ("sstarf", (0, 0)), + ("blank", (0, 0)), + ("vopf;", (120167, 0)), + ("uhbl", (0, 0)), + ("NotLessEqual", (0, 0)), + ("NotElem", (0, 0)), + ("NotLeftTria", (0, 0)), + ("DoubleContou", (0, 0)), + ("vopf", (0, 0)), + ("Xo", (0, 0)), + ("lmoust", (0, 0)), + ("NestedGreaterGrea", (0, 0)), + ("nt", (0, 0)), + ("NegativeV", (0, 0)), + ("ShortUpArr", (0, 0)), + ("alep", (0, 0)), + ("uopf;", (120166, 0)), + ("LeftDoubleBrack", (0, 0)), + ("ngE", (0, 0)), + ("NJc", (0, 0)), + ("Precede", (0, 0)), + ("hybull", (0, 0)), + ("hybu", (0, 0)), + ("vartrianglele", (0, 0)), + ("DoubleLeftRightArr", (0, 0)), + ("Ccaron;", (268, 0)), + ("range;", (10661, 0)), + ("angle", (0, 0)), + ("Cco", (0, 0)), + ("SucceedsEqua", (0, 0)), + ("nisd;", (8954, 0)), + ("NotSubset", (0, 0)), + ("rcedi", (0, 0)), + ("kjcy;", (1116, 0)), + ("Wedge;", (8896, 0)), + ("nleftarrow;", (8602, 0)), + ("there4", (0, 0)), + ("Iogon;", (302, 0)), + ("minusb", (0, 0)), + ("longl", (0, 0)), + ("NotSupersetEqua", (0, 0)), + ("trianglele", (0, 0)), + ("hel", (0, 0)), + ("ltrPar;", (10646, 0)), + ("NotGreaterFullEqua", (0, 0)), + ("CloseCur", (0, 0)), + ("aelig", (230, 0)), + ("ltrie", (0, 0)), + ("tstrok;", (359, 0)), + ("fopf", (0, 0)), + ("upharpoonl", (0, 0)), + ("tshc", (0, 0)), + ("imo", (0, 0)), + ("rthree", (0, 0)), + ("iinfin", (0, 0)), + ("Longleftri", (0, 0)), + ("oda", (0, 0)), + ("EmptyVerySma", (0, 0)), + ("lang;", (10216, 0)), + ("rbbrk;", (10099, 0)), + ("nbump", (0, 0)), + ("Wscr", (0, 0)), + ("LeftRightA", (0, 0)), + ("sesw", (0, 0)), + ("oint", (0, 0)), + ("pm;", (177, 0)), + ("nparal", (0, 0)), + ("subsup;", (10963, 0)), + ("Tced", (0, 0)), + ("xnis", (0, 0)), + ("lst", (0, 0)), + ("utdot;", (8944, 0)), + ("Yfr", (0, 0)), + ("NegativeThin", (0, 0)), + ("orv", (0, 0)), + ("Mu;", (924, 0)), + ("agrave", (224, 0)), + ("del", (0, 0)), + ("GreaterEqualL", (0, 0)), + ("dwangl", (0, 0)), + ("approx", (0, 0)), + ("ClockwiseC", (0, 0)), + ("Dsc", (0, 0)), + ("doublebarwedg", (0, 0)), + ("DownArrowU", (0, 0)), + ("lrtri", (0, 0)), + ("NegativeVeryThinSpace;", (8203, 0)), + ("bump;", (8782, 0)), + ("bigcirc", (0, 0)), + ("divideontime", (0, 0)), + ("uph", (0, 0)), + ("upharpoonleft", (0, 0)), + ("bigwed", (0, 0)), + ("GreaterLess", (0, 0)), + ("Invisible", (0, 0)), + ("RightTee", (0, 0)), + ("measuredan", (0, 0)), + ("DoubleLef", (0, 0)), + ("NestedGre", (0, 0)), + ("eDDot;", (10871, 0)), + ("Ccirc;", (264, 0)), + ("RightUpD", (0, 0)), + ("Sig", (0, 0)), + ("Scedi", (0, 0)), + ("NotNestedGrea", (0, 0)), + ("cwconi", (0, 0)), + ("DoubleContourInteg", (0, 0)), + ("curvearrowri", (0, 0)), + ("lfr;", (120105, 0)), + ("olin", (0, 0)), + ("vlt", (0, 0)), + ("RuleDela", (0, 0)), + ("imof;", (8887, 0)), + ("RightTeeVect", (0, 0)), + ("Mu", (0, 0)), + ("gescc", (0, 0)), + ("NotSuperset;", (8835, 8402)), + ("curlyeqsu", (0, 0)), + ("Element", (0, 0)), + ("ut", (0, 0)), + ("boxminu", (0, 0)), + ("DoubleUpDownA", (0, 0)), + ("xoplus", (0, 0)), + ("varkapp", (0, 0)), + ("Clock", (0, 0)), + ("Superset", (0, 0)), + ("sha", (0, 0)), + ("cap", (0, 0)), + ("Ucy", (0, 0)), + ("neAr", (0, 0)), + ("isind", (0, 0)), + ("npolint;", (10772, 0)), + ("bemptyv", (0, 0)), + ("cuw", (0, 0)), + ("Leftarro", (0, 0)), + ("EmptyVerySmallSqu", (0, 0)), + ("Cu", (0, 0)), + ("squar", (0, 0)), + ("Bec", (0, 0)), + ("Longleftarrow", (0, 0)), + ("LeftTriangl", (0, 0)), + ("nva", (0, 0)), + ("odsold", (0, 0)), + ("straightepsil", (0, 0)), + ("circlearrowleft", (0, 0)), + ("Cros", (0, 0)), + ("OEli", (0, 0)), + ("boxUL", (0, 0)), + ("DoubleLongR", (0, 0)), + ("NotTildeT", (0, 0)), + ("boxVl;", (9570, 0)), + ("gE;", (8807, 0)), + ("ThickSpac", (0, 0)), + ("NotL", (0, 0)), + ("longri", (0, 0)), + ("eas", (0, 0)), + ("ThickSpace", (0, 0)), + ("Rfr", (0, 0)), + ("Prod", (0, 0)), + ("pr;", (8826, 0)), + ("dot;", (729, 0)), + ("duarr;", (8693, 0)), + ("T", (0, 0)), + ("hbar", (0, 0)), + ("ange", (0, 0)), + ("duarr", (0, 0)), + ("ufish", (0, 0)), + ("Del;", (8711, 0)), + ("xv", (0, 0)), + ("SucceedsSlant", (0, 0)), + ("ofcir;", (10687, 0)), + ("forall;", (8704, 0)), + ("reals;", (8477, 0)), + ("afr;", (120094, 0)), + ("rightrigh", (0, 0)), + ("cirfni", (0, 0)), + ("rfisht;", (10621, 0)), + ("nacut", (0, 0)), + ("Sa", (0, 0)), + ("VeryThin", (0, 0)), + ("emp", (0, 0)), + ("angrtvbd", (0, 0)), + ("iot", (0, 0)), + ("cup;", (8746, 0)), + ("ngsim;", (8821, 0)), + ("latail", (0, 0)), + ("dtd", (0, 0)), + ("neA", (0, 0)), + ("NotSupersetEqual", (0, 0)), + ("Lang", (0, 0)), + ("Exp", (0, 0)), + ("supedot;", (10948, 0)), + ("SquareSupe", (0, 0)), + ("eta", (0, 0)), + ("slarr;", (8592, 0)), + ("xdtr", (0, 0)), + ("euro;", (8364, 0)), + ("nvrA", (0, 0)), + ("NotSuccee", (0, 0)), + ("mnplus", (0, 0)), + ("emptyset", (0, 0)), + ("gopf;", (120152, 0)), + ("profsu", (0, 0)), + ("RightDoubleBra", (0, 0)), + ("angmsdab", (0, 0)), + ("Leftrightar", (0, 0)), + ("zcaron;", (382, 0)), + ("timesb;", (8864, 0)), + ("curlywedg", (0, 0)), + ("QUO", (0, 0)), + ("NotReverse", (0, 0)), + ("ogra", (0, 0)), + ("hstr", (0, 0)), + ("NotNe", (0, 0)), + ("l", (0, 0)), + ("nab", (0, 0)), + ("bepsi;", (1014, 0)), + ("upar", (0, 0)), + ("Subse", (0, 0)), + ("rs", (0, 0)), + ("Congruent;", (8801, 0)), + ("NotGreaterLes", (0, 0)), + ("juk", (0, 0)), + ("Cfr;", (8493, 0)), + ("nleftrightarrow;", (8622, 0)), + ("gel;", (8923, 0)), + ("Leftrig", (0, 0)), + ("Uarroci", (0, 0)), + ("fnof", (0, 0)), + ("angmsdaf;", (10669, 0)), + ("YUc", (0, 0)), + ("Tcedi", (0, 0)), + ("les", (0, 0)), + ("loze", (0, 0)), + ("lesseqqgtr", (0, 0)), + ("percnt;", (37, 0)), + ("bne;", (61, 8421)), + ("nrightarrow", (0, 0)), + ("piv;", (982, 0)), + ("lsim;", (8818, 0)), + ("COP", (0, 0)), + ("blacksquar", (0, 0)), + ("DoubleVertica", (0, 0)), + ("Reverse", (0, 0)), + ("vsupne", (0, 0)), + ("It", (0, 0)), + ("Popf;", (8473, 0)), + ("GreaterGr", (0, 0)), + ("bbrk;", (9141, 0)), + ("Pl", (0, 0)), + ("NotCupCa", (0, 0)), + ("simd", (0, 0)), + ("boxtim", (0, 0)), + ("GreaterSlantEqu", (0, 0)), + ("GreaterLes", (0, 0)), + ("LessEqualG", (0, 0)), + ("ntrianglerighteq", (0, 0)), + ("ho", (0, 0)), + ("HumpEqual", (0, 0)), + ("hookleftarro", (0, 0)), + ("smid", (0, 0)), + ("shchcy;", (1097, 0)), + ("rbra", (0, 0)), + ("LeftArrowRig", (0, 0)), + ("Doub", (0, 0)), + ("bernou;", (8492, 0)), + ("Vdas", (0, 0)), + ("dote", (0, 0)), + ("eac", (0, 0)), + ("gneqq", (0, 0)), + ("ApplyFunc", (0, 0)), + ("rationals;", (8474, 0)), + ("kapp", (0, 0)), + ("NotG", (0, 0)), + ("ag", (0, 0)), + ("supplu", (0, 0)), + ("sec", (0, 0)), + ("Expone", (0, 0)), + ("ctdo", (0, 0)), + ("pound", (163, 0)), + ("NotGreaterGreater;", (8811, 824)), + ("simplu", (0, 0)), + ("Exi", (0, 0)), + ("st", (0, 0)), + ("kopf;", (120156, 0)), + ("zwnj;", (8204, 0)), + ("UnionPlus;", (8846, 0)), + ("ntriangleri", (0, 0)), + ("xdtri", (0, 0)), + ("supmult", (0, 0)), + ("The", (0, 0)), + ("blacklozenge", (0, 0)), + ("ngeqsl", (0, 0)), + ("iio", (0, 0)), + ("fallingdotseq;", (8786, 0)), + ("Co", (0, 0)), + ("bcong", (0, 0)), + ("lvertneqq;", (8808, 65024)), + ("LeftUpTeeVec", (0, 0)), + ("triangledow", (0, 0)), + ("Uparrow;", (8657, 0)), + ("varep", (0, 0)), + ("R", (0, 0)), + ("alefsym", (0, 0)), + ("RBar", (0, 0)), + ("lceil", (0, 0)), + ("DownRightVector", (0, 0)), + ("suph", (0, 0)), + ("DownAr", (0, 0)), + ("ZeroWidth", (0, 0)), + ("NotRi", (0, 0)), + ("precsim", (0, 0)), + ("xop", (0, 0)), + ("Mfr", (0, 0)), + ("pluss", (0, 0)), + ("ogt;", (10689, 0)), + ("gtlP", (0, 0)), + ("nwArr;", (8662, 0)), + ("rarrl", (0, 0)), + ("larrp", (0, 0)), + ("ShortRigh", (0, 0)), + ("lneqq", (0, 0)), + ("Cconint", (0, 0)), + ("CounterClockwi", (0, 0)), + ("inodot;", (305, 0)), + ("planc", (0, 0)), + ("nsupseteqq;", (10950, 824)), + ("Updownarrow;", (8661, 0)), + ("DD;", (8517, 0)), + ("black", (0, 0)), + ("gtcir;", (10874, 0)), + ("righta", (0, 0)), + ("Uum", (0, 0)), + ("NotLess;", (8814, 0)), + ("pu", (0, 0)), + ("SquareIntersecti", (0, 0)), + ("rarr;", (8594, 0)), + ("capand", (0, 0)), + ("nrtri;", (8939, 0)), + ("LeftUpDownVect", (0, 0)), + ("trade;", (8482, 0)), + ("Eacut", (0, 0)), + ("sqsups", (0, 0)), + ("CircleD", (0, 0)), + ("rsaquo;", (8250, 0)), + ("sum", (0, 0)), + ("vell", (0, 0)), + ("ZeroWid", (0, 0)), + ("hscr", (0, 0)), + ("Subset", (0, 0)), + ("Gcirc;", (284, 0)), + ("awconi", (0, 0)), + ("VDas", (0, 0)), + ("Ouml", (214, 0)), + ("Im", (0, 0)), + ("sdo", (0, 0)), + ("Ecirc", (202, 0)), + ("supsetneqq;", (10956, 0)), + ("Scar", (0, 0)), + ("kgreen", (0, 0)), + ("ncaron;", (328, 0)), + ("doublebarwedge", (0, 0)), + ("femal", (0, 0)), + ("gammad;", (989, 0)), + ("dlcorn", (0, 0)), + ("twoh", (0, 0)), + ("RuleDelay", (0, 0)), + ("submul", (0, 0)), + ("mapsto;", (8614, 0)), + ("rtime", (0, 0)), + ("scar", (0, 0)), + ("Ecaron;", (282, 0)), + ("late;", (10925, 0)), + ("QUOT", (34, 0)), + ("aring", (229, 0)), + ("Rscr;", (8475, 0)), + ("Hstro", (0, 0)), + ("ZHcy", (0, 0)), + ("anda", (0, 0)), + ("Elem", (0, 0)), + ("nsucc", (0, 0)), + ("prna", (0, 0)), + ("NotHumpDownHum", (0, 0)), + ("succapp", (0, 0)), + ("DoubleVerticalBar", (0, 0)), + ("sigmav;", (962, 0)), + ("TRA", (0, 0)), + ("ofci", (0, 0)), + ("UpTee;", (8869, 0)), + ("zdo", (0, 0)), + ("NotDoubleVer", (0, 0)), + ("delta", (0, 0)), + ("rbrke;", (10636, 0)), + ("zopf", (0, 0)), + ("lesdotor;", (10883, 0)), + ("sig", (0, 0)), + ("epa", (0, 0)), + ("divideontimes;", (8903, 0)), + ("NotTilde;", (8769, 0)), + ("NotPrecedesSlantEq", (0, 0)), + ("Eo", (0, 0)), + ("UpDownA", (0, 0)), + ("frown;", (8994, 0)), + ("DotEqual", (0, 0)), + ("IO", (0, 0)), + ("iuml", (239, 0)), + ("lharul", (0, 0)), + ("falli", (0, 0)), + ("udhar;", (10606, 0)), + ("dfr;", (120097, 0)), + ("Qopf;", (8474, 0)), + ("frac14;", (188, 0)), + ("raemptyv", (0, 0)), + ("nprece", (0, 0)), + ("rdquor", (0, 0)), + ("vnsup;", (8835, 8402)), + ("iacu", (0, 0)), + ("longrightarrow", (0, 0)), + ("leftrightarrows", (0, 0)), + ("prop", (0, 0)), + ("orde", (0, 0)), + ("otimesa", (0, 0)), + ("suplarr;", (10619, 0)), + ("macr;", (175, 0)), + ("grav", (0, 0)), + ("napos", (0, 0)), + ("weierp;", (8472, 0)), + ("leftharpoon", (0, 0)), + ("RightTeeVec", (0, 0)), + ("GreaterEqualLe", (0, 0)), + ("SO", (0, 0)), + ("bdquo;", (8222, 0)), + ("NegativeMediumSpac", (0, 0)), + ("vscr", (0, 0)), + ("nop", (0, 0)), + ("nsups", (0, 0)), + ("boxhd;", (9516, 0)), + ("nea", (0, 0)), + ("Ne", (0, 0)), + ("EmptyVerySm", (0, 0)), + ("zh", (0, 0)), + ("Smal", (0, 0)), + ("oopf", (0, 0)), + ("hA", (0, 0)), + ("Au", (0, 0)), + ("apE", (0, 0)), + ("Eogo", (0, 0)), + ("int;", (8747, 0)), + ("Urin", (0, 0)), + ("fras", (0, 0)), + ("leftrightha", (0, 0)), + ("rtrie;", (8885, 0)), + ("nvsi", (0, 0)), + ("eogon;", (281, 0)), + ("OpenCurlyQuot", (0, 0)), + ("lscr", (0, 0)), + ("ufisht;", (10622, 0)), + ("Gbr", (0, 0)), + ("NotSquareSupersetEq", (0, 0)), + ("capcup;", (10823, 0)), + ("DoubleLeft", (0, 0)), + ("oplus", (0, 0)), + ("equivDD", (0, 0)), + ("LeftRightVec", (0, 0)), + ("dj", (0, 0)), + ("DownArrowUp", (0, 0)), + ("Epsilon;", (917, 0)), + ("Ubrev", (0, 0)), + ("RightDownVect", (0, 0)), + ("Lang;", (10218, 0)), + ("laq", (0, 0)), + ("Poincarep", (0, 0)), + ("vpr", (0, 0)), + ("straighteps", (0, 0)), + ("phi", (0, 0)), + ("quaternions;", (8461, 0)), + ("nsqsupe", (0, 0)), + ("RB", (0, 0)), + ("varnoth", (0, 0)), + ("realine", (0, 0)), + ("rB", (0, 0)), + ("curvea", (0, 0)), + ("UpperL", (0, 0)), + ("Io", (0, 0)), + ("RightUpTeeVector", (0, 0)), + ("NotRightTriangle", (0, 0)), + ("ltdo", (0, 0)), + ("nVd", (0, 0)), + ("bc", (0, 0)), + ("nshortpa", (0, 0)), + ("nu", (0, 0)), + ("midas", (0, 0)), + ("angmsd", (0, 0)), + ("cup", (0, 0)), + ("heartsu", (0, 0)), + ("Tstro", (0, 0)), + ("dfis", (0, 0)), + ("lesseqgtr;", (8922, 0)), + ("bnequiv;", (8801, 8421)), + ("rcub", (0, 0)), + ("orsl", (0, 0)), + ("Lstr", (0, 0)), + ("ForAl", (0, 0)), + ("downdo", (0, 0)), + ("npar;", (8742, 0)), + ("rx;", (8478, 0)), + ("curarr;", (8631, 0)), + ("Emacr", (0, 0)), + ("sigma", (0, 0)), + ("topc", (0, 0)), + ("Gcy;", (1043, 0)), + ("nLef", (0, 0)), + ("spad", (0, 0)), + ("NotRightTriangleEqu", (0, 0)), + ("gi", (0, 0)), + ("vfr", (0, 0)), + ("CounterClockwiseContou", (0, 0)), + ("lsc", (0, 0)), + ("downd", (0, 0)), + ("ap;", (8776, 0)), + ("ubrcy", (0, 0)), + ("piv", (0, 0)), + ("backpr", (0, 0)), + ("DiacriticalTil", (0, 0)), + ("Hori", (0, 0)), + ("supdsub;", (10968, 0)), + ("scns", (0, 0)), + ("precnsi", (0, 0)), + ("Horizonta", (0, 0)), + ("VerticalSeparat", (0, 0)), + ("angst", (0, 0)), + ("VeryThinS", (0, 0)), + ("uring", (0, 0)), + ("Itild", (0, 0)), + ("ShortDownArr", (0, 0)), + ("nd", (0, 0)), + ("Preced", (0, 0)), + ("glE", (0, 0)), + ("G", (0, 0)), + ("plustwo;", (10791, 0)), + ("notindo", (0, 0)), + ("CounterC", (0, 0)), + ("Iacute;", (205, 0)), + ("looparrowrigh", (0, 0)), + ("Hfr", (0, 0)), + ("isinE;", (8953, 0)), + ("gtques", (0, 0)), + ("Oscr", (0, 0)), + ("Ps", (0, 0)), + ("DoubleLeftArro", (0, 0)), + ("Ot", (0, 0)), + ("Qs", (0, 0)), + ("curarr", (0, 0)), + ("RightUpT", (0, 0)), + ("check;", (10003, 0)), + ("trpezi", (0, 0)), + ("bla", (0, 0)), + ("intcal", (0, 0)), + ("LeftUpVe", (0, 0)), + ("Fscr", (0, 0)), + ("uplu", (0, 0)), + ("npoli", (0, 0)), + ("lfisht;", (10620, 0)), + ("precc", (0, 0)), + ("lotime", (0, 0)), + ("nleftar", (0, 0)), + ("Tr", (0, 0)), + ("quot;", (34, 0)), + ("gimel;", (8503, 0)), + ("twoheadlefta", (0, 0)), + ("jcir", (0, 0)), + ("Dstr", (0, 0)), + ("Backslash;", (8726, 0)), + ("hookleftarrow", (0, 0)), + ("Oslash", (216, 0)), + ("orslop", (0, 0)), + ("Wfr;", (120090, 0)), + ("NestedLe", (0, 0)), + ("nvap;", (8781, 8402)), + ("Vopf", (0, 0)), + ("strns;", (175, 0)), + ("nLl;", (8920, 824)), + ("varkap", (0, 0)), + ("backp", (0, 0)), + ("ffilig", (0, 0)), + ("image", (0, 0)), + ("Zcaron;", (381, 0)), + ("OE", (0, 0)), + ("frown", (0, 0)), + ("Implies;", (8658, 0)), + ("dca", (0, 0)), + ("ApplyFunction", (0, 0)), + ("DoubleLongRig", (0, 0)), + ("oas", (0, 0)), + ("prs", (0, 0)), + ("HAR", (0, 0)), + ("SmallCirc", (0, 0)), + ("succnappro", (0, 0)), + ("Unde", (0, 0)), + ("RightDownTeeV", (0, 0)), + ("star;", (9734, 0)), + ("notinvb;", (8951, 0)), + ("nvlAr", (0, 0)), + ("NotRightTriangl", (0, 0)), + ("prure", (0, 0)), + ("DownRightT", (0, 0)), + ("P", (0, 0)), + ("subpl", (0, 0)), + ("Thic", (0, 0)), + ("TRADE", (0, 0)), + ("rH", (0, 0)), + ("elinter", (0, 0)), + ("M", (0, 0)), + ("boxvL", (0, 0)), + ("NotSubsetEq", (0, 0)), + ("lagr", (0, 0)), + ("vDa", (0, 0)), + ("itilde;", (297, 0)), + ("blacktrianglerig", (0, 0)), + ("agrave;", (224, 0)), + ("Lcy;", (1051, 0)), + ("apacir;", (10863, 0)), + ("sqsube;", (8849, 0)), + ("roan", (0, 0)), + ("ts", (0, 0)), + ("lesge", (0, 0)), + ("vartrianglerig", (0, 0)), + ("cemptyv;", (10674, 0)), + ("nscc", (0, 0)), + ("verb", (0, 0)), + ("ubrcy;", (1118, 0)), + ("dotminu", (0, 0)), + ("dstr", (0, 0)), + ("auml;", (228, 0)), + ("rtrif", (0, 0)), + ("NotGreaterG", (0, 0)), + ("nvltrie", (0, 0)), + ("Leftrightarrow;", (8660, 0)), + ("CHcy;", (1063, 0)), + ("curvearrowr", (0, 0)), + ("NotLessGreater;", (8824, 0)), + ("suppl", (0, 0)), + ("FilledSmallSquar", (0, 0)), + ("Horiz", (0, 0)), + ("CloseC", (0, 0)), + ("precappr", (0, 0)), + ("Atil", (0, 0)), + ("opl", (0, 0)), + ("nLeft", (0, 0)), + ("Ba", (0, 0)), + ("LeftVector", (0, 0)), + ("UpArrowB", (0, 0)), + ("InvisibleC", (0, 0)), + ("kgree", (0, 0)), + ("Dfr;", (120071, 0)), + ("bigcirc;", (9711, 0)), + ("NotCong", (0, 0)), + ("gesdotol", (0, 0)), + ("DownLeftRight", (0, 0)), + ("hcir", (0, 0)), + ("sqsubseteq;", (8849, 0)), + ("succnappr", (0, 0)), + ("rang;", (10217, 0)), + ("leg", (0, 0)), + ("Utilde", (0, 0)), + ("eqvparsl;", (10725, 0)), + ("LeftAngleBracket;", (10216, 0)), + ("pcy;", (1087, 0)), + ("RightDownVector;", (8642, 0)), + ("vartrianglel", (0, 0)), + ("HorizontalLine;", (9472, 0)), + ("downar", (0, 0)), + ("backepsilon;", (1014, 0)), + ("t", (0, 0)), + ("spadesuit", (0, 0)), + ("nsubE", (0, 0)), + ("rightt", (0, 0)), + ("LessTild", (0, 0)), + ("rightharpoondow", (0, 0)), + ("Umac", (0, 0)), + ("ange;", (10660, 0)), + ("circlearrowri", (0, 0)), + ("lrhar;", (8651, 0)), + ("NotEqualT", (0, 0)), + ("squ;", (9633, 0)), + ("tstrok", (0, 0)), + ("lmoustac", (0, 0)), + ("dcaron", (0, 0)), + ("succappro", (0, 0)), + ("gcirc;", (285, 0)), + ("RBarr;", (10512, 0)), + ("multimap;", (8888, 0)), + ("cempt", (0, 0)), + ("Right", (0, 0)), + ("Atilde", (195, 0)), + ("nvltr", (0, 0)), + ("NotLeftTrian", (0, 0)), + ("nV", (0, 0)), + ("Rarrtl;", (10518, 0)), + ("drco", (0, 0)), + ("GT;", (62, 0)), + ("Al", (0, 0)), + ("shortparal", (0, 0)), + ("ljc", (0, 0)), + ("sse", (0, 0)), + ("MinusP", (0, 0)), + ("Cayle", (0, 0)), + ("bigtriangledo", (0, 0)), + ("erDo", (0, 0)), + ("mcomm", (0, 0)), + ("intpr", (0, 0)), + ("Scirc", (0, 0)), + ("Kf", (0, 0)), + ("Coni", (0, 0)), + ("llha", (0, 0)), + ("xuplus", (0, 0)), + ("leftrightharpoons;", (8651, 0)), + ("dzigra", (0, 0)), + ("Lcedil;", (315, 0)), + ("diam;", (8900, 0)), + ("CircleTim", (0, 0)), + ("nwArr", (0, 0)), + ("pa", (0, 0)), + ("ordf;", (170, 0)), + ("tra", (0, 0)), + ("kce", (0, 0)), + ("ocirc;", (244, 0)), + ("Itil", (0, 0)), + ("Nfr;", (120081, 0)), + ("RightUpDownVector;", (10575, 0)), + ("cupcap;", (10822, 0)), + ("intpro", (0, 0)), + ("SubsetEqual;", (8838, 0)), + ("nleftri", (0, 0)), + ("easter;", (10862, 0)), + ("erDot", (0, 0)), + ("NotLeftTriangleEqua", (0, 0)), + ("betwe", (0, 0)), + ("cirmid;", (10991, 0)), + ("gtrar", (0, 0)), + ("SquareI", (0, 0)), + ("boxmi", (0, 0)), + ("realpart;", (8476, 0)), + ("varsups", (0, 0)), + ("hArr", (0, 0)), + ("NotNestedGreaterG", (0, 0)), + ("par;", (8741, 0)), + ("DoubleUpDo", (0, 0)), + ("zhc", (0, 0)), + ("DoubleContourInte", (0, 0)), + ("cop", (0, 0)), + ("xscr", (0, 0)), + ("nvgt;", (62, 8402)), + ("rightarr", (0, 0)), + ("xcap", (0, 0)), + ("blacktriangleleft;", (9666, 0)), + ("Ascr;", (119964, 0)), + ("pscr;", (120005, 0)), + ("straightepsilo", (0, 0)), + ("Upd", (0, 0)), + ("rnm", (0, 0)), + ("nright", (0, 0)), + ("NotNestedLessLe", (0, 0)), + ("cupc", (0, 0)), + ("rightthreet", (0, 0)), + ("ordf", (170, 0)), + ("notind", (0, 0)), + ("lBa", (0, 0)), + ("varsubsetne", (0, 0)), + ("Pr;", (10939, 0)), + ("Scaro", (0, 0)), + ("odot;", (8857, 0)), + ("OverPa", (0, 0)), + ("TSHcy", (0, 0)), + ("drcrop", (0, 0)), + ("Clos", (0, 0)), + ("UnderPar", (0, 0)), + ("dagge", (0, 0)), + ("nvsim", (0, 0)), + ("lowast;", (8727, 0)), + ("succa", (0, 0)), + ("ncup;", (10818, 0)), + ("v", (0, 0)), + ("backsime", (0, 0)), + ("frac25", (0, 0)), + ("backcong;", (8780, 0)), + ("DownRightTeeVe", (0, 0)), + ("Sc", (0, 0)), + ("odblac;", (337, 0)), + ("oslash", (248, 0)), + ("HumpDownHump;", (8782, 0)), + ("dHar;", (10597, 0)), + ("Circle", (0, 0)), + ("xcup", (0, 0)), + ("centerdo", (0, 0)), + ("yc", (0, 0)), + ("searhk", (0, 0)), + ("aw", (0, 0)), + ("Ograve;", (210, 0)), + ("HumpDo", (0, 0)), + ("nLe", (0, 0)), + ("DoubleUpArrow", (0, 0)), + ("DownRightVec", (0, 0)), + ("Nfr", (0, 0)), + ("lambd", (0, 0)), + ("Exis", (0, 0)), + ("CupCap;", (8781, 0)), + ("angl", (0, 0)), + ("trade", (0, 0)), + ("straightp", (0, 0)), + ("swarhk", (0, 0)), + ("llhard;", (10603, 0)), + ("fallingdotseq", (0, 0)), + ("roti", (0, 0)), + ("excl", (0, 0)), + ("NegativeMediumS", (0, 0)), + ("Righ", (0, 0)), + ("Uparro", (0, 0)), + ("Barwed;", (8966, 0)), + ("LeftDownTeeV", (0, 0)), + ("demptyv;", (10673, 0)), + ("udblac;", (369, 0)), + ("sub;", (8834, 0)), + ("urtr", (0, 0)), + ("vartriang", (0, 0)), + ("race;", (8765, 817)), + ("LeftRight", (0, 0)), + ("doubleb", (0, 0)), + ("Delt", (0, 0)), + ("DoubleRightA", (0, 0)), + ("RightDownVectorBar;", (10581, 0)), + ("DD", (0, 0)), + ("boxUL;", (9565, 0)), + ("uacut", (0, 0)), + ("NonBreaking", (0, 0)), + ("aacute", (225, 0)), + ("rarrfs;", (10526, 0)), + ("Prime;", (8243, 0)), + ("blk34", (0, 0)), + ("capcap;", (10827, 0)), + ("sext", (0, 0)), + ("cups;", (8746, 65024)), + ("LeftArrowBa", (0, 0)), + ("upharpoon", (0, 0)), + ("gl", (0, 0)), + ("ngs", (0, 0)), + ("lsh", (0, 0)), + ("NegativeThi", (0, 0)), + ("circledast;", (8859, 0)), + ("GreaterEqual", (0, 0)), + ("paral", (0, 0)), + ("Bernoul", (0, 0)), + ("Vert;", (8214, 0)), + ("swarh", (0, 0)), + ("spade", (0, 0)), + ("Aacute;", (193, 0)), + ("boxhU", (0, 0)), + ("LowerLeftAr", (0, 0)), + ("NotGreaterEq", (0, 0)), + ("csup;", (10960, 0)), + ("vee;", (8744, 0)), + ("DownTeeAr", (0, 0)), + ("Pr", (0, 0)), + ("gvertneqq;", (8809, 65024)), + ("NotPrecedesS", (0, 0)), + ("boxV", (0, 0)), + ("ngsim", (0, 0)), + ("NotGreaterF", (0, 0)), + ("vArr", (0, 0)), + ("origof;", (8886, 0)), + ("RightUpDown", (0, 0)), + ("DoubleCont", (0, 0)), + ("pitchfork;", (8916, 0)), + ("Iacu", (0, 0)), + ("rl", (0, 0)), + ("precneqq", (0, 0)), + ("larrlp;", (8619, 0)), + ("geqq", (0, 0)), + ("nb", (0, 0)), + ("simne;", (8774, 0)), + ("ldrdhar;", (10599, 0)), + ("nshortp", (0, 0)), + ("DownLeftVector", (0, 0)), + ("wp;", (8472, 0)), + ("LeftDownVectorBa", (0, 0)), + ("Cacute", (0, 0)), + ("swarhk;", (10534, 0)), + ("Rrightarr", (0, 0)), + ("NegativeMediumSp", (0, 0)), + ("Qscr", (0, 0)), + ("GJcy", (0, 0)), + ("imagpart;", (8465, 0)), + ("rmous", (0, 0)), + ("there4;", (8756, 0)), + ("larrb", (0, 0)), + ("angzar", (0, 0)), + ("me", (0, 0)), + ("Nacute", (0, 0)), + ("rbrkslu;", (10640, 0)), + ("RightUpTeeVec", (0, 0)), + ("EmptySmal", (0, 0)), + ("NotGreat", (0, 0)), + ("VerticalTild", (0, 0)), + ("pitchf", (0, 0)), + ("nexists", (0, 0)), + ("notinva;", (8713, 0)), + ("Conto", (0, 0)), + ("clubs", (0, 0)), + ("bigtriangleu", (0, 0)), + ("harrc", (0, 0)), + ("nwarr", (0, 0)), + ("wopf;", (120168, 0)), + ("downarrow;", (8595, 0)), + ("Partia", (0, 0)), + ("nvrArr", (0, 0)), + ("supse", (0, 0)), + ("And;", (10835, 0)), + ("thks", (0, 0)), + ("triangleq", (0, 0)), + ("Pc", (0, 0)), + ("GreaterTild", (0, 0)), + ("CounterClockwiseConto", (0, 0)), + ("szl", (0, 0)), + ("preccurlyeq", (0, 0)), + ("NotPrecedesSla", (0, 0)), + ("ac;", (8766, 0)), + ("lfloor", (0, 0)), + ("eplus", (0, 0)), + ("rbrace;", (125, 0)), + ("rarrap;", (10613, 0)), + ("awin", (0, 0)), + ("eqc", (0, 0)), + ("fscr;", (119995, 0)), + ("hairsp;", (8202, 0)), + ("searro", (0, 0)), + ("DoubleContourIntegra", (0, 0)), + ("VerticalSeparator", (0, 0)), + ("Cedil", (0, 0)), + ("smepars", (0, 0)), + ("LowerRig", (0, 0)), + ("NotPr", (0, 0)), + ("rha", (0, 0)), + ("boxhD;", (9573, 0)), + ("ems", (0, 0)), + ("efDot", (0, 0)), + ("shortmi", (0, 0)), + ("lmoustache", (0, 0)), + ("backs", (0, 0)), + ("rdldha", (0, 0)), + ("bsolhsub", (0, 0)), + ("mapstoup;", (8613, 0)), + ("fla", (0, 0)), + ("circledcir", (0, 0)), + ("uscr", (0, 0)), + ("bigopl", (0, 0)), + ("niv;", (8715, 0)), + ("RoundI", (0, 0)), + ("boxplus", (0, 0)), + ("dha", (0, 0)), + ("smtes;", (10924, 65024)), + ("vB", (0, 0)), + ("imagli", (0, 0)), + ("bfr;", (120095, 0)), + ("HilbertS", (0, 0)), + ("GreaterFullEqu", (0, 0)), + ("uri", (0, 0)), + ("circlearrow", (0, 0)), + ("Me", (0, 0)), + ("RightUpVector", (0, 0)), + ("njcy", (0, 0)), + ("Lcaron", (0, 0)), + ("ncaron", (0, 0)), + ("bigtri", (0, 0)), + ("nlsi", (0, 0)), + ("reg", (174, 0)), + ("lescc;", (10920, 0)), + ("gbrev", (0, 0)), + ("prnE;", (10933, 0)), + ("leq;", (8804, 0)), + ("Reve", (0, 0)), + ("cwconin", (0, 0)), + ("RightV", (0, 0)), + ("becaus;", (8757, 0)), + ("Racu", (0, 0)), + ("Ncedil;", (325, 0)), + ("SquareInte", (0, 0)), + ("hookrightarrow", (0, 0)), + ("qprim", (0, 0)), + ("Kced", (0, 0)), + ("nrtrie", (0, 0)), + ("lowast", (0, 0)), + ("ltquest;", (10875, 0)), + ("SucceedsTil", (0, 0)), + ("Amacr", (0, 0)), + ("Hilb", (0, 0)), + ("NotHumpDownH", (0, 0)), + ("sqsupse", (0, 0)), + ("bep", (0, 0)), + ("boxu", (0, 0)), + ("Ma", (0, 0)), + ("bem", (0, 0)), + ("ApplyFunctio", (0, 0)), + ("dagger;", (8224, 0)), + ("Colone", (0, 0)), + ("lesd", (0, 0)), + ("SubsetEq", (0, 0)), + ("khcy;", (1093, 0)), + ("nvrtr", (0, 0)), + ("Oopf;", (120134, 0)), + ("otimes;", (8855, 0)), + ("trianglelefteq;", (8884, 0)), + ("nVdash", (0, 0)), + ("profala", (0, 0)), + ("risingdotseq;", (8787, 0)), + ("NotReverseElement", (0, 0)), + ("nRighta", (0, 0)), + ("langle;", (10216, 0)), + ("Kc", (0, 0)), + ("numero;", (8470, 0)), + ("UpEquilibrium;", (10606, 0)), + ("DiacriticalDoubleA", (0, 0)), + ("Xs", (0, 0)), + ("lrc", (0, 0)), + ("Abre", (0, 0)), + ("iota;", (953, 0)), + ("Rcy", (0, 0)), + ("simlE;", (10911, 0)), + ("Os", (0, 0)), + ("ugr", (0, 0)), + ("PrecedesEqua", (0, 0)), + ("eo", (0, 0)), + ("kjc", (0, 0)), + ("SquareUnio", (0, 0)), + ("lacute", (0, 0)), + ("GreaterEqualLess", (0, 0)), + ("bec", (0, 0)), + ("backsim;", (8765, 0)), + ("DoubleLongLeftA", (0, 0)), + ("longmap", (0, 0)), + ("tho", (0, 0)), + ("ApplyFu", (0, 0)), + ("equ", (0, 0)), + ("Kopf", (0, 0)), + ("Agr", (0, 0)), + ("LongLeftArro", (0, 0)), + ("Scaron;", (352, 0)), + ("SquareSubsetEqual", (0, 0)), + ("frac18", (0, 0)), + ("succns", (0, 0)), + ("bigcap;", (8898, 0)), + ("plusdu;", (10789, 0)), + ("nsm", (0, 0)), + ("real;", (8476, 0)), + ("NJcy", (0, 0)), + ("blacklozen", (0, 0)), + ("ncaro", (0, 0)), + ("bkar", (0, 0)), + ("gtrap", (0, 0)), + ("rdq", (0, 0)), + ("SquareInt", (0, 0)), + ("rpar", (0, 0)), + ("VD", (0, 0)), + ("CapitalDiffere", (0, 0)), + ("Gam", (0, 0)), + ("geqslant", (0, 0)), + ("leq", (0, 0)), + ("dia", (0, 0)), + ("straightepsilon", (0, 0)), + ("ncap", (0, 0)), + ("vDash", (0, 0)), + ("ugrave", (249, 0)), + ("rightleftharpoons;", (8652, 0)), + ("approxeq", (0, 0)), + ("RightTriang", (0, 0)), + ("odiv", (0, 0)), + ("egsdo", (0, 0)), + ("Exist", (0, 0)), + ("RightTeeArr", (0, 0)), + ("Equilibriu", (0, 0)), + ("Qsc", (0, 0)), + ("rightleftharp", (0, 0)), + ("srar", (0, 0)), + ("gl;", (8823, 0)), + ("rmoust;", (9137, 0)), + ("Bern", (0, 0)), + ("hksearow", (0, 0)), + ("oacute", (243, 0)), + ("Xscr", (0, 0)), + ("gfr;", (120100, 0)), + ("bsime", (0, 0)), + ("ordero", (0, 0)), + ("uAr", (0, 0)), + ("UnderBrace", (0, 0)), + ("NotLes", (0, 0)), + ("lscr;", (120001, 0)), + ("ntrianglerigh", (0, 0)), + ("nleftright", (0, 0)), + ("rh", (0, 0)), + ("pra", (0, 0)), + ("SucceedsE", (0, 0)), + ("RightTriangleB", (0, 0)), + ("per", (0, 0)), + ("eqvpar", (0, 0)), + ("mlcp", (0, 0)), + ("NegativeVeryThi", (0, 0)), + ("TildeEqual", (0, 0)), + ("api", (0, 0)), + ("therefore;", (8756, 0)), + ("gdot;", (289, 0)), + ("ntrianglelefte", (0, 0)), + ("scpo", (0, 0)), + ("Ifr;", (8465, 0)), + ("Tst", (0, 0)), + ("Invisib", (0, 0)), + ("csu", (0, 0)), + ("RightD", (0, 0)), + ("Differe", (0, 0)), + ("nra", (0, 0)), + ("lesges;", (10899, 0)), + ("Psc", (0, 0)), + ("io", (0, 0)), + ("iprod;", (10812, 0)), + ("Int", (0, 0)), + ("DownLeftTeeVector;", (10590, 0)), + ("LeftDownVec", (0, 0)), + ("ml", (0, 0)), + ("DownLeftT", (0, 0)), + ("ReverseElement;", (8715, 0)), + ("lsim", (0, 0)), + ("nlar", (0, 0)), + ("CapitalDifferenti", (0, 0)), + ("Ua", (0, 0)), + ("uml", (168, 0)), + ("nmi", (0, 0)), + ("sce", (0, 0)), + ("Hacek;", (711, 0)), + ("Coun", (0, 0)), + ("poun", (0, 0)), + ("rhov;", (1009, 0)), + ("NotDoubleVe", (0, 0)), + ("UpTeeAr", (0, 0)), + ("larrf", (0, 0)), + ("Bump", (0, 0)), + ("nLeftarro", (0, 0)), + ("ddo", (0, 0)), + ("lflo", (0, 0)), + ("Wc", (0, 0)), + ("ovbar;", (9021, 0)), + ("starf", (0, 0)), + ("Wci", (0, 0)), + ("Longrightarr", (0, 0)), + ("looparr", (0, 0)), + ("Appl", (0, 0)), + ("ascr;", (119990, 0)), + ("NotNestedGreaterGreat", (0, 0)), + ("NotVertica", (0, 0)), + ("subset", (0, 0)), + ("npol", (0, 0)), + ("Ou", (0, 0)), + ("nsupseteq", (0, 0)), + ("Iscr;", (8464, 0)), + ("nscr", (0, 0)), + ("Q", (0, 0)), + ("lnap", (0, 0)), + ("sla", (0, 0)), + ("DiacriticalDoubleAcute", (0, 0)), + ("RightUpVectorB", (0, 0)), + ("NotPrecedesSlant", (0, 0)), + ("DoubleLongRightArr", (0, 0)), + ("LeftDownV", (0, 0)), + ("Ecirc;", (202, 0)), + ("lbrksld", (0, 0)), + ("NotGreaterLe", (0, 0)), + ("LongLeftRi", (0, 0)), + ("cyl", (0, 0)), + ("Longrightarro", (0, 0)), + ("DDotrahd", (0, 0)), + ("tscy", (0, 0)), + ("If", (0, 0)), + ("plustwo", (0, 0)), + ("rcu", (0, 0)), + ("ch", (0, 0)), + ("Diacritica", (0, 0)), + ("Hace", (0, 0)), + ("InvisibleT", (0, 0)), + ("Dfr", (0, 0)), + ("Yuml;", (376, 0)), + ("bcy", (0, 0)), + ("udhar", (0, 0)), + ("Propo", (0, 0)), + ("dashv;", (8867, 0)), + ("nprcue;", (8928, 0)), + ("Asc", (0, 0)), + ("commat", (0, 0)), + ("Grea", (0, 0)), + ("xvee;", (8897, 0)), + ("rbrksl", (0, 0)), + ("Tsc", (0, 0)), + ("ccupss", (0, 0)), + ("nesear", (0, 0)), + ("rightlefthar", (0, 0)), + ("DoubleLongRightAr", (0, 0)), + ("min", (0, 0)), + ("meas", (0, 0)), + ("npolin", (0, 0)), + ("swn", (0, 0)), + ("bd", (0, 0)), + ("nsuc", (0, 0)), + ("fra", (0, 0)), + ("dzigr", (0, 0)), + ("usc", (0, 0)), + ("risingdotse", (0, 0)), + ("ocirc", (244, 0)), + ("csup", (0, 0)), + ("tscr;", (120009, 0)), + ("hor", (0, 0)), + ("cuesc", (0, 0)), + ("cudarrr", (0, 0)), + ("boxDL", (0, 0)), + ("ncongdo", (0, 0)), + ("Mscr", (0, 0)), + ("DownLeftVec", (0, 0)), + ("Cay", (0, 0)), + ("cupb", (0, 0)), + ("checkma", (0, 0)), + ("gjc", (0, 0)), + ("lm", (0, 0)), + ("Gced", (0, 0)), + ("vee", (0, 0)), + ("xi", (0, 0)), + ("preccu", (0, 0)), + ("EmptyVerySmallS", (0, 0)), + ("Rightarrow", (0, 0)), + ("longleftr", (0, 0)), + ("ipro", (0, 0)), + ("frac23;", (8532, 0)), + ("lA", (0, 0)), + ("Cconin", (0, 0)), + ("Vba", (0, 0)), + ("ddar", (0, 0)), + ("mstpos;", (8766, 0)), + ("angsph;", (8738, 0)), + ("HARD", (0, 0)), + ("sup;", (8835, 0)), + ("HumpDown", (0, 0)), + ("Edot;", (278, 0)), + ("NotSucceedsTilde;", (8831, 824)), + ("Uog", (0, 0)), + ("NestedLessLe", (0, 0)), + ("Ocir", (0, 0)), + ("heart", (0, 0)), + ("Agrave;", (192, 0)), + ("SquareIntersection;", (8851, 0)), + ("uparro", (0, 0)), + ("strn", (0, 0)), + ("rsh", (0, 0)), + ("lHa", (0, 0)), + ("hci", (0, 0)), + ("bigotime", (0, 0)), + ("LessLe", (0, 0)), + ("Capit", (0, 0)), + ("Equ", (0, 0)), + ("nrt", (0, 0)), + ("Lam", (0, 0)), + ("centerdot", (0, 0)), + ("realpa", (0, 0)), + ("gammad", (0, 0)), + ("NotLessTi", (0, 0)), + ("OverBrace", (0, 0)), + ("vda", (0, 0)), + ("twoheadrightarr", (0, 0)), + ("ClockwiseContourInteg", (0, 0)), + ("dot", (0, 0)), + ("ii", (0, 0)), + ("curvearrowrigh", (0, 0)), + ("PrecedesSl", (0, 0)), + ("zi", (0, 0)), + ("tsh", (0, 0)), + ("vnsub", (0, 0)), + ("rb", (0, 0)), + ("lcub;", (123, 0)), + ("betwee", (0, 0)), + ("Super", (0, 0)), + ("NotGreaterTilde;", (8821, 0)), + ("dua", (0, 0)), + ("Great", (0, 0)), + ("NotS", (0, 0)), + ("nle", (0, 0)), + ("lharu", (0, 0)), + ("rin", (0, 0)), + ("Sacute;", (346, 0)), + ("rbrack;", (93, 0)), + ("DoubleDot;", (168, 0)), + ("Jcy;", (1049, 0)), + ("xsqcup;", (10758, 0)), + ("UpArrowDownArrow", (0, 0)), + ("Laplacet", (0, 0)), + ("Map", (0, 0)), + ("HARDc", (0, 0)), + ("bfr", (0, 0)), + ("preceq", (0, 0)), + ("rdsh", (0, 0)), + ("Mellintrf;", (8499, 0)), + ("LeftRightVector", (0, 0)), + ("Poinca", (0, 0)), + ("imp", (0, 0)), + ("varsubsetneqq;", (10955, 65024)), + ("nsupset;", (8835, 8402)), + ("exp", (0, 0)), + ("rmoust", (0, 0)), + ("NegativeVeryThinS", (0, 0)), + ("NotHumpEqual", (0, 0)), + ("rdquo;", (8221, 0)), + ("TildeEqu", (0, 0)), + ("sccue;", (8829, 0)), + ("ThinSpa", (0, 0)), + ("hairs", (0, 0)), + ("nes", (0, 0)), + ("Hat", (0, 0)), + ("Rcaron", (0, 0)), + ("TildeE", (0, 0)), + ("hslas", (0, 0)), + ("bcy;", (1073, 0)), + ("amalg", (0, 0)), + ("SquareSubse", (0, 0)), + ("NotGreater;", (8815, 0)), + ("bullet", (0, 0)), + ("otimesas;", (10806, 0)), + ("ed", (0, 0)), + ("NegativeVeryThinSpac", (0, 0)), + ("jukc", (0, 0)), + ("planck;", (8463, 0)), + ("VerticalLine", (0, 0)), + ("nvD", (0, 0)), + ("oel", (0, 0)), + ("nparall", (0, 0)), + ("qpr", (0, 0)), + ("capa", (0, 0)), + ("gtrd", (0, 0)), + ("nsupseteq;", (8841, 0)), + ("Conint;", (8751, 0)), + ("NonBr", (0, 0)), + ("twoheadrightar", (0, 0)), + ("Iuml;", (207, 0)), + ("rlarr;", (8644, 0)), + ("epar;", (8917, 0)), + ("LeftUpVectorBar;", (10584, 0)), + ("To", (0, 0)), + ("LessEqualGrea", (0, 0)), + ("jc", (0, 0)), + ("yacute", (253, 0)), + ("leftrightsquigar", (0, 0)), + ("targe", (0, 0)), + ("uArr", (0, 0)), + ("EmptyVerySmallSquare;", (9643, 0)), + ("Rang", (0, 0)), + ("uwangle", (0, 0)), + ("iopf", (0, 0)), + ("gtrappr", (0, 0)), + ("smte", (0, 0)), + ("hslash;", (8463, 0)), + ("Impli", (0, 0)), + ("nrig", (0, 0)), + ("imag", (0, 0)), + ("od", (0, 0)), + ("Thi", (0, 0)), + ("O", (0, 0)), + ("RightUpDownVector", (0, 0)), + ("vltri;", (8882, 0)), + ("ShortRight", (0, 0)), + ("ntr", (0, 0)), + ("ddotseq;", (10871, 0)), + ("LessLess", (0, 0)), + ("toea;", (10536, 0)), + ("macr", (175, 0)), + ("LeftUpVectorBa", (0, 0)), + ("tsc", (0, 0)), + ("ldru", (0, 0)), + ("simpl", (0, 0)), + ("bigtriangled", (0, 0)), + ("DownRightVect", (0, 0)), + ("zfr", (0, 0)), + ("CloseCurlyQu", (0, 0)), + ("bdqu", (0, 0)), + ("lessap", (0, 0)), + ("NegativeThinSpa", (0, 0)), + ("verba", (0, 0)), + ("gsi", (0, 0)), + ("ClockwiseContou", (0, 0)), + ("phone", (0, 0)), + ("Zopf;", (8484, 0)), + ("lbrke", (0, 0)), + ("wopf", (0, 0)), + ("clubs;", (9827, 0)), + ("parallel;", (8741, 0)), + ("mapstole", (0, 0)), + ("sfrown;", (8994, 0)), + ("rAar", (0, 0)), + ("lrhard;", (10605, 0)), + ("Nopf;", (8469, 0)), + ("rppolint", (0, 0)), + ("notniv", (0, 0)), + ("gtr", (0, 0)), + ("NotGre", (0, 0)), + ("ENG;", (330, 0)), + ("inter", (0, 0)), + ("Jcirc", (0, 0)), + ("Intersecti", (0, 0)), + ("bscr", (0, 0)), + ("order;", (8500, 0)), + ("fll", (0, 0)), + ("xc", (0, 0)), + ("supdo", (0, 0)), + ("DDotra", (0, 0)), + ("cylcty;", (9005, 0)), + ("DownRightTee", (0, 0)), + ("supseteq;", (8839, 0)), + ("gim", (0, 0)), + ("ctdot;", (8943, 0)), + ("mu;", (956, 0)), + ("part;", (8706, 0)), + ("Bc", (0, 0)), + ("npreceq;", (10927, 824)), + ("cupor;", (10821, 0)), + ("looparrowl", (0, 0)), + ("boxvR;", (9566, 0)), + ("doubl", (0, 0)), + ("ldquo;", (8220, 0)), + ("Ecy", (0, 0)), + ("minusb;", (8863, 0)), + ("RightUpDow", (0, 0)), + ("oin", (0, 0)), + ("lneq;", (10887, 0)), + ("DoubleLongLeftRi", (0, 0)), + ("awc", (0, 0)), + ("latail;", (10521, 0)), + ("blacktriangle", (0, 0)), + ("sfro", (0, 0)), + ("questeq;", (8799, 0)), + ("bigtria", (0, 0)), + ("ZeroWidthSpace", (0, 0)), + ("NotCupCap;", (8813, 0)), + ("urc", (0, 0)), + ("Hsc", (0, 0)), + ("llcorne", (0, 0)), + ("rscr", (0, 0)), + ("DoubleLeftT", (0, 0)), + ("LongRightArro", (0, 0)), + ("PlusMinus;", (177, 0)), + ("Lacu", (0, 0)), + ("SquareUnion", (0, 0)), + ("bne", (0, 0)), + ("Ccirc", (0, 0)), + ("FilledVerySmallSquare;", (9642, 0)), + ("rightrightarro", (0, 0)), + ("HARDcy;", (1066, 0)), + ("Barwe", (0, 0)), + ("Very", (0, 0)), + ("CircleDot;", (8857, 0)), + ("jo", (0, 0)), + ("lata", (0, 0)), + ("nge;", (8817, 0)), + ("imat", (0, 0)), + ("boxUR;", (9562, 0)), + ("DoubleContourIntegral", (0, 0)), + ("notin", (0, 0)), + ("curlyeqp", (0, 0)), + ("equi", (0, 0)), + ("npre;", (10927, 824)), + ("diamo", (0, 0)), + ("LeftDoub", (0, 0)), + ("Yu", (0, 0)), + ("leftarrowtail;", (8610, 0)), + ("CounterClockwiseContourInte", (0, 0)), + ("Ri", (0, 0)), + ("ThickSpace;", (8287, 8202)), + ("hscr;", (119997, 0)), + ("fcy;", (1092, 0)), + ("rang", (0, 0)), + ("longrigh", (0, 0)), + ("Ncaro", (0, 0)), + ("ses", (0, 0)), + ("LeftArrowRightArr", (0, 0)), + ("DoubleDown", (0, 0)), + ("lessgt", (0, 0)), + ("ReverseEquilibri", (0, 0)), + ("RightCei", (0, 0)), + ("fall", (0, 0)), + ("de", (0, 0)), + ("precnappr", (0, 0)), + ("NonBreaki", (0, 0)), + ("xoplus;", (10753, 0)), + ("jserc", (0, 0)), + ("updownar", (0, 0)), + ("N", (0, 0)), + ("frac38;", (8540, 0)), + ("Nes", (0, 0)), + ("subseteqq", (0, 0)), + ("NotLessTilde", (0, 0)), + ("NotHumpE", (0, 0)), + ("OverBa", (0, 0)), + ("Prop", (0, 0)), + ("bbrk", (0, 0)), + ("bno", (0, 0)), + ("nLt;", (8810, 8402)), + ("ltqu", (0, 0)), + ("looparrowrig", (0, 0)), + ("lsqb;", (91, 0)), + ("efDot;", (8786, 0)), + ("gamma", (0, 0)), + ("Rrightarro", (0, 0)), + ("longleft", (0, 0)), + ("TildeEq", (0, 0)), + ("mho;", (8487, 0)), + ("longrig", (0, 0)), + ("Kce", (0, 0)), + ("scnap", (0, 0)), + ("Scedil;", (350, 0)), + ("nVdas", (0, 0)), + ("Om", (0, 0)), + ("xwedg", (0, 0)), + ("vzigzag;", (10650, 0)), + ("Exists", (0, 0)), + ("rightleftharpo", (0, 0)), + ("gsiml;", (10896, 0)), + ("rsquor;", (8217, 0)), + ("LongLef", (0, 0)), + ("Capi", (0, 0)), + ("isinE", (0, 0)), + ("triangle;", (9653, 0)), + ("SucceedsSlantEqual", (0, 0)), + ("twoheadright", (0, 0)), + ("jcy", (0, 0)), + ("OverPar", (0, 0)), + ("Of", (0, 0)), + ("frac13;", (8531, 0)), + ("toe", (0, 0)), + ("lamb", (0, 0)), + ("nLeftri", (0, 0)), + ("stra", (0, 0)), + ("RightTe", (0, 0)), + ("rp", (0, 0)), + ("DownB", (0, 0)), + ("els;", (10901, 0)), + ("larrbfs", (0, 0)), + ("CH", (0, 0)), + ("bco", (0, 0)), + ("naturals", (0, 0)), + ("odsol", (0, 0)), + ("nsu", (0, 0)), + ("DiacriticalAcu", (0, 0)), + ("phi;", (966, 0)), + ("RuleDelaye", (0, 0)), + ("frac56", (0, 0)), + ("rtrilt", (0, 0)), + ("nsupE;", (10950, 824)), + ("doubleba", (0, 0)), + ("yac", (0, 0)), + ("curlywed", (0, 0)), + ("Hstrok;", (294, 0)), + ("cuda", (0, 0)), + ("capc", (0, 0)), + ("Kscr;", (119974, 0)), + ("seArr", (0, 0)), + ("LongRigh", (0, 0)), + ("larrl", (0, 0)), + ("ThinSp", (0, 0)), + ("scpol", (0, 0)), + ("raq", (0, 0)), + ("Tscr;", (119983, 0)), + ("rlm;", (8207, 0)), + ("xsqcup", (0, 0)), + ("varepsilo", (0, 0)), + ("RightUpDownVec", (0, 0)), + ("prn", (0, 0)), + ("NotRightTrian", (0, 0)), + ("Racute;", (340, 0)), + ("lacu", (0, 0)), + ("eg", (0, 0)), + ("scpolint;", (10771, 0)), + ("gbre", (0, 0)), + ("TScy", (0, 0)), + ("curvearrowleft;", (8630, 0)), + ("nedot", (0, 0)), + ("angzarr", (0, 0)), + ("Top", (0, 0)), + ("dolla", (0, 0)), + ("CapitalDifferent", (0, 0)), + ("amacr", (0, 0)), + ("ldquor;", (8222, 0)), + ("ecolo", (0, 0)), + ("notinE", (0, 0)), + ("Clo", (0, 0)), + ("nvinfi", (0, 0)), + ("succapprox", (0, 0)), + ("lesssim", (0, 0)), + ("para;", (182, 0)), + ("plankv;", (8463, 0)), + ("ClockwiseContourIn", (0, 0)), + ("nrarr", (0, 0)), + ("searh", (0, 0)), + ("precneq", (0, 0)), + ("ensp;", (8194, 0)), + ("RightC", (0, 0)), + ("Ce", (0, 0)), + ("rtriltri", (0, 0)), + ("LeftFlo", (0, 0)), + ("RightAngleBracket;", (10217, 0)), + ("boxdR", (0, 0)), + ("Contou", (0, 0)), + ("boxUR", (0, 0)), + ("Rarrt", (0, 0)), + ("FilledVerySmallSquar", (0, 0)), + ("Diacrit", (0, 0)), + ("NotLeftTriangleEq", (0, 0)), + ("dots", (0, 0)), + ("ijli", (0, 0)), + ("Od", (0, 0)), + ("ReverseUp", (0, 0)), + ("Colon", (0, 0)), + ("zc", (0, 0)), + ("DownLeftTeeVect", (0, 0)), + ("ecy;", (1101, 0)), + ("afr", (0, 0)), + ("emsp13", (0, 0)), + ("ulcrop;", (8975, 0)), + ("rarrw", (0, 0)), + ("nvsim;", (8764, 8402)), + ("rc", (0, 0)), + ("vartrian", (0, 0)), + ("dfish", (0, 0)), + ("acute;", (180, 0)), + ("edot", (0, 0)), + ("Vvda", (0, 0)), + ("RightUpVectorBa", (0, 0)), + ("LeftTee", (0, 0)), + ("notniva", (0, 0)), + ("Iota;", (921, 0)), + ("iocy;", (1105, 0)), + ("NotTildeTi", (0, 0)), + ("scnsim;", (8937, 0)), + ("PrecedesTilde;", (8830, 0)), + ("nsupe;", (8841, 0)), + ("bsim;", (8765, 0)), + ("se", (0, 0)), + ("asymp", (0, 0)), + ("EmptyVerySmallSq", (0, 0)), + ("omid;", (10678, 0)), + ("circledR", (0, 0)), + ("NotGreaterFull", (0, 0)), + ("acE", (0, 0)), + ("Congr", (0, 0)), + ("olarr;", (8634, 0)), + ("bigtrian", (0, 0)), + ("X", (0, 0)), + ("nl", (0, 0)), + ("lAarr;", (8666, 0)), + ("isinsv", (0, 0)), + ("SquareIntersec", (0, 0)), + ("udblac", (0, 0)), + ("Xfr", (0, 0)), + ("vBarv;", (10985, 0)), + ("capbrc", (0, 0)), + ("simrarr;", (10610, 0)), + ("prsim", (0, 0)), + ("CirclePlus", (0, 0)), + ("spadesui", (0, 0)), + ("varsigma;", (962, 0)), + ("TR", (0, 0)), + ("oper", (0, 0)), + ("diamondsuit;", (9830, 0)), + ("sqcap", (0, 0)), + ("ltl", (0, 0)), + ("NotRightTriang", (0, 0)), + ("ici", (0, 0)), + ("gtrappro", (0, 0)), + ("HorizontalL", (0, 0)), + ("boxHU", (0, 0)), + ("Imacr", (0, 0)), + ("rect;", (9645, 0)), + ("GJ", (0, 0)), + ("boxplu", (0, 0)), + ("circledd", (0, 0)), + ("gnsim", (0, 0)), + ("eque", (0, 0)), + ("boxHd", (0, 0)), + ("swAr", (0, 0)), + ("boxb", (0, 0)), + ("LessSlant", (0, 0)), + ("Ll;", (8920, 0)), + ("larr;", (8592, 0)), + ("Lowe", (0, 0)), + ("ma", (0, 0)), + ("vop", (0, 0)), + ("eog", (0, 0)), + ("Sac", (0, 0)), + ("nvrt", (0, 0)), + ("precnsim", (0, 0)), + ("fopf;", (120151, 0)), + ("loarr;", (8701, 0)), + ("lg;", (8822, 0)), + ("iiiint", (0, 0)), + ("approxeq;", (8778, 0)), + ("hookright", (0, 0)), + ("NotDoubl", (0, 0)), + ("nsc", (0, 0)), + ("Sscr;", (119982, 0)), + ("Diacriti", (0, 0)), + ("gtreqqless", (0, 0)), + ("NotGreaterSlan", (0, 0)), + ("icir", (0, 0)), + ("Sub", (0, 0)), + ("twoheadrightarrow", (0, 0)), + ("DoubleUpDown", (0, 0)), + ("NotSucceedsSlantE", (0, 0)), + ("subseteq", (0, 0)), + ("nsubE;", (10949, 824)), + ("rtri;", (9657, 0)), + ("LongLeft", (0, 0)), + ("Tca", (0, 0)), + ("vsupne;", (8843, 65024)), + ("Updow", (0, 0)), + ("xrArr;", (10233, 0)), + ("prec;", (8826, 0)), + ("efr", (0, 0)), + ("VerticalSeparator;", (10072, 0)), + ("OpenCurlyDoub", (0, 0)), + ("Qop", (0, 0)), + ("homtht", (0, 0)), + ("Ido", (0, 0)), + ("rightrig", (0, 0)), + ("andslo", (0, 0)), + ("lesc", (0, 0)), + ("Scy;", (1057, 0)), + ("LeftTriangleEq", (0, 0)), + ("simdot;", (10858, 0)), + ("ffllig", (0, 0)), + ("trim", (0, 0)), + ("larrtl", (0, 0)), + ("nri", (0, 0)), + ("GreaterSlantEqua", (0, 0)), + ("rightarrowta", (0, 0)), + ("nshortpar", (0, 0)), + ("ncedi", (0, 0)), + ("RightArrowLe", (0, 0)), + ("simdot", (0, 0)), + ("GreaterFu", (0, 0)), + ("RightUpTeeVector;", (10588, 0)), + ("gtrsim;", (8819, 0)), + ("lates;", (10925, 65024)), + ("NotTildeF", (0, 0)), + ("simra", (0, 0)), + ("zcaro", (0, 0)), + ("LeftTriangleE", (0, 0)), + ("DoubleVertical", (0, 0)), + ("awi", (0, 0)), + ("Ucir", (0, 0)), + ("qua", (0, 0)), + ("LessTilde;", (8818, 0)), + ("propto", (0, 0)), + ("precsi", (0, 0)), + ("compf", (0, 0)), + ("lsq", (0, 0)), + ("Wo", (0, 0)), + ("ltlarr", (0, 0)), + ("andand", (0, 0)), + ("LongRight", (0, 0)), + ("cire", (0, 0)), + ("DownTee", (0, 0)), + ("Jukcy", (0, 0)), + ("simr", (0, 0)), + ("infinti", (0, 0)), + ("upuparrow", (0, 0)), + ("SquareSubset", (0, 0)), + ("expon", (0, 0)), + ("DiacriticalT", (0, 0)), + ("apac", (0, 0)), + ("Superset;", (8835, 0)), + ("Iogon", (0, 0)), + ("NoBrea", (0, 0)), + ("circledc", (0, 0)), + ("LeftArrowRi", (0, 0)), + ("LongLeftRight", (0, 0)), + ("LeftUpDownVec", (0, 0)), + ("FilledSmallS", (0, 0)), + ("Vvdash", (0, 0)), + ("fflli", (0, 0)), + ("thkap;", (8776, 0)), + ("frac16;", (8537, 0)), + ("RightAr", (0, 0)), + ("DoubleRightArro", (0, 0)), + ("ur", (0, 0)), + ("DownLeftRig", (0, 0)), + ("DoubleLeftAr", (0, 0)), + ("rsaquo", (0, 0)), + ("succ;", (8827, 0)), + ("NotHumpDownHu", (0, 0)), + ("rightrightarrow", (0, 0)), + ("lrha", (0, 0)), + ("gap;", (10886, 0)), + ("Xf", (0, 0)), + ("bul", (0, 0)), + ("RuleDelayed;", (10740, 0)), + ("eparsl;", (10723, 0)), + ("gimel", (0, 0)), + ("telrec;", (8981, 0)), + ("lowas", (0, 0)), + ("PlusMinus", (0, 0)), + ("nleqq;", (8806, 824)), + ("precapprox;", (10935, 0)), + ("vartriangleright;", (8883, 0)), + ("uu", (0, 0)), + ("NegativeVeryThin", (0, 0)), + ("frac78;", (8542, 0)), + ("Iopf", (0, 0)), + ("LowerRightA", (0, 0)), + ("NotExi", (0, 0)), + ("xot", (0, 0)), + ("CapitalDifferentialD;", (8517, 0)), + ("lacute;", (314, 0)), + ("Cap;", (8914, 0)), + ("zeetrf", (0, 0)), + ("NotRevers", (0, 0)), + ("Ao", (0, 0)), + ("ulc", (0, 0)), + ("blacktrianglelef", (0, 0)), + ("eum", (0, 0)), + ("ltquest", (0, 0)), + ("mida", (0, 0)), + ("uda", (0, 0)), + ("DiacriticalDoubl", (0, 0)), + ("ltrif", (0, 0)), + ("rightharpoonu", (0, 0)), + ("OpenCurlyQu", (0, 0)), + ("Pcy", (0, 0)), + ("sdote", (0, 0)), + ("SubsetE", (0, 0)), + ("mst", (0, 0)), + ("NestedGreaterGreate", (0, 0)), + ("Ntil", (0, 0)), + ("Amac", (0, 0)), + ("nbumpe", (0, 0)), + ("Equa", (0, 0)), + ("eqsim", (0, 0)), + ("Cent", (0, 0)), + ("Aum", (0, 0)), + ("gnsim;", (8935, 0)), + ("Because", (0, 0)), + ("xotim", (0, 0)), + ("supset;", (8835, 0)), + ("simn", (0, 0)), + ("sqsubs", (0, 0)), + ("Equili", (0, 0)), + ("LeftArrowBar", (0, 0)), + ("nless", (0, 0)), + ("NotGreaterGreater", (0, 0)), + ("gvnE;", (8809, 65024)), + ("varth", (0, 0)), + ("veeeq;", (8794, 0)), + ("Dagge", (0, 0)), + ("bigtriangl", (0, 0)), + ("SuchThat", (0, 0)), + ("OverParenthesi", (0, 0)), + ("DoubleUp", (0, 0)), + ("cups", (0, 0)), + ("DScy;", (1029, 0)), + ("dAr", (0, 0)), + ("emsp13;", (8196, 0)), + ("Yacute", (221, 0)), + ("lsimg", (0, 0)), + ("mfr;", (120106, 0)), + ("nvin", (0, 0)), + ("osl", (0, 0)), + ("vnsup", (0, 0)), + ("RightArrowLeftAr", (0, 0)), + ("weier", (0, 0)), + ("zop", (0, 0)), + ("lessgtr", (0, 0)), + ("leftleftarro", (0, 0)), + ("lessa", (0, 0)), + ("varpi;", (982, 0)), + ("Gopf;", (120126, 0)), + ("OverBracket;", (9140, 0)), + ("isins;", (8948, 0)), + ("wedgeq;", (8793, 0)), + ("simplus", (0, 0)), + ("ufisht", (0, 0)), + ("lurds", (0, 0)), + ("verbar;", (124, 0)), + ("urco", (0, 0)), + ("Uuml", (220, 0)), + ("Cacut", (0, 0)), + ("NotSucceedsSlant", (0, 0)), + ("ReverseUpEquili", (0, 0)), + ("NotDoubleVert", (0, 0)), + ("sst", (0, 0)), + ("pertenk;", (8241, 0)), + ("blacksq", (0, 0)), + ("hal", (0, 0)), + ("NotNested", (0, 0)), + ("DiacriticalGrav", (0, 0)), + ("rharul;", (10604, 0)), + ("Cca", (0, 0)), + ("yuml", (255, 0)), + ("incare;", (8453, 0)), + ("varsubse", (0, 0)), + ("ru", (0, 0)), + ("vDas", (0, 0)), + ("ifr;", (120102, 0)), + ("LeftDoubleBracke", (0, 0)), + ("ThinSpace", (0, 0)), + ("supsetne", (0, 0)), + ("sqsupset", (0, 0)), + ("Uarrocir", (0, 0)), + ("nacute;", (324, 0)), + ("xsq", (0, 0)), + ("succnapp", (0, 0)), + ("topfork", (0, 0)), + ("tritim", (0, 0)), + ("nrtr", (0, 0)), + ("quot", (34, 0)), + ("ep", (0, 0)), + ("mho", (0, 0)), + ("Proportiona", (0, 0)), + ("NestedGreaterGre", (0, 0)), + ("DoubleCon", (0, 0)), + ("cire;", (8791, 0)), + ("RightTeeArrow", (0, 0)), + ("nedot;", (8784, 824)), + ("OpenCurlyDouble", (0, 0)), + ("NotGr", (0, 0)), + ("sea", (0, 0)), + ("geqq;", (8807, 0)), + ("um", (0, 0)), + ("rlh", (0, 0)), + ("jf", (0, 0)), + ("lc", (0, 0)), + ("das", (0, 0)), + ("swArr;", (8665, 0)), + ("DownLeftVectorBa", (0, 0)), + ("ssetmn", (0, 0)), + ("Eleme", (0, 0)), + ("upa", (0, 0)), + ("angsph", (0, 0)), + ("com", (0, 0)), + ("cirE;", (10691, 0)), + ("loan", (0, 0)), + ("Yacute;", (221, 0)), + ("dollar;", (36, 0)), + ("Contour", (0, 0)), + ("gvert", (0, 0)), + ("rceil", (0, 0)), + ("cuepr;", (8926, 0)), + ("La", (0, 0)), + ("CircleMi", (0, 0)), + ("DoubleLongLeftRight", (0, 0)), + ("nm", (0, 0)), + ("ltimes;", (8905, 0)), + ("UpperRigh", (0, 0)), + ("rae", (0, 0)), + ("Ocirc", (212, 0)), + ("gesl", (0, 0)), + ("pointi", (0, 0)), + ("rsqb;", (93, 0)), + ("ko", (0, 0)), + ("nhpar", (0, 0)), + ("scy", (0, 0)), + ("urcorner;", (8989, 0)), + ("ImaginaryI;", (8520, 0)), + ("Equil", (0, 0)), + ("vert;", (124, 0)), + ("leftlef", (0, 0)), + ("boxVH;", (9580, 0)), + ("yscr", (0, 0)), + ("uacute", (250, 0)), + ("RightArrowLeftArrow;", (8644, 0)), + ("Negative", (0, 0)), + ("Diamond;", (8900, 0)), + ("punc", (0, 0)), + ("Aogon;", (260, 0)), + ("LeftCe", (0, 0)), + ("NegativeMed", (0, 0)), + ("iques", (0, 0)), + ("forall", (0, 0)), + ("Supse", (0, 0)), + ("boxVH", (0, 0)), + ("NotRightTriangleBar;", (10704, 824)), + ("NotNestedLessLess;", (10913, 824)), + ("Diamo", (0, 0)), + ("NotRever", (0, 0)), + ("profsur", (0, 0)), + ("LeftTeeArrow", (0, 0)), + ("rarrlp;", (8620, 0)), + ("filig;", (64257, 0)), + ("Ex", (0, 0)), + ("nearh", (0, 0)), + ("ssc", (0, 0)), + ("Qfr", (0, 0)), + ("ecolon", (0, 0)), + ("Product", (0, 0)), + ("triangleright", (0, 0)), + ("mapstod", (0, 0)), + ("igrave;", (236, 0)), + ("bigstar;", (9733, 0)), + ("Uni", (0, 0)), + ("rightthreetim", (0, 0)), + ("Poincarepl", (0, 0)), + ("Gammad", (0, 0)), + ("bigoplu", (0, 0)), + ("varnothi", (0, 0)), + ("DownLeftVectorBar", (0, 0)), + ("fscr", (0, 0)), + ("Jscr", (0, 0)), + ("nsup", (0, 0)), + ("smil", (0, 0)), + ("Updowna", (0, 0)), + ("NotDoubleVertica", (0, 0)), + ("ropf", (0, 0)), + ("uH", (0, 0)), + ("hks", (0, 0)), + ("sce;", (10928, 0)), + ("xmap", (0, 0)), + ("loopar", (0, 0)), + ("SquareSupersetEqual;", (8850, 0)), + ("iota", (0, 0)), + ("delta;", (948, 0)), + ("xopf;", (120169, 0)), + ("wp", (0, 0)), + ("amal", (0, 0)), + ("nlt;", (8814, 0)), + ("NoB", (0, 0)), + ("yuml;", (255, 0)), + ("neArr;", (8663, 0)), + ("Cf", (0, 0)), + ("Gbrev", (0, 0)), + ("doll", (0, 0)), + ("oc", (0, 0)), + ("ulcorn", (0, 0)), + ("UnderP", (0, 0)), + ("nabla", (0, 0)), + ("leftleftarrows", (0, 0)), + ("Coproduct;", (8720, 0)), + ("nsqsube", (0, 0)), + ("angmsdaa", (0, 0)), + ("Dst", (0, 0)), + ("CapitalDifferentialD", (0, 0)), + ("shortm", (0, 0)), + ("doteqdot;", (8785, 0)), + ("SHcy", (0, 0)), + ("SOFTc", (0, 0)), + ("Gbre", (0, 0)), + ("quate", (0, 0)), + ("subnE;", (10955, 0)), + ("LessTilde", (0, 0)), + ("supd", (0, 0)), + ("doublebarwedge;", (8966, 0)), + ("iff;", (8660, 0)), + ("awcon", (0, 0)), + ("lfl", (0, 0)), + ("FilledSmallSqua", (0, 0)), + ("VeryThinSpace;", (8202, 0)), + ("subrarr;", (10617, 0)), + ("alpha", (0, 0)), + ("Csc", (0, 0)), + ("ovbar", (0, 0)), + ("lra", (0, 0)), + ("ubreve;", (365, 0)), + ("NotLessSla", (0, 0)), + ("Rce", (0, 0)), + ("nLeftrighta", (0, 0)), + ("NegativeVeryT", (0, 0)), + ("lrtr", (0, 0)), + ("Yuml", (0, 0)), + ("CloseCurlyDou", (0, 0)), + ("fork", (0, 0)), + ("ruluhar;", (10600, 0)), + ("rBa", (0, 0)), + ("varr;", (8597, 0)), + ("smallsetminus;", (8726, 0)), + ("lsqb", (0, 0)), + ("yu", (0, 0)), + ("olcr", (0, 0)), + ("bigcap", (0, 0)), + ("NotSubsetEqua", (0, 0)), + ("NotSucceedsSlantEqua", (0, 0)), + ("DoubleLongRightA", (0, 0)), + ("interca", (0, 0)), + ("larrbfs;", (10527, 0)), + ("apa", (0, 0)), + ("NotSquareSuperset", (0, 0)), + ("nvdash", (0, 0)), + ("DownTee;", (8868, 0)), + ("xuplus;", (10756, 0)), + ("OverBrace;", (9182, 0)), + ("tridot", (0, 0)), + ("bigtr", (0, 0)), + ("Osl", (0, 0)), + ("lmo", (0, 0)), + ("Sscr", (0, 0)), + ("OverBrac", (0, 0)), + ("rightleftarr", (0, 0)), + ("nsime;", (8772, 0)), + ("sqcups;", (8852, 65024)), + ("NotTildeFullEq", (0, 0)), + ("nsc;", (8833, 0)), + ("notinvc", (0, 0)), + ("erD", (0, 0)), + ("lcar", (0, 0)), + ("CounterClockwiseContourInt", (0, 0)), + ("Fouriertrf;", (8497, 0)), + ("Rh", (0, 0)), + ("near", (0, 0)), + ("Mo", (0, 0)), + ("DotD", (0, 0)), + ("sof", (0, 0)), + ("ngt;", (8815, 0)), + ("ccups", (0, 0)), + ("appro", (0, 0)), + ("LeftDownVector;", (8643, 0)), + ("beca", (0, 0)), + ("trpez", (0, 0)), + ("blacktriangleri", (0, 0)), + ("congd", (0, 0)), + ("sacute", (0, 0)), + ("b", (0, 0)), + ("Sop", (0, 0)), + ("fllig", (0, 0)), + ("doteqdot", (0, 0)), + ("rpp", (0, 0)), + ("cente", (0, 0)), + ("bse", (0, 0)), + ("NotDoubleVerticalBar", (0, 0)), + ("brvbar", (166, 0)), + ("backprim", (0, 0)), + ("ReverseUpEquil", (0, 0)), + ("crarr", (0, 0)), + ("Zd", (0, 0)), + ("Afr", (0, 0)), + ("nvinfin;", (10718, 0)), + ("csub", (0, 0)), + ("lEg;", (10891, 0)), + ("eopf", (0, 0)), + ("scaro", (0, 0)), + ("rra", (0, 0)), + ("ncongd", (0, 0)), + ("abrev", (0, 0)), + ("Ther", (0, 0)), + ("DiacriticalDoubleAcute;", (733, 0)), + ("NotElement", (0, 0)), + ("updownarrow", (0, 0)), + ("ShortDownArro", (0, 0)), + ("ig", (0, 0)), + ("vangr", (0, 0)), + ("cuesc;", (8927, 0)), + ("Yac", (0, 0)), + ("ljcy", (0, 0)), + ("sqsubseteq", (0, 0)), + ("map;", (8614, 0)), + ("ljcy;", (1113, 0)), + ("Under", (0, 0)), + ("LeftTeeVector", (0, 0)), + ("TildeTil", (0, 0)), + ("quati", (0, 0)), + ("DoubleVerticalBa", (0, 0)), + ("longleftar", (0, 0)), + ("Auml;", (196, 0)), + ("tcaro", (0, 0)), + ("equal", (0, 0)), + ("NotGreaterFullEqual;", (8807, 824)), + ("nsupE", (0, 0)), + ("Proportio", (0, 0)), + ("epsilon", (0, 0)), + ("dbkar", (0, 0)), + ("upharpoonright", (0, 0)), + ("rata", (0, 0)), + ("NotNestedGreaterGreate", (0, 0)), + ("lrm;", (8206, 0)), + ("ael", (0, 0)), + ("frac23", (0, 0)), + ("Emac", (0, 0)), + ("Counter", (0, 0)), + ("capcup", (0, 0)), + ("Wfr", (0, 0)), + ("VerticalSe", (0, 0)), + ("rAta", (0, 0)), + ("NotSupersetEqu", (0, 0)), + ("angmsda", (0, 0)), + ("subm", (0, 0)), + ("LowerLeftArro", (0, 0)), + ("scnap;", (10938, 0)), + ("rotimes;", (10805, 0)), + ("Lacut", (0, 0)), + ("bigodot", (0, 0)), + ("veebar;", (8891, 0)), + ("leg;", (8922, 0)), + ("du", (0, 0)), + ("aopf", (0, 0)), + ("hbar;", (8463, 0)), + ("ouml;", (246, 0)), + ("tbrk;", (9140, 0)), + ("lnapprox", (0, 0)), + ("lharu;", (8636, 0)), + ("upsih", (0, 0)), + ("nsi", (0, 0)), + ("nwne", (0, 0)), + ("Nest", (0, 0)), + ("plusacir", (0, 0)), + ("LeftTriangleBar;", (10703, 0)), + ("bsolhsub;", (10184, 0)), + ("Egra", (0, 0)), + ("ccaron;", (269, 0)), + ("vcy", (0, 0)), + ("Proportional", (0, 0)), + ("ShortLeftArrow", (0, 0)), + ("SubsetEqua", (0, 0)), + ("hearts;", (9829, 0)), + ("because;", (8757, 0)), + ("mcy;", (1084, 0)), + ("shortpa", (0, 0)), + ("NotGreaterS", (0, 0)), + ("lAr", (0, 0)), + ("realp", (0, 0)), + ("Cayley", (0, 0)), + ("RightTriangleBar;", (10704, 0)), + ("aop", (0, 0)), + ("NotLess", (0, 0)), + ("RightA", (0, 0)), + ("looparro", (0, 0)), + ("NotVe", (0, 0)), + ("equivD", (0, 0)), + ("Circl", (0, 0)), + ("leftthreetim", (0, 0)), + ("popf;", (120161, 0)), + ("DoubleVer", (0, 0)), + ("raqu", (0, 0)), + ("nbum", (0, 0)), + ("Larr", (0, 0)), + ("NotReverseElement;", (8716, 0)), + ("NotPrecedesSl", (0, 0)), + ("downharpoonl", (0, 0)), + ("nVDash", (0, 0)), + ("loopa", (0, 0)), + ("plusci", (0, 0)), + ("Eopf;", (120124, 0)), + ("larrhk;", (8617, 0)), + ("orarr", (0, 0)), + ("subnE", (0, 0)), + ("leftthreet", (0, 0)), + ("prop;", (8733, 0)), + ("nlsim", (0, 0)), + ("care", (0, 0)), + ("Inter", (0, 0)), + ("cc", (0, 0)), + ("CounterClo", (0, 0)), + ("nrar", (0, 0)), + ("DoubleLeftRightArro", (0, 0)), + ("permil;", (8240, 0)), + ("ps", (0, 0)), + ("Back", (0, 0)), + ("hookle", (0, 0)), + ("cs", (0, 0)), + ("ddagger", (0, 0)), + ("Succeeds", (0, 0)), + ("eqslantl", (0, 0)), + ("rbr", (0, 0)), + ("LeftArrowBar;", (8676, 0)), + ("Amacr;", (256, 0)), + ("angmsdaf", (0, 0)), + ("ImaginaryI", (0, 0)), + ("Ed", (0, 0)), + ("becau", (0, 0)), + ("Backslash", (0, 0)), + ("NotPrec", (0, 0)), + ("Rs", (0, 0)), + ("Rcedil", (0, 0)), + ("succcur", (0, 0)), + ("NotHumpEqual;", (8783, 824)), + ("Ssc", (0, 0)), + ("nsubsete", (0, 0)), + ("con", (0, 0)), + ("cdo", (0, 0)), + ("Fopf", (0, 0)), + ("Rrightarrow", (0, 0)), + ("scp", (0, 0)), + ("NotTildeEqua", (0, 0)), + ("napi", (0, 0)), + ("ab", (0, 0)), + ("Cap", (0, 0)), + ("lrh", (0, 0)), + ("NotHu", (0, 0)), + ("osla", (0, 0)), + ("rightsquigarro", (0, 0)), + ("exist", (0, 0)), + ("veeeq", (0, 0)), + ("DoubleLongLeftArr", (0, 0)), + ("Leftar", (0, 0)), + ("twoheadri", (0, 0)), + ("for", (0, 0)), + ("NotGreaterFullEqual", (0, 0)), + ("RightTr", (0, 0)), + ("Mellintrf", (0, 0)), + ("YIc", (0, 0)), + ("it;", (8290, 0)), + ("Uac", (0, 0)), + ("herc", (0, 0)), + ("mlcp;", (10971, 0)), + ("sqsupset;", (8848, 0)), + ("mp", (0, 0)), + ("rightthreetimes;", (8908, 0)), + ("MediumS", (0, 0)), + ("dharl;", (8643, 0)), + ("leftrightharp", (0, 0)), + ("cular", (0, 0)), + ("Sho", (0, 0)), + ("iexcl", (161, 0)), + ("pitc", (0, 0)), + ("L", (0, 0)), + ("LeftRightArro", (0, 0)), + ("Uring;", (366, 0)), + ("pars", (0, 0)), + ("asymp;", (8776, 0)), + ("Ati", (0, 0)), + ("angmsdad", (0, 0)), + ("malt", (0, 0)), + ("realin", (0, 0)), + ("RightVectorBar;", (10579, 0)), + ("Sc;", (10940, 0)), + ("NotTildeFull", (0, 0)), + ("Oci", (0, 0)), + ("rightharpoondown;", (8641, 0)), + ("trido", (0, 0)), + ("submult", (0, 0)), + ("elinters;", (9191, 0)), + ("cedil", (184, 0)), + ("eq", (0, 0)), + ("varepsi", (0, 0)), + ("circleddash;", (8861, 0)), + ("hoarr;", (8703, 0)), + ("ucirc", (251, 0)), + ("measureda", (0, 0)), + ("ContourInt", (0, 0)), + ("LowerLe", (0, 0)), + ("dzigrar", (0, 0)), + ("boxtimes;", (8864, 0)), + ("percnt", (0, 0)), + ("ogt", (0, 0)), + ("Iukc", (0, 0)), + ("DownTeeArrow;", (8615, 0)), + ("Agrav", (0, 0)), + ("gtrles", (0, 0)), + ("erDot;", (8787, 0)), + ("Mellint", (0, 0)), + ("PrecedesE", (0, 0)), + ("as", (0, 0)), + ("NotEx", (0, 0)), + ("sqsube", (0, 0)), + ("precsim;", (8830, 0)), + ("fs", (0, 0)), + ("realpart", (0, 0)), + ("Ropf", (0, 0)), + ("barvee;", (8893, 0)), + ("leftthre", (0, 0)), + ("NotSucceedsE", (0, 0)), + ("frac25;", (8534, 0)), + ("backe", (0, 0)), + ("Colo", (0, 0)), + ("vd", (0, 0)), + ("OverBar;", (8254, 0)), + ("exist;", (8707, 0)), + ("Cup;", (8915, 0)), + ("paralle", (0, 0)), + ("OverB", (0, 0)), + ("LessSlantEqual;", (10877, 0)), + ("zscr;", (120015, 0)), + ("DownL", (0, 0)), + ("mDD", (0, 0)), + ("boxH", (0, 0)), + ("fjl", (0, 0)), + ("Bre", (0, 0)), + ("NotLessEq", (0, 0)), + ("bso", (0, 0)), + ("blacklozenge;", (10731, 0)), + ("Rig", (0, 0)), + ("rparg", (0, 0)), + ("EmptyVerySmallSquare", (0, 0)), + ("smid;", (8739, 0)), + ("nis;", (8956, 0)), + ("DZcy", (0, 0)), + ("bigtriang", (0, 0)), + ("khc", (0, 0)), + ("lltr", (0, 0)), + ("OpenCurlyDo", (0, 0)), + ("NotRightTr", (0, 0)), + ("DiacriticalDoubleAcu", (0, 0)), + ("backepsi", (0, 0)), + ("OpenCurlyQ", (0, 0)), + ("trianglerigh", (0, 0)), + ("supe", (0, 0)), + ("Equi", (0, 0)), + ("NotHumpEqu", (0, 0)), + ("Usc", (0, 0)), + ("Msc", (0, 0)), + ("upsilon;", (965, 0)), + ("sex", (0, 0)), + ("FilledVerySmallSqu", (0, 0)), + ("RightUpDownV", (0, 0)), + ("copysr", (0, 0)), + ("ShortLeft", (0, 0)), + ("ultri;", (9720, 0)), + ("lsaquo", (0, 0)), + ("LeftUpT", (0, 0)), + ("De", (0, 0)), + ("twoheadleftarrow", (0, 0)), + ("nesear;", (10536, 0)), + ("NonBreakingS", (0, 0)), + ("thicksim;", (8764, 0)), + ("alefs", (0, 0)), + ("cupcap", (0, 0)), + ("hcirc", (0, 0)), + ("Kcedi", (0, 0)), + ("angrtvbd;", (10653, 0)), + ("capbr", (0, 0)), + ("UnderParen", (0, 0)), + ("GreaterS", (0, 0)), + ("solbar;", (9023, 0)), + ("fn", (0, 0)), + ("cularr;", (8630, 0)), + ("zee", (0, 0)), + ("laquo;", (171, 0)), + ("poi", (0, 0)), + ("roang;", (10221, 0)), + ("rHar;", (10596, 0)), + ("natur;", (9838, 0)), + ("Fill", (0, 0)), + ("y", (0, 0)), + ("NotSquareSubsetEqu", (0, 0)), + ("deg", (176, 0)), + ("ecy", (0, 0)), + ("aogon;", (261, 0)), + ("raemp", (0, 0)), + ("xlA", (0, 0)), + ("cupbrc", (0, 0)), + ("Imp", (0, 0)), + ("nang;", (8736, 8402)), + ("gtq", (0, 0)), + ("leftha", (0, 0)), + ("KHcy", (0, 0)), + ("xotime;", (10754, 0)), + ("nce", (0, 0)), + ("SquareIntersectio", (0, 0)), + ("varepsilon;", (1013, 0)), + ("DownBreve;", (785, 0)), + ("ulcr", (0, 0)), + ("vrtr", (0, 0)), + ("Js", (0, 0)), + ("gtrs", (0, 0)), + ("gtrl", (0, 0)), + ("VerticalSepara", (0, 0)), + ("blacktriangle;", (9652, 0)), + ("circlearrowright", (0, 0)), + ("bneq", (0, 0)), + ("frac", (0, 0)), + ("NotLessEqual;", (8816, 0)), + ("nrarrw", (0, 0)), + ("dzigrarr", (0, 0)), + ("cr", (0, 0)), + ("Xscr;", (119987, 0)), + ("rbbr", (0, 0)), + ("gb", (0, 0)), + ("hell", (0, 0)), + ("ntriangleleft;", (8938, 0)), + ("OverParent", (0, 0)), + ("longleftrightarr", (0, 0)), + ("rightar", (0, 0)), + ("pointint;", (10773, 0)), + ("ther", (0, 0)), + ("angsp", (0, 0)), + ("gime", (0, 0)), + ("Us", (0, 0)), + ("ropf;", (120163, 0)), + ("Df", (0, 0)), + ("dempty", (0, 0)), + ("complexe", (0, 0)), + ("Star;", (8902, 0)), + ("Idot;", (304, 0)), + ("soft", (0, 0)), + ("ccedil", (231, 0)), + ("nwarr;", (8598, 0)), + ("dfisht", (0, 0)), + ("Vert", (0, 0)), + ("dbk", (0, 0)), + ("gne", (0, 0)), + ("neq", (0, 0)), + ("boxHd;", (9572, 0)), + ("rfl", (0, 0)), + ("bigwedge", (0, 0)), + ("operp;", (10681, 0)), + ("lnapprox;", (10889, 0)), + ("times;", (215, 0)), + ("NestedGreaterGr", (0, 0)), + ("Ms", (0, 0)), + ("Vscr;", (119985, 0)), + ("UpEquilibr", (0, 0)), + ("inc", (0, 0)), + ("downdow", (0, 0)), + ("ApplyFuncti", (0, 0)), + ("lbrack", (0, 0)), + ("rce", (0, 0)), + ("ldrush", (0, 0)), + ("backsim", (0, 0)), + ("ph", (0, 0)), + ("LeftVector;", (8636, 0)), + ("umac", (0, 0)), + ("hsc", (0, 0)), + ("kscr", (0, 0)), + ("lrhard", (0, 0)), + ("NotEqual", (0, 0)), + ("map", (0, 0)), + ("fjlig", (0, 0)), + ("lsquo;", (8216, 0)), + ("sect", (167, 0)), + ("lbrkslu", (0, 0)), + ("Isc", (0, 0)), + ("K", (0, 0)), + ("ddagg", (0, 0)), + ("ReverseEquilibr", (0, 0)), + ("leftharpoonup", (0, 0)), + ("seswar;", (10537, 0)), + ("complement", (0, 0)), + ("Lleftarr", (0, 0)), + ("iuml;", (239, 0)), + ("simg", (0, 0)), + ("boxbox", (0, 0)), + ("Gg", (0, 0)), + ("cwc", (0, 0)), + ("NotSquareSupersetEqual", (0, 0)), + ("weie", (0, 0)), + ("agrav", (0, 0)), + ("UpEquilibrium", (0, 0)), + ("RightCeil", (0, 0)), + ("op", (0, 0)), + ("boxvl", (0, 0)), + ("dtri;", (9663, 0)), + ("nhp", (0, 0)), + ("rbrac", (0, 0)), + ("Leftrightarro", (0, 0)), + ("ccedil;", (231, 0)), + ("UnderBar;", (95, 0)), + ("UpperLe", (0, 0)), + ("pre", (0, 0)), + ("middot;", (183, 0)), + ("Hst", (0, 0)), + ("Downarro", (0, 0)), + ("Four", (0, 0)), + ("nshortmid", (0, 0)), + ("lesdoto", (0, 0)), + ("rnmid;", (10990, 0)), + ("leftlefta", (0, 0)), + ("rightleft", (0, 0)), + ("Bernoulli", (0, 0)), + ("qint;", (10764, 0)), + ("quatint", (0, 0)), + ("nsubseteqq;", (10949, 824)), + ("rot", (0, 0)), + ("Mscr;", (8499, 0)), + ("quatern", (0, 0)), + ("boxD", (0, 0)), + ("supmult;", (10946, 0)), + ("NotLeftTriangle", (0, 0)), + ("Gcedil", (0, 0)), + ("LeftUpDownVector", (0, 0)), + ("NotRightTria", (0, 0)), + ("wedbar;", (10847, 0)), + ("horbar", (0, 0)), + ("RightDownTee", (0, 0)), + ("Eog", (0, 0)), + ("boxVr", (0, 0)), + ("lesseqqgt", (0, 0)), + ("OverP", (0, 0)), + ("Eopf", (0, 0)), + ("Ograv", (0, 0)), + ("nearrow;", (8599, 0)), + ("ima", (0, 0)), + ("ffll", (0, 0)), + ("DownRightVector;", (8641, 0)), + ("dscy;", (1109, 0)), + ("Expon", (0, 0)), + ("DownRightTeeV", (0, 0)), + ("Darr", (0, 0)), + ("Tstrok;", (358, 0)), + ("boxHu", (0, 0)), + ("nearro", (0, 0)), + ("thkap", (0, 0)), + ("vartrianglelef", (0, 0)), + ("downdownarrow", (0, 0)), + ("sz", (0, 0)), + ("hookleftarr", (0, 0)), + ("Ll", (0, 0)), + ("vn", (0, 0)), + ("quaternion", (0, 0)), + ("omac", (0, 0)), + ("SquareSupersetEqua", (0, 0)), + ("thins", (0, 0)), + ("Lstrok;", (321, 0)), + ("dscr", (0, 0)), + ("longleftarrow;", (10229, 0)), + ("DoubleContourIn", (0, 0)), + ("LongLeftRightArrow;", (10231, 0)), + ("LongLeftArrow;", (10229, 0)), + ("trianglerighteq", (0, 0)), + ("lfloor;", (8970, 0)), + ("subseteqq;", (10949, 0)), + ("laquo", (171, 0)), + ("RightTeeA", (0, 0)), + ("brv", (0, 0)), + ("ltdot;", (8918, 0)), + ("brvba", (0, 0)), + ("fpartin", (0, 0)), + ("Downarr", (0, 0)), + ("swarrow", (0, 0)), + ("Assign", (0, 0)), + ("UpperRightArro", (0, 0)), + ("alefsym;", (8501, 0)), + ("DoubleLongLe", (0, 0)), + ("Lefta", (0, 0)), + ("khcy", (0, 0)), + ("NotSucceedsEqual", (0, 0)), + ("nsubseteq", (0, 0)), + ("drb", (0, 0)), + ("NonBreakingSp", (0, 0)), + ("Ta", (0, 0)), + ("succ", (0, 0)), + ("utd", (0, 0)), + ("exponentiale", (0, 0)), + ("gt;", (62, 0)), + ("eDDot", (0, 0)), + ("rlm", (0, 0)), + ("PrecedesSlantEq", (0, 0)), + ("DownArrowUpArrow", (0, 0)), + ("DDo", (0, 0)), + ("solb;", (10692, 0)), + ("laemptyv;", (10676, 0)), + ("bigve", (0, 0)), + ("Fourier", (0, 0)), + ("Epsilon", (0, 0)), + ("subd", (0, 0)), + ("CapitalDiffer", (0, 0)), + ("SHc", (0, 0)), + ("Gg;", (8921, 0)), + ("boxtime", (0, 0)), + ("OpenCurlyD", (0, 0)), + ("simrarr", (0, 0)), + ("Ksc", (0, 0)), + ("angrtvb;", (8894, 0)), + ("sbquo", (0, 0)), + ("precapp", (0, 0)), + ("Ef", (0, 0)), + ("OverBr", (0, 0)), + ("gns", (0, 0)), + ("Tstrok", (0, 0)), + ("setmi", (0, 0)), + ("LeftCeil", (0, 0)), + ("RightVectorBar", (0, 0)), + ("boxul", (0, 0)), + ("Lmidot", (0, 0)), + ("smepar", (0, 0)), + ("Zet", (0, 0)), + ("rising", (0, 0)), + ("ncedil", (0, 0)), + ("Longleftar", (0, 0)), + ("lsquo", (0, 0)), + ("Hop", (0, 0)), + ("elsdot;", (10903, 0)), + ("sigmaf", (0, 0)), + ("varsu", (0, 0)), + ("Ks", (0, 0)), + ("twoheadle", (0, 0)), + ("tri", (0, 0)), + ("blacks", (0, 0)), + ("wfr", (0, 0)), + ("ZeroWidthS", (0, 0)), + ("ZHc", (0, 0)), + ("ddotseq", (0, 0)), + ("DoubleLeftArrow", (0, 0)), + ("ijlig", (0, 0)), + ("straightep", (0, 0)), + ("Uarro", (0, 0)), + ("lj", (0, 0)), + ("LeftDownT", (0, 0)), + ("zeta", (0, 0)), + ("ssta", (0, 0)), + ("Un", (0, 0)), + ("mf", (0, 0)), + ("harrcir;", (10568, 0)), + ("UnderBar", (0, 0)), + ("midd", (0, 0)), + ("bsol", (0, 0)), + ("lrcorn", (0, 0)), + ("hooklefta", (0, 0)), + ("bsemi;", (8271, 0)), + ("searrow;", (8600, 0)), + ("thickapprox", (0, 0)), + ("scnE;", (10934, 0)), + ("elsdo", (0, 0)), + ("ao", (0, 0)), + ("Min", (0, 0)), + ("nlE", (0, 0)), + ("bigs", (0, 0)), + ("disin;", (8946, 0)), + ("NotTildeTil", (0, 0)), + ("Zacut", (0, 0)), + ("nwarrow", (0, 0)), + ("NotExists", (0, 0)), + ("oS", (0, 0)), + ("Ocy;", (1054, 0)), + ("scedil", (0, 0)), + ("there", (0, 0)), + ("notinv", (0, 0)), + ("Nacu", (0, 0)), + ("Lca", (0, 0)), + ("lha", (0, 0)), + ("vAr", (0, 0)), + ("Ugrave;", (217, 0)), + ("ntriangleleft", (0, 0)), + ("mid", (0, 0)), + ("DoubleC", (0, 0)), + ("GreaterSlantEqual;", (10878, 0)), + ("sc;", (8827, 0)), + ("NotTildeTild", (0, 0)), + ("LessEqualGreater", (0, 0)), + ("swA", (0, 0)), + ("ordm;", (186, 0)), + ("ominus;", (8854, 0)), + ("DotDot;", (8412, 0)), + ("LowerL", (0, 0)), + ("lbbr", (0, 0)), + ("lcu", (0, 0)), + ("vsub", (0, 0)), + ("Util", (0, 0)), + ("iog", (0, 0)), + ("ex", (0, 0)), + ("DotEq", (0, 0)), + ("scnsi", (0, 0)), + ("rmo", (0, 0)), + ("Sopf", (0, 0)), + ("empty;", (8709, 0)), + ("nang", (0, 0)), + ("upsilon", (0, 0)), + ("rightharpo", (0, 0)), + ("ee;", (8519, 0)), + ("vltr", (0, 0)), + ("yacute;", (253, 0)), + ("pscr", (0, 0)), + ("supla", (0, 0)), + ("sopf", (0, 0)), + ("varnothing", (0, 0)), + ("supdot;", (10942, 0)), + ("RightDoubl", (0, 0)), + ("RBa", (0, 0)), + ("precnap", (0, 0)), + ("hookrighta", (0, 0)), + ("setmn;", (8726, 0)), + ("angmsdah", (0, 0)), + ("Imaginary", (0, 0)), + ("ccedi", (0, 0)), + ("Union", (0, 0)), + ("xuplu", (0, 0)), + ("sum;", (8721, 0)), + ("trisb", (0, 0)), + ("amp;", (38, 0)), + ("rightle", (0, 0)), + ("theta", (0, 0)), + ("nleqq", (0, 0)), + ("preccur", (0, 0)), + ("lob", (0, 0)), + ("erarr", (0, 0)), + ("Icir", (0, 0)), + ("bum", (0, 0)), + ("amp", (38, 0)), + ("EmptySmallSquar", (0, 0)), + ("sp", (0, 0)), + ("Longleftrightarrow", (0, 0)), + ("hybul", (0, 0)), + ("Tcedil", (0, 0)), + ("tosa", (0, 0)), + ("SucceedsSl", (0, 0)), + ("Berno", (0, 0)), + ("RightDownVectorBar", (0, 0)), + ("half", (0, 0)), + ("emptys", (0, 0)), + ("rhard;", (8641, 0)), + ("nsim;", (8769, 0)), + ("solb", (0, 0)), + ("between", (0, 0)), + ("nwar", (0, 0)), + ("larrsim;", (10611, 0)), + ("UpEqui", (0, 0)), + ("ngtr;", (8815, 0)), + ("FilledSmallSquare", (0, 0)), + ("uogon", (0, 0)), + ("mi", (0, 0)), + ("cwin", (0, 0)), + ("varsupsetneq", (0, 0)), + ("LeftUpVec", (0, 0)), + ("nprcu", (0, 0)), + ("nan", (0, 0)), + ("blacksquare;", (9642, 0)), + ("rcedil", (0, 0)), + ("ShortDownArrow;", (8595, 0)), + ("rarrsim;", (10612, 0)), + ("Xopf;", (120143, 0)), + ("cross", (0, 0)), + ("DownTeeArr", (0, 0)), + ("Otild", (0, 0)), + ("Jop", (0, 0)), + ("NotGreaterFullEqu", (0, 0)), + ("bbr", (0, 0)), + ("biguplu", (0, 0)), + ("uop", (0, 0)), + ("Thin", (0, 0)), + ("ov", (0, 0)), + ("boxuR;", (9560, 0)), + ("nRightarrow;", (8655, 0)), + ("Iacute", (205, 0)), + ("reali", (0, 0)), + ("cupcup", (0, 0)), + ("LongRightAr", (0, 0)), + ("nleftr", (0, 0)), + ("clubsui", (0, 0)), + ("andan", (0, 0)), + ("ycy;", (1099, 0)), + ("nvinfin", (0, 0)), + ("Ac", (0, 0)), + ("longmapsto;", (10236, 0)), + ("RightDoubleBracket;", (10215, 0)), + ("blacksqua", (0, 0)), + ("DoubleContour", (0, 0)), + ("isins", (0, 0)), + ("varsupsetne", (0, 0)), + ("LeftUpVect", (0, 0)), + ("nearr", (0, 0)), + ("Lle", (0, 0)), + ("Dscr;", (119967, 0)), + ("SucceedsSlan", (0, 0)), + ("Ass", (0, 0)), + ("sime", (0, 0)), + ("popf", (0, 0)), + ("LJcy;", (1033, 0)), + ("backeps", (0, 0)), + ("disin", (0, 0)), + ("ReverseEq", (0, 0)), + ("LeftAngleBr", (0, 0)), + ("UnderB", (0, 0)), + ("fallingdots", (0, 0)), + ("Verba", (0, 0)), + ("nrArr;", (8655, 0)), + ("Unio", (0, 0)), + ("Vc", (0, 0)), + ("female;", (9792, 0)), + ("topcir", (0, 0)), + ("NotSquareSubs", (0, 0)), + ("intl", (0, 0)), + ("her", (0, 0)), + ("prsi", (0, 0)), + ("downdownarr", (0, 0)), + ("Plus", (0, 0)), + ("elsd", (0, 0)), + ("lvertne", (0, 0)), + ("ccaron", (0, 0)), + ("lang", (0, 0)), + ("loar", (0, 0)), + ("LessS", (0, 0)), + ("LeftRigh", (0, 0)), + ("eqslantg", (0, 0)), + ("zwn", (0, 0)), + ("nsimeq", (0, 0)), + ("urcro", (0, 0)), + ("CHcy", (0, 0)), + ("Lapl", (0, 0)), + ("leqsl", (0, 0)), + ("LeftDownTeeVect", (0, 0)), + ("shortparalle", (0, 0)), + ("nvHar", (0, 0)), + ("Different", (0, 0)), + ("scE;", (10932, 0)), + ("Su", (0, 0)), + ("rcar", (0, 0)), + ("utri;", (9653, 0)), + ("UpTe", (0, 0)), + ("GreaterTilde;", (8819, 0)), + ("isin;", (8712, 0)), + ("eur", (0, 0)), + ("darr;", (8595, 0)), + ("longleftright", (0, 0)), + ("euro", (0, 0)), + ("NotDoubleVerticalBa", (0, 0)), + ("orslope", (0, 0)), + ("Icy;", (1048, 0)), + ("af;", (8289, 0)), + ("blacktriangleright;", (9656, 0)), + ("rsa", (0, 0)), + ("lE", (0, 0)), + ("Longleftrighta", (0, 0)), + ("esdot;", (8784, 0)), + ("lmi", (0, 0)), + ("backprime;", (8245, 0)), + ("NotSuperse", (0, 0)), + ("curlyeqsucc", (0, 0)), + ("dwangle;", (10662, 0)), + ("uacute;", (250, 0)), + ("Longleftr", (0, 0)), + ("DotDo", (0, 0)), + ("Hstrok", (0, 0)), + ("thick", (0, 0)), + ("Longright", (0, 0)), + ("NotHumpDown", (0, 0)), + ("TH", (0, 0)), + ("lbrkslu;", (10637, 0)), + ("gvn", (0, 0)), + ("imagl", (0, 0)), + ("Proporti", (0, 0)), + ("sup", (0, 0)), + ("EmptyVerySmal", (0, 0)), + ("npr;", (8832, 0)), + ("circeq;", (8791, 0)), + ("suphs", (0, 0)), + ("angle;", (8736, 0)), + ("rAtai", (0, 0)), + ("rop", (0, 0)), + ("NegativeM", (0, 0)), + ("Longle", (0, 0)), + ("Invisibl", (0, 0)), + ("angza", (0, 0)), + ("bigu", (0, 0)), + ("NotHumpEq", (0, 0)), + ("DoubleLongLeftRightArrow", (0, 0)), + ("VDash;", (8875, 0)), + ("nGg;", (8921, 824)), + ("Gre", (0, 0)), + ("cempty", (0, 0)), + ("NegativeThick", (0, 0)), + ("leftl", (0, 0)), + ("Ucirc", (219, 0)), + ("tr", (0, 0)), + ("easte", (0, 0)), + ("lo", (0, 0)), + ("COPY", (169, 0)), + ("Poi", (0, 0)), + ("Congruen", (0, 0)), + ("smepa", (0, 0)), + ("rfi", (0, 0)), + ("eplus;", (10865, 0)), + ("LeftArrowRightArro", (0, 0)), + ("CounterClockwiseCo", (0, 0)), + ("frac34;", (190, 0)), + ("bopf;", (120147, 0)), + ("rightleftha", (0, 0)), + ("blacktriangledow", (0, 0)), + ("xutri;", (9651, 0)), + ("eqvp", (0, 0)), + ("Rho", (0, 0)), + ("profa", (0, 0)), + ("circleda", (0, 0)), + ("frac58", (0, 0)), + ("prsim;", (8830, 0)), + ("scsim;", (8831, 0)), + ("leftarrowta", (0, 0)), + ("LeftUpDown", (0, 0)), + ("eqco", (0, 0)), + ("NestedGreaterGreater", (0, 0)), + ("nwarhk;", (10531, 0)), + ("epsilo", (0, 0)), + ("Eg", (0, 0)), + ("dtdo", (0, 0)), + ("es", (0, 0)), + ("uwangl", (0, 0)), + ("zwj;", (8205, 0)), + ("LeftVec", (0, 0)), + ("succnap", (0, 0)), + ("iec", (0, 0)), + ("softc", (0, 0)), + ("topfo", (0, 0)), + ("vf", (0, 0)), + ("Hilbert", (0, 0)), + ("pro", (0, 0)), + ("gs", (0, 0)), + ("ReverseEquili", (0, 0)), + ("Wscr;", (119986, 0)), + ("DownLeftRigh", (0, 0)), + ("LeftRightAr", (0, 0)), + ("rmoustac", (0, 0)), + ("nprec", (0, 0)), + ("Trip", (0, 0)), + ("circlearrowright;", (8635, 0)), + ("SucceedsS", (0, 0)), + ("NoBr", (0, 0)), + ("xod", (0, 0)), + ("DoubleDot", (0, 0)), + ("mapstou", (0, 0)), + ("ncap;", (10819, 0)), + ("Diacri", (0, 0)), + ("subset;", (8834, 0)), + ("YA", (0, 0)), + ("Sigm", (0, 0)), + ("gtrarr;", (10616, 0)), + ("DoubleLongRigh", (0, 0)), + ("Beta;", (914, 0)), + ("gtrarr", (0, 0)), + ("nsup;", (8837, 0)), + ("LeftTeeVect", (0, 0)), + ("plank", (0, 0)), + ("omid", (0, 0)), + ("DownRightVectorB", (0, 0)), + ("lmoustach", (0, 0)), + ("OpenCu", (0, 0)), + ("Lt", (0, 0)), + ("gtreqqless;", (10892, 0)), + ("twohea", (0, 0)), + ("ni", (0, 0)), + ("laemp", (0, 0)), + ("lhblk;", (9604, 0)), + ("Ud", (0, 0)), + ("PrecedesS", (0, 0)), + ("MediumSpace", (0, 0)), + ("varnot", (0, 0)), + ("divonx", (0, 0)), + ("bar", (0, 0)), + ("RightUpTeeV", (0, 0)), + ("bigst", (0, 0)), + ("ExponentialE", (0, 0)), + ("rightthre", (0, 0)), + ("prod", (0, 0)), + ("npa", (0, 0)), + ("ufr;", (120114, 0)), + ("preccurl", (0, 0)), + ("oi", (0, 0)), + ("sf", (0, 0)), + ("IOc", (0, 0)), + ("loplu", (0, 0)), + ("Uo", (0, 0)), + ("rharu;", (8640, 0)), + ("LessG", (0, 0)), + ("doteqd", (0, 0)), + ("chc", (0, 0)), + ("Ubreve;", (364, 0)), + ("ris", (0, 0)), + ("nGtv", (0, 0)), + ("boxdr", (0, 0)), + ("rarrp", (0, 0)), + ("eco", (0, 0)), + ("hamil", (0, 0)), + ("ord;", (10845, 0)), + ("wedb", (0, 0)), + ("nsucc;", (8833, 0)), + ("zcy;", (1079, 0)), + ("NotLef", (0, 0)), + ("Ocy", (0, 0)), + ("Intersection", (0, 0)), + ("Ntilde;", (209, 0)), + ("vartriangleri", (0, 0)), + ("uuar", (0, 0)), + ("suphsol;", (10185, 0)), + ("verbar", (0, 0)), + ("exponentia", (0, 0)), + ("eop", (0, 0)), + ("boxU", (0, 0)), + ("twoheadlef", (0, 0)), + ("dotmin", (0, 0)), + ("rho", (0, 0)), + ("Ubreve", (0, 0)), + ("Jfr;", (120077, 0)), + ("LessGreate", (0, 0)), + ("Rced", (0, 0)), + ("vBar;", (10984, 0)), + ("Longleftarro", (0, 0)), + ("wsc", (0, 0)), + ("yen", (165, 0)), + ("NotGreaterFul", (0, 0)), + ("gcirc", (0, 0)), + ("qpri", (0, 0)), + ("napo", (0, 0)), + ("Aacu", (0, 0)), + ("UpDow", (0, 0)), + ("Assign;", (8788, 0)), + ("Chi", (0, 0)), + ("blank;", (9251, 0)), + ("VerticalSep", (0, 0)), + ("vars", (0, 0)), + ("SuchTh", (0, 0)), + ("NotSucceedsS", (0, 0)), + ("Ced", (0, 0)), + ("NotSquareS", (0, 0)), + ("LowerR", (0, 0)), + ("DoubleRight", (0, 0)), + ("NotDoub", (0, 0)), + ("subrar", (0, 0)), + ("boxpl", (0, 0)), + ("ogon", (0, 0)), + ("lescc", (0, 0)), + ("capan", (0, 0)), + ("egrave", (232, 0)), + ("VerticalBa", (0, 0)), + ("ltr", (0, 0)), + ("Fourie", (0, 0)), + ("Precedes;", (8826, 0)), + ("rarr", (0, 0)), + ("cuv", (0, 0)), + ("ct", (0, 0)), + ("Longleftrig", (0, 0)), + ("VDash", (0, 0)), + ("nsimeq;", (8772, 0)), + ("natural", (0, 0)), + ("TildeFullEqua", (0, 0)), + ("Updo", (0, 0)), + ("hamilt", (0, 0)), + ("OpenCur", (0, 0)), + ("Ve", (0, 0)), + ("Cdot;", (266, 0)), + ("updow", (0, 0)), + ("nleftarrow", (0, 0)), + ("jsercy", (0, 0)), + ("upharpoonr", (0, 0)), + ("ang;", (8736, 0)), + ("blacktriangledown;", (9662, 0)), + ("Im;", (8465, 0)), + ("curlyeq", (0, 0)), + ("cularrp", (0, 0)), + ("lrcor", (0, 0)), + ("comp", (0, 0)), + ("sstarf;", (8902, 0)), + ("apid;", (8779, 0)), + ("curvearrowlef", (0, 0)), + ("GreaterFull", (0, 0)), + ("xr", (0, 0)), + ("SupersetEqual", (0, 0)), + ("Ph", (0, 0)), + ("rightsquigarrow", (0, 0)), + ("divideonti", (0, 0)), + ("euml", (235, 0)), + ("Kappa;", (922, 0)), + ("npre", (0, 0)), + ("njcy;", (1114, 0)), + ("xla", (0, 0)), + ("blacktriangl", (0, 0)), + ("RightDownT", (0, 0)), + ("ReverseEle", (0, 0)), + ("DoubleLongRi", (0, 0)), + ("wreath;", (8768, 0)), + ("race", (0, 0)), + ("NotSquareSu", (0, 0)), + ("nbsp", (160, 0)), + ("ZeroWidt", (0, 0)), + ("wedg", (0, 0)), + ("he", (0, 0)), + ("UpperRightAr", (0, 0)), + ("xcirc;", (9711, 0)), + ("ges;", (10878, 0)), + ("trian", (0, 0)), + ("nsucceq;", (10928, 824)), + ("j", (0, 0)), + ("Cayl", (0, 0)), + ("Xsc", (0, 0)), + ("circle", (0, 0)), + ("yo", (0, 0)), + ("rcedil;", (343, 0)), + ("notn", (0, 0)), + ("NotCup", (0, 0)), + ("cirmid", (0, 0)), + ("o", (0, 0)), + ("UpperR", (0, 0)), + ("smallsetmin", (0, 0)), + ("boxvh;", (9532, 0)), + ("boxhU;", (9576, 0)), + ("ForA", (0, 0)), + ("RightDoub", (0, 0)), + ("nvHarr;", (10500, 0)), + ("Kcedil;", (310, 0)), + ("mdash;", (8212, 0)), + ("LeftUpTee", (0, 0)), + ("prnsi", (0, 0)), + ("rarrbf", (0, 0)), + ("thickapp", (0, 0)), + ("simg;", (10910, 0)), + ("Low", (0, 0)), + ("oast", (0, 0)), + ("rppoli", (0, 0)), + ("CloseCurlyDoubleQuote", (0, 0)), + ("RE", (0, 0)), + ("rbrk", (0, 0)), + ("Gop", (0, 0)), + ("epsi", (0, 0)), + ("RightU", (0, 0)), + ("aring;", (229, 0)), + ("eps", (0, 0)), + ("amalg;", (10815, 0)), + ("SquareInterse", (0, 0)), + ("Omic", (0, 0)), + ("bigo", (0, 0)), + ("rightleftharpoons", (0, 0)), + ("uog", (0, 0)), + ("ShortUpAr", (0, 0)), + ("Ropf;", (8477, 0)), + ("UpperLeft", (0, 0)), + ("downarrow", (0, 0)), + ("succsi", (0, 0)), + ("otime", (0, 0)), + ("Til", (0, 0)), + ("suphsub;", (10967, 0)), + ("llhard", (0, 0)), + ("Lop", (0, 0)), + ("ShortLeftA", (0, 0)), + ("NotPrecede", (0, 0)), + ("Gscr", (0, 0)), + ("NotD", (0, 0)), + ("boxminus", (0, 0)), + ("qi", (0, 0)), + ("iiint;", (8749, 0)), + ("NotEqualTild", (0, 0)), + ("Phi;", (934, 0)), + ("Clockw", (0, 0)), + ("cudar", (0, 0)), + ("Inte", (0, 0)), + ("midcir;", (10992, 0)), + ("UpE", (0, 0)), + ("lbar", (0, 0)), + ("ZeroWidthSpa", (0, 0)), + ("Zdot", (0, 0)), + ("lbrk", (0, 0)), + ("ReverseUpEquilibri", (0, 0)), + ("Capital", (0, 0)), + ("nhpa", (0, 0)), + ("precns", (0, 0)), + ("NotSquareSubset;", (8847, 824)), + ("Hi", (0, 0)), + ("eacute;", (233, 0)), + ("smile", (0, 0)), + ("RightUpTeeVect", (0, 0)), + ("pfr;", (120109, 0)), + ("Ncy", (0, 0)), + ("opa", (0, 0)), + ("xo", (0, 0)), + ("ntriangler", (0, 0)), + ("lotim", (0, 0)), + ("Element;", (8712, 0)), + ("Mcy;", (1052, 0)), + ("vdash;", (8866, 0)), + ("ExponentialE;", (8519, 0)), + ("vA", (0, 0)), + ("precnappro", (0, 0)), + ("Cci", (0, 0)), + ("ome", (0, 0)), + ("blk12", (0, 0)), + ("yf", (0, 0)), + ("plust", (0, 0)), + ("LeftDoubleBr", (0, 0)), + ("angrtv", (0, 0)), + ("cupor", (0, 0)), + ("gvnE", (0, 0)), + ("LessSlan", (0, 0)), + ("triangle", (0, 0)), + ("Lsh;", (8624, 0)), + ("ecir;", (8790, 0)), + ("NotPrecedes;", (8832, 0)), + ("Y", (0, 0)), + ("edo", (0, 0)), + ("PlusMin", (0, 0)), + ("DoubleLongL", (0, 0)), + ("racu", (0, 0)), + ("SHCH", (0, 0)), + ("Rrightar", (0, 0)), + ("u", (0, 0)), + ("cur", (0, 0)), + ("Copr", (0, 0)), + ("llh", (0, 0)), + ("NotCupC", (0, 0)), + ("Vee", (0, 0)), + ("lsquor", (0, 0)), + ("sop", (0, 0)), + ("nese", (0, 0)), + ("shar", (0, 0)), + ("hc", (0, 0)), + ("har", (0, 0)), + ("RuleDe", (0, 0)), + ("RightVec", (0, 0)), + ("bbrktb", (0, 0)), + ("boxDR;", (9556, 0)), + ("Lfr", (0, 0)), + ("Zfr;", (8488, 0)), + ("it", (0, 0)), + ("expectation;", (8496, 0)), + ("Lstro", (0, 0)), + ("sol;", (47, 0)), + ("ShortLef", (0, 0)), + ("tel", (0, 0)), + ("mul", (0, 0)), + ("uac", (0, 0)), + ("dblac;", (733, 0)), + ("Esim", (0, 0)), + ("nappr", (0, 0)), + ("ulcorn;", (8988, 0)), + ("lotimes;", (10804, 0)), + ("SucceedsEq", (0, 0)), + ("nti", (0, 0)), + ("ffl", (0, 0)), + ("beth;", (8502, 0)), + ("circledas", (0, 0)), + ("nVda", (0, 0)), + ("udh", (0, 0)), + ("ET", (0, 0)), + ("luru", (0, 0)), + ("fp", (0, 0)), + ("simne", (0, 0)), + ("NotCongruent;", (8802, 0)), + ("less", (0, 0)), + ("thetav;", (977, 0)), + ("lopar;", (10629, 0)), + ("zeetrf;", (8488, 0)), + ("uwang", (0, 0)), + ("nearhk;", (10532, 0)), + ("rect", (0, 0)), + ("IJlig;", (306, 0)), + ("mscr", (0, 0)), + ("crarr;", (8629, 0)), + ("vartriangler", (0, 0)), + ("tcy", (0, 0)), + ("varpr", (0, 0)), + ("InvisibleTimes;", (8290, 0)), + ("urtri;", (9721, 0)), + ("Hci", (0, 0)), + ("UpEq", (0, 0)), + ("LeftVectorB", (0, 0)), + ("rmoustache;", (9137, 0)), + ("ngeqsla", (0, 0)), + ("NotEqual;", (8800, 0)), + ("imac", (0, 0)), + ("quater", (0, 0)), + ("Tf", (0, 0)), + ("nvge", (0, 0)), + ("LeftUpTeeV", (0, 0)), + ("fallingd", (0, 0)), + ("Zs", (0, 0)), + ("Fouriertr", (0, 0)), + ("lessdot", (0, 0)), + ("Ec", (0, 0)), + ("nsce;", (10928, 824)), + ("tcaron;", (357, 0)), + ("seAr", (0, 0)), + ("agra", (0, 0)), + ("GreaterGreater", (0, 0)), + ("ug", (0, 0)), + ("NotSucceedsTilde", (0, 0)), + ("UpAr", (0, 0)), + ("hopf;", (120153, 0)), + ("NotLessSl", (0, 0)), + ("iinfin;", (10716, 0)), + ("dlcro", (0, 0)), + ("bet", (0, 0)), + ("cir;", (9675, 0)), + ("iacute", (237, 0)), + ("gtl", (0, 0)), + ("olcross;", (10683, 0)), + ("Non", (0, 0)), + ("impe", (0, 0)), + ("Exponential", (0, 0)), + ("VeryThinSpace", (0, 0)), + ("CloseCurlyD", (0, 0)), + ("ef", (0, 0)), + ("Conin", (0, 0)), + ("za", (0, 0)), + ("DoubleLongLeftArrow;", (10232, 0)), + ("dsol", (0, 0)), + ("ra", (0, 0)), + ("hellip;", (8230, 0)), + ("loz;", (9674, 0)), + ("Cayleys", (0, 0)), + ("RightDownTeeVe", (0, 0)), + ("Si", (0, 0)), + ("ohbar;", (10677, 0)), + ("U", (0, 0)), + ("trit", (0, 0)), + ("pl", (0, 0)), + ("timesd", (0, 0)), + ("nless;", (8814, 0)), + ("sqsupseteq;", (8850, 0)), + ("Vda", (0, 0)), + ("SquareSupersetEqual", (0, 0)), + ("ShortDownArrow", (0, 0)), + ("Edo", (0, 0)), + ("DownRightTeeVector;", (10591, 0)), + ("CounterClockwiseContourInteg", (0, 0)), + ("lap;", (10885, 0)), + ("SquareSuperset", (0, 0)), + ("Lower", (0, 0)), + ("check", (0, 0)), + ("Ca", (0, 0)), + ("looparrowright;", (8620, 0)), + ("CapitalDif", (0, 0)), + ("ncongdot", (0, 0)), + ("ub", (0, 0)), + ("nwa", (0, 0)), + ("Mellintr", (0, 0)), + ("elinters", (0, 0)), + ("lessappr", (0, 0)), + ("perm", (0, 0)), + ("Succeed", (0, 0)), + ("odsold;", (10684, 0)), + ("Ep", (0, 0)), + ("DZc", (0, 0)), + ("wei", (0, 0)), + ("Cong", (0, 0)), + ("preccurlye", (0, 0)), + ("nparallel;", (8742, 0)), + ("NotLeftTriangleBar;", (10703, 824)), + ("Pfr;", (120083, 0)), + ("GreaterGreater;", (10914, 0)), + ("Odblac", (0, 0)), + ("xd", (0, 0)), + ("puncsp", (0, 0)), + ("ntrianglelef", (0, 0)), + ("gtcc;", (10919, 0)), + ("scnE", (0, 0)), + ("osc", (0, 0)), + ("rAarr", (0, 0)), + ("boxdr;", (9484, 0)), + ("rarrsi", (0, 0)), + ("Sacute", (0, 0)), + ("NegativeThinSpace", (0, 0)), + ("Nega", (0, 0)), + ("LeftArrowRightArrow;", (8646, 0)), + ("ecaron;", (283, 0)), + ("Les", (0, 0)), + ("sim;", (8764, 0)), + ("bot;", (8869, 0)), + ("ShortRightArr", (0, 0)), + ("blacktrianglerigh", (0, 0)), + ("zsc", (0, 0)), + ("expone", (0, 0)), + ("NotLessL", (0, 0)), + ("ors", (0, 0)), + ("bNot;", (10989, 0)), + ("Upper", (0, 0)), + ("Le", (0, 0)), + ("gtrapprox", (0, 0)), + ("tprime", (0, 0)), + ("veeb", (0, 0)), + ("nvinf", (0, 0)), + ("ffi", (0, 0)), + ("Dagger", (0, 0)), + ("Kscr", (0, 0)), + ("vartr", (0, 0)), + ("smeparsl", (0, 0)), + ("star", (0, 0)), + ("rightsqu", (0, 0)), + ("die;", (168, 0)), + ("Pop", (0, 0)), + ("divon", (0, 0)), + ("nle;", (8816, 0)), + ("larrsi", (0, 0)), + ("nequ", (0, 0)), + ("rightleftarrows", (0, 0)), + ("q", (0, 0)), + ("Abreve;", (258, 0)), + ("dop", (0, 0)), + ("longlefta", (0, 0)), + ("LeftRi", (0, 0)), + ("bulle", (0, 0)), + ("nvrtri", (0, 0)), + ("Mopf;", (120132, 0)), + ("hcirc;", (293, 0)), + ("incar", (0, 0)), + ("RightTrian", (0, 0)), + ("precne", (0, 0)), + ("target;", (8982, 0)), + ("Ocirc;", (212, 0)), + ("ama", (0, 0)), + ("prcue", (0, 0)), + ("uHar", (0, 0)), + ("IJ", (0, 0)), + ("lsimg;", (10895, 0)), + ("simeq;", (8771, 0)), + ("TS", (0, 0)), + ("solbar", (0, 0)), + ("rarrsim", (0, 0)), + ("asym", (0, 0)), + ("ggg;", (8921, 0)), + ("raempty", (0, 0)), + ("hookrightarr", (0, 0)), + ("bow", (0, 0)), + ("CircleMinu", (0, 0)), + ("nshortpara", (0, 0)), + ("nrightar", (0, 0)), + ("straigh", (0, 0)), + ("DoubleLeftRightArrow;", (8660, 0)), + ("gesdo", (0, 0)), + ("bbrkt", (0, 0)), + ("DoubleRightTee;", (8872, 0)), + ("rrar", (0, 0)), + ("SquareUnion;", (8852, 0)), + ("NotGreaterGre", (0, 0)), + ("sqcap;", (8851, 0)), + ("DotEqua", (0, 0)), + ("RightArr", (0, 0)), + ("Ju", (0, 0)), + ("sqsupseteq", (0, 0)), + ("ltrPa", (0, 0)), + ("NotSquareSuper", (0, 0)), + ("orv;", (10843, 0)), + ("varsigma", (0, 0)), + ("andslop", (0, 0)), + ("nwarrow;", (8598, 0)), + ("CloseCurl", (0, 0)), + ("copf", (0, 0)), + ("UpDown", (0, 0)), + ("bk", (0, 0)), + ("Pro", (0, 0)), + ("NegativeVeryThinSpace", (0, 0)), + ("tripl", (0, 0)), + ("frac14", (188, 0)), + ("Lambd", (0, 0)), + ("Jcirc;", (308, 0)), + ("npo", (0, 0)), + ("yfr", (0, 0)), + ("DoubleU", (0, 0)), + ("mstp", (0, 0)), + ("Rightarr", (0, 0)), + ("que", (0, 0)), + ("divide", (247, 0)), + ("Cced", (0, 0)), + ("bNo", (0, 0)), + ("swnwar", (0, 0)), + ("dlcor", (0, 0)), + ("time", (0, 0)), + ("thk", (0, 0)), + ("ltcir", (0, 0)), + ("sup3", (179, 0)), + ("Ncaron", (0, 0)), + ("Therefore;", (8756, 0)), + ("CloseCurlyQuo", (0, 0)), + ("NotSubset;", (8834, 8402)), + ("ruluhar", (0, 0)), + ("blk1", (0, 0)), + ("lcub", (0, 0)), + ("period;", (46, 0)), + ("vzigz", (0, 0)), + ("tos", (0, 0)), + ("nwn", (0, 0)), + ("Id", (0, 0)), + ("ddots", (0, 0)), + ("eqvpa", (0, 0)), + ("intprod", (0, 0)), + ("scna", (0, 0)), + ("Medium", (0, 0)), + ("ffr", (0, 0)), + ("ii;", (8520, 0)), + ("CounterClockwiseCont", (0, 0)), + ("boxur;", (9492, 0)), + ("colo", (0, 0)), + ("trianglerig", (0, 0)), + ("latai", (0, 0)), + ("IEc", (0, 0)), + ("awco", (0, 0)), + ("rightharpoondown", (0, 0)), + ("shortmid", (0, 0)), + ("LeftUpTeeVecto", (0, 0)), + ("Longleftrigh", (0, 0)), + ("Tcar", (0, 0)), + ("LeftUpDo", (0, 0)), + ("checkmark", (0, 0)), + ("Rarr;", (8608, 0)), + ("isindot;", (8949, 0)), + ("Rac", (0, 0)), + ("solba", (0, 0)), + ("dda", (0, 0)), + ("sc", (0, 0)), + ("infin;", (8734, 0)), + ("npr", (0, 0)), + ("prnE", (0, 0)), + ("NotRightT", (0, 0)), + ("NegativeMediumSpace;", (8203, 0)), + ("alpha;", (945, 0)), + ("Ccaro", (0, 0)), + ("NotTildeTilde;", (8777, 0)), + ("rca", (0, 0)), + ("geqslant;", (10878, 0)), + ("bsolh", (0, 0)), + ("mapstodo", (0, 0)), + ("NotLessGrea", (0, 0)), + ("RightAngleBr", (0, 0)), + ("middo", (0, 0)), + ("lcaron;", (318, 0)), + ("supedo", (0, 0)), + ("iogon", (0, 0)), + ("GreaterTilde", (0, 0)), + ("PrecedesSlant", (0, 0)), + ("HA", (0, 0)), + ("leftrighta", (0, 0)), + ("boxdl", (0, 0)), + ("NotN", (0, 0)), + ("LeftVectorBa", (0, 0)), + ("Cacute;", (262, 0)), + ("ae", (0, 0)), + ("suped", (0, 0)), + ("infi", (0, 0)), + ("Esi", (0, 0)), + ("gnapprox", (0, 0)), + ("uha", (0, 0)), + ("Br", (0, 0)), + ("divideontimes", (0, 0)), + ("heartsui", (0, 0)), + ("Dc", (0, 0)), + ("boxvr", (0, 0)), + ("EmptyS", (0, 0)), + ("cirscir;", (10690, 0)), + ("egsd", (0, 0)), + ("hookleft", (0, 0)), + ("nvr", (0, 0)), + ("lne", (0, 0)), + ("ati", (0, 0)), + ("NotTildeEqual", (0, 0)), + ("NotSucceeds", (0, 0)), + ("LeftDownVector", (0, 0)), + ("Ffr;", (120073, 0)), + ("Sfr;", (120086, 0)), + ("eng;", (331, 0)), + ("lurdshar;", (10570, 0)), + ("NotVer", (0, 0)), + ("frac78", (0, 0)), + ("LeftUpTeeVector", (0, 0)), + ("longleftrightarro", (0, 0)), + ("nleftarr", (0, 0)), + ("Thick", (0, 0)), + ("Llefta", (0, 0)), + ("VerticalSepa", (0, 0)), + ("Sq", (0, 0)), + ("TRADE;", (8482, 0)), + ("Diamon", (0, 0)), + ("ell;", (8467, 0)), + ("Cop", (0, 0)), + ("Zfr", (0, 0)), + ("succsim;", (8831, 0)), + ("NonBrea", (0, 0)), + ("Rcaron;", (344, 0)), + ("rth", (0, 0)), + ("nparalle", (0, 0)), + ("Wcirc;", (372, 0)), + ("jukcy", (0, 0)), + ("dwang", (0, 0)), + ("SuchTha", (0, 0)), + ("varsubset", (0, 0)), + ("Vfr;", (120089, 0)), + ("nsubse", (0, 0)), + ("hop", (0, 0)), + ("multimap", (0, 0)), + ("nvd", (0, 0)), + ("NotLeftTri", (0, 0)), + ("curvearrowl", (0, 0)), + ("tilde", (0, 0)), + ("zacu", (0, 0)), + ("zcy", (0, 0)), + ("PrecedesTilde", (0, 0)), + ("DoubleLeftR", (0, 0)), + ("Larr;", (8606, 0)), + ("Ss", (0, 0)), + ("zacut", (0, 0)), + ("Poincarepla", (0, 0)), + ("urcorn;", (8989, 0)), + ("boxUl", (0, 0)), + ("Rc", (0, 0)), + ("lbarr", (0, 0)), + ("vartriangleright", (0, 0)), + ("eqcolon", (0, 0)), + ("CapitalDiffe", (0, 0)), + ("subsetneqq;", (10955, 0)), + ("Dcaro", (0, 0)), + ("ldsh;", (8626, 0)), + ("ccup", (0, 0)), + ("CircleTimes;", (8855, 0)), + ("coprod;", (8720, 0)), + ("RightDownVec", (0, 0)), + ("SquareSup", (0, 0)), + ("nprc", (0, 0)), + ("sr", (0, 0)), + ("rea", (0, 0)), + ("LeftUpTeeVector;", (10592, 0)), + ("midci", (0, 0)), + ("upl", (0, 0)), + ("DoubleContourIntegral;", (8751, 0)), + ("RightDownVectorBa", (0, 0)), + ("Zcy", (0, 0)), + ("NotSquareSupersetE", (0, 0)), + ("UpA", (0, 0)), + ("circlearro", (0, 0)), + ("gescc;", (10921, 0)), + ("dtrif;", (9662, 0)), + ("Ig", (0, 0)), + ("NotGreaterSlantEqual;", (10878, 824)), + ("die", (0, 0)), + ("NotSupersetE", (0, 0)), + ("dollar", (0, 0)), + ("tritime;", (10811, 0)), + ("digamma", (0, 0)), + ("CapitalDifferen", (0, 0)), + ("ffili", (0, 0)), + ("scedil;", (351, 0)), + ("delt", (0, 0)), + ("sqsupe", (0, 0)), + ("nc", (0, 0)), + ("NotSucceedsEqu", (0, 0)), + ("NoBreak;", (8288, 0)), + ("NegativeVeryThinSp", (0, 0)), + ("ShortLeftArr", (0, 0)), + ("SOF", (0, 0)), + ("egr", (0, 0)), + ("CHc", (0, 0)), + ("NestedLessLess", (0, 0)), + ("leftr", (0, 0)), + ("SucceedsTilde", (0, 0)), + ("Square", (0, 0)), + ("Oo", (0, 0)), + ("d", (0, 0)), + ("varsupsetneqq", (0, 0)), + ("varsi", (0, 0)), + ("nlE;", (8806, 824)), + ("Lm", (0, 0)), + ("rtriltri;", (10702, 0)), + ("dfisht;", (10623, 0)), + ("DoubleRightTee", (0, 0)), + ("ltcc", (0, 0)), + ("triti", (0, 0)), + ("loa", (0, 0)), + ("Dscr", (0, 0)), + ("rtriltr", (0, 0)), + ("nRightarr", (0, 0)), + ("ngsi", (0, 0)), + ("curlyeqsucc;", (8927, 0)), + ("horbar;", (8213, 0)), + ("Kcy;", (1050, 0)), + ("LeftUpVectorBar", (0, 0)), + ("DoubleVerticalB", (0, 0)), + ("subdot", (0, 0)), + ("fro", (0, 0)), + ("ThinSpac", (0, 0)), + ("Ograve", (210, 0)), + ("lti", (0, 0)), + ("copy;", (169, 0)), + ("cro", (0, 0)), + ("DoubleVertic", (0, 0)), + ("prnsim;", (8936, 0)), + ("kj", (0, 0)), + ("lsqu", (0, 0)), + ("Igrave;", (204, 0)), + ("DoubleRightT", (0, 0)), + ("Alpha;", (913, 0)), + ("Lan", (0, 0)), + ("llcorner", (0, 0)), + ("risingdotseq", (0, 0)), + ("olcro", (0, 0)), + ("MinusPlu", (0, 0)), + ("gtdot", (0, 0)), + ("bsolhs", (0, 0)), + ("hb", (0, 0)), + ("hkswarow;", (10534, 0)), + ("dbkaro", (0, 0)), + ("SquareSubsetEqu", (0, 0)), + ("lmous", (0, 0)), + ("AM", (0, 0)), + ("tpri", (0, 0)), + ("ofr", (0, 0)), + ("ZHcy;", (1046, 0)), + ("equiv", (0, 0)), + ("EmptyVe", (0, 0)), + ("eqslantless;", (10901, 0)), + ("upharpoonrigh", (0, 0)), + ("eng", (0, 0)), + ("Lo", (0, 0)), + ("Invisi", (0, 0)), + ("larrhk", (0, 0)), + ("nbumpe;", (8783, 824)), + ("nshortparalle", (0, 0)), + ("lsaquo;", (8249, 0)), + ("nLeftrig", (0, 0)), + ("omi", (0, 0)), + ("lu", (0, 0)), + ("Cedi", (0, 0)), + ("bnot;", (8976, 0)), + ("Dca", (0, 0)), + ("xcap;", (8898, 0)), + ("ca", (0, 0)), + ("fpa", (0, 0)), + ("UpDownArro", (0, 0)), + ("NotTildeFullEqual;", (8775, 0)), + ("Pa", (0, 0)), + ("iiint", (0, 0)), + ("plankv", (0, 0)), + ("curr", (0, 0)), + ("shc", (0, 0)), + ("At", (0, 0)), + ("plusmn", (177, 0)), + ("lates", (0, 0)), + ("cent;", (162, 0)), + ("dbka", (0, 0)), + ("Sum", (0, 0)), + ("NotCo", (0, 0)), + ("lurdsh", (0, 0)), + ("nhAr", (0, 0)), + ("UnderBa", (0, 0)), + ("vsubn", (0, 0)), + ("rdsh;", (8627, 0)), + ("leftth", (0, 0)), + ("SubsetEqual", (0, 0)), + ("EqualTilde;", (8770, 0)), + ("lnE;", (8808, 0)), + ("dou", (0, 0)), + ("telre", (0, 0)), + ("DownArrowB", (0, 0)), + ("nsccu", (0, 0)), + ("Colon;", (8759, 0)), + ("bac", (0, 0)), + ("UpperRi", (0, 0)), + ("longleftrigh", (0, 0)), + ("Eta;", (919, 0)), + ("NotNestedGre", (0, 0)), + ("Nopf", (0, 0)), + ("Upar", (0, 0)), + ("circleddas", (0, 0)), + ("rcaron;", (345, 0)), + ("ApplyF", (0, 0)), + ("djcy;", (1106, 0)), + ("succnsi", (0, 0)), + ("xra", (0, 0)), + ("frac3", (0, 0)), + ("succneq", (0, 0)), + ("eqsla", (0, 0)), + ("NotNestedG", (0, 0)), + ("upsi;", (965, 0)), + ("CounterClockwiseContourIntegr", (0, 0)), + ("subdo", (0, 0)), + ("Leftright", (0, 0)), + ("GreaterEqua", (0, 0)), + ("Lsh", (0, 0)), + ("itilde", (0, 0)), + ("SmallCircle;", (8728, 0)), + ("diamond", (0, 0)), + ("ApplyFunction;", (8289, 0)), + ("iiota;", (8489, 0)), + ("upharpo", (0, 0)), + ("ContourIntegral", (0, 0)), + ("ffilig;", (64259, 0)), + ("NotEqualTi", (0, 0)), + ("gvertneq", (0, 0)), + ("NotPre", (0, 0)), + ("fflig", (0, 0)), + ("varsubsetneq;", (8842, 65024)), + ("NotSquareSup", (0, 0)), + ("models", (0, 0)), + ("nLefta", (0, 0)), + ("drbkarow", (0, 0)), + ("DoubleUpDownArr", (0, 0)), + ("xcirc", (0, 0)), + ("empty", (0, 0)), + ("CounterClockw", (0, 0)), + ("quatint;", (10774, 0)), + ("LeftDou", (0, 0)), + ("LeftTeeVecto", (0, 0)), + ("dotsquare;", (8865, 0)), + ("bernou", (0, 0)), + ("Omicro", (0, 0)), + ("colone", (0, 0)), + ("xh", (0, 0)), + ("varnothin", (0, 0)), + ("pound;", (163, 0)), + ("gtc", (0, 0)), + ("LowerLeftA", (0, 0)), + ("xoplu", (0, 0)), + ("geqsla", (0, 0)), + ("uogo", (0, 0)), + ("epar", (0, 0)), + ("cacut", (0, 0)), + ("apos", (0, 0)), + ("xdtri;", (9661, 0)), + ("CupCap", (0, 0)), + ("iti", (0, 0)), + ("Breve", (0, 0)), + ("utilde", (0, 0)), + ("Ycirc", (0, 0)), + ("Rcy;", (1056, 0)), + ("NotSubse", (0, 0)), + ("napE;", (10864, 824)), + ("lat", (0, 0)), + ("UpDownArrow;", (8597, 0)), + ("pluse", (0, 0)), + ("ShortDow", (0, 0)), + ("OverBracke", (0, 0)), + ("vprop", (0, 0)), + ("flt", (0, 0)), + ("Rf", (0, 0)), + ("lbr", (0, 0)), + ("DoubleRightTe", (0, 0)), + ("conint", (0, 0)), + ("SucceedsSlantEqual;", (8829, 0)), + ("DownArrow;", (8595, 0)), + ("LessGreat", (0, 0)), + ("Ru", (0, 0)), + ("exis", (0, 0)), + ("csub;", (10959, 0)), + ("lcaron", (0, 0)), + ("ntrianglel", (0, 0)), + ("ip", (0, 0)), + ("Aopf;", (120120, 0)), + ("Phi", (0, 0)), + ("TildeTild", (0, 0)), + ("rightright", (0, 0)), + ("ffr;", (120099, 0)), + ("ograve", (242, 0)), + ("cacute;", (263, 0)), + ("NotVert", (0, 0)), + ("scedi", (0, 0)), + ("succcurlyeq", (0, 0)), + ("Bs", (0, 0)), + ("weierp", (0, 0)), + ("lesss", (0, 0)), + ("backc", (0, 0)), + ("rpar;", (41, 0)), + ("LeftFloor", (0, 0)), + ("yic", (0, 0)), + ("Omacr;", (332, 0)), + ("nabla;", (8711, 0)), + ("gne;", (10888, 0)), + ("nvDas", (0, 0)), + ("reg;", (174, 0)), + ("CounterClockwiseContourI", (0, 0)), + ("geqsl", (0, 0)), + ("lobrk;", (10214, 0)), + ("oslas", (0, 0)), + ("Ds", (0, 0)), + ("Odbla", (0, 0)), + ("bigstar", (0, 0)), + ("olc", (0, 0)), + ("perte", (0, 0)), + ("dotp", (0, 0)), + ("DoubleUpArro", (0, 0)), + ("gtrdot;", (8919, 0)), + ("Jscr;", (119973, 0)), + ("tcedil", (0, 0)), + ("Mel", (0, 0)), + ("gtrapprox;", (10886, 0)), + ("dotmi", (0, 0)), + ("harrw", (0, 0)), + ("ntg", (0, 0)), + ("EmptySmall", (0, 0)), + ("CapitalD", (0, 0)), + ("cudarr", (0, 0)), + ("lvert", (0, 0)), + ("subdot;", (10941, 0)), + ("sup3;", (179, 0)), + ("minu", (0, 0)), + ("yicy", (0, 0)), + ("boxVr;", (9567, 0)), + ("Ncar", (0, 0)), + ("otild", (0, 0)), + ("RightTriangl", (0, 0)), + ("UpperRightArrow", (0, 0)), + ("subedo", (0, 0)), + ("dr", (0, 0)), + ("GreaterFullEqual;", (8807, 0)), + ("RightAngleBrack", (0, 0)), + ("we", (0, 0)), + ("DiacriticalGrave", (0, 0)), + ("Oscr;", (119978, 0)), + ("zigrarr;", (8669, 0)), + ("Eci", (0, 0)), + ("LeftTriangleBar", (0, 0)), + ("lozf", (0, 0)), + ("Ns", (0, 0)), + ("omeg", (0, 0)), + ("sime;", (8771, 0)), + ("gtrless;", (8823, 0)), + ("Cen", (0, 0)), + ("Ia", (0, 0)), + ("mnplu", (0, 0)), + ("lae", (0, 0)), + ("primes;", (8473, 0)), + ("acd", (0, 0)), + ("NotNeste", (0, 0)), + ("nhArr", (0, 0)), + ("ltcir;", (10873, 0)), + ("thinsp;", (8201, 0)), + ("lt", (60, 0)), + ("ApplyFunct", (0, 0)), + ("nsubseteq;", (8840, 0)), + ("lesssim;", (8818, 0)), + ("dstro", (0, 0)), + ("Tab", (0, 0)), + ("circlearrowle", (0, 0)), + ("LessLes", (0, 0)), + ("Squa", (0, 0)), + ("Topf", (0, 0)), + ("eqvpars", (0, 0)), + ("UnderBrac", (0, 0)), + ("quaterni", (0, 0)), + ("curlye", (0, 0)), + ("dagg", (0, 0)), + ("profalar;", (9006, 0)), + ("frac15;", (8533, 0)), + ("Longrightarrow", (0, 0)), + ("bigsqcup;", (10758, 0)), + ("Uppe", (0, 0)), + ("GreaterSlan", (0, 0)), + ("Lleftar", (0, 0)), + ("trpe", (0, 0)), + ("SucceedsEqual;", (10928, 0)), + ("NegativeMediumSpace", (0, 0)), + ("wedba", (0, 0)), + ("leftle", (0, 0)), + ("RightVector", (0, 0)), + ("bsol;", (92, 0)), + ("Acy", (0, 0)), + ("dzigrarr;", (10239, 0)), + ("double", (0, 0)), + ("SquareIn", (0, 0)), + ("emsp", (0, 0)), + ("thetasym;", (977, 0)), + ("Xop", (0, 0)), + ("cwi", (0, 0)), + ("Mcy", (0, 0)), + ("ltcc;", (10918, 0)), + ("vsubne;", (8842, 65024)), + ("cfr;", (120096, 0)), + ("thorn;", (254, 0)), + ("Lar", (0, 0)), + ("fllig;", (64258, 0)), + ("foral", (0, 0)), + ("boxvh", (0, 0)), + ("boxdl;", (9488, 0)), + ("DoubleContourInt", (0, 0)), + ("GJcy;", (1027, 0)), + ("shchcy", (0, 0)), + ("Uopf", (0, 0)), + ("ze", (0, 0)), + ("at", (0, 0)), + ("model", (0, 0)), + ("uharl", (0, 0)), + ("prec", (0, 0)), + ("UnderParenth", (0, 0)), + ("NotSucceedsSlantEqual", (0, 0)), + ("curve", (0, 0)), + ("rnmi", (0, 0)), + ("ClockwiseCon", (0, 0)), + ("Rar", (0, 0)), + ("nsubs", (0, 0)), + ("sccu", (0, 0)), + ("SucceedsSla", (0, 0)), + ("atild", (0, 0)), + ("ddotse", (0, 0)), + ("curarrm;", (10556, 0)), + ("LeftDoubleB", (0, 0)), + ("exponenti", (0, 0)), + ("apid", (0, 0)), + ("awconint;", (8755, 0)), + ("te", (0, 0)), + ("ult", (0, 0)), + ("LessT", (0, 0)), + ("uarr", (0, 0)), + ("Jfr", (0, 0)), + ("radic", (0, 0)), + ("NotLeftTriang", (0, 0)), + ("intprod;", (10812, 0)), + ("xf", (0, 0)), + ("GreaterSlantEq", (0, 0)), + ("ngeqq;", (8807, 824)), + ("prcue;", (8828, 0)), + ("bigwedg", (0, 0)), + ("dH", (0, 0)), + ("gesdotol;", (10884, 0)), + ("ShortDownA", (0, 0)), + ("div;", (247, 0)), + ("dfi", (0, 0)), + ("larrt", (0, 0)), + ("varrho", (0, 0)), + ("NotTildeFullE", (0, 0)), + ("intlarhk;", (10775, 0)), + ("upsi", (0, 0)), + ("dcaro", (0, 0)), + ("Gfr", (0, 0)), + ("nequiv", (0, 0)), + ("lobr", (0, 0)), + ("Euml;", (203, 0)), + ("NotCongrue", (0, 0)), + ("nG", (0, 0)), + ("vzi", (0, 0)), + ("NegativeMediumSpa", (0, 0)), + ("Plu", (0, 0)), + ("Ccaron", (0, 0)), + ("nj", (0, 0)), + ("roarr;", (8702, 0)), + ("rtril", (0, 0)), + ("nwnear", (0, 0)), + ("hksear", (0, 0)), + ("ssmile;", (8995, 0)), + ("numero", (0, 0)), + ("Kapp", (0, 0)), + ("parsim;", (10995, 0)), + ("ccupssm", (0, 0)), + ("AE", (0, 0)), + ("Nc", (0, 0)), + ("Supe", (0, 0)), + ("angrt", (0, 0)), + ("RightTriangleEq", (0, 0)), + ("DoubleLongLeftR", (0, 0)), + ("lcedi", (0, 0)), + ("in", (0, 0)), + ("rightri", (0, 0)), + ("RightFl", (0, 0)), + ("LessEqualGreater;", (8922, 0)), + ("upsih;", (978, 0)), + ("frac38", (0, 0)), + ("EmptyVeryS", (0, 0)), + ("hook", (0, 0)), + ("blk3", (0, 0)), + ("longrightarrow;", (10230, 0)), + ("NotLessGreat", (0, 0)), + ("RightArrow;", (8594, 0)), + ("EqualTilde", (0, 0)), + ("Par", (0, 0)), + ("rcaro", (0, 0)), + ("sqcups", (0, 0)), + ("comma", (0, 0)), + ("cirm", (0, 0)), + ("InvisibleCom", (0, 0)), + ("dblac", (0, 0)), + ("PrecedesSla", (0, 0)), + ("NotLe", (0, 0)), + ("xotime", (0, 0)), + ("Vdash;", (8873, 0)), + ("HumpDownHu", (0, 0)), + ("lf", (0, 0)), + ("sbq", (0, 0)), + ("succeq", (0, 0)), + ("DownLeftVector;", (8637, 0)), + ("gvertne", (0, 0)), + ("NegativeMedium", (0, 0)), + ("lesdot", (0, 0)), + ("expo", (0, 0)), + ("nldr;", (8229, 0)), + ("So", (0, 0)), + ("lobrk", (0, 0)), + ("chec", (0, 0)), + ("RightUpTe", (0, 0)), + ("xhA", (0, 0)), + ("ntrianglelefteq", (0, 0)), + ("GreaterFullE", (0, 0)), + ("SHC", (0, 0)), + ("Fouriert", (0, 0)), + ("str", (0, 0)), + ("IJli", (0, 0)), + ("imath;", (305, 0)), + ("lmoustache;", (9136, 0)), + ("minusd", (0, 0)), + ("uogon;", (371, 0)), + ("erarr;", (10609, 0)), + ("Cup", (0, 0)), + ("and", (0, 0)), + ("dbkarow;", (10511, 0)), + ("cularr", (0, 0)), + ("NJ", (0, 0)), + ("succcurlyeq;", (8829, 0)), + ("drcr", (0, 0)), + ("nlarr", (0, 0)), + ("PlusMinu", (0, 0)), + ("nacute", (0, 0)), + ("SHcy;", (1064, 0)), + ("SupersetEqual;", (8839, 0)), + ("Lleftarrow;", (8666, 0)), + ("DoubleL", (0, 0)), + ("Ecaro", (0, 0)), + ("uh", (0, 0)), + ("oast;", (8859, 0)), + ("IJl", (0, 0)), + ("sup2;", (178, 0)), + ("curvearrowleft", (0, 0)), + ("vscr;", (120011, 0)), + ("equest", (0, 0)), + ("RightVect", (0, 0)), + ("varsubsetneq", (0, 0)), + ("Yci", (0, 0)), + ("UnderPare", (0, 0)), + ("lot", (0, 0)), + ("triplu", (0, 0)), + ("Oslash;", (216, 0)), + ("Down", (0, 0)), + ("RightTeeVecto", (0, 0)), + ("dh", (0, 0)), + ("supl", (0, 0)), + ("nisd", (0, 0)), + ("nacu", (0, 0)), + ("xrArr", (0, 0)), + ("vart", (0, 0)), + ("ntri", (0, 0)), + ("frac1", (0, 0)), + ("bsi", (0, 0)), + ("ya", (0, 0)), + ("DoubleLongLeft", (0, 0)), + ("Icirc;", (206, 0)), + ("notindot;", (8949, 824)), + ("two", (0, 0)), + ("twohe", (0, 0)), + ("SupersetEqu", (0, 0)), + ("gacu", (0, 0)), + ("leftrightsquigarrow", (0, 0)), + ("ratail", (0, 0)), + ("UnionPl", (0, 0)), + ("bemp", (0, 0)), + ("notni;", (8716, 0)), + ("hellip", (0, 0)), + ("pun", (0, 0)), + ("DoubleLongLeftRightA", (0, 0)), + ("eqslantgtr", (0, 0)), + ("n", (0, 0)), + ("longmapsto", (0, 0)), + ("longrightarro", (0, 0)), + ("NotReve", (0, 0)), + ("brvbar;", (166, 0)), + ("Gt;", (8811, 0)), + ("tcedil;", (355, 0)), + ("RightFloo", (0, 0)), + ("Sup", (0, 0)), + ("Ugr", (0, 0)), + ("Esc", (0, 0)), + ("circledR;", (174, 0)), + ("hksw", (0, 0)), + ("Diacr", (0, 0)), + ("RightAngle", (0, 0)), + ("precap", (0, 0)), + ("topbot;", (9014, 0)), + ("oe", (0, 0)), + ("NotReverseEl", (0, 0)), + ("supset", (0, 0)), + ("lesg;", (8922, 65024)), + ("EmptySmallSquare", (0, 0)), + ("isc", (0, 0)), + ("tosa;", (10537, 0)), + ("EmptyV", (0, 0)), + ("yucy", (0, 0)), + ("NotRightTriangleEqual", (0, 0)), + ("InvisibleComma", (0, 0)), + ("OverParen", (0, 0)), + ("ltques", (0, 0)), + ("Otimes", (0, 0)), + ("inf", (0, 0)), + ("prime", (0, 0)), + ("dempt", (0, 0)), + ("Tau;", (932, 0)), + ("simrar", (0, 0)), + ("FilledSma", (0, 0)), + ("ia", (0, 0)), + ("qo", (0, 0)), + ("minus;", (8722, 0)), + ("NotSquareSuperse", (0, 0)), + ("gbreve", (0, 0)), + ("thickapprox;", (8776, 0)), + ("ultr", (0, 0)), + ("simeq", (0, 0)), + ("Exponen", (0, 0)), + ("nsp", (0, 0)), + ("Iopf;", (120128, 0)), + ("ocy;", (1086, 0)), + ("subed", (0, 0)), + ("drcrop;", (8972, 0)), + ("twoheadl", (0, 0)), + ("vo", (0, 0)), + ("LeftDownVe", (0, 0)), + ("Acy;", (1040, 0)), + ("Nested", (0, 0)), + ("Fc", (0, 0)), + ("Eac", (0, 0)), + ("nfr", (0, 0)), + ("subsetneq;", (8842, 0)), + ("nearr;", (8599, 0)), + ("DownLeftVecto", (0, 0)), + ("Gopf", (0, 0)), + ("thinsp", (0, 0)), + ("DownTeeA", (0, 0)), + ("Ofr;", (120082, 0)), + ("nvlt", (0, 0)), + ("circleddash", (0, 0)), + ("ldr", (0, 0)), + ("aleph", (0, 0)), + ("doub", (0, 0)), + ("nac", (0, 0)), + ("Zscr", (0, 0)), + ("LeftCei", (0, 0)), + ("LeftArrowR", (0, 0)), + ("NotGreaterGrea", (0, 0)), + ("rangl", (0, 0)), + ("NotReverseEleme", (0, 0)), + ("puncsp;", (8200, 0)), + ("lArr;", (8656, 0)), + ("hookrightarro", (0, 0)), + ("CenterDot", (0, 0)), + ("LowerLeftArrow;", (8601, 0)), + ("bsem", (0, 0)), + ("zigrarr", (0, 0)), + ("ecol", (0, 0)), + ("rA", (0, 0)), + ("xhar", (0, 0)), + ("PrecedesEq", (0, 0)), + ("Escr", (0, 0)), + ("uhblk", (0, 0)), + ("subsetn", (0, 0)), + ("ApplyFun", (0, 0)), + ("eacu", (0, 0)), + ("rightrightar", (0, 0)), + ("nda", (0, 0)), + ("GreaterTil", (0, 0)), + ("DownArrowBa", (0, 0)), + ("centerd", (0, 0)), + ("kc", (0, 0)), + ("lltri", (0, 0)), + ("DoubleUpArrow;", (8657, 0)), + ("Zcar", (0, 0)), + ("tau;", (964, 0)), + ("angmsdae", (0, 0)), + ("cupca", (0, 0)), + ("Invis", (0, 0)), + ("raquo", (187, 0)), + ("SucceedsTi", (0, 0)), + ("LessFullEqual;", (8806, 0)), + ("sqsu", (0, 0)), + ("equest;", (8799, 0)), + ("nleqsl", (0, 0)), + ("raem", (0, 0)), + ("Double", (0, 0)), + ("horba", (0, 0)), + ("NotCon", (0, 0)), + ("lE;", (8806, 0)), + ("Dcy", (0, 0)), + ("gra", (0, 0)), + ("simgE", (0, 0)), + ("semi", (0, 0)), + ("mic", (0, 0)), + ("CenterDot;", (183, 0)), + ("ha", (0, 0)), + ("setminus;", (8726, 0)), + ("dotplus", (0, 0)), + ("suc", (0, 0)), + ("varpro", (0, 0)), + ("gsime;", (10894, 0)), + ("Sum;", (8721, 0)), + ("iin", (0, 0)), + ("nbs", (0, 0)), + ("nvrArr;", (10499, 0)), + ("ldrdha", (0, 0)), + ("OpenCurlyDoubleQu", (0, 0)), + ("ncu", (0, 0)), + ("dHa", (0, 0)), + ("boxv", (0, 0)), + ("brev", (0, 0)), + ("Tcy;", (1058, 0)), + ("Oslas", (0, 0)), + ("PrecedesSlantEqua", (0, 0)), + ("DiacriticalTilde;", (732, 0)), + ("Zcaron", (0, 0)), + ("yucy;", (1102, 0)), + ("dd;", (8518, 0)), + ("harr;", (8596, 0)), + ("DoubleRigh", (0, 0)), + ("looparrowri", (0, 0)), + ("orslope;", (10839, 0)), + ("RuleDelayed", (0, 0)), + ("xrar", (0, 0)), + ("acy", (0, 0)), + ("FilledS", (0, 0)), + ("DoubleLeftRig", (0, 0)), + ("varepsil", (0, 0)), + ("RightDow", (0, 0)), + ("Updownarrow", (0, 0)), + ("nha", (0, 0)), + ("oslash;", (248, 0)), + ("Cayleys;", (8493, 0)), + ("iiii", (0, 0)), + ("subplus", (0, 0)), + ("cuwed;", (8911, 0)), + ("NotReverseElem", (0, 0)), + ("suphsu", (0, 0)), + ("vang", (0, 0)), + ("ClockwiseContourI", (0, 0)), + ("Vd", (0, 0)), + ("fe", (0, 0)), + ("Leftarrow;", (8656, 0)), + ("NotR", (0, 0)), + ("cra", (0, 0)), + ("NotNestedLessL", (0, 0)), + ("rsqb", (0, 0)), + ("TripleDo", (0, 0)), + ("gesd", (0, 0)), + ("Longri", (0, 0)), + ("block;", (9608, 0)), + ("NestedGreater", (0, 0)), + ("RightArrowBa", (0, 0)), + ("KJc", (0, 0)), + ("LeftTeeVector;", (10586, 0)), + ("NotVerticalBar;", (8740, 0)), + ("GreaterG", (0, 0)), + ("LeftDown", (0, 0)), + ("Eum", (0, 0)), + ("Wop", (0, 0)), + ("bpri", (0, 0)), + ("br", (0, 0)), + ("profsurf", (0, 0)), + ("rharu", (0, 0)), + ("SquareU", (0, 0)), + ("strns", (0, 0)), + ("boxdR;", (9554, 0)), + ("larrh", (0, 0)), + ("TripleDot", (0, 0)), + ("FilledVerySmallSq", (0, 0)), + ("scpoli", (0, 0)), + ("YUcy", (0, 0)), + ("xrAr", (0, 0)), + ("Qfr;", (120084, 0)), + ("NewLine;", (10, 0)), + ("angmsdac;", (10666, 0)), + ("nsucce", (0, 0)), + ("wcirc;", (373, 0)), + ("dem", (0, 0)), + ("van", (0, 0)), + ("NotSquareSupersetEqu", (0, 0)), + ("Bop", (0, 0)), + ("Exponent", (0, 0)), + ("mapstolef", (0, 0)), + ("prap", (0, 0)), + ("squf", (0, 0)), + ("DoubleRi", (0, 0)), + ("origo", (0, 0)), + ("plussi", (0, 0)), + ("Longrig", (0, 0)), + ("twoheadleftarro", (0, 0)), + ("Uar", (0, 0)), + ("Cce", (0, 0)), + ("Parti", (0, 0)), + ("drbkar", (0, 0)), + ("SH", (0, 0)), + ("nsubset", (0, 0)), + ("semi;", (59, 0)), + ("supsim", (0, 0)), + ("YU", (0, 0)), + ("igrave", (236, 0)), + ("Aogo", (0, 0)), + ("HumpDownH", (0, 0)), + ("DownRightVectorBar", (0, 0)), + ("ga", (0, 0)), + ("geq;", (8805, 0)), + ("Tau", (0, 0)), + ("ratio", (0, 0)), + ("DownRight", (0, 0)), + ("aci", (0, 0)), + ("NestedGreaterGreater;", (8811, 0)), + ("gv", (0, 0)), + ("Mi", (0, 0)), + ("Bcy;", (1041, 0)), + ("Tcaron", (0, 0)), + ("boxv;", (9474, 0)), + ("ua", (0, 0)), + ("LeftDownVecto", (0, 0)), + ("plusb", (0, 0)), + ("NotSucceedsT", (0, 0)), + ("LongLe", (0, 0)), + ("RightDou", (0, 0)), + ("bsolhsu", (0, 0)), + ("cong;", (8773, 0)), + ("rsqu", (0, 0)), + ("rfisht", (0, 0)), + ("app", (0, 0)), + ("ClockwiseContourIntegral", (0, 0)), + ("ale", (0, 0)), + ("eques", (0, 0)), + ("RightTeeVector", (0, 0)), + ("leftarro", (0, 0)), + ("ysc", (0, 0)), + ("ne", (0, 0)), + ("Backsla", (0, 0)), + ("hkswarow", (0, 0)), + ("excl;", (33, 0)), + ("nges", (0, 0)), + ("Dar", (0, 0)), + ("NotSucceedsSla", (0, 0)), + ("Ub", (0, 0)), + ("igra", (0, 0)), + ("VeryT", (0, 0)), + ("ntilde", (241, 0)), + ("copr", (0, 0)), + ("Lce", (0, 0)), + ("swnwar;", (10538, 0)), + ("ecaron", (0, 0)), + ("bumpeq;", (8783, 0)), + ("rightsqui", (0, 0)), + ("bnequiv", (0, 0)), + ("lhar", (0, 0)), + ("RightTee;", (8866, 0)), + ("FilledVer", (0, 0)), + ("ens", (0, 0)), + ("leftrightar", (0, 0)), + ("RightDownV", (0, 0)), + ("NotRe", (0, 0)), + ("bowti", (0, 0)), + ("falling", (0, 0)), + ("HilbertSp", (0, 0)), + ("LeftTri", (0, 0)), + ("gnsi", (0, 0)), + ("lgE;", (10897, 0)), + ("ThinS", (0, 0)), + ("gtdo", (0, 0)), + ("gacut", (0, 0)), + ("oro", (0, 0)), + ("Produc", (0, 0)), + ("emsp14;", (8197, 0)), + ("gcy", (0, 0)), + ("SuchThat;", (8715, 0)), + ("tstro", (0, 0)), + ("lesdotor", (0, 0)), + ("bbrktbrk", (0, 0)), + ("NotDoubleV", (0, 0)), + ("Kcedil", (0, 0)), + ("lessdot;", (8918, 0)), + ("cirE", (0, 0)), + ("DiacriticalGra", (0, 0)), + ("lAta", (0, 0)), + ("grave;", (96, 0)), + ("bigc", (0, 0)), + ("DoubleDownArro", (0, 0)), + ("elsdot", (0, 0)), + ("NotSub", (0, 0)), + ("DoubleVerti", (0, 0)), + ("VerticalBar", (0, 0)), + ("Sigma;", (931, 0)), + ("Ag", (0, 0)), + ("Fille", (0, 0)), + ("glE;", (10898, 0)), + ("lbrac", (0, 0)), + ("pitchfork", (0, 0)), + ("doublebarwed", (0, 0)), + ("num;", (35, 0)), + ("Uacute;", (218, 0)), + ("Zf", (0, 0)), + ("boxhu;", (9524, 0)), + ("ld", (0, 0)), + ("SuchT", (0, 0)), + ("LongRig", (0, 0)), + ("LowerLeft", (0, 0)), + ("veee", (0, 0)), + ("muma", (0, 0)), + ("thka", (0, 0)), + ("Ogra", (0, 0)), + ("SquareSu", (0, 0)), + ("compleme", (0, 0)), + ("Jukcy;", (1028, 0)), + ("Di", (0, 0)), + ("blk", (0, 0)), + ("zigra", (0, 0)), + ("lneq", (0, 0)), + ("gtquest;", (10876, 0)), + ("LeftArrowB", (0, 0)), + ("UpArro", (0, 0)), + ("succna", (0, 0)), + ("pluscir;", (10786, 0)), + ("sfr;", (120112, 0)), + ("vartriangle", (0, 0)), + ("Leftrightarrow", (0, 0)), + ("RightTria", (0, 0)), + ("upharpoonright;", (8638, 0)), + ("LeftUpVecto", (0, 0)), + ("TSc", (0, 0)), + ("colon;", (58, 0)), + ("DownLeftRightVe", (0, 0)), + ("Do", (0, 0)), + ("DoubleRightArrow;", (8658, 0)), + ("bump", (0, 0)), + ("cuvee;", (8910, 0)), + ("Ycirc;", (374, 0)), + ("lca", (0, 0)), + ("Revers", (0, 0)), + ("tdo", (0, 0)), + ("gtci", (0, 0)), + ("mDDot;", (8762, 0)), + ("nrightarrow;", (8603, 0)), + ("laqu", (0, 0)), + ("rpa", (0, 0)), + ("ned", (0, 0)), + ("NotCongr", (0, 0)), + ("Kap", (0, 0)), + ("eopf;", (120150, 0)), + ("num", (0, 0)), + ("plusdo;", (8724, 0)), + ("hookr", (0, 0)), + ("egs;", (10902, 0)), + ("varno", (0, 0)), + ("Downar", (0, 0)), + ("boxDr", (0, 0)), + ("lesseqqgtr;", (10891, 0)), + ("vl", (0, 0)), + ("uHa", (0, 0)), + ("osol;", (8856, 0)), + ("scaron", (0, 0)), + ("Ccedil", (199, 0)), + ("El", (0, 0)), + ("Coprod", (0, 0)), + ("divideontim", (0, 0)), + ("Nt", (0, 0)), + ("ss", (0, 0)), + ("lthree", (0, 0)), + ("utrif", (0, 0)), + ("RightTeeAr", (0, 0)), + ("SucceedsEqual", (0, 0)), + ("rotimes", (0, 0)), + ("gn", (0, 0)), + ("eogon", (0, 0)), + ("boxd", (0, 0)), + ("nLtv;", (8810, 824)), + ("nRigh", (0, 0)), + ("ShortRig", (0, 0)), + ("curlyeqs", (0, 0)), + ("Otime", (0, 0)), + ("UpD", (0, 0)), + ("theta;", (952, 0)), + ("Fouri", (0, 0)), + ("EmptySmallSquare;", (9723, 0)), + ("lpar;", (40, 0)), + ("lowb", (0, 0)), + ("SquareSuperse", (0, 0)), + ("Jf", (0, 0)), + ("gnappr", (0, 0)), + ("sear", (0, 0)), + ("NotLessEqua", (0, 0)), + ("DiacriticalDo", (0, 0)), + ("gtd", (0, 0)), + ("bowtie;", (8904, 0)), + ("precna", (0, 0)), + ("nprcue", (0, 0)), + ("Aring", (197, 0)), + ("Vb", (0, 0)), + ("ThickS", (0, 0)), + ("Lc", (0, 0)), + ("DiacriticalTild", (0, 0)), + ("TildeFullEqual", (0, 0)), + ("wc", (0, 0)), + ("Ff", (0, 0)), + ("dc", (0, 0)), + ("NotExists;", (8708, 0)), + ("atilde;", (227, 0)), + ("doteq;", (8784, 0)), + ("nvs", (0, 0)), + ("lbrack;", (91, 0)), + ("biguplus", (0, 0)), + ("hyphen", (0, 0)), + ("Scy", (0, 0)), + ("lsime", (0, 0)), + ("tb", (0, 0)), + ("intla", (0, 0)), + ("dst", (0, 0)), + ("back", (0, 0)), + ("DownBre", (0, 0)), + ("smile;", (8995, 0)), + ("ugra", (0, 0)), + ("Lced", (0, 0)), + ("H", (0, 0)), + ("urt", (0, 0)), + ("NotNest", (0, 0)), + ("precs", (0, 0)), + ("smallsetmi", (0, 0)), + ("DownRightTeeVec", (0, 0)), + ("Rrighta", (0, 0)), + ("Ycy;", (1067, 0)), + ("Oti", (0, 0)), + ("Xi;", (926, 0)), + ("leftarrow;", (8592, 0)), + ("ZH", (0, 0)), + ("permi", (0, 0)), + ("NotLessSlant", (0, 0)), + ("nopf", (0, 0)), + ("timesb", (0, 0)), + ("Zer", (0, 0)), + ("cupbrcap", (0, 0)), + ("LowerRi", (0, 0)), + ("late", (0, 0)), + ("InvisibleComma;", (8291, 0)), + ("eDD", (0, 0)), + ("softcy;", (1100, 0)), + ("nvrtrie;", (8885, 8402)), + ("xw", (0, 0)), + ("Tripl", (0, 0)), + ("rcub;", (125, 0)), + ("cudarrl", (0, 0)), + ("DoubleDownArrow;", (8659, 0)), + ("lag", (0, 0)), + ("ltlar", (0, 0)), + ("NoBre", (0, 0)), + ("Ecaron", (0, 0)), + ("lessapp", (0, 0)), + ("submu", (0, 0)), + ("wedbar", (0, 0)), + ("NestedGreaterG", (0, 0)), + ("RightDownVe", (0, 0)), + ("cu", (0, 0)), + ("hksearo", (0, 0)), + ("bigup", (0, 0)), + ("omic", (0, 0)), + ("aacut", (0, 0)), + ("notniva;", (8716, 0)), + ("dale", (0, 0)), + ("capbrcu", (0, 0)), + ("NotGreaterSlantEqu", (0, 0)), + ("atilde", (227, 0)), + ("wrea", (0, 0)), + ("imagp", (0, 0)), + ("Prec", (0, 0)), + ("otim", (0, 0)), + ("Nacute;", (323, 0)), + ("lesseqg", (0, 0)), + ("k", (0, 0)), + ("mod", (0, 0)), + ("Lleft", (0, 0)), + ("LessLess;", (10913, 0)), + ("pre;", (10927, 0)), + ("blk14;", (9617, 0)), + ("chcy;", (1095, 0)), + ("Integra", (0, 0)), + ("NotGreaterL", (0, 0)), + ("downa", (0, 0)), + ("gf", (0, 0)), + ("conint;", (8750, 0)), + ("thickap", (0, 0)), + ("vsubnE", (0, 0)), + ("boxuR", (0, 0)), + ("GreaterF", (0, 0)), + ("ETH", (208, 0)), + ("ced", (0, 0)), + ("gtcir", (0, 0)), + ("DoubleUpD", (0, 0)), + ("ulcorner", (0, 0)), + ("UpEqu", (0, 0)), + ("digamma;", (989, 0)), + ("rightsquigar", (0, 0)), + ("berno", (0, 0)), + ("divideo", (0, 0)), + ("digam", (0, 0)), + ("scir", (0, 0)), + ("exponent", (0, 0)), + ("apacir", (0, 0)), + ("i", (0, 0)), + ("LongLeftRightArrow", (0, 0)), + ("ngeqs", (0, 0)), + ("Cloc", (0, 0)), + ("pf", (0, 0)), + ("compfn", (0, 0)), + ("LeftTriangleEqual;", (8884, 0)), + ("wreath", (0, 0)), + ("boxVl", (0, 0)), + ("congdot", (0, 0)), + ("lstro", (0, 0)), + ("nopf;", (120159, 0)), + ("yacut", (0, 0)), + ("triplus", (0, 0)), + ("mapstol", (0, 0)), + ("Intersect", (0, 0)), + ("DiacriticalTi", (0, 0)), + ("utr", (0, 0)), + ("Omi", (0, 0)), + ("plussim;", (10790, 0)), + ("aopf;", (120146, 0)), + ("Oacute;", (211, 0)), + ("uplus", (0, 0)), + ("Tilde", (0, 0)), + ("ctd", (0, 0)), + ("div", (0, 0)), + ("gamm", (0, 0)), + ("NotHumpD", (0, 0)), + ("SquareS", (0, 0)), + ("ulcorner;", (8988, 0)), + ("succnapprox", (0, 0)), + ("shcy;", (1096, 0)), + ("MediumSpace;", (8287, 0)), + ("LeftTriangleEqual", (0, 0)), + ("iukcy", (0, 0)), + ("RightUpVector;", (8638, 0)), + ("bigodot;", (10752, 0)), + ("c", (0, 0)), + ("UpArrowDownArr", (0, 0)), + ("NotGreaterEqua", (0, 0)), + ("itild", (0, 0)), + ("Vopf;", (120141, 0)), + ("lvnE", (0, 0)), + ("lmoust;", (9136, 0)), + ("lotimes", (0, 0)), + ("numsp", (0, 0)), + ("sfr", (0, 0)), + ("subsetne", (0, 0)), + ("chi", (0, 0)), + ("boxVL;", (9571, 0)), + ("NotHump", (0, 0)), + ("ShortRightArro", (0, 0)), + ("xs", (0, 0)), + ("squa", (0, 0)), + ("Rarr", (0, 0)), + ("cirscir", (0, 0)), + ("intercal;", (8890, 0)), + ("UpTeeArr", (0, 0)), + ("Barwed", (0, 0)), + ("nsupset", (0, 0)), + ("Omeg", (0, 0)), + ("NewLine", (0, 0)), + ("LeftUpVector;", (8639, 0)), + ("Xfr;", (120091, 0)), + ("Tstr", (0, 0)), + ("nparallel", (0, 0)), + ("succapprox;", (10936, 0)), + ("subsub;", (10965, 0)), + ("lvertn", (0, 0)), + ("simgE;", (10912, 0)), + ("qsc", (0, 0)), + ("emacr;", (275, 0)), + ("LongL", (0, 0)), + ("longleftrightarrow", (0, 0)), + ("boxp", (0, 0)), + ("nesi", (0, 0)), + ("zf", (0, 0)), + ("Long", (0, 0)), + ("downharpoonlef", (0, 0)), + ("icy", (0, 0)), + ("LeftC", (0, 0)), + ("upupa", (0, 0)), + ("NotRigh", (0, 0)), + ("LeftFloor;", (8970, 0)), + ("Succe", (0, 0)), + ("box", (0, 0)), + ("cedi", (0, 0)), + ("PartialD;", (8706, 0)), + ("ora", (0, 0)), + ("UpArrowDownA", (0, 0)), + ("rmoustach", (0, 0)), + ("bNot", (0, 0)), + ("varp", (0, 0)), + ("lmido", (0, 0)), + ("Oacut", (0, 0)), + ("rig", (0, 0)), + ("vartri", (0, 0)), + ("odb", (0, 0)), + ("searr", (0, 0)), + ("xsqcu", (0, 0)), + ("SucceedsTild", (0, 0)), + ("sect;", (167, 0)), + ("tpr", (0, 0)), + ("gtreqq", (0, 0)), + ("Ab", (0, 0)), + ("isin", (0, 0)), + ("ntriang", (0, 0)), + ("leftharpoond", (0, 0)), + ("shy;", (173, 0)), + ("par", (0, 0)), + ("NotSubsetEqu", (0, 0)), + ("prcu", (0, 0)), + ("thet", (0, 0)), + ("UpTeeArro", (0, 0)), + ("kopf", (0, 0)), + ("LeftUpDow", (0, 0)), + ("cupbrcap;", (10824, 0)), + ("xlArr", (0, 0)), + ("Darr;", (8609, 0)), + ("DoubleVerticalBar;", (8741, 0)), + ("eqcir", (0, 0)), + ("qscr;", (120006, 0)), + ("looparrowleft", (0, 0)), + ("ltlarr;", (10614, 0)), + ("robr", (0, 0)), + ("cdot", (0, 0)), + ("integers", (0, 0)), + ("Iac", (0, 0)), + ("micr", (0, 0)), + ("LeftArrowRightAr", (0, 0)), + ("supn", (0, 0)), + ("RightDoubleBracket", (0, 0)), + ("olarr", (0, 0)), + ("larrs", (0, 0)), + ("utri", (0, 0)), + ("imped;", (437, 0)), + ("FilledVerySmal", (0, 0)), + ("leftrightharpoo", (0, 0)), + ("xrarr;", (10230, 0)), + ("olcros", (0, 0)), + ("sqcup", (0, 0)), + ("hercon;", (8889, 0)), + ("Em", (0, 0)), + ("prnsim", (0, 0)), + ("Nac", (0, 0)), + ("varrh", (0, 0)), + ("sfrown", (0, 0)), + ("dArr", (0, 0)), + ("longleftrightarrow;", (10231, 0)), + ("DownLeftTeeVector", (0, 0)), + ("NotSquareSub", (0, 0)), + ("NegativeVer", (0, 0)), + ("egsdot", (0, 0)), + ("rightrightarrows;", (8649, 0)), + ("sups", (0, 0)), + ("DownArrowBar;", (10515, 0)), + ("drc", (0, 0)), + ("nsube;", (8840, 0)), + ("fparti", (0, 0)), + ("mumap;", (8888, 0)), + ("Gdo", (0, 0)), + ("car", (0, 0)), + ("rotim", (0, 0)), + ("tilde;", (732, 0)), + ("sqc", (0, 0)), + ("yicy;", (1111, 0)), + ("nvHarr", (0, 0)), + ("Diam", (0, 0)), + ("ncar", (0, 0)), + ("lpar", (0, 0)), + ("Hc", (0, 0)), + ("Expo", (0, 0)), + ("Dagg", (0, 0)), + ("varsub", (0, 0)), + ("Sced", (0, 0)), + ("frac12", (189, 0)), + ("no", (0, 0)), + ("npart;", (8706, 824)), + ("lAar", (0, 0)), + ("bpr", (0, 0)), + ("oS;", (9416, 0)), + ("pru", (0, 0)), + ("harr", (0, 0)), + ("Gr", (0, 0)), + ("Cir", (0, 0)), + ("DJcy;", (1026, 0)), + ("zhcy;", (1078, 0)), + ("rightarrow", (0, 0)), + ("VerticalS", (0, 0)), + ("qop", (0, 0)), + ("ReverseEquilibrium", (0, 0)), + ("Vo", (0, 0)), + ("urcrop;", (8974, 0)), + ("TildeEqual;", (8771, 0)), + ("kcedil", (0, 0)), + ("Et", (0, 0)), + ("nLeftright", (0, 0)), + ("ReverseUpEquilib", (0, 0)), + ("tshcy", (0, 0)), + ("Uparr", (0, 0)), + ("angmsdae;", (10668, 0)), + ("Sqr", (0, 0)), + ("DownRi", (0, 0)), + ("Eta", (0, 0)), + ("succap", (0, 0)), + ("hyphe", (0, 0)), + ("Jsercy;", (1032, 0)), + ("GreaterEqualLess;", (8923, 0)), + ("ij", (0, 0)), + ("squarf;", (9642, 0)), + ("GreaterGre", (0, 0)), + ("OElig;", (338, 0)), + ("urcorne", (0, 0)), + ("LeftArr", (0, 0)), + ("Ecar", (0, 0)), + ("nles;", (10877, 824)), + ("pri", (0, 0)), + ("lessg", (0, 0)), + ("rbar", (0, 0)), + ("LessSl", (0, 0)), + ("md", (0, 0)), + ("DownBreve", (0, 0)), + ("succcurly", (0, 0)), + ("ncup", (0, 0)), + ("UnionP", (0, 0)), + ("HumpDownHump", (0, 0)), + ("sqcaps", (0, 0)), + ("NotNestedGreaterGre", (0, 0)), + ("triang", (0, 0)), + ("eqcol", (0, 0)), + ("oum", (0, 0)), + ("lbbrk;", (10098, 0)), + ("nsupsete", (0, 0)), + ("Icy", (0, 0)), + ("EN", (0, 0)), + ("nvltri", (0, 0)), + ("Uop", (0, 0)), + ("inte", (0, 0)), + ("darr", (0, 0)), + ("LeftArro", (0, 0)), + ("Diff", (0, 0)), + ("Empty", (0, 0)), + ("rangd;", (10642, 0)), + ("ln", (0, 0)), + ("Acir", (0, 0)), + ("Theta", (0, 0)), + ("Bscr;", (8492, 0)), + ("vfr;", (120115, 0)), + ("shortpara", (0, 0)), + ("curlywe", (0, 0)), + ("rarra", (0, 0)), + ("bigtriangledow", (0, 0)), + ("triminus;", (10810, 0)), + ("utdo", (0, 0)), + ("sme", (0, 0)), + ("LeftCeili", (0, 0)), + ("xcu", (0, 0)), + ("ge", (0, 0)), + ("smashp;", (10803, 0)), + ("dsc", (0, 0)), + ("twoheadleft", (0, 0)), + ("urtri", (0, 0)), + ("horb", (0, 0)), + ("upharpoonlef", (0, 0)), + ("lessdo", (0, 0)), + ("curvearrowrig", (0, 0)), + ("Ap", (0, 0)), + ("trad", (0, 0)), + ("LeftDownTeeVec", (0, 0)), + ("np", (0, 0)), + ("cirsci", (0, 0)), + ("prur", (0, 0)), + ("cirfnint", (0, 0)), + ("nbump;", (8782, 824)), + ("UpArrowD", (0, 0)), + ("GreaterFul", (0, 0)), + ("ntil", (0, 0)), + ("DoubleDow", (0, 0)), + ("Lst", (0, 0)), + ("GreaterEqual;", (8805, 0)), + ("mld", (0, 0)), + ("gtreql", (0, 0)), + ("thetas", (0, 0)), + ("Hopf", (0, 0)), + ("rrarr;", (8649, 0)), + ("napid", (0, 0)), + ("glj;", (10916, 0)), + ("nLeftarrow;", (8653, 0)), + ("emptyset;", (8709, 0)), + ("NotEqualTilde;", (8770, 824)), + ("angmsdad;", (10667, 0)), + ("njc", (0, 0)), + ("NotPrecedesSlantE", (0, 0)), + ("vrtri;", (8883, 0)), + ("Ws", (0, 0)), + ("prnap;", (10937, 0)), + ("nhArr;", (8654, 0)), + ("cuep", (0, 0)), + ("Cedill", (0, 0)), + ("Wopf;", (120142, 0)), + ("sigm", (0, 0)), + ("leftrightsq", (0, 0)), + ("nvlArr;", (10498, 0)), + ("jukcy;", (1108, 0)), + ("Gc", (0, 0)), + ("leftharpoondo", (0, 0)), + ("DoubleLeftA", (0, 0)), + ("Bum", (0, 0)), + ("Omicr", (0, 0)), + ("Uf", (0, 0)), + ("rdc", (0, 0)), + ("DownT", (0, 0)), + ("ropa", (0, 0)), + ("DoubleLong", (0, 0)), + ("Lmido", (0, 0)), + ("Bernoull", (0, 0)), + ("NotLeftTriangl", (0, 0)), + ("NotRightTriangleEqua", (0, 0)), + ("lparlt;", (10643, 0)), + ("HumpE", (0, 0)), + ("Becaus", (0, 0)), + ("female", (0, 0)), + ("Wed", (0, 0)), + ("LessGreater", (0, 0)), + ("LessE", (0, 0)), + ("phiv", (0, 0)), + ("LongLeftRightAr", (0, 0)), + ("", (0, 0)), + ("Gt", (0, 0)), + ("nsqsup", (0, 0)), + ("gr", (0, 0)), + ("ape", (0, 0)), + ("dagger", (0, 0)), + ("lrarr;", (8646, 0)), + ("Otimes;", (10807, 0)), + ("topbot", (0, 0)), + ("RightAngleB", (0, 0)), + ("precapprox", (0, 0)), + ("TSHcy;", (1035, 0)), + ("HorizontalLine", (0, 0)), + ("KJ", (0, 0)), + ("rightrightarr", (0, 0)), + ("rightrightarrows", (0, 0)), + ("bigcu", (0, 0)), + ("nVDa", (0, 0)), + ("RightVectorB", (0, 0)), + ("Rever", (0, 0)), + ("curvearrowle", (0, 0)), + ("vsubne", (0, 0)), + ("RightArro", (0, 0)), + ("gesle", (0, 0)), + ("Rcedi", (0, 0)), + ("gdot", (0, 0)), + ("GreaterL", (0, 0)), + ("Odblac;", (336, 0)), + ("NegativeVeryThinSpa", (0, 0)), + ("abre", (0, 0)), + ("backcong", (0, 0)), + ("Vbar", (0, 0)), + ("dotsq", (0, 0)), + ("mcomma", (0, 0)), + ("NotTil", (0, 0)), + ("NotVerticalBar", (0, 0)), + ("opar;", (10679, 0)), + ("rarrbfs", (0, 0)), + ("Lstrok", (0, 0)), + ("zfr;", (120119, 0)), + ("nrtrie;", (8941, 0)), + ("prof", (0, 0)), + ("odbl", (0, 0)), + ("UpArrowDo", (0, 0)), + ("UpEquili", (0, 0)), + ("uA", (0, 0)), + ("Mfr;", (120080, 0)), + ("lesseqq", (0, 0)), + ("Ur", (0, 0)), + ("supedot", (0, 0)), + ("mldr;", (8230, 0)), + ("succs", (0, 0)), + ("congdo", (0, 0)), + ("pr", (0, 0)), + ("LeftUpTeeVect", (0, 0)), + ("cularrp;", (10557, 0)), + ("lh", (0, 0)), + ("supplus;", (10944, 0)), + ("NotNestedGreater", (0, 0)), + ("leftrights", (0, 0)), + ("asc", (0, 0)), + ("Efr;", (120072, 0)), + ("utdot", (0, 0)), + ("omicron", (0, 0)), + ("YIcy;", (1031, 0)), + ("supsup;", (10966, 0)), + ("rfis", (0, 0)), + ("andd;", (10844, 0)), + ("nrAr", (0, 0)), + ("nwarro", (0, 0)), + ("eli", (0, 0)), + ("gacute;", (501, 0)), + ("NonBreakingSpace;", (160, 0)), + ("NotReverseEle", (0, 0)), + ("uf", (0, 0)), + ("nshortm", (0, 0)), + ("ltim", (0, 0)), + ("angr", (0, 0)), + ("uplus;", (8846, 0)), + ("part", (0, 0)), + ("RightArrowB", (0, 0)), + ("DoubleUpDownAr", (0, 0)), + ("LessL", (0, 0)), + ("Poincareplane;", (8460, 0)), + ("RightDoubleBrack", (0, 0)), + ("LeftA", (0, 0)), + ("ngeqslant;", (10878, 824)), + ("FilledSmallSq", (0, 0)), + ("uar", (0, 0)), + ("dharr", (0, 0)), + ("rf", (0, 0)), + ("MinusPlus;", (8723, 0)), + ("leftthree", (0, 0)), + ("NotGreaterSla", (0, 0)), + ("circlearrowrig", (0, 0)), + ("DoubleRig", (0, 0)), + ("cupcu", (0, 0)), + ("lparlt", (0, 0)), + ("bdq", (0, 0)), + ("Go", (0, 0)), + ("xi;", (958, 0)), + ("Lscr", (0, 0)), + ("ubreve", (0, 0)), + ("checkmar", (0, 0)), + ("LeftDoubleBra", (0, 0)), + ("NestedLes", (0, 0)), + ("rec", (0, 0)), + ("rlha", (0, 0)), + ("msc", (0, 0)), + ("CounterClockwiseCon", (0, 0)), + ("supsete", (0, 0)), + ("boxDl;", (9558, 0)), + ("hkswa", (0, 0)), + ("vDash;", (8872, 0)), + ("xca", (0, 0)), + ("DownLeftRi", (0, 0)), + ("seswa", (0, 0)), + ("mDDot", (0, 0)), + ("ubre", (0, 0)), + ("RightDownTeeVector", (0, 0)), + ("Gamma;", (915, 0)), + ("Wsc", (0, 0)), + ("Ofr", (0, 0)), + ("blacktriangledo", (0, 0)), + ("triangledo", (0, 0)), + ("lnapp", (0, 0)), + ("upuparrows;", (8648, 0)), + ("Kop", (0, 0)), + ("PrecedesTil", (0, 0)), + ("circledcirc", (0, 0)), + ("RightTriangle;", (8883, 0)), + ("copf;", (120148, 0)), + ("dar", (0, 0)), + ("sb", (0, 0)), + ("lvn", (0, 0)), + ("eqslantles", (0, 0)), + ("hkswaro", (0, 0)), + ("eDDo", (0, 0)), + ("CenterDo", (0, 0)), + ("LeftAngleB", (0, 0)), + ("in;", (8712, 0)), + ("LessEq", (0, 0)), + ("gnappro", (0, 0)), + ("LeftD", (0, 0)), + ("rad", (0, 0)), + ("Hscr;", (8459, 0)), + ("Circ", (0, 0)), + ("curlywedge", (0, 0)), + ("smalls", (0, 0)), + ("racut", (0, 0)), + ("loz", (0, 0)), + ("xhArr", (0, 0)), + ("DoubleUpDownArro", (0, 0)), + ("gtrless", (0, 0)), + ("DoubleLeftRightA", (0, 0)), + ("ZeroWi", (0, 0)), + ("Yfr;", (120092, 0)), + ("inodot", (0, 0)), + ("nshortparallel", (0, 0)), + ("curren", (164, 0)), + ("Uu", (0, 0)), + ("Lopf;", (120131, 0)), + ("Um", (0, 0)), + ("Del", (0, 0)), + ("langd;", (10641, 0)), + ("frac35;", (8535, 0)), + ("capdot", (0, 0)), + ("Dstro", (0, 0)), + ("smi", (0, 0)), + ("thetasym", (0, 0)), + ("szlig;", (223, 0)), + ("rtrif;", (9656, 0)), + ("NotLessSlan", (0, 0)), + ("ups", (0, 0)), + ("becaus", (0, 0)), + ("bbrktbrk;", (9142, 0)), + ("NegativeThickSpac", (0, 0)), + ("rarrh", (0, 0)), + ("Leftr", (0, 0)), + ("xoti", (0, 0)), + ("Union;", (8899, 0)), + ("ema", (0, 0)), + ("RightArrowBar", (0, 0)), + ("rced", (0, 0)), + ("hea", (0, 0)), + ("NotNestedLessLes", (0, 0)), + ("ltimes", (0, 0)), + ("itil", (0, 0)), + ("nsube", (0, 0)), + ("jsc", (0, 0)), + ("Cross", (0, 0)), + ("sdotb;", (8865, 0)), + ("NotDoubleVertical", (0, 0)), + ("NotVertic", (0, 0)), + ("drbkaro", (0, 0)), + ("sqsup", (0, 0)), + ("Zeta;", (918, 0)), + ("supsetneq", (0, 0)), + ("UpArrowDow", (0, 0)), + ("eqci", (0, 0)), + ("uti", (0, 0)), + ("UpTeeA", (0, 0)), + ("varpropto;", (8733, 0)), + ("NotTildeFullEqua", (0, 0)), + ("Dot", (0, 0)), + ("gver", (0, 0)), + ("cong", (0, 0)), + ("measuredangle;", (8737, 0)), + ("FilledSmal", (0, 0)), + ("zeet", (0, 0)), + ("rdquo", (0, 0)), + ("Proportion;", (8759, 0)), + ("ldquor", (0, 0)), + ("Lcaron;", (317, 0)), + ("ldsh", (0, 0)), + ("rarrfs", (0, 0)), + ("PlusMi", (0, 0)), + ("omicr", (0, 0)), + ("RoundImplies;", (10608, 0)), + ("UpDownAr", (0, 0)), + ("lrcorner", (0, 0)), + ("roplus", (0, 0)), + ("uma", (0, 0)), + ("bigod", (0, 0)), + ("gap", (0, 0)), + ("NotSup", (0, 0)), + ("LeftAn", (0, 0)), + ("Oc", (0, 0)), + ("sdotb", (0, 0)), + ("barwed", (0, 0)), + ("lnappr", (0, 0)), + ("fora", (0, 0)), + ("Kfr;", (120078, 0)), + ("rightharpoo", (0, 0)), + ("Therefor", (0, 0)), + ("au", (0, 0)), + ("daleth", (0, 0)), + ("leftrightsquigarr", (0, 0)), + ("subsetneq", (0, 0)), + ("iexcl;", (161, 0)), + ("NegativeVery", (0, 0)), + ("plusd", (0, 0)), + ("qprime;", (8279, 0)), + ("subra", (0, 0)), + ("hst", (0, 0)), + ("vr", (0, 0)), + ("parall", (0, 0)), + ("Eu", (0, 0)), + ("TSH", (0, 0)), + ("trip", (0, 0)), + ("ssmil", (0, 0)), + ("cue", (0, 0)), + ("tint", (0, 0)), + ("eqsim;", (8770, 0)), + ("Ucirc;", (219, 0)), + ("tdot", (0, 0)), + ("lnsim", (0, 0)), + ("Wopf", (0, 0)), + ("NotLeftTriangleB", (0, 0)), + ("Imagi", (0, 0)), + ("backpri", (0, 0)), + ("sube", (0, 0)), + ("bigcir", (0, 0)), + ("ngtr", (0, 0)), + ("mode", (0, 0)), + ("am", (0, 0)), + ("trisb;", (10701, 0)), + ("DoubleLongLeftAr", (0, 0)), + ("rationals", (0, 0)), + ("GreaterLe", (0, 0)), + ("capbrcup;", (10825, 0)), + ("NotLessSlantEq", (0, 0)), + ("Emp", (0, 0)), + ("InvisibleTime", (0, 0)), + ("ast;", (42, 0)), + ("therefore", (0, 0)), + ("Bac", (0, 0)), + ("LessGreater;", (8822, 0)), + ("Propor", (0, 0)), + ("Fopf;", (120125, 0)), + ("Eacute", (201, 0)), + ("rbrkslu", (0, 0)), + ("lowba", (0, 0)), + ("gg;", (8811, 0)), + ("Hac", (0, 0)), + ("ohb", (0, 0)), + ("lg", (0, 0)), + ("Longrigh", (0, 0)), + ("angmsdag", (0, 0)), + ("backsimeq", (0, 0)), + ("elinte", (0, 0)), + ("rdldhar", (0, 0)), + ("thicksim", (0, 0)), + ("udbla", (0, 0)), + ("malte", (0, 0)), + ("gbr", (0, 0)), + ("supp", (0, 0)), + ("Downa", (0, 0)), + ("NotTi", (0, 0)), + ("mo", (0, 0)), + ("ngeqslan", (0, 0)), + ("nshortparall", (0, 0)), + ("swArr", (0, 0)), + ("Ups", (0, 0)), + ("triangler", (0, 0)), + ("nRightarro", (0, 0)), + ("nu;", (957, 0)), + ("LessSla", (0, 0)), + ("cced", (0, 0)), + ("SucceedsTilde;", (8831, 0)), + ("gesdoto", (0, 0)), + ("Longlef", (0, 0)), + ("Egrave", (200, 0)), + ("ShortUpArro", (0, 0)), + ("duh", (0, 0)), + ("Therefore", (0, 0)), + ("blacktriangledown", (0, 0)), + ("nhar", (0, 0)), + ("Gsc", (0, 0)), + ("nleftrighta", (0, 0)), + ("csupe;", (10962, 0)), + ("nRig", (0, 0)), + ("ofc", (0, 0)), + ("gscr", (0, 0)), + ("set", (0, 0)), + ("RightUpVec", (0, 0)), + ("Vdashl", (0, 0)), + ("prod;", (8719, 0)), + ("Fil", (0, 0)), + ("jfr;", (120103, 0)), + ("sdote;", (10854, 0)), + ("nshortmi", (0, 0)), + ("naturals;", (8469, 0)), + ("Zo", (0, 0)), + ("rightarrowt", (0, 0)), + ("lozen", (0, 0)), + ("parsi", (0, 0)), + ("emptyv;", (8709, 0)), + ("Count", (0, 0)), + ("NotLessGreater", (0, 0)), + ("NotSquareSupersetEqua", (0, 0)), + ("angrt;", (8735, 0)), + ("epsil", (0, 0)), + ("crar", (0, 0)), + ("LeftCeilin", (0, 0)), + ("LeftArrowRight", (0, 0)), + ("Vdashl;", (10982, 0)), + ("iiota", (0, 0)), + ("LeftArrow", (0, 0)), + ("LowerRightArr", (0, 0)), + ("scirc", (0, 0)), + ("Hil", (0, 0)), + ("duar", (0, 0)), + ("Rightarrow;", (8658, 0)), + ("Mc", (0, 0)), + ("SucceedsSlantE", (0, 0)), + ("Af", (0, 0)), + ("ran", (0, 0)), + ("circlearrowr", (0, 0)), + ("natural;", (9838, 0)), + ("VerticalTilde", (0, 0)), + ("NotLessT", (0, 0)), + ("esim", (0, 0)), + ("td", (0, 0)), + ("boxminus;", (8863, 0)), + ("rightthreeti", (0, 0)), + ("tridot;", (9708, 0)), + ("gtreqle", (0, 0)), + ("LeftUpVector", (0, 0)), + ("boxvR", (0, 0)), + ("twoheadrigh", (0, 0)), + ("OverParenth", (0, 0)), + ("roarr", (0, 0)), + ("epsiv", (0, 0)), + ("There", (0, 0)), + ("rcy", (0, 0)), + ("tca", (0, 0)), + ("DoubleLongRight", (0, 0)), + ("Yacut", (0, 0)), + ("CirclePl", (0, 0)), + ("nLeftrigh", (0, 0)), + ("dscy", (0, 0)), + ("laempt", (0, 0)), + ("mnp", (0, 0)), + ("upup", (0, 0)), + ("isi", (0, 0)), + ("bbrktbr", (0, 0)), + ("NotPreced", (0, 0)), + ("NegativeThickS", (0, 0)), + ("supsetneqq", (0, 0)), + ("Lacute;", (313, 0)), + ("Euml", (203, 0)), + ("Egrave;", (200, 0)), + ("zwj", (0, 0)), + ("gnE;", (8809, 0)), + ("fcy", (0, 0)), + ("ape;", (8778, 0)), + ("demp", (0, 0)), + ("DownLeft", (0, 0)), + ("nbsp;", (160, 0)), + ("angs", (0, 0)), + ("ltri;", (9667, 0)), + ("natur", (0, 0)), + ("lessappro", (0, 0)), + ("frac5", (0, 0)), + ("FilledVerySmallSquare", (0, 0)), + ("qprime", (0, 0)), + ("aogon", (0, 0)), + ("wo", (0, 0)), + ("vArr;", (8661, 0)), + ("omicro", (0, 0)), + ("HilbertSpa", (0, 0)), + ("rightarrowtai", (0, 0)), + ("ifr", (0, 0)), + ("infintie", (0, 0)), + ("ti", (0, 0)), + ("Cscr", (0, 0)), + ("ot", (0, 0)), + ("dt", (0, 0)), + ("ecirc;", (234, 0)), + ("marker;", (9646, 0)), + ("NotPrecedesSlantEqua", (0, 0)), + ("oop", (0, 0)), + ("Or;", (10836, 0)), + ("le;", (8804, 0)), + ("puncs", (0, 0)), + ("timesbar;", (10801, 0)), + ("Cont", (0, 0)), + ("Ome", (0, 0)), + ("lvnE;", (8808, 65024)), + ("w", (0, 0)), + ("sigmav", (0, 0)), + ("colon", (0, 0)), + ("Zca", (0, 0)), + ("leftharpoondown;", (8637, 0)), + ("ic;", (8291, 0)), + ("Eca", (0, 0)), + ("Egrav", (0, 0)), + ("larrb;", (8676, 0)), + ("boxul;", (9496, 0)), + ("upuparro", (0, 0)), + ("Sopf;", (120138, 0)), + ("VerticalTil", (0, 0)), + ("eqs", (0, 0)), + ("DoubleDownArr", (0, 0)), + ("NotP", (0, 0)), + ("Fcy;", (1060, 0)), + ("bkaro", (0, 0)), + ("UnderBr", (0, 0)), + ("lt;", (60, 0)), + ("Nu;", (925, 0)), + ("ReverseElement", (0, 0)), + ("micro", (181, 0)), + ("Atild", (0, 0)), + ("exponen", (0, 0)), + ("egra", (0, 0)), + ("pluscir", (0, 0)), + ("perten", (0, 0)), + ("ShortLeftArro", (0, 0)), + ("LeftUpD", (0, 0)), + ("NotPrece", (0, 0)), + ("NotCongruent", (0, 0)), + ("NotLessTild", (0, 0)), + ("trianglelefteq", (0, 0)), + ("RightArrowLeftArrow", (0, 0)), + ("notinvb", (0, 0)), + ("DotEqu", (0, 0)), + ("NotRightTriangleEqual;", (8941, 0)), + ("Lf", (0, 0)), + ("Because;", (8757, 0)), + ("RightTeeArrow;", (8614, 0)), + ("NotLessTil", (0, 0)), + ("bumpe;", (8783, 0)), + ("ijlig;", (307, 0)), + ("Ysc", (0, 0)), + ("theref", (0, 0)), + ("supnE;", (10956, 0)), + ("DScy", (0, 0)), + ("Nop", (0, 0)), + ("Uogo", (0, 0)), + ("eqsi", (0, 0)), + ("CapitalDifferentia", (0, 0)), + ("laempty", (0, 0)), + ("Bernou", (0, 0)), + ("e", (0, 0)), + ("prE", (0, 0)), + ("zs", (0, 0)), + ("csupe", (0, 0)), + ("Ope", (0, 0)), + ("block", (0, 0)), + ("NotLeftTriangle;", (8938, 0)), + ("xopf", (0, 0)), + ("NotLessTilde;", (8820, 0)), + ("ls", (0, 0)), + ("intlarh", (0, 0)), + ("ulcrop", (0, 0)), + ("OverParenthes", (0, 0)), + ("triangled", (0, 0)), + ("Tscr", (0, 0)), + ("rightlef", (0, 0)), + ("SmallCir", (0, 0)), + ("LeftArrowRigh", (0, 0)), + ("sqca", (0, 0)), + ("cirsc", (0, 0)), + ("NotNes", (0, 0)), + ("odblac", (0, 0)), + ("the", (0, 0)), + ("boxbox;", (10697, 0)), + ("LeftAngleBracke", (0, 0)), + ("Col", (0, 0)), + ("Yscr;", (119988, 0)), + ("Ra", (0, 0)), + ("dzi", (0, 0)), + ("Bfr", (0, 0)), + ("nltri;", (8938, 0)), + ("Igr", (0, 0)), + ("TildeF", (0, 0)), + ("Squar", (0, 0)), + ("Sacut", (0, 0)), + ("divi", (0, 0)), + ("Capita", (0, 0)), + ("wscr;", (120012, 0)), + ("Wf", (0, 0)), + ("NotLessSlantEqua", (0, 0)), + ("dbl", (0, 0)), + ("rcei", (0, 0)), + ("rightleftarrow", (0, 0)), + ("gtrdot", (0, 0)), + ("gtquest", (0, 0)), + ("lstr", (0, 0)), + ("VerticalT", (0, 0)), + ("rhard", (0, 0)), + ("NotLessLess;", (8810, 824)), + ("cac", (0, 0)), + ("nfr;", (120107, 0)), + ("caron;", (711, 0)), + ("maltes", (0, 0)), + ("NewLi", (0, 0)), + ("rlhar;", (8652, 0)), + ("uparrow;", (8593, 0)), + ("CounterClockwiseContourIntegral", (0, 0)), + ("Apply", (0, 0)), + ("ncong;", (8775, 0)), + ("topbo", (0, 0)), + ("V", (0, 0)), + ("dtri", (0, 0)), + ("ubrev", (0, 0)), + ("ff", (0, 0)), + ("LeftDow", (0, 0)), + ("lfisht", (0, 0)), + ("emptyv", (0, 0)), + ("DiacriticalAcut", (0, 0)), + ("nrightarr", (0, 0)), + ("upharp", (0, 0)), + ("Ci", (0, 0)), + ("uc", (0, 0)), + ("awint;", (10769, 0)), + ("ci", (0, 0)), + ("scap;", (10936, 0)), + ("ope", (0, 0)), + ("oplu", (0, 0)), + ("Neg", (0, 0)), + ("LowerRightArro", (0, 0)), + ("SupersetE", (0, 0)), + ("Yopf;", (120144, 0)), + ("multi", (0, 0)), + ("Equilibrium", (0, 0)), + ("Less", (0, 0)), + ("NegativeThickSpa", (0, 0)), + ("sl", (0, 0)), + ("nshortmid;", (8740, 0)), + ("OverBar", (0, 0)), + ("NestedGreate", (0, 0)), + ("Ka", (0, 0)), + ("Oacute", (211, 0)), + ("prE;", (10931, 0)), + ("ReverseUpEquilibrium;", (10607, 0)), + ("Updownar", (0, 0)), + ("simplus;", (10788, 0)), + ("boxti", (0, 0)), + ("vsupn", (0, 0)), + ("FilledVerySmall", (0, 0)), + ("ol", (0, 0)), + ("marker", (0, 0)), + ("df", (0, 0)), + ("aelig;", (230, 0)), + ("longrightar", (0, 0)), + ("upsil", (0, 0)), + ("squarf", (0, 0)), + ("nVdash;", (8878, 0)), + ("do", (0, 0)), + ("Up", (0, 0)), + ("daleth;", (8504, 0)), + ("capd", (0, 0)), + ("isinv;", (8712, 0)), + ("NotNestedGreaterGreater;", (10914, 824)), + ("Tri", (0, 0)), + ("E", (0, 0)), + ("nLeftrightar", (0, 0)), + ("Medi", (0, 0)), + ("LessEqualGre", (0, 0)), + ("Rightarro", (0, 0)), + ("boxV;", (9553, 0)), + ("gvertneqq", (0, 0)), + ("ast", (0, 0)), + ("NotRight", (0, 0)), + ("asy", (0, 0)), + ("profal", (0, 0)), + ("go", (0, 0)), + ("Copf;", (8450, 0)), + ("nrighta", (0, 0)), + ("RightUpDo", (0, 0)), + ("notnivc;", (8957, 0)), + ("thic", (0, 0)), + ("Not", (0, 0)), + ("wedgeq", (0, 0)), + ("orderof", (0, 0)), + ("scnsim", (0, 0)), + ("Laplacetrf;", (8466, 0)), + ("subne;", (8842, 0)), + ("ffli", (0, 0)), + ("SquareInter", (0, 0)), + ("Vvd", (0, 0)), + ("lds", (0, 0)), + ("rarrc", (0, 0)), + ("NotLeftTriangleBa", (0, 0)), + ("Ber", (0, 0)), + ("Op", (0, 0)), + ("KH", (0, 0)), + ("lAt", (0, 0)), + ("therefor", (0, 0)), + ("eci", (0, 0)), + ("llhar", (0, 0)), + ("phm", (0, 0)), + ("gesdot;", (10880, 0)), + ("xni", (0, 0)), + ("nrigh", (0, 0)), + ("varsup", (0, 0)), + ("LessFullEqua", (0, 0)), + ("ReverseUpEquilibriu", (0, 0)), + ("boxhD", (0, 0)), + ("plus;", (43, 0)), + ("lowbar", (0, 0)), + ("Omega;", (937, 0)), + ("notindot", (0, 0)), + ("lat;", (10923, 0)), + ("leftrightsquigarro", (0, 0)), + ("Mopf", (0, 0)), + ("odso", (0, 0)), + ("srarr", (0, 0)), + ("ssmile", (0, 0)), + ("lrarr", (0, 0)), + ("emsp1", (0, 0)), + ("rr", (0, 0)), + ("measured", (0, 0)), + ("hoo", (0, 0)), + ("GreaterSlantEqual", (0, 0)), + ("ngeqslant", (0, 0)), + ("ndash;", (8211, 0)), + ("lns", (0, 0)), + ("shy", (173, 0)), + ("triminu", (0, 0)), + ("Oum", (0, 0)), + ("updownarr", (0, 0)), + ("lrt", (0, 0)), + ("ocir;", (8858, 0)), + ("DoubleVe", (0, 0)), + ("Gcedil;", (290, 0)), + ("nleft", (0, 0)), + ("gesc", (0, 0)), + ("bigwe", (0, 0)), + ("twoheadr", (0, 0)), + ("drbka", (0, 0)), + ("GreaterLess;", (8823, 0)), + ("NotDou", (0, 0)), + ("comp;", (8705, 0)), + ("Tcy", (0, 0)), + ("geq", (0, 0)), + ("Cconi", (0, 0)), + ("nsupse", (0, 0)), + ("LeftDownVectorBar", (0, 0)), + ("RightUpV", (0, 0)), + ("Eogon", (0, 0)), + ("suplarr", (0, 0)), + ("LeftRightArrow;", (8596, 0)), + ("topf;", (120165, 0)), + ("Zero", (0, 0)), + ("uharr;", (8638, 0)), + ("rar", (0, 0)), + ("longleftarr", (0, 0)), + ("OpenCurlyDoubleQuot", (0, 0)), + ("lmou", (0, 0)), + ("nleqslant;", (10877, 824)), + ("Vertical", (0, 0)), + ("boxdL", (0, 0)), + ("yopf", (0, 0)), + ("Congru", (0, 0)), + ("gesdot", (0, 0)), + ("boxDr;", (9555, 0)), + ("NotSqu", (0, 0)), + ("ntrianglerig", (0, 0)), + ("CloseCurlyDoubleQ", (0, 0)), + ("RightArrow", (0, 0)), + ("xut", (0, 0)), + ("ltla", (0, 0)), + ("Jc", (0, 0)), + ("zo", (0, 0)), + ("Racut", (0, 0)), + ("Jcy", (0, 0)), + ("EmptySm", (0, 0)), + ("eDot;", (8785, 0)), + ("trpezium;", (9186, 0)), + ("rdld", (0, 0)), + ("VerticalSeparato", (0, 0)), + ("ka", (0, 0)), + ("Sigma", (0, 0)), + ("RightTeeVector;", (10587, 0)), + ("xwed", (0, 0)), + ("DoubleUpDownArrow", (0, 0)), + ("CirclePlus;", (8853, 0)), + ("xopl", (0, 0)), + ("RightAng", (0, 0)), + ("bumpe", (0, 0)), + ("Chi;", (935, 0)), + ("rfish", (0, 0)), + ("nwarhk", (0, 0)), + ("fjli", (0, 0)), + ("rarrw;", (8605, 0)), + ("supseteqq", (0, 0)), + ("bsemi", (0, 0)), + ("DoubleRightArrow", (0, 0)), + ("robrk;", (10215, 0)), + ("cscr;", (119992, 0)), + ("boxvH", (0, 0)), + ("egrav", (0, 0)), + ("Yacu", (0, 0)), + ("roar", (0, 0)), + ("OpenCurlyQuote;", (8216, 0)), + ("Yop", (0, 0)), + ("subE", (0, 0)), + ("LeftRightVe", (0, 0)), + ("loo", (0, 0)), + ("rarrc;", (10547, 0)), + ("cupd", (0, 0)), + ("upu", (0, 0)), + ("xupl", (0, 0)), + ("rightthreetimes", (0, 0)), + ("KJcy;", (1036, 0)), + ("GreaterEqu", (0, 0)), + ("Med", (0, 0)), + ("NotSucc", (0, 0)), + ("bka", (0, 0)), + ("nrtri", (0, 0)), + ("qp", (0, 0)), + ("HilbertSpac", (0, 0)), + ("vp", (0, 0)), + ("cupo", (0, 0)), + ("Ufr;", (120088, 0)), + ("sub", (0, 0)), + ("rdldhar;", (10601, 0)), + ("otilde;", (245, 0)), + ("maltese", (0, 0)), + ("Scaron", (0, 0)), + ("Zacu", (0, 0)), + ("rbarr", (0, 0)), + ("bprim", (0, 0)), + ("loplus;", (10797, 0)), + ("tbrk", (0, 0)), + ("epsilon;", (949, 0)), + ("uml;", (168, 0)), + ("nparsl;", (11005, 8421)), + ("Nce", (0, 0)), + ("UpEquilibri", (0, 0)), + ("CounterCloc", (0, 0)), + ("leqq;", (8806, 0)), + ("SucceedsSlantEqu", (0, 0)), + ("sced", (0, 0)), + ("dotplus;", (8724, 0)), + ("REG", (174, 0)), + ("Omacr", (0, 0)), + ("trpeziu", (0, 0)), + ("LeftTee;", (8867, 0)), + ("UnderParent", (0, 0)), + ("UpperLeftArrow;", (8598, 0)), + ("DownArrowUpArrow;", (8693, 0)), + ("eD", (0, 0)), + ("lagra", (0, 0)), + ("spa", (0, 0)), + ("sscr;", (120008, 0)), + ("ETH;", (208, 0)), + ("rbarr;", (10509, 0)), + ("phiv;", (981, 0)), + ("Cedilla", (0, 0)), + ("andslope;", (10840, 0)), + ("slarr", (0, 0)), + ("angzarr;", (9084, 0)), + ("varthe", (0, 0)), + ("preccurly", (0, 0)), + ("triangledown", (0, 0)), + ("Sta", (0, 0)), + ("leftrightarrow", (0, 0)), + ("therefo", (0, 0)), + ("imagline", (0, 0)), + ("Udblac;", (368, 0)), + ("elint", (0, 0)), + ("uhb", (0, 0)), + ("NotSucceedsSlan", (0, 0)), + ("larrfs;", (10525, 0)), + ("Ze", (0, 0)), + ("varprop", (0, 0)), + ("varphi", (0, 0)), + ("lcaro", (0, 0)), + ("bre", (0, 0)), + ("dharr;", (8642, 0)), + ("Inters", (0, 0)), + ("ffllig;", (64260, 0)), + ("int", (0, 0)), + ("Implies", (0, 0)), + ("iecy", (0, 0)), + ("NotNestedGreaterGreater", (0, 0)), + ("csube;", (10961, 0)), + ("DDotrah", (0, 0)), + ("blacktriangleright", (0, 0)), + ("rsquo", (0, 0)), + ("Qscr;", (119980, 0)), + ("RightFloor;", (8971, 0)), + ("NotCupCap", (0, 0)), + ("bs", (0, 0)), + ("FilledVe", (0, 0)), + ("straig", (0, 0)), + ("ecaro", (0, 0)), + ("NotT", (0, 0)), + ("langle", (0, 0)), + ("Ga", (0, 0)), + ("kf", (0, 0)), + ("Wcirc", (0, 0)), + ("boxvL;", (9569, 0)), + ("qin", (0, 0)), + ("hercon", (0, 0)), + ("NotLessGre", (0, 0)), + ("LeftR", (0, 0)), + ("VerticalSepar", (0, 0)), + ("NegativeThinSp", (0, 0)), + ("Greate", (0, 0)), + ("jcirc;", (309, 0)), + ("ldquo", (0, 0)), + ("uphar", (0, 0)), + ("lambda", (0, 0)), + ("neArr", (0, 0)), + ("lbarr;", (10508, 0)), + ("downharpoonright", (0, 0)), + ("Lcaro", (0, 0)), + ("SquareUn", (0, 0)), + ("lp", (0, 0)), + ("varsupset", (0, 0)), + ("fr", (0, 0)), + ("ncong", (0, 0)), + ("Dcy;", (1044, 0)), + ("DownA", (0, 0)), + ("DiacriticalTilde", (0, 0)), + ("ReverseEquil", (0, 0)), + ("NotSucceedsSlantEqual;", (8929, 0)), + ("eqcolo", (0, 0)), + ("DoubleContourIntegr", (0, 0)), + ("HumpD", (0, 0)), + ("questeq", (0, 0)), + ("cem", (0, 0)), + ("Dashv", (0, 0)), + ("parallel", (0, 0)), + ("rightleftharpoon", (0, 0)), + ("ClockwiseConto", (0, 0)), + ("NotPrecedesEqu", (0, 0)), + ("DownLeftTee", (0, 0)), + ("OverBrack", (0, 0)), + ("NotEleme", (0, 0)), + ("nf", (0, 0)), + ("Hu", (0, 0)), + ("intc", (0, 0)), + ("Jser", (0, 0)), + ("circledS;", (9416, 0)), + ("Gamm", (0, 0)), + ("iqu", (0, 0)), + ("Oacu", (0, 0)), + ("divonx;", (8903, 0)), + ("lessapprox;", (10885, 0)), + ("orar", (0, 0)), + ("TildeFull", (0, 0)), + ("ShortLeftArrow;", (8592, 0)), + ("ie", (0, 0)), + ("NotRig", (0, 0)), + ("Pscr;", (119979, 0)), + ("oso", (0, 0)), + ("alef", (0, 0)), + ("pou", (0, 0)), + ("NotRightTriangle;", (8939, 0)), + ("prnap", (0, 0)), + ("da", (0, 0)), + ("RightArrowLeftA", (0, 0)), + ("utild", (0, 0)), + ("ReverseEl", (0, 0)), + ("scE", (0, 0)), + ("duhar", (0, 0)), + ("Ycir", (0, 0)), + ("NotSquareSubsetEqua", (0, 0)), + ("LongLeftRightArr", (0, 0)), + ("ShortD", (0, 0)), + ("male;", (9794, 0)), + ("sta", (0, 0)), + ("lharul;", (10602, 0)), + ("dscr;", (119993, 0)), + ("VerticalLine;", (124, 0)), + ("RightDouble", (0, 0)), + ("NotRightTriangleE", (0, 0)), + ("Close", (0, 0)), + ("perio", (0, 0)), + ("subsub", (0, 0)), + ("iu", (0, 0)), + ("gtreqqles", (0, 0)), + ("Leftrighta", (0, 0)), + ("caret;", (8257, 0)), + ("smallsetm", (0, 0)), + ("coprod", (0, 0)), + ("ipr", (0, 0)), + ("ta", (0, 0)), + ("Hcirc;", (292, 0)), + ("rfr", (0, 0)), + ("downharpoo", (0, 0)), + ("Uc", (0, 0)), + ("NotSupers", (0, 0)), + ("xfr", (0, 0)), + ("xfr;", (120117, 0)), + ("downharpoonrig", (0, 0)), + ("tced", (0, 0)), + ("barwed;", (8965, 0)), + ("lfis", (0, 0)), + ("comple", (0, 0)), + ("CounterClockwiseContourIn", (0, 0)), + ("gsiml", (0, 0)), + ("scpolint", (0, 0)), + ("NotGreaterSlantEqua", (0, 0)), + ("OpenCurlyDou", (0, 0)), + ("Nti", (0, 0)), + ("lstrok", (0, 0)), + ("NotTildeEqual;", (8772, 0)), + ("rightleftarro", (0, 0)), + ("plussim", (0, 0)), + ("subsi", (0, 0)), + ("SupersetEq", (0, 0)), + ("egrave;", (232, 0)), + ("risingdots", (0, 0)), + ("DifferentialD;", (8518, 0)), + ("omin", (0, 0)), + ("righ", (0, 0)), + ("succne", (0, 0)), + ("DoubleR", (0, 0)), + ("ratio;", (8758, 0)), + ("sca", (0, 0)), + ("NotLessEqu", (0, 0)), + ("NestedLessLes", (0, 0)), + ("LeftRightVector;", (10574, 0)), + ("ldq", (0, 0)), + ("gsime", (0, 0)), + ("f", (0, 0)), + ("zca", (0, 0)), + ("downdown", (0, 0)), + ("DownLeftV", (0, 0)), + ("supne", (0, 0)), + ("ni;", (8715, 0)), + ("Jukc", (0, 0)), + ("Acirc;", (194, 0)), + ("bnequ", (0, 0)), + ("LeftTriangleEqua", (0, 0)), + ("LongR", (0, 0)), + ("Racute", (0, 0)), + ("triplus;", (10809, 0)), + ("NonBreakingSpa", (0, 0)), + ("sq", (0, 0)), + ("triangleri", (0, 0)), + ("nis", (0, 0)), + ("Doubl", (0, 0)), + ("nsqsub", (0, 0)), + ("longle", (0, 0)), + ("nlsim;", (8820, 0)), + ("cfr", (0, 0)), + ("AElig;", (198, 0)), + ("LeftVectorBar;", (10578, 0)), + ("tprime;", (8244, 0)), + ("nmid", (0, 0)), + ("LeftFl", (0, 0)), + ("NotGreaterEqual", (0, 0)), + ("DownTe", (0, 0)), + ("Ubr", (0, 0)), + ("ascr", (0, 0)), + ("esdot", (0, 0)), + ("ropar;", (10630, 0)), + ("LowerRightArrow;", (8600, 0)), + ("sube;", (8838, 0)), + ("mumap", (0, 0)), + ("nca", (0, 0)), + ("ShortUpA", (0, 0)), + ("RightUpTeeVecto", (0, 0)), + ("dow", (0, 0)), + ("vartria", (0, 0)), + ("NotDoubleVerticalB", (0, 0)), + ("LeftDo", (0, 0)), + ("xn", (0, 0)), + ("ws", (0, 0)), + ("yi", (0, 0)), + ("luruh", (0, 0)), + ("heartsuit;", (9829, 0)), + ("olt", (0, 0)), + ("NestedLessL", (0, 0)), + ("NotReverseE", (0, 0)), + ("REG;", (174, 0)), + ("sqs", (0, 0)), + ("geqslan", (0, 0)), + ("precnapp", (0, 0)), + ("FilledVery", (0, 0)), + ("bigot", (0, 0)), + ("rAt", (0, 0)), + ("leftrighthar", (0, 0)), + ("gesdoto;", (10882, 0)), + ("LeftUpVectorB", (0, 0)), + ("Pscr", (0, 0)), + ("umacr", (0, 0)), + ("rati", (0, 0)), + ("Pfr", (0, 0)), + ("capand;", (10820, 0)), + ("thicks", (0, 0)), + ("varka", (0, 0)), + ("Mf", (0, 0)), + ("subplu", (0, 0)), + ("gtreqql", (0, 0)), + ("dd", (0, 0)), + ("complexes", (0, 0)), + ("ubr", (0, 0)), + ("xrarr", (0, 0)), + ("phmmat;", (8499, 0)), + ("UpArrowBar", (0, 0)), + ("subsetneqq", (0, 0)), + ("nparsl", (0, 0)), + ("raquo;", (187, 0)), + ("Uarr;", (8607, 0)), + ("homth", (0, 0)), + ("uuarr", (0, 0)), + ("Supset", (0, 0)), + ("triangleq;", (8796, 0)), + ("tscr", (0, 0)), + ("DownBr", (0, 0)), + ("LessGre", (0, 0)), + ("NotDo", (0, 0)), + ("OpenCurlyDoubleQuo", (0, 0)), + ("Fcy", (0, 0)), + ("eparsl", (0, 0)), + ("Escr;", (8496, 0)), + ("bottom;", (8869, 0)), + ("Fsc", (0, 0)), + ("curlyw", (0, 0)), + ("ShortU", (0, 0)), + ("NestedL", (0, 0)), + ("hookrigh", (0, 0)), + ("sdot;", (8901, 0)), + ("gtrdo", (0, 0)), + ("DoubleLeftTe", (0, 0)), + ("iacute;", (237, 0)), + ("leftright", (0, 0)), + ("NotPrecedesSlan", (0, 0)), + ("Omega", (0, 0)), + ("ovba", (0, 0)), + ("sstar", (0, 0)), + ("ohm;", (937, 0)), + ("Lambda", (0, 0)), + ("nleq", (0, 0)), + ("ges", (0, 0)), + ("LeftAngleBrack", (0, 0)), + ("gsim", (0, 0)), + ("NotTilde", (0, 0)), + ("nvDash;", (8877, 0)), + ("CounterClockwiseC", (0, 0)), + ("lne;", (10887, 0)), + ("NotCongruen", (0, 0)), + ("twoheadrightarro", (0, 0)), + ("re", (0, 0)), + ("curv", (0, 0)), + ("reals", (0, 0)), + ("epsi;", (949, 0)), + ("Dopf", (0, 0)), + ("mu", (0, 0)), + ("NotSquareSubse", (0, 0)), + ("boxmin", (0, 0)), + ("succeq;", (10928, 0)), + ("rcaron", (0, 0)), + ("longright", (0, 0)), + ("tdot;", (8411, 0)), + ("be", (0, 0)), + ("cupcup;", (10826, 0)), + ("pitch", (0, 0)), + ("jse", (0, 0)), + ("backep", (0, 0)), + ("yacu", (0, 0)), + ("gjcy", (0, 0)), + ("sqsubset;", (8847, 0)), + ("risingdot", (0, 0)), + ("NestedGrea", (0, 0)), + ("mnpl", (0, 0)), + ("LeftUpTeeVe", (0, 0)), + ("ands", (0, 0)), + ("topci", (0, 0)), + ("nrarrc", (0, 0)), + ("propto;", (8733, 0)), + ("curlyeqprec", (0, 0)), + ("ll;", (8810, 0)), + ("xodot", (0, 0)), + ("maltese;", (10016, 0)), + ("diamond;", (8900, 0)), + ("nRightar", (0, 0)), + ("C", (0, 0)), + ("xm", (0, 0)), + ("uuml", (252, 0)), + ("risi", (0, 0)), + ("Da", (0, 0)), + ("gnapp", (0, 0)), + ("npar", (0, 0)), + ("NotElement;", (8713, 0)), + ("IEcy;", (1045, 0)), + ("curvearr", (0, 0)), + ("FilledVeryS", (0, 0)), + ("hard", (0, 0)), + ("diam", (0, 0)), + ("Yum", (0, 0)), + ("Tcaron;", (356, 0)), + ("Igrav", (0, 0)), + ("nexis", (0, 0)), + ("NegativeMediu", (0, 0)), + ("otimes", (0, 0)), + ("wop", (0, 0)), + ("trianglel", (0, 0)), + ("bscr;", (119991, 0)), + ("oline;", (8254, 0)), + ("Coprodu", (0, 0)), + ("plusaci", (0, 0)), + ("lrar", (0, 0)), + ("Center", (0, 0)), + ("fno", (0, 0)), + ("nsh", (0, 0)), + ("Ouml;", (214, 0)), + ("nced", (0, 0)), + ("NotSuper", (0, 0)), + ("cd", (0, 0)), + ("longrightarr", (0, 0)), + ("supdsu", (0, 0)), + ("nvlt;", (60, 8402)), + ("Eacu", (0, 0)), + ("expect", (0, 0)), + ("Am", (0, 0)), + ("InvisibleTim", (0, 0)), + ("midcir", (0, 0)), + ("setminu", (0, 0)), + ("larrpl", (0, 0)), + ("larrpl;", (10553, 0)), + ("roang", (0, 0)), + ("App", (0, 0)), + ("NotGreaterTil", (0, 0)), + ("rbrks", (0, 0)), + ("VeryThinSpa", (0, 0)), + ("lthre", (0, 0)), + ("rla", (0, 0)), + ("lsaqu", (0, 0)), + ("NotGreaterSl", (0, 0)), + ("angmsdaa;", (10664, 0)), + ("NotSquar", (0, 0)), + ("LeftAr", (0, 0)), + ("us", (0, 0)), + ("ecar", (0, 0)), + ("Diffe", (0, 0)), + ("gneq;", (10888, 0)), + ("esd", (0, 0)), + ("DoubleUpDow", (0, 0)), + ("varphi;", (981, 0)), + ("ntgl", (0, 0)), + ("Imac", (0, 0)), + ("til", (0, 0)), + ("frasl;", (8260, 0)), + ("caps;", (8745, 65024)), + ("Uacu", (0, 0)), + ("models;", (8871, 0)), + ("RoundIm", (0, 0)), + ("Otil", (0, 0)), + ("Barv;", (10983, 0)), + ("lBarr;", (10510, 0)), + ("Rightar", (0, 0)), + ("clubsuit;", (9827, 0)), + ("minusd;", (8760, 0)), + ("rmousta", (0, 0)), + ("bsime;", (8909, 0)), + ("TildeTilde;", (8776, 0)), + ("acut", (0, 0)), + ("NotGreaterEqual;", (8817, 0)), + ("gcir", (0, 0)), + ("subedot;", (10947, 0)), + ("Epsi", (0, 0)), + ("rightarrowtail;", (8611, 0)), + ("quatin", (0, 0)), + ("boxDl", (0, 0)), + ("hookri", (0, 0)), + ("circledci", (0, 0)), + ("HumpDownHum", (0, 0)), + ("nvle;", (8804, 8402)), + ("longleftrighta", (0, 0)), + ("measuredangl", (0, 0)), + ("dA", (0, 0)), + ("circledS", (0, 0)), + ("iecy;", (1077, 0)), + ("qint", (0, 0)), + ("SmallCi", (0, 0)), + ("rcy;", (1088, 0)), + ("period", (0, 0)), + ("Ug", (0, 0)), + ("measur", (0, 0)), + ("umacr;", (363, 0)), + ("is", (0, 0)), + ("backsi", (0, 0)), + ("SmallC", (0, 0)), + ("auml", (228, 0)), + ("bigoplus;", (10753, 0)), + ("drcorn", (0, 0)), + ("ShortUpArrow;", (8593, 0)), + ("rppolin", (0, 0)), + ("Counte", (0, 0)), + ("DownRightTe", (0, 0)), + ("eplu", (0, 0)), + ("boxVh", (0, 0)), + ("vBar", (0, 0)), + ("perp;", (8869, 0)), + ("Lcedil", (0, 0)), + ("downharpoonri", (0, 0)), + ("rdqu", (0, 0)), + ("ContourInteg", (0, 0)), + ("ecirc", (234, 0)), + ("dotsqu", (0, 0)), + ("mstpos", (0, 0)), + ("CloseCurlyDouble", (0, 0)), + ("Delta", (0, 0)), + ("llc", (0, 0)), + ("NotSquareSubsetEqual", (0, 0)), + ("Umacr", (0, 0)), + ("LeftDownVectorB", (0, 0)), + ("Ncedil", (0, 0)), + ("trimi", (0, 0)), + ("andsl", (0, 0)), + ("rAarr;", (8667, 0)), + ("seA", (0, 0)), + ("Small", (0, 0)), + ("Vcy", (0, 0)), + ("coloneq;", (8788, 0)), + ("Verbar", (0, 0)), + ("rdca", (0, 0)), + ("SmallCircle", (0, 0)), + ("ye", (0, 0)), + ("bl", (0, 0)), + ("pho", (0, 0)), + ("amacr;", (257, 0)), + ("MinusPlus", (0, 0)), + ("lbrace", (0, 0)), + ("Sub;", (8912, 0)), + ("nlArr", (0, 0)), + ("zigr", (0, 0)), + ("Lap", (0, 0)), + ("Poinc", (0, 0)), + ("longr", (0, 0)), + ("DiacriticalDou", (0, 0)), + ("Bf", (0, 0)), + ("ltrif;", (9666, 0)), + ("varthet", (0, 0)), + ("thin", (0, 0)), + ("NotLeftTriangleBar", (0, 0)), + ("ogr", (0, 0)), + ("LessGr", (0, 0)), + ("complex", (0, 0)), + ("VerticalTilde;", (8768, 0)), + ("half;", (189, 0)), + ("NotSubsetEqual", (0, 0)), + ("frac58;", (8541, 0)), + ("napid;", (8779, 824)), + ("Gb", (0, 0)), + ("rbrksld;", (10638, 0)), + ("nL", (0, 0)), + ("rrarr", (0, 0)), + ("vBa", (0, 0)), + ("NotGreaterFu", (0, 0)), + ("DownLeftRightVect", (0, 0)), + ("circl", (0, 0)), + ("xsqc", (0, 0)), + ("harrw;", (8621, 0)), + ("PrecedesSlantEqu", (0, 0)), + ("ar", (0, 0)), + ("TildeFu", (0, 0)), + ("triangleleft;", (9667, 0)), + ("Superse", (0, 0)), + ("ltri", (0, 0)), + ("Ugrav", (0, 0)), + ("mopf;", (120158, 0)), + ("fallingdo", (0, 0)), + ("Gcir", (0, 0)), + ("zscr", (0, 0)), + ("iopf;", (120154, 0)), + ("ltrPar", (0, 0)), + ("bigtriangleup;", (9651, 0)), + ("setminus", (0, 0)), + ("yum", (0, 0)), + ("ration", (0, 0)), + ("rhar", (0, 0)), + ("Partial", (0, 0)), + ("updowna", (0, 0)), + ("UnderBracket;", (9141, 0)), + ("topb", (0, 0)), + ("Iukcy;", (1030, 0)), + ("asympe", (0, 0)), + ("notin;", (8713, 0)), + ("scsi", (0, 0)), + ("UnderParenthesis", (0, 0)), + ("cudarrr;", (10549, 0)), + ("bo", (0, 0)), + ("tc", (0, 0)), + ("urcr", (0, 0)), + ("gfr", (0, 0)), + ("NotNestedLess", (0, 0)), + ("xrA", (0, 0)), + ("wr", (0, 0)), + ("nequiv;", (8802, 0)), + ("NonBreakingSpac", (0, 0)), + ("bempty", (0, 0)), + ("ogo", (0, 0)), + ("Assig", (0, 0)), + ("Sce", (0, 0)), + ("plustw", (0, 0)), + ("lrco", (0, 0)), + ("NotLeftTr", (0, 0)), + ("tfr;", (120113, 0)), + ("subsup", (0, 0)), + ("kop", (0, 0)), + ("phon", (0, 0)), + ("doublebar", (0, 0)), + ("oror;", (10838, 0)), + ("veeba", (0, 0)), + ("Itilde", (0, 0)), + ("xlAr", (0, 0)), + ("kced", (0, 0)), + ("ShortDown", (0, 0)), + ("rd", (0, 0)), + ("NoBreak", (0, 0)), + ("NotTildeEqu", (0, 0)), + ("caron", (0, 0)), + ("expectatio", (0, 0)), + ("UnderParenthes", (0, 0)), + ("Backslas", (0, 0)), + ("Ccon", (0, 0)), + ("varepsilon", (0, 0)), + ("YUcy;", (1070, 0)), + ("urcor", (0, 0)), + ("MinusPl", (0, 0)), + ("CircleTime", (0, 0)), + ("SquareSub", (0, 0)), + ("Ucy;", (1059, 0)), + ("hopf", (0, 0)), + ("NotDouble", (0, 0)), + ("Dagger;", (8225, 0)), + ("leqq", (0, 0)), + ("Fo", (0, 0)), + ("srarr;", (8594, 0)), + ("NegativeVe", (0, 0)), + ("operp", (0, 0)), + ("RightTriangleE", (0, 0)), + ("ccaro", (0, 0)), + ("NotVerticalBa", (0, 0)), + ("profs", (0, 0)), + ("PrecedesSlantE", (0, 0)), + ("UnderParenthe", (0, 0)), + ("tstr", (0, 0)), + ("NotRightTriangleBa", (0, 0)), + ("ccupssm;", (10832, 0)), + ("vartriangleleft;", (8882, 0)), + ("eqslant", (0, 0)), + ("flat", (0, 0)), + ("eqslantless", (0, 0)), + ("nvrtrie", (0, 0)), + ("mea", (0, 0)), + ("DoubleCo", (0, 0)), + ("twoheadleftar", (0, 0)), + ("uw", (0, 0)), + ("RightDoubleBracke", (0, 0)), + ("ShortUpArrow", (0, 0)), + ("rbrack", (0, 0)), + ("lrm", (0, 0)), + ("LeftTeeV", (0, 0)), + ("GreaterGreat", (0, 0)), + ("nvi", (0, 0)), + ("RightUpVecto", (0, 0)), + ("ntrianglerighte", (0, 0)), + ("Osla", (0, 0)), + ("Rang;", (10219, 0)), + ("thicksi", (0, 0)), + ("Squ", (0, 0)), + ("nwnea", (0, 0)), + ("Sqrt;", (8730, 0)), + ("nvDash", (0, 0)), + ("Differen", (0, 0)), + ("harrci", (0, 0)), + ("oa", (0, 0)), + ("aacute;", (225, 0)), + ("rdl", (0, 0)), + ("qfr;", (120110, 0)), + ("tint;", (8749, 0)), + ("NotRightTriangleB", (0, 0)), + ("bN", (0, 0)), + ("napos;", (329, 0)), + ("lfr", (0, 0)), + ("Zcy;", (1047, 0)), + ("smallsetminus", (0, 0)), + ("supm", (0, 0)), + ("plusm", (0, 0)), + ("downharp", (0, 0)), + ("LeftDownVect", (0, 0)), + ("nap;", (8777, 0)), + ("Diacritical", (0, 0)), + ("leftrightharpoon", (0, 0)), + ("Coproduct", (0, 0)), + ("duha", (0, 0)), + ("Hump", (0, 0)), + ("isinsv;", (8947, 0)), + ("hardcy;", (1098, 0)), + ("oacut", (0, 0)), + ("blackloze", (0, 0)), + ("xwe", (0, 0)), + ("sup1;", (185, 0)), + ("DiacriticalAc", (0, 0)), + ("left", (0, 0)), + ("Oa", (0, 0)), + ("udha", (0, 0)), + ("nge", (0, 0)), + ("Coproduc", (0, 0)), + ("hyphen;", (8208, 0)), + ("RightTriangleBa", (0, 0)), + ("intlar", (0, 0)), + ("Zdot;", (379, 0)), + ("DiacriticalDoubleAcut", (0, 0)), + ("ShortR", (0, 0)), + ("bkarow", (0, 0)), + ("th", (0, 0)), + ("lar", (0, 0)), + ("cud", (0, 0)), + ("ne;", (8800, 0)), + ("RightAn", (0, 0)), + ("vD", (0, 0)), + ("downharpoonleft", (0, 0)), + ("pitchfo", (0, 0)), + ("lozenge", (0, 0)), + ("mn", (0, 0)), + ("Z", (0, 0)), + ("expectat", (0, 0)), + ("Horizon", (0, 0)), + ("Tcedil;", (354, 0)), + ("trid", (0, 0)), + ("NotLessLe", (0, 0)), + ("prim", (0, 0)), + ("ReverseEqu", (0, 0)), + ("Utilde;", (360, 0)), + ("omacr", (0, 0)), + ("mapstodow", (0, 0)), + ("cemptyv", (0, 0)), + ("UpArrow", (0, 0)), + ("qf", (0, 0)), + ("J", (0, 0)), + ("diamon", (0, 0)), + ("HorizontalLi", (0, 0)), + ("Sqrt", (0, 0)), + ("kap", (0, 0)), + ("CloseCurlyQ", (0, 0)), + ("EqualTil", (0, 0)), + ("fallingdotse", (0, 0)), + ("gE", (0, 0)), + ("sqsubset", (0, 0)), + ("FilledVerySmallSqua", (0, 0)), + ("UpperRightA", (0, 0)), + ("NotVerti", (0, 0)), + ("ntlg", (0, 0)), + ("pm", (0, 0)), + ("DiacriticalDouble", (0, 0)), + ("NotTildeFu", (0, 0)), + ("xharr;", (10231, 0)), + ("leqslant", (0, 0)), + ("DZ", (0, 0)), + ("twoheadleftarrow;", (8606, 0)), + ("Ic", (0, 0)), + ("DownR", (0, 0)), + ("realpar", (0, 0)), + ("Neste", (0, 0)), + ("nvltrie;", (8884, 8402)), + ("lcedil;", (316, 0)), + ("lur", (0, 0)), + ("NotSucceedsEqua", (0, 0)), + ("gtrle", (0, 0)), + ("qu", (0, 0)), + ("RightTriangleEqu", (0, 0)), + ("ReverseEqui", (0, 0)), + ("Gcedi", (0, 0)), + ("chi;", (967, 0)), + ("thorn", (254, 0)), + ("iinfi", (0, 0)), + ("midc", (0, 0)), + ("HilbertSpace", (0, 0)), + ("lnappro", (0, 0)), + ("cy", (0, 0)), + ("marke", (0, 0)), + ("lrtri;", (8895, 0)), + ("smashp", (0, 0)), + ("RightUpVectorBar", (0, 0)), + ("ngt", (0, 0)), + ("jcirc", (0, 0)), + ("Epsilo", (0, 0)), + ("GreaterTi", (0, 0)), + ("oacute;", (243, 0)), + ("tritime", (0, 0)), + ("iogo", (0, 0)), + ("looparrowr", (0, 0)), + ("Lac", (0, 0)), + ("vsupnE", (0, 0)), + ("cura", (0, 0)), + ("circ;", (710, 0)), + ("dzcy", (0, 0)), + ("napprox;", (8777, 0)), + ("ncongdot;", (10861, 824)), + ("DoubleLeftRightAr", (0, 0)), + ("Vertic", (0, 0)), + ("npart", (0, 0)), + ("triminus", (0, 0)), + ("egsdot;", (10904, 0)), + ("hfr", (0, 0)), + ("longleftri", (0, 0)), + ("rsquor", (0, 0)), + ("DownLeftTeeVec", (0, 0)), + ("zdot", (0, 0)), + ("SHCHcy", (0, 0)), + ("Intersec", (0, 0)), + ("An", (0, 0)), + ("ccirc;", (265, 0)), + ("swarro", (0, 0)), + ("quest", (0, 0)), + ("frac35", (0, 0)), + ("PrecedesSlantEqual", (0, 0)), + ("sbquo;", (8218, 0)), + ("imacr;", (299, 0)), + ("twoheadleftarr", (0, 0)), + ("leftthreetimes", (0, 0)), + ("sigma;", (963, 0)), + ("boxh", (0, 0)), + ("SquareSuperset;", (8848, 0)), + ("eqsl", (0, 0)), + ("circeq", (0, 0)), + ("lesseqgt", (0, 0)), + ("ufis", (0, 0)), + ("nsubseteqq", (0, 0)), + ("veebar", (0, 0)), + ("bigotimes;", (10754, 0)), + ("brvb", (0, 0)), + ("LeftTeeArrow;", (8612, 0)), + ("barw", (0, 0)), + ("rAtail", (0, 0)), + ("DownBrev", (0, 0)), + ("fo", (0, 0)), + ("Exists;", (8707, 0)), + ("equals;", (61, 0)), + ("upha", (0, 0)), + ("Proport", (0, 0)), + ("vel", (0, 0)), + ("subp", (0, 0)), + ("Gf", (0, 0)), + ("hoarr", (0, 0)), + ("thksim", (0, 0)), + ("atil", (0, 0)), + ("nleqslant", (0, 0)), + ("mscr;", (120002, 0)), + ("lsime;", (10893, 0)), + ("Hstr", (0, 0)), + ("yfr;", (120118, 0)), + ("UpArrowBa", (0, 0)), + ("filig", (0, 0)), + ("DoubleLeftRight", (0, 0)), + ("gci", (0, 0)), + ("dbkarow", (0, 0)), + ("lEg", (0, 0)), + ("bprime", (0, 0)), + ("nearrow", (0, 0)), + ("HumpEq", (0, 0)), + ("forkv;", (10969, 0)), + ("Igra", (0, 0)), + ("Bet", (0, 0)), + ("RightArrowLeft", (0, 0)), + ("RightDownTeeVector;", (10589, 0)), + ("CO", (0, 0)), + ("rarrtl", (0, 0)), + ("CapitalDi", (0, 0)), + ("TripleD", (0, 0)), + ("xcup;", (8899, 0)), + ("sci", (0, 0)), + ("Short", (0, 0)), + ("bdquo", (0, 0)), + ("zcar", (0, 0)), + ("RightCeiling;", (8969, 0)), + ("lcei", (0, 0)), + ("ijl", (0, 0)), + ("dlcorn;", (8990, 0)), + ("circlea", (0, 0)), + ("risingd", (0, 0)), + ("Cd", (0, 0)), + ("Rsc", (0, 0)), + ("NotPrecedesSlantEqu", (0, 0)), + ("thi", (0, 0)), + ("efD", (0, 0)), + ("LessEqualGr", (0, 0)), + ("Dstrok;", (272, 0)), + ("Iogo", (0, 0)), + ("Hacek", (0, 0)), + ("blacktri", (0, 0)), + ("Integral;", (8747, 0)), + ("lessgtr;", (8822, 0)), + ("notinE;", (8953, 824)), + ("xci", (0, 0)), + ("LeftT", (0, 0)), + ("esdo", (0, 0)), + ("GreaterSlant", (0, 0)), + ("NotGreaterTild", (0, 0)), + ("DoubleLeftRightArrow", (0, 0)), + ("nLeftarrow", (0, 0)), + ("supsub", (0, 0)), + ("Uti", (0, 0)), + ("Longleftarr", (0, 0)), + ("hear", (0, 0)), + ("bigw", (0, 0)), + ("Sm", (0, 0)), + ("Hscr", (0, 0)), + ("iexc", (0, 0)), + ("Tfr;", (120087, 0)), + ("rac", (0, 0)), + ("supsi", (0, 0)), + ("cirfnint;", (10768, 0)), + ("lefta", (0, 0)), + ("lla", (0, 0)), + ("qopf;", (120162, 0)), + ("les;", (10877, 0)), + ("EmptyVerySmallSqua", (0, 0)), + ("NotDoubleVerticalBar;", (8742, 0)), + ("barvee", (0, 0)), + ("ccups;", (10828, 0)), + ("PartialD", (0, 0)), + ("telrec", (0, 0)), + ("boxVh;", (9579, 0)), + ("VeryTh", (0, 0)), + ("NotVertical", (0, 0)), + ("ShortDownAr", (0, 0)), + ("supsub;", (10964, 0)), + ("blacklozeng", (0, 0)), + ("nRightarrow", (0, 0)), + ("Osc", (0, 0)), + ("rbbrk", (0, 0)), + ("iii", (0, 0)), + ("Uscr;", (119984, 0)), + ("RightVector;", (8640, 0)), + ("geqs", (0, 0)), + ("Agra", (0, 0)), + ("FilledSm", (0, 0)), + ("rArr", (0, 0)), + ("Equal;", (10869, 0)), + ("NotSupersetEq", (0, 0)), + ("capcap", (0, 0)), + ("ntild", (0, 0)), + ("rtim", (0, 0)), + ("nvda", (0, 0)), + ("NestedLess", (0, 0)), + ("lnsim;", (8934, 0)), + ("ulcro", (0, 0)), + ("oscr;", (8500, 0)), + ("tcaron", (0, 0)), + ("CloseCurlyDoubl", (0, 0)), + ("sqcu", (0, 0)), + ("olcir;", (10686, 0)), + ("And", (0, 0)), + ("or;", (8744, 0)), + ("Scir", (0, 0)), + ("Leftrightarr", (0, 0)), + ("NotLessSlantEqu", (0, 0)), + ("Ecy;", (1069, 0)), + ("rti", (0, 0)), + ("gt", (62, 0)), + ("boxHu;", (9575, 0)), + ("napp", (0, 0)), + ("ocy", (0, 0)), + ("DDot", (0, 0)), + ("ques", (0, 0)), + ("ltdot", (0, 0)), + ("EqualTild", (0, 0)), + ("nleftrightarrow", (0, 0)), + ("twohead", (0, 0)), + ("Scirc;", (348, 0)), + ("fpar", (0, 0)), + ("UpArrowDownArrow;", (8645, 0)), + ("Aog", (0, 0)), + ("point", (0, 0)), + ("leftar", (0, 0)), + ("lbbrk", (0, 0)), + ("DoubleRightArr", (0, 0)), + ("CounterClockwiseContour", (0, 0)), + ("ldrdh", (0, 0)), + ("NotEqualTil", (0, 0)), + ("Sf", (0, 0)), + ("uci", (0, 0)), + ("rsc", (0, 0)), + ("Popf", (0, 0)), + ("NotSubsetEqual;", (8840, 0)), + ("swnwa", (0, 0)), + ("fop", (0, 0)), + ("ThickSpa", (0, 0)), + ("luruhar;", (10598, 0)), + ("nsim", (0, 0)), + ("po", (0, 0)), + ("Bumpeq;", (8782, 0)), + ("vare", (0, 0)), + ("gtre", (0, 0)), + ("downhar", (0, 0)), + ("Oopf", (0, 0)), + ("blacktriangled", (0, 0)), + ("UpTeeArrow", (0, 0)), + ("cuwe", (0, 0)), + ("oror", (0, 0)), + ("Exponentia", (0, 0)), + ("zacute", (0, 0)), + ("RightDo", (0, 0)), + ("gtreqless", (0, 0)), + ("Dif", (0, 0)), + ("Qo", (0, 0)), + ("vc", (0, 0)), + ("trp", (0, 0)), + ("nsqsube;", (8930, 0)), + ("downdownarrows;", (8650, 0)), + ("rt", (0, 0)), + ("CircleMin", (0, 0)), + ("Invi", (0, 0)), + ("so", (0, 0)), + ("rightl", (0, 0)), + ("boxHD", (0, 0)), + ("Upsilon;", (933, 0)), + ("omega", (0, 0)), + ("beth", (0, 0)), + ("mcomma;", (10793, 0)), + ("lac", (0, 0)), + ("rArr;", (8658, 0)), + ("alph", (0, 0)), + ("cupdot", (0, 0)), + ("bloc", (0, 0)), + ("mc", (0, 0)), + ("Lsc", (0, 0)), + ("ce", (0, 0)), + ("LessEqualGreate", (0, 0)), + ("imagpa", (0, 0)), + ("dotminus", (0, 0)), + ("tria", (0, 0)), + ("LeftCeiling;", (8968, 0)), + ("ccu", (0, 0)), + ("shortmid;", (8739, 0)), + ("mark", (0, 0)), + ("trianglelefte", (0, 0)), + ("qs", (0, 0)), + ("trianglelef", (0, 0)), + ("mal", (0, 0)), + ("Righta", (0, 0)), + ("checkmark;", (10003, 0)), + ("xsc", (0, 0)), + ("ksc", (0, 0)), + ("leftharp", (0, 0)), + ("ReverseEleme", (0, 0)), + ("fil", (0, 0)), + ("incare", (0, 0)), + ("angst;", (197, 0)), + ("NotGreaterGreate", (0, 0)), + ("varph", (0, 0)), + ("GreaterFullEq", (0, 0)), + ("NotSubsetE", (0, 0)), + ("tild", (0, 0)), + ("ClockwiseContourInte", (0, 0)), + ("LowerRigh", (0, 0)), + ("Greater", (0, 0)), + ("dfr", (0, 0)), + ("subE;", (10949, 0)), + ("rx", (0, 0)), + ("RightDoubleB", (0, 0)), + ("Alpha", (0, 0)), + ("blk12;", (9618, 0)), + ("DotEqual;", (8784, 0)), + ("LeftUp", (0, 0)), + ("NotPrecedesEqua", (0, 0)), + ("Nu", (0, 0)), + ("UnderPa", (0, 0)), + ("vzigza", (0, 0)), + ("nexists;", (8708, 0)), + ("leftarr", (0, 0)), + ("lesg", (0, 0)), + ("DoubleD", (0, 0)), + ("beta", (0, 0)), + ("LeftDownVectorBar;", (10585, 0)), + ("va", (0, 0)), + ("Longrightar", (0, 0)), + ("cuve", (0, 0)), + ("bot", (0, 0)), + ("bottom", (0, 0)), + ("Fou", (0, 0)), + ("blacksquare", (0, 0)), + ("SucceedsT", (0, 0)), + ("Nced", (0, 0)), + ("uscr;", (120010, 0)), + ("ddarr;", (8650, 0)), + ("gtreqless;", (8923, 0)), + ("congdot;", (10861, 0)), + ("deg;", (176, 0)), + ("ffil", (0, 0)), + ("gcy;", (1075, 0)), + ("xl", (0, 0)), + ("lan", (0, 0)), + ("le", (0, 0)), + ("NotTildeEq", (0, 0)), + ("ium", (0, 0)), + ("utrif;", (9652, 0)), + ("gj", (0, 0)), + ("CenterD", (0, 0)), + ("precneqq;", (10933, 0)), + ("Imagin", (0, 0)), + ("mult", (0, 0)), + ("rightth", (0, 0)), + ("NotPrecedes", (0, 0)), + ("boxur", (0, 0)), + ("Uparrow", (0, 0)), + ("pfr", (0, 0)), + ("ubrc", (0, 0)), + ("ang", (0, 0)), + ("NotEqua", (0, 0)), + ("UpDownArr", (0, 0)), + ("TildeFullEq", (0, 0)), + ("Hcirc", (0, 0)), + ("CloseCurlyDoubleQuote;", (8221, 0)), + ("Poincar", (0, 0)), + ("smallse", (0, 0)), + ("simp", (0, 0)), + ("leqsla", (0, 0)), + ("Rrig", (0, 0)), + ("uo", (0, 0)), + ("east", (0, 0)), + ("IOcy;", (1025, 0)), + ("LeftTeeAr", (0, 0)), + ("rarrhk", (0, 0)), + ("UpperLef", (0, 0)), + ("mum", (0, 0)), + ("gtque", (0, 0)), + ("DownLeftTeeVecto", (0, 0)), + ("Supset;", (8913, 0)), + ("NotHumpEqua", (0, 0)), + ("rightrighta", (0, 0)), + ("abreve", (0, 0)), + ("Lapla", (0, 0)), + ("bigsta", (0, 0)), + ("ell", (0, 0)), + ("RightCeilin", (0, 0)), + ("Longleftrightarr", (0, 0)), + ("rightsquigarr", (0, 0)), + ("iquest", (191, 0)), + ("UpT", (0, 0)), + ("supsup", (0, 0)), + ("ZeroW", (0, 0)), + ("shcy", (0, 0)), + ("mda", (0, 0)), + ("SucceedsSlantEqua", (0, 0)), + ("ncy;", (1085, 0)), + ("scs", (0, 0)), + ("SquareInters", (0, 0)), + ("rharul", (0, 0)), + ("Verti", (0, 0)), + ("updown", (0, 0)), + ("lstrok;", (322, 0)), + ("vartheta", (0, 0)), + ("nls", (0, 0)), + ("setmn", (0, 0)), + ("supE", (0, 0)), + ("bigop", (0, 0)), + ("DoubleLongLeftRightArrow;", (10234, 0)), + ("Vdash", (0, 0)), + ("dtrif", (0, 0)), + ("lozf;", (10731, 0)), + ("odash;", (8861, 0)), + ("larrtl;", (8610, 0)), + ("ClockwiseCont", (0, 0)), + ("Assi", (0, 0)), + ("udbl", (0, 0)), + ("Imagina", (0, 0)), + ("nleftrig", (0, 0)), + ("acE;", (8766, 819)), + ("gneqq;", (8809, 0)), + ("and;", (8743, 0)), + ("downharpoonright;", (8642, 0)), + ("diamondsuit", (0, 0)), + ("bigoplus", (0, 0)), + ("oint;", (8750, 0)), + ("cirfn", (0, 0)), + ("nleftrightarro", (0, 0)), + ("vellip;", (8942, 0)), + ("LessFullEq", (0, 0)), + ("blacktriangler", (0, 0)), + ("DiacriticalA", (0, 0)), + ("VDa", (0, 0)), + ("leftharpoonup;", (8636, 0)), + ("Na", (0, 0)), + ("VerticalLin", (0, 0)), + ("iscr;", (119998, 0)), + ("ndas", (0, 0)), + ("lnsi", (0, 0)), + ("langl", (0, 0)), + ("sext;", (10038, 0)), + ("DownRightVectorBar;", (10583, 0)), + ("ldrd", (0, 0)), + ("Zcaro", (0, 0)), + ("Cedilla;", (184, 0)), + ("NotGreaterE", (0, 0)), + ("Zacute", (0, 0)), + ("telr", (0, 0)), + ("xhAr", (0, 0)), + ("NotTildeFul", (0, 0)), + ("ContourI", (0, 0)), + ("varkappa", (0, 0)), + ("uArr;", (8657, 0)), + ("OpenCurlyDoubleQ", (0, 0)), + ("triangledown;", (9663, 0)), + ("ucy;", (1091, 0)), + ("scy;", (1089, 0)), + ("NotLessLess", (0, 0)), + ("tst", (0, 0)), + ("eDo", (0, 0)), + ("Ov", (0, 0)), + ("twixt", (0, 0)), + ("Poincareplane", (0, 0)), + ("frac7", (0, 0)), + ("xutri", (0, 0)), + ("boxh;", (9472, 0)), + ("lessapprox", (0, 0)), + ("eqslantgtr;", (10902, 0)), + ("ovb", (0, 0)), + ("intp", (0, 0)), + ("fc", (0, 0)), + ("topfork;", (10970, 0)), + ("nLeftrightarrow", (0, 0)), + ("hfr;", (120101, 0)), + ("lfloo", (0, 0)), + ("nsq", (0, 0)), + ("arin", (0, 0)), + ("plusc", (0, 0)), + ("nvH", (0, 0)), + ("preca", (0, 0)), + ("wedge", (0, 0)), + ("LeftDownTeeVector", (0, 0)), + ("GreaterGreate", (0, 0)), + ("quaternions", (0, 0)), + ("multim", (0, 0)), + ("lesse", (0, 0)), + ("r", (0, 0)), + ("thicka", (0, 0)), + ("LongLeftR", (0, 0)), + ("NotH", (0, 0)), + ("qscr", (0, 0)), + ("NotNestedL", (0, 0)), + ("Vv", (0, 0)), + ("dwangle", (0, 0)), + ("supmu", (0, 0)), + ("NotNestedLes", (0, 0)), + ("Ubrcy", (0, 0)), + ("percn", (0, 0)), + ("Uopf;", (120140, 0)), + ("cuwed", (0, 0)), + ("submult;", (10945, 0)), + ("nleftrightarr", (0, 0)), + ("vsubnE;", (10955, 65024)), + ("nlt", (0, 0)), + ("NegativeThinSpace;", (8203, 0)), + ("hk", (0, 0)), + ("DoubleDownA", (0, 0)), + ("Gd", (0, 0)), + ("blac", (0, 0)), + ("ng", (0, 0)), + ("LeftRightVecto", (0, 0)), + ("gamma;", (947, 0)), + ("bern", (0, 0)), + ("zcaron", (0, 0)), + ("gtrsi", (0, 0)), + ("Differ", (0, 0)), + ("swnw", (0, 0)), + ("divideon", (0, 0)), + ("SucceedsSlantEq", (0, 0)), + ("leftarrowt", (0, 0)), + ("Ver", (0, 0)), + ("Vee;", (8897, 0)), + ("Edot", (0, 0)), + ("ioc", (0, 0)), + ("nvgt", (0, 0)), + ("small", (0, 0)), + ("Melli", (0, 0)), + ("timesbar", (0, 0)), + ("curvearro", (0, 0)), + ("OpenCurlyQuote", (0, 0)), + ("jscr;", (119999, 0)), + ("equivDD;", (10872, 0)), + ("sbqu", (0, 0)), + ("longleftrightar", (0, 0)), + ("vark", (0, 0)), + ("vnsu", (0, 0)), + ("tprim", (0, 0)), + ("LessTi", (0, 0)), + ("Vfr", (0, 0)), + ("lrcorner;", (8991, 0)), + ("Scedil", (0, 0)), + ("hookrightar", (0, 0)), + ("circledcirc;", (8858, 0)), + ("hstrok", (0, 0)), + ("gtcc", (0, 0)), + ("blacksqu", (0, 0)), + ("FilledSmallSqu", (0, 0)), + ("pertenk", (0, 0)), + ("nsmi", (0, 0)), + ("omega;", (969, 0)), + ("Product;", (8719, 0)), + ("Omac", (0, 0)), + ("LeftDownTe", (0, 0)), + ("EqualTi", (0, 0)), + ("ohm", (0, 0)), + ("midast", (0, 0)), + ("curlywedge;", (8911, 0)), + ("complement;", (8705, 0)), + ("rtimes", (0, 0)), + ("Lcy", (0, 0)), + ("nldr", (0, 0)), + ("bigtriangledown;", (9661, 0)), + ("RightTriangleEqual", (0, 0)), + ("nedo", (0, 0)), + ("otimesas", (0, 0)), + ("Gfr;", (120074, 0)), + ("db", (0, 0)), + ("Odb", (0, 0)), + ("Copro", (0, 0)), + ("Cfr", (0, 0)), + ("leftrightsqui", (0, 0)), + ("ys", (0, 0)), + ("betw", (0, 0)), + ("DiacriticalGrave;", (96, 0)), + ("LeftRightVect", (0, 0)), + ("St", (0, 0)), + ("TildeFullEqu", (0, 0)), + ("rightharpoonup", (0, 0)), + ("Ifr", (0, 0)), + ("zhcy", (0, 0)), + ("rangle", (0, 0)), + ("Zsc", (0, 0)), + ("pluse;", (10866, 0)), + ("Subs", (0, 0)), + ("LeftUpDownVecto", (0, 0)), + ("CircleDot", (0, 0)), + ("Yc", (0, 0)), + ("backepsilon", (0, 0)), + ("vz", (0, 0)), + ("ReverseEquilib", (0, 0)), + ("CapitalDiff", (0, 0)), + ("varrho;", (1009, 0)), + ("lurdsha", (0, 0)), + ("gnap;", (10890, 0)), + ("if", (0, 0)), + ("rarrlp", (0, 0)), + ("gac", (0, 0)), + ("xodo", (0, 0)), + ("righth", (0, 0)), + ("NotSquareSupersetEqual;", (8931, 0)), + ("RightDownTeeVecto", (0, 0)), + ("Ove", (0, 0)), + ("dHar", (0, 0)), + ("New", (0, 0)), + ("Open", (0, 0)), + ("precnsim;", (8936, 0)), + ("CounterClockwiseContourIntegra", (0, 0)), + ("rightleftharpoo", (0, 0)), + ("Odbl", (0, 0)), + ("gtlPa", (0, 0)), + ("backcon", (0, 0)), + ("sqsup;", (8848, 0)), + ("mopf", (0, 0)), + ("kscr;", (120000, 0)), + ("nharr;", (8622, 0)), + ("Ima", (0, 0)), + ("TildeTilde", (0, 0)), + ("Conint", (0, 0)), + ("DownArrowUpArro", (0, 0)), + ("circlear", (0, 0)), + ("UpDownArrow", (0, 0)), + ("because", (0, 0)), + ("udarr;", (8645, 0)), + ("tcy;", (1090, 0)), + ("Fs", (0, 0)), + ("boxuL;", (9563, 0)), + ("Ls", (0, 0)), + ("af", (0, 0)), + ("Ko", (0, 0)), + ("jscr", (0, 0)), + ("Dopf;", (120123, 0)), + ("cscr", (0, 0)), + ("ldca", (0, 0)), + ("Poincareplan", (0, 0)), + ("igrav", (0, 0)), + ("nrightarro", (0, 0)), + ("sho", (0, 0)), + ("kappa", (0, 0)), + ("bemptyv;", (10672, 0)), + ("sigmaf;", (962, 0)), + ("era", (0, 0)), + ("pitchfor", (0, 0)), + ("Ubrcy;", (1038, 0)), + ("expectation", (0, 0)), + ("Arin", (0, 0)), + ("mac", (0, 0)), + ("Longleftright", (0, 0)), + ("lurdshar", (0, 0)), + ("cedil;", (184, 0)), + ("lsh;", (8624, 0)), + ("nrArr", (0, 0)), + ("rightlefth", (0, 0)), + ("supdot", (0, 0)), + ("NotGreaterLess;", (8825, 0)), + ("NegativeMedi", (0, 0)), + ("LeftAngleBrac", (0, 0)), + ("Ncedi", (0, 0)), + ("amac", (0, 0)), + ("diamondsui", (0, 0)), + ("Emacr;", (274, 0)), + ("NegativeThic", (0, 0)), + ("ggg", (0, 0)), + ("imacr", (0, 0)), + ("lesges", (0, 0)), + ("Agrave", (192, 0)), + ("Vop", (0, 0)), + ("forkv", (0, 0)), + ("uharl;", (8639, 0)), + ("rightarrowtail", (0, 0)), + ("hamilt;", (8459, 0)), + ("rmou", (0, 0)), + ("leqslan", (0, 0)), + ("rds", (0, 0)), + ("ccir", (0, 0)), + ("cwint", (0, 0)), + ("shortp", (0, 0)), + ("sung", (0, 0)), + ("TRAD", (0, 0)), + ("NotSqua", (0, 0)), + ("DownLef", (0, 0)), + ("aog", (0, 0)), + ("VeryThinSp", (0, 0)), + ("ShortLeftAr", (0, 0)), + ("divid", (0, 0)), + ("integ", (0, 0)), + ("UpperLeftArro", (0, 0)), + ("frac45;", (8536, 0)), + ("UpperRightArrow;", (8599, 0)), + ("hksea", (0, 0)), + ("notinva", (0, 0)), + ("NotEqu", (0, 0)), + ("fnof;", (402, 0)), + ("blk34;", (9619, 0)), + ("infint", (0, 0)), + ("nltri", (0, 0)), + ("RightAngleBra", (0, 0)), + ("HilbertSpace;", (8459, 0)), + ("Upsi", (0, 0)), + ("rightharpoon", (0, 0)), + ("curl", (0, 0)), + ("DownTeeArro", (0, 0)), + ("rho;", (961, 0)), + ("suphsol", (0, 0)), + ("alp", (0, 0)), + ("nleqslan", (0, 0)), + ("ring", (0, 0)), + ("bumpeq", (0, 0)), + ("Vs", (0, 0)), + ("LeftTrian", (0, 0)), + ("curren;", (164, 0)), + ("rarrpl", (0, 0)), + ("longma", (0, 0)), + ("DJcy", (0, 0)), + ("Ncaron;", (327, 0)), + ("Zopf", (0, 0)), + ("UnderBrace;", (9183, 0)), + ("Poincare", (0, 0)), + ("gsim;", (8819, 0)), + ("ENG", (0, 0)), + ("uuml;", (252, 0)), + ("NotHumpDo", (0, 0)), + ("NotLeftTriangleEqual;", (8940, 0)), + ("phone;", (9742, 0)), + ("Breve;", (728, 0)), + ("leqslant;", (10877, 0)), + ("LeftTriang", (0, 0)), + ("leftrigh", (0, 0)), + ("Rou", (0, 0)), + ("el", (0, 0)), + ("NotLeftTriangleEqual", (0, 0)), + ("et", (0, 0)), + ("Leftrigh", (0, 0)), + ("igr", (0, 0)), + ("eqslantgt", (0, 0)), + ("bigoti", (0, 0)), + ("tcedi", (0, 0)), + ("ReverseEquilibrium;", (8651, 0)), + ("minus", (0, 0)), + ("profalar", (0, 0)), + ("F", (0, 0)), + ("rsaq", (0, 0)), + ("ngeq;", (8817, 0)), + ("nwAr", (0, 0)), + ("nsmid;", (8740, 0)), + ("esc", (0, 0)), + ("angmsdag;", (10670, 0)), + ("s", (0, 0)), + ("ds", (0, 0)), + ("rmoustache", (0, 0)), + ("LongLeftAr", (0, 0)), + ("zopf;", (120171, 0)), + ("RightDoubleBrac", (0, 0)), + ("ddot", (0, 0)), + ("cupbr", (0, 0)), + ("DoubleLongLeftRig", (0, 0)), + ("NotGreaterEqu", (0, 0)), + ("ms", (0, 0)), + ("NotSupe", (0, 0)), + ("ForAll;", (8704, 0)), + ("Gci", (0, 0)), + ("Filled", (0, 0)), + ("fili", (0, 0)), + ("ofcir", (0, 0)), + ("DownArrowBar", (0, 0)), + ("ShortUp", (0, 0)), + ("Lleftarrow", (0, 0)), + ("lHar;", (10594, 0)), + ("upuparrows", (0, 0)), + ("LeftRig", (0, 0)), + ("conin", (0, 0)), + ("nume", (0, 0)), + ("rsquo;", (8217, 0)), + ("ucirc;", (251, 0)), + ("urcorn", (0, 0)), + ("Ran", (0, 0)), + ("nequi", (0, 0)), + ("radic;", (8730, 0)), + ("DiacriticalGr", (0, 0)), + ("tshcy;", (1115, 0)), + ("ber", (0, 0)), + ("Xopf", (0, 0)), + ("Horizont", (0, 0)), + ("coni", (0, 0)), + ("smte;", (10924, 0)), + ("DiacriticalDot;", (729, 0)), + ("rarrtl;", (8611, 0)), + ("scaron;", (353, 0)), + ("pit", (0, 0)), + ("DifferentialD", (0, 0)), + ("RightFlo", (0, 0)), + ("In", (0, 0)), + ("GreaterT", (0, 0)), + ("vrtri", (0, 0)), + ("swarrow;", (8601, 0)), + ("subplus;", (10943, 0)), + ("rotime", (0, 0)), + ("downdownarro", (0, 0)), + ("dcy", (0, 0)), + ("plusac", (0, 0)), + ("UpArrowDownArro", (0, 0)), + ("propt", (0, 0)), + ("kappa;", (954, 0)), + ("shor", (0, 0)), + ("NotTildeTilde", (0, 0)), + ("kgre", (0, 0)), + ("lbrks", (0, 0)), + ("LeftDoubleBracket;", (10214, 0)), + ("dlc", (0, 0)), + ("boxvl;", (9508, 0)), + ("starf;", (9733, 0)), + ("Tab;", (9, 0)), + ("efDo", (0, 0)), + ("nmid;", (8740, 0)), + ("cacu", (0, 0)), + ("CloseCurlyDo", (0, 0)), + ("ltque", (0, 0)), + ("Cs", (0, 0)), + ("NotEq", (0, 0)), + ("Epsil", (0, 0)), + ("nsqs", (0, 0)), + ("Abreve", (0, 0)), + ("ldrusha", (0, 0)), + ("oline", (0, 0)), + ("SquareSubsetEq", (0, 0)), + ("apos;", (39, 0)), + ("longm", (0, 0)), + ("notinvc;", (8950, 0)), + ("NotRightTriangleEq", (0, 0)), + ("vartriangleleft", (0, 0)), + ("leqs", (0, 0)), + ("Upp", (0, 0)), + ("tim", (0, 0)), + ("prns", (0, 0)), + ("NestedGreat", (0, 0)), + ("Lmi", (0, 0)), + ("OpenCurl", (0, 0)), + ("UnderParenthesi", (0, 0)), + ("bi", (0, 0)), + ("gtrapp", (0, 0)), + ("Cdot", (0, 0)), + ("gEl;", (10892, 0)), + ("Upa", (0, 0)), + ("dash", (0, 0)), + ("DoubleLongLeftArrow", (0, 0)), + ("rppolint;", (10770, 0)), + ("blacktr", (0, 0)), + ("bcon", (0, 0)), + ("sun", (0, 0)), + ("RightUpTee", (0, 0)), + ("KJcy", (0, 0)), + ("hybull;", (8259, 0)), + ("simdo", (0, 0)), + ("bigsqcup", (0, 0)), + ("leftharpoondown", (0, 0)), + ("NotSq", (0, 0)), + ("longleftarrow", (0, 0)), + ("supseteqq;", (10950, 0)), + ("NotNestedGreat", (0, 0)), + ("nsub;", (8836, 0)), + ("dstrok;", (273, 0)), + ("mh", (0, 0)), + ("eDot", (0, 0)), + ("Jopf", (0, 0)), + ("jci", (0, 0)), + ("nspar", (0, 0)), + ("notnivb", (0, 0)), + ("subrarr", (0, 0)), + ("lsaq", (0, 0)), + ("rfloor", (0, 0)), + ("ntria", (0, 0)), + ("Cdo", (0, 0)), + ("not", (172, 0)), + ("Omicron", (0, 0)), + ("Ugrave", (217, 0)), + ("NotSquareSupers", (0, 0)), + ("top;", (8868, 0)), + ("Rrigh", (0, 0)), + ("DoubleConto", (0, 0)), + ("lcy", (0, 0)), + ("SquareSubsetE", (0, 0)), + ("scirc;", (349, 0)), + ("Differenti", (0, 0)), + ("beta;", (946, 0)), + ("NotHumpDow", (0, 0)), + ("yopf;", (120170, 0)), + ("RightUp", (0, 0)), + ("urcrop", (0, 0)), + ("lozenge;", (9674, 0)), + ("interc", (0, 0)), + ("fflig;", (64256, 0)), + ("trie;", (8796, 0)), + ("lhard;", (8637, 0)), + ("imped", (0, 0)), + ("prime;", (8242, 0)), + ("Uacut", (0, 0)), + ("NotE", (0, 0)), + ("Hum", (0, 0)), + ("NegativeT", (0, 0)), + ("boxUr;", (9561, 0)), + ("Impl", (0, 0)), + ("gd", (0, 0)), + ("nappro", (0, 0)), + ("Nsc", (0, 0)), + ("Subset;", (8912, 0)), + ("nleftarro", (0, 0)), + ("leftleftar", (0, 0)), + ("Ccar", (0, 0)), + ("Laplace", (0, 0)), + ("DoubleUpAr", (0, 0)), + ("lmid", (0, 0)), + ("Barv", (0, 0)), + ("THORN", (222, 0)), + ("infintie;", (10717, 0)), + ("mlc", (0, 0)), + ("Abr", (0, 0)), + ("Lef", (0, 0)), + ("downharpoonrigh", (0, 0)), + ("bigvee", (0, 0)), + ("fjlig;", (102, 106)), + ("Iscr", (0, 0)), + ("NotLeft", (0, 0)), + ("GreaterFullEqual", (0, 0)), + ("YI", (0, 0)), + ("NotPrecedesSlantEqual", (0, 0)), + ("seswar", (0, 0)), + ("Eps", (0, 0)), + ("FilledV", (0, 0)), + ("Integr", (0, 0)), + ("zeetr", (0, 0)), + ("subsim", (0, 0)), + ("ntriangleright", (0, 0)), + ("doteqdo", (0, 0)), + ("RightVectorBa", (0, 0)), + ("jmath", (0, 0)), + ("an", (0, 0)), + ("NotSquareSubset", (0, 0)), + ("nhpar;", (10994, 0)), + ("nLeftarr", (0, 0)), + ("vareps", (0, 0)), + ("frasl", (0, 0)), + ("CircleP", (0, 0)), + ("Empt", (0, 0)), + ("LeftAngleBracket", (0, 0)), + ("ec", (0, 0)), + ("perc", (0, 0)), + ("cent", (162, 0)), + ("rbrksld", (0, 0)), + ("Uarr", (0, 0)), + ("Integ", (0, 0)), + ("Ffr", (0, 0)), + ("Dow", (0, 0)), + ("Ncy;", (1053, 0)), + ("oac", (0, 0)), + ("Jci", (0, 0)), + ("z", (0, 0)), + ("intlarhk", (0, 0)), + ("psc", (0, 0)), + ("Sca", (0, 0)), + ("THOR", (0, 0)), + ("ogon;", (731, 0)), + ("EmptySma", (0, 0)), + ("ratail;", (10522, 0)), + ("roplu", (0, 0)), + ("loplus", (0, 0)), + ("subseteq;", (8838, 0)), + ("bsolb", (0, 0)), + ("subsete", (0, 0)), + ("notnivb;", (8958, 0)), + ("lopl", (0, 0)), + ("Inv", (0, 0)), + ("gop", (0, 0)), + ("NotC", (0, 0)), + ("Es", (0, 0)), + ("Over", (0, 0)), + ("Downarrow;", (8659, 0)), + ("bigtriangle", (0, 0)), + ("varpropto", (0, 0)), + ("nltrie;", (8940, 0)), + ("vellip", (0, 0)), + ("supsetneq;", (8843, 0)), + ("LJcy", (0, 0)), + ("homtht;", (8763, 0)), + ("Equilibr", (0, 0)), + ("NotNestedGreaterGrea", (0, 0)), + ("en", (0, 0)), + ("LeftFloo", (0, 0)), + ("cross;", (10007, 0)), + ("Vertica", (0, 0)), + ("biguplus;", (10756, 0)), + ("plu", (0, 0)), + ("RightUpTeeVe", (0, 0)), + ("rbb", (0, 0)), + ("nLeftr", (0, 0)), + ("Ele", (0, 0)), + ("gtreqqle", (0, 0)), + ("straightphi", (0, 0)), + ("longleftarro", (0, 0)), + ("lrcorne", (0, 0)), + ("ropar", (0, 0)), + ("kcedi", (0, 0)), + ("Wedg", (0, 0)), + ("hardcy", (0, 0)), + ("Rright", (0, 0)), + ("maps", (0, 0)), + ("nLl", (0, 0)), + ("realine;", (8475, 0)), + ("dcar", (0, 0)), + ("ddagger;", (8225, 0)), + ("lhblk", (0, 0)), + ("LeftTeeVec", (0, 0)), + ("Qopf", (0, 0)), + ("Mell", (0, 0)), + ("lr", (0, 0)), + ("twixt;", (8812, 0)), + ("lbrace;", (123, 0)), + ("csube", (0, 0)), + ("oacu", (0, 0)), + ("rarrpl;", (10565, 0)), + ("Aop", (0, 0)), + ("frow", (0, 0)), + ("simlE", (0, 0)), + ("DownRightVe", (0, 0)), + ("ClockwiseContourIntegr", (0, 0)), + ("LeftArrowRightA", (0, 0)), + ("supsim;", (10952, 0)), + ("boxHD;", (9574, 0)), + ("DownLeftTeeV", (0, 0)), + ("Proportional;", (8733, 0)), + ("CloseCurlyQuot", (0, 0)), + ("iuk", (0, 0)), + ("isindo", (0, 0)), + ("boxplus;", (8862, 0)), + ("Dou", (0, 0)), + ("diams;", (9830, 0)), + ("swa", (0, 0)), + ("compfn;", (8728, 0)), + ("eogo", (0, 0)), + ("LessEqu", (0, 0)), + ("UpArrowDown", (0, 0)), + ("rm", (0, 0)), + ("lnap;", (10889, 0)), + ("SOFTcy", (0, 0)), + ("curvearrowright", (0, 0)), + ("nld", (0, 0)), + ("dhar", (0, 0)), + ("GreaterFullEqua", (0, 0)), + ("long", (0, 0)), + ("integer", (0, 0)), + ("succneqq", (0, 0)), + ("SOFTcy;", (1068, 0)), + ("fallingdot", (0, 0)), + ("Such", (0, 0)), + ("eca", (0, 0)), + ("Produ", (0, 0)), + ("wr;", (8768, 0)), + ("SHCHcy;", (1065, 0)), + ("subsim;", (10951, 0)), + ("tris", (0, 0)), + ("UpTee", (0, 0)), + ("DownRightTeeVect", (0, 0)), + ("No", (0, 0)), + ("compl", (0, 0)), + ("NotDoubleVertic", (0, 0)), + ("nvge;", (8805, 8402)), + ("psi;", (968, 0)), + ("cci", (0, 0)), + ("x", (0, 0)), + ("rtrie", (0, 0)), + ("Udb", (0, 0)), + ("ZeroWidthSpace;", (8203, 0)), + ("nRight", (0, 0)), + ("hookrig", (0, 0)), + ("esim;", (8770, 0)), + ("Ugra", (0, 0)), + ("target", (0, 0)), + ("Gs", (0, 0)), + ("emsp;", (8195, 0)), + ("llarr;", (8647, 0)), + ("che", (0, 0)), + ("Implie", (0, 0)), + ("NotLessLes", (0, 0)), + ("RightUpDownVecto", (0, 0)), + ("nwarh", (0, 0)), + ("vs", (0, 0)), + ("lap", (0, 0)), + ("awint", (0, 0)), + ("omacr;", (333, 0)), + ("si", (0, 0)), + ("jfr", (0, 0)), + ("leftrightsquigarrow;", (8621, 0)), + ("RightDownTeeVec", (0, 0)), + ("sung;", (9834, 0)), + ("mstpo", (0, 0)), + ("dlcr", (0, 0)), + ("LowerRightAr", (0, 0)), + ("bb", (0, 0)), + ("ham", (0, 0)), + ("smas", (0, 0)), + ("nwA", (0, 0)), + ("cemp", (0, 0)), + ("LongLeftArrow", (0, 0)), + ("lesseqgtr", (0, 0)), + ("imof", (0, 0)), + ("between;", (8812, 0)), + ("NotPrecedesEq", (0, 0)), + ("nrA", (0, 0)), + ("UpperRig", (0, 0)), + ("CircleMinus", (0, 0)), + ("boxUl;", (9564, 0)), + ("mapst", (0, 0)), + ("KHc", (0, 0)), + ("SquareSupersetEqu", (0, 0)), + ("precnapprox", (0, 0)), + ("Eacute;", (201, 0)), + ("zacute;", (378, 0)), + ("Longrighta", (0, 0)), + ("nsccue;", (8929, 0)), + ("caro", (0, 0)), + ("NotGreaterTilde", (0, 0)), + ("jser", (0, 0)), + ("beps", (0, 0)), + ("Negati", (0, 0)), + ("ShortRightArrow;", (8594, 0)), + ("nLeftar", (0, 0)), + ("GreaterE", (0, 0)), + ("leftrig", (0, 0)), + ("LessSlantEq", (0, 0)), + ("ldrus", (0, 0)), + ("chcy", (0, 0)), + ("xdt", (0, 0)), + ("Gdot", (0, 0)), + ("blackloz", (0, 0)), + ("DoubleLeftRi", (0, 0)), + ("Sup;", (8913, 0)), + ("NotSu", (0, 0)), + ("Zeta", (0, 0)), + ("dcaron;", (271, 0)), + ("udb", (0, 0)), + ("leftleftarrow", (0, 0)), + ("Copf", (0, 0)), + ("NotSucceed", (0, 0)), + ("DotDot", (0, 0)), + ("NotVerticalB", (0, 0)), + ("Vvdash;", (8874, 0)), + ("trianglerighteq;", (8885, 0)), + ("szli", (0, 0)), + ("ntriangleright;", (8939, 0)), + ("short", (0, 0)), + ("mop", (0, 0)), + ("leftrightarrows;", (8646, 0)), + ("ufi", (0, 0)), + ("ReverseUpEquilibr", (0, 0)), + ("Gamma", (0, 0)), + ("NotLeftT", (0, 0)), + ("flat;", (9837, 0)), + ("Pre", (0, 0)), + ("looparrowright", (0, 0)), + ("glj", (0, 0)), + ("boxdL;", (9557, 0)), + ("ThickSp", (0, 0)), + ("shortparallel;", (8741, 0)), + ("dtdot", (0, 0)), + ("sfrow", (0, 0)), + ("UpperRightArr", (0, 0)), + ("suphsub", (0, 0)), + ("Gcy", (0, 0)), + ("otilde", (245, 0)), + ("ldrushar;", (10571, 0)), + ("nsmid", (0, 0)), + ("HumpEqual;", (8783, 0)), + ("THO", (0, 0)), + ("ReverseUpEquilibrium", (0, 0)), + ("nVD", (0, 0)), + ("CircleT", (0, 0)), + ("Tcaro", (0, 0)), + ("VerticalBar;", (8739, 0)), + ("LeftTriangle;", (8882, 0)), + ("divideont", (0, 0)), + ("Updown", (0, 0)), + ("Rcar", (0, 0)), + ("Dop", (0, 0)), + ("cues", (0, 0)), + ("odas", (0, 0)), + ("Rul", (0, 0)), + ("UnderParenthesis;", (9181, 0)), + ("checkm", (0, 0)), + ("OpenCurlyQuo", (0, 0)), + ("RoundImpl", (0, 0)), + ("Bar", (0, 0)), + ("OpenCurlyDoubleQuote", (0, 0)), + ("Cscr;", (119966, 0)), + ("sqsub;", (8847, 0)), + ("hsla", (0, 0)), + ("orderof;", (8500, 0)), + ("mfr", (0, 0)), + ("ldca;", (10550, 0)), + ("Jcir", (0, 0)), + ("yop", (0, 0)), + ("DoubleContourI", (0, 0)), + ("Uacute", (218, 0)), + ("ll", (0, 0)), + ("DoubleV", (0, 0)), + ("diams", (0, 0)), + ("vsu", (0, 0)), + ("csc", (0, 0)), + ("backco", (0, 0)), + ("orarr;", (8635, 0)), + ("dig", (0, 0)), + ("hksearow;", (10533, 0)), + ("nvlArr", (0, 0)), + ("NotNestedGreate", (0, 0)), + ("demptyv", (0, 0)), + ("Vvdas", (0, 0)), + ("boxUr", (0, 0)), + ("Th", (0, 0)), + ("circlearrowrigh", (0, 0)), + ("Hor", (0, 0)), + ("CirclePlu", (0, 0)), + ("jopf", (0, 0)), + ("DDotr", (0, 0)), + ("rAa", (0, 0)), + ("circled", (0, 0)), + ("pointin", (0, 0)), + ("varsubsetn", (0, 0)), + ("lfish", (0, 0)), + ("DownRightV", (0, 0)), + ("varsupsetneqq;", (10956, 65024)), + ("drcorn;", (8991, 0)), + ("integers;", (8484, 0)), + ("NotSquareSubsetE", (0, 0)), + ("UpArrow;", (8593, 0)), + ("lver", (0, 0)), + ("iiin", (0, 0)), + ("NotGreaterGr", (0, 0)), + ("gnap", (0, 0)), + ("measuredang", (0, 0)), + ("bott", (0, 0)), + ("aacu", (0, 0)), + ("xnis;", (8955, 0)), + ("planck", (0, 0)), + ("Uogon", (0, 0)), + ("Xi", (0, 0)), + ("dlco", (0, 0)), + ("Longleftrightar", (0, 0)), + ("Equilibri", (0, 0)), + ("Iog", (0, 0)), + ("cce", (0, 0)), + ("smt", (0, 0)), + ("DownRightTeeVector", (0, 0)), + ("zwnj", (0, 0)), + ("iacut", (0, 0)), + ("Longr", (0, 0)), + ("DownLeftRightVecto", (0, 0)), + ("Bcy", (0, 0)), + ("wedge;", (8743, 0)), + ("wci", (0, 0)), + ("dzig", (0, 0)), + ("xvee", (0, 0)), + ("UnderBra", (0, 0)), + ("ccirc", (0, 0)), + ("Elemen", (0, 0)), + ("ltd", (0, 0)), + ("lesssi", (0, 0)), + ("ngE;", (8807, 824)), + ("lbrksl", (0, 0)), + ("CounterClockwis", (0, 0)), + ("dotm", (0, 0)), + ("NegativeThickSpace;", (8203, 0)), + ("Bernoullis", (0, 0)), + ("CounterClock", (0, 0)), + ("CounterCl", (0, 0)), + ("Und", (0, 0)), + ("eu", (0, 0)), + ("wed", (0, 0)), + ("bsc", (0, 0)), + ("Uarroc", (0, 0)), + ("dwan", (0, 0)), + ("hooklef", (0, 0)), + ("InvisibleTi", (0, 0)), + ("kcy;", (1082, 0)), + ("Star", (0, 0)), + ("kappav", (0, 0)), + ("eth;", (240, 0)), + ("DiacriticalAcute;", (180, 0)), + ("acirc", (226, 0)), + ("HARDcy", (0, 0)), + ("NotPrecedesE", (0, 0)), + ("bowt", (0, 0)), + ("abr", (0, 0)), + ("loop", (0, 0)), + ("upharpoonle", (0, 0)), + ("bigsqcu", (0, 0)), + ("pi", (0, 0)), + ("rn", (0, 0)), + ("boxvr;", (9500, 0)), + ("angms", (0, 0)), + ("blacktria", (0, 0)), + ("LongRi", (0, 0)), + ("LeftF", (0, 0)), + ("Ch", (0, 0)), + ("UpDo", (0, 0)), + ("Aacute", (193, 0)), + ("eqslantle", (0, 0)), + ("dlcrop", (0, 0)), + ("emptyse", (0, 0)), + ("al", (0, 0)), + ("EmptyVerySmall", (0, 0)), + ("DownLeftRightV", (0, 0)), + ("sa", (0, 0)), + ("ver", (0, 0)), + ("preccurlyeq;", (8828, 0)), + ("Congrue", (0, 0)), + ("Hat;", (94, 0)), + ("nesim;", (8770, 824)), + ("coloneq", (0, 0)), + ("Alp", (0, 0)), + ("boxuL", (0, 0)), + ("smep", (0, 0)), + ("LowerLeftArr", (0, 0)), + ("nges;", (10878, 824)), + ("primes", (0, 0)), + ("hookleftar", (0, 0)), + ("ClockwiseContourIntegral;", (8754, 0)), + ("roplus;", (10798, 0)), + ("ntriangle", (0, 0)), + ("xwedge", (0, 0)), + ("rights", (0, 0)), + ("lmousta", (0, 0)), + ("Auml", (196, 0)), + ("RightDoubleBr", (0, 0)), + ("circledda", (0, 0)), + ("Cacu", (0, 0)), + ("uacu", (0, 0)), + ("precappro", (0, 0)), + ("targ", (0, 0)), + ("sqcup;", (8852, 0)), + ("Aacut", (0, 0)), + ("vzigzag", (0, 0)), + ("strai", (0, 0)), + ("LeftTriangleB", (0, 0)), + ("NotLessGreate", (0, 0)), + ("Po", (0, 0)), + ("cirfnin", (0, 0)), + ("nshor", (0, 0)), + ("bp", (0, 0)), + ("ograve;", (242, 0)), + ("ugrav", (0, 0)), + ("hkswar", (0, 0)), + ("tf", (0, 0)), + ("dstrok", (0, 0)), + ("rarrf", (0, 0)), + ("oelig", (0, 0)), + ("Dstrok", (0, 0)), + ("gam", (0, 0)), + ("sqsubse", (0, 0)), + ("Jsc", (0, 0)), + ("Supers", (0, 0)), + ("kappav;", (1008, 0)), + ("curar", (0, 0)), + ("ino", (0, 0)), + ("angrtvb", (0, 0)), + ("os", (0, 0)), + ("lbb", (0, 0)), + ("frac16", (0, 0)), + ("gtdot;", (8919, 0)), + ("Kopf;", (120130, 0)), + ("prurel;", (8880, 0)), + ("THORN;", (222, 0)), + ("TildeTi", (0, 0)), + ("lBar", (0, 0)), + ("blacktriangleleft", (0, 0)), + ("dlcrop;", (8973, 0)), + ("CounterClockwise", (0, 0)), + ("isinv", (0, 0)), + ("Proportion", (0, 0)), + ("DownRightVectorBa", (0, 0)), + ("mp;", (8723, 0)), + ("varn", (0, 0)), + ("LessSlantEqua", (0, 0)), + ("mco", (0, 0)), + ("Jse", (0, 0)), + ("rthre", (0, 0)), + ("Udbla", (0, 0)), + ("NegativeThickSp", (0, 0)), + ("LongLeftRigh", (0, 0)), + ("Theta;", (920, 0)), + ("wscr", (0, 0)), + ("SquareSuper", (0, 0)), + ("nap", (0, 0)), + ("gtqu", (0, 0)), + ("doublebarwe", (0, 0)), + ("ssetm", (0, 0)), + ("longrighta", (0, 0)), + ("PrecedesT", (0, 0)), + ("lop", (0, 0)), + ("Itilde;", (296, 0)), + ("sup2", (178, 0)), + ("RuleD", (0, 0)), + ("Fouriertrf", (0, 0)), + ("flli", (0, 0)), + ("multima", (0, 0)), + ("Delta;", (916, 0)), + ("DoubleLon", (0, 0)), + ("rBarr", (0, 0)), + ("smal", (0, 0)), + ("DownLeftVect", (0, 0)), + ("Rfr;", (8476, 0)), + ("LeftU", (0, 0)), + ("helli", (0, 0)), + ("Gammad;", (988, 0)), + ("righthar", (0, 0)), + ("nsce", (0, 0)), + ("spar", (0, 0)), + ("nGt;", (8811, 8402)), + ("ud", (0, 0)), + ("varpi", (0, 0)), + ("Og", (0, 0)), + ("Leftarr", (0, 0)), + ("Mediu", (0, 0)), + ("plusmn;", (177, 0)), + ("RightTriangle", (0, 0)), + ("ncon", (0, 0)), + ("Nca", (0, 0)), + ("napE", (0, 0)), + ("succneqq;", (10934, 0)), + ("Ubrc", (0, 0)), + ("divide;", (247, 0)), + ("kg", (0, 0)), + ("topcir;", (10993, 0)), + ("LeftDownTee", (0, 0)), + ("NegativeVeryTh", (0, 0)), + ("fema", (0, 0)), + ("frac15", (0, 0)), + ("scn", (0, 0)), + ("RightTeeVe", (0, 0)), + ("blackl", (0, 0)), + ("Shor", (0, 0)), + ("DoubleLeftArrow;", (8656, 0)), + ("Rr", (0, 0)), + ("ngeqq", (0, 0)), + ("Uarrocir;", (10569, 0)), + ("NotRev", (0, 0)), + ("NotDoubleVerti", (0, 0)), + ("Lcar", (0, 0)), + ("LeftTeeArr", (0, 0)), + ("supsu", (0, 0)), + ("PrecedesTi", (0, 0)), + ("oci", (0, 0)), + ("angm", (0, 0)), + ("fsc", (0, 0)), + ("complem", (0, 0)), + ("straightphi;", (981, 0)), + ("sqsupe;", (8850, 0)), + ("LongRightArrow;", (10230, 0)), + ("dbla", (0, 0)), + ("Psi;", (936, 0)), + ("drbk", (0, 0)), + ("ring;", (730, 0)), + ("leftleftarrows;", (8647, 0)), + ("ntrianglerighteq;", (8941, 0)), + ("updownarro", (0, 0)), + ("hsl", (0, 0)), + ("ClockwiseCo", (0, 0)), + ("imath", (0, 0)), + ("LeftTeeA", (0, 0)), + ("hstro", (0, 0)), + ("NotHum", (0, 0)), + ("Re;", (8476, 0)), + ("ycir", (0, 0)), + ("subsu", (0, 0)), + ("wre", (0, 0)), + ("cwconint", (0, 0)), + ("NotSucceedsTild", (0, 0)), + ("ntrian", (0, 0)), + ("lHar", (0, 0)), + ("Prime", (0, 0)), + ("SmallCircl", (0, 0)), + ("Backsl", (0, 0)), + ("euml;", (235, 0)), + ("ntl", (0, 0)), + ("Fop", (0, 0)), + ("lcy;", (1083, 0)), + ("doublebarw", (0, 0)), + ("Oac", (0, 0)), + ("zdot;", (380, 0)), + ("ReverseUpEqu", (0, 0)), + ("ucir", (0, 0)), + ("Interse", (0, 0)), + ("Otilde;", (213, 0)), + ("rflo", (0, 0)), + ("LeftVectorBar", (0, 0)), + ("gtrsim", (0, 0)), + ("subn", (0, 0)), + ("spar;", (8741, 0)), + ("Tc", (0, 0)), + ("UpArr", (0, 0)), + ("Ccir", (0, 0)), + ("RightAngleBracket", (0, 0)), + ("udarr", (0, 0)), + ("uwan", (0, 0)), + ("club", (0, 0)), + ("lopf;", (120157, 0)), + ("xharr", (0, 0)), + ("xma", (0, 0)), + ("ltci", (0, 0)), + ("nw", (0, 0)), + ("FilledVerySm", (0, 0)), + ("hs", (0, 0)), + ("UpperLeftArrow", (0, 0)), + ("NotSuperset", (0, 0)), + ("SHCHc", (0, 0)), + ("Rscr", (0, 0)), + ("FilledVerySma", (0, 0)), + ("trimin", (0, 0)), + ("uring;", (367, 0)), + ("lAtai", (0, 0)), + ("Equilib", (0, 0)), + ("varpropt", (0, 0)), + ("inod", (0, 0)), + ("Longrightarrow;", (10233, 0)), + ("Yf", (0, 0)), + ("Bo", (0, 0)), + ("Round", (0, 0)), + ("capb", (0, 0)), + ("ecir", (0, 0)), + ("NotHumpDownHump", (0, 0)), + ("curarrm", (0, 0)), + ("Aac", (0, 0)), + ("lthree;", (8907, 0)), + ("olcir", (0, 0)), + ("Intersection;", (8898, 0)), + ], +}; diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/output b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/output new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/root-output b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/root-output new file mode 100644 index 0000000..bb6b326 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/stderr b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build-script-build b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build-script-build new file mode 100755 index 0000000..812da81 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d new file mode 100755 index 0000000..812da81 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d differ diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d.d b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d.d new file mode 100644 index 0000000..bad4c5f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/build.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/entities.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/build.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/entities.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/build.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/entities.rs: diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/output b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/output new file mode 100644 index 0000000..e4a87f2 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(tsan_enabled) diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/root-output b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/root-output new file mode 100644 index 0000000..6bb9416 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/stderr b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build-script-build b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build-script-build new file mode 100755 index 0000000..6cadd93 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f new file mode 100755 index 0000000..6cadd93 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f differ diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f.d b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f.d new file mode 100644 index 0000000..4ff3cee --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/output b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/output new file mode 100644 index 0000000..a4e2ef0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/output @@ -0,0 +1,19 @@ +cargo:rustc-check-cfg=cfg(fuzzing) +cargo:rustc-check-cfg=cfg(no_is_available) +cargo:rustc-check-cfg=cfg(no_literal_byte_character) +cargo:rustc-check-cfg=cfg(no_literal_c_string) +cargo:rustc-check-cfg=cfg(no_source_text) +cargo:rustc-check-cfg=cfg(proc_macro_span) +cargo:rustc-check-cfg=cfg(proc_macro_span_file) +cargo:rustc-check-cfg=cfg(proc_macro_span_location) +cargo:rustc-check-cfg=cfg(procmacro2_backtrace) +cargo:rustc-check-cfg=cfg(procmacro2_build_probe) +cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) +cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) +cargo:rustc-check-cfg=cfg(randomize_layout) +cargo:rustc-check-cfg=cfg(span_locations) +cargo:rustc-check-cfg=cfg(super_unstable) +cargo:rustc-check-cfg=cfg(wrap_proc_macro) +cargo:rerun-if-changed=src/probe/proc_macro_span.rs +cargo:rustc-cfg=wrap_proc_macro +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/root-output b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/root-output new file mode 100644 index 0000000..ffc399d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/stderr b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build-script-build b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build-script-build new file mode 100755 index 0000000..03d16b1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b new file mode 100755 index 0000000..03d16b1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b differ diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b.d b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b.d new file mode 100644 index 0000000..fbcb477 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build-script-build b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build-script-build new file mode 100755 index 0000000..ee49deb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c new file mode 100755 index 0000000..ee49deb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c differ diff --git a/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c.d b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c.d new file mode 100644 index 0000000..ee1a47b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs new file mode 100644 index 0000000..0fa77f2 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs @@ -0,0 +1,63 @@ +{ static SET: ::phf::Set<&'static str> = ::phf::Set { map: ::phf::Map { + key: 10121458955350035957, + disps: &[ + (0, 2), + (8, 17), + (1, 5), + (0, 0), + (0, 20), + (0, 3), + (15, 2), + (17, 19), + (8, 9), + (0, 15), + ], + entries: &[ + ("dir", ()), + ("http-equiv", ()), + ("rel", ()), + ("enctype", ()), + ("align", ()), + ("accept", ()), + ("nohref", ()), + ("lang", ()), + ("bgcolor", ()), + ("direction", ()), + ("valign", ()), + ("checked", ()), + ("frame", ()), + ("link", ()), + ("accept-charset", ()), + ("hreflang", ()), + ("text", ()), + ("valuetype", ()), + ("language", ()), + ("nowrap", ()), + ("vlink", ()), + ("disabled", ()), + ("noshade", ()), + ("codetype", ()), + ("defer", ()), + ("noresize", ()), + ("target", ()), + ("scrolling", ()), + ("rules", ()), + ("scope", ()), + ("rev", ()), + ("media", ()), + ("method", ()), + ("charset", ()), + ("alink", ()), + ("selected", ()), + ("multiple", ()), + ("color", ()), + ("shape", ()), + ("type", ()), + ("clear", ()), + ("compact", ()), + ("face", ()), + ("declare", ()), + ("axis", ()), + ("readonly", ()), + ], +} }; &SET } \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/output b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/output new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/root-output b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/root-output new file mode 100644 index 0000000..226b12a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/stderr b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs new file mode 100644 index 0000000..9843df3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs @@ -0,0 +1,6 @@ +#[doc(hidden)] +pub mod __private227 { + #[doc(hidden)] + pub use crate::private::*; +} +use serde_core::__private227 as serde_core_private; diff --git a/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/output b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/output new file mode 100644 index 0000000..3303337 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/output @@ -0,0 +1,12 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(feature, values("result")) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_core) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/root-output b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/root-output new file mode 100644 index 0000000..403bbcd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/stderr b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build-script-build b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build-script-build new file mode 100755 index 0000000..64856ad Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6 b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6 new file mode 100755 index 0000000..64856ad Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6 differ diff --git a/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6.d b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6.d new file mode 100644 index 0000000..d626d92 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build-script-build b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build-script-build new file mode 100755 index 0000000..a74ff60 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0 b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0 new file mode 100755 index 0000000..a74ff60 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0 differ diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0.d b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0.d new file mode 100644 index 0000000..c499f7f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs new file mode 100644 index 0000000..a6eeed7 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs @@ -0,0 +1,5 @@ +#[doc(hidden)] +pub mod __private227 { + #[doc(hidden)] + pub use crate::private::*; +} diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/output b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/output new file mode 100644 index 0000000..328aabf --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/output @@ -0,0 +1,11 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_core) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/root-output b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/root-output new file mode 100644 index 0000000..a58cbfd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/stderr b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build-script-build b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build-script-build new file mode 100755 index 0000000..f34f28d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d new file mode 100755 index 0000000..f34f28d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d differ diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d.d b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d.d new file mode 100644 index 0000000..5b516cb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/output b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/output new file mode 100644 index 0000000..3b23df4 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build/probe.rs +cargo:rustc-check-cfg=cfg(error_generic_member_access) +cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/root-output b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/root-output new file mode 100644 index 0000000..e8b5ef6 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/stderr b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/output b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/output new file mode 100644 index 0000000..bcc05c8 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/output @@ -0,0 +1,24 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-changed=Cargo.toml +cargo:rustc-check-cfg=cfg(zerocopy_core_error_1_81_0) +cargo:rustc-check-cfg=cfg(rust, values("1.81.0")) +cargo:rustc-check-cfg=cfg(zerocopy_diagnostic_on_unimplemented_1_78_0) +cargo:rustc-check-cfg=cfg(rust, values("1.78.0")) +cargo:rustc-check-cfg=cfg(zerocopy_generic_bounds_in_const_fn_1_61_0) +cargo:rustc-check-cfg=cfg(rust, values("1.61.0")) +cargo:rustc-check-cfg=cfg(zerocopy_target_has_atomics_1_60_0) +cargo:rustc-check-cfg=cfg(rust, values("1.60.0")) +cargo:rustc-check-cfg=cfg(zerocopy_aarch64_simd_1_59_0) +cargo:rustc-check-cfg=cfg(rust, values("1.59.0")) +cargo:rustc-check-cfg=cfg(zerocopy_panic_in_const_and_vec_try_reserve_1_57_0) +cargo:rustc-check-cfg=cfg(rust, values("1.57.0")) +cargo:rustc-check-cfg=cfg(doc_cfg) +cargo:rustc-check-cfg=cfg(kani) +cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_NIGHTLY_FEATURES_IN_TESTS) +cargo:rustc-check-cfg=cfg(coverage_nightly) +cargo:rustc-cfg=zerocopy_core_error_1_81_0 +cargo:rustc-cfg=zerocopy_diagnostic_on_unimplemented_1_78_0 +cargo:rustc-cfg=zerocopy_generic_bounds_in_const_fn_1_61_0 +cargo:rustc-cfg=zerocopy_target_has_atomics_1_60_0 +cargo:rustc-cfg=zerocopy_aarch64_simd_1_59_0 +cargo:rustc-cfg=zerocopy_panic_in_const_and_vec_try_reserve_1_57_0 diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/root-output b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/root-output new file mode 100644 index 0000000..f749393 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/stderr b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build-script-build b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build-script-build new file mode 100755 index 0000000..caf1b6f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6 b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6 new file mode 100755 index 0000000..caf1b6f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6 differ diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6.d b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6.d new file mode 100644 index 0000000..6ecf44b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/build.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.ahash.a622eb46365454f6-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.ahash.a622eb46365454f6-cgu.0.rcgu.o new file mode 100644 index 0000000..691cfa6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.ahash.a622eb46365454f6-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.d b/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.d new file mode 100644 index 0000000..6e84d35 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/convert.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/fallback_hash.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/operations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/random_state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/specialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/convert.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/fallback_hash.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/operations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/random_state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/specialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/convert.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/fallback_hash.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/operations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/random_state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/specialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_set.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/convert.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/fallback_hash.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/operations.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/random_state.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/specialize.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_set.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.00.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.00.rcgu.o new file mode 100644 index 0000000..af30ca8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.00.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.01.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.01.rcgu.o new file mode 100644 index 0000000..e6985b1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.01.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.02.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.02.rcgu.o new file mode 100644 index 0000000..803a5fa Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.02.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.03.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.03.rcgu.o new file mode 100644 index 0000000..7d2b839 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.03.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.04.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.04.rcgu.o new file mode 100644 index 0000000..6107415 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.04.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.05.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.05.rcgu.o new file mode 100644 index 0000000..3c04e21 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.05.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.06.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.06.rcgu.o new file mode 100644 index 0000000..3edc560 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.06.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.07.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.07.rcgu.o new file mode 100644 index 0000000..42e6c41 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.07.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.08.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.08.rcgu.o new file mode 100644 index 0000000..384eb4e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.08.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.09.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.09.rcgu.o new file mode 100644 index 0000000..7884db3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.09.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.10.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.10.rcgu.o new file mode 100644 index 0000000..2cf375b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.10.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.11.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.11.rcgu.o new file mode 100644 index 0000000..6573e01 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.11.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.12.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.12.rcgu.o new file mode 100644 index 0000000..e525db4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.12.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.13.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.13.rcgu.o new file mode 100644 index 0000000..0aa1b66 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.13.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.14.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.14.rcgu.o new file mode 100644 index 0000000..141adc6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.14.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.15.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.15.rcgu.o new file mode 100644 index 0000000..4829253 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.15.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.d b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.d new file mode 100644 index 0000000..7e27928 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.d @@ -0,0 +1,35 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/ahocorasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/automaton.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/contiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/noncontiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/api.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/pattern.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/generic.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/vector.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/byte_frequencies.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/prefilter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/special.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/ahocorasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/automaton.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/contiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/noncontiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/api.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/pattern.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/generic.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/vector.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/byte_frequencies.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/prefilter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/special.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/ahocorasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/automaton.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/contiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/noncontiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/api.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/pattern.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/generic.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/vector.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/byte_frequencies.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/prefilter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/special.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/ahocorasick.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/automaton.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/dfa.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/contiguous.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/noncontiguous.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/api.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/ext.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/pattern.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/rabinkarp.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/builder.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/generic.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/vector.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/alphabet.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/buffer.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/byte_frequencies.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/debug.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/int.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/prefilter.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/primitives.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/remapper.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/search.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/special.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/autocfg-98a6c7819a03ebc1.d b/src-tauri/html_scraper/target/debug/deps/autocfg-98a6c7819a03ebc1.d new file mode 100644 index 0000000..0c82458 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/autocfg-98a6c7819a03ebc1.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/rustc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/version.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/rustc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/version.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/autocfg-98a6c7819a03ebc1.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/rustc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/version.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/rustc.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/version.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.bitflags.3b609935b49466ea-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.bitflags.3b609935b49466ea-cgu.0.rcgu.o new file mode 100644 index 0000000..bd6ab0c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.bitflags.3b609935b49466ea-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.d b/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.d new file mode 100644 index 0000000..618caeb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/traits.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/public.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/internal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/external.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/traits.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/public.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/internal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/external.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/traits.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/public.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/internal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/external.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/iter.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/parser.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/traits.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/public.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/internal.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/external.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.byteorder.443fd7c268c051fb-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.byteorder.443fd7c268c051fb-cgu.0.rcgu.o new file mode 100644 index 0000000..c124486 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.byteorder.443fd7c268c051fb-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.d b/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.d new file mode 100644 index 0000000..bb3745d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/io.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/io.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/io.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/io.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.cfg_if.8dbb0e1ae7ab0909-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.cfg_if.8dbb0e1ae7ab0909-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.cfg_if.8dbb0e1ae7ab0909-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.d b/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.d new file mode 100644 index 0000000..47e659d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cfg-if-1.0.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cfg-if-1.0.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cfg-if-1.0.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cfg-if-1.0.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.0.rcgu.o new file mode 100644 index 0000000..bafbfae Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.1.rcgu.o new file mode 100644 index 0000000..1dabc46 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.2.rcgu.o new file mode 100644 index 0000000..5197a91 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.3.rcgu.o new file mode 100644 index 0000000..eed370e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.4.rcgu.o new file mode 100644 index 0000000..68fa6f8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.d b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.d new file mode 100644 index 0000000..e3040df --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/rules_and_declarations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/tokenizer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/color.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/cow_rc_str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/from_bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/nth.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/serializer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/unicode_range.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/rules_and_declarations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/tokenizer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/color.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/cow_rc_str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/from_bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/nth.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/serializer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/unicode_range.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/rules_and_declarations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/tokenizer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/color.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/cow_rc_str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/from_bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/nth.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/serializer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/unicode_range.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/rules_and_declarations.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/tokenizer.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/color.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/cow_rc_str.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/from_bytes.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/nth.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/parser.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/serializer.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/unicode_range.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser_macros-309442e57d19e9f2.d b/src-tauri/html_scraper/target/debug/deps/cssparser_macros-309442e57d19e9f2.d new file mode 100644 index 0000000..5ce97b5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/cssparser_macros-309442e57d19e9f2.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libcssparser_macros-309442e57d19e9f2.dylib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-macros-0.6.1/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/cssparser_macros-309442e57d19e9f2.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-macros-0.6.1/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-macros-0.6.1/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.d b/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.d new file mode 100644 index 0000000..27ab8a0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/new_debug_unreachable-1.0.6/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/new_debug_unreachable-1.0.6/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/new_debug_unreachable-1.0.6/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/new_debug_unreachable-1.0.6/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.debug_unreachable.f6a221ab3b093fc4-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.debug_unreachable.f6a221ab3b093fc4-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.debug_unreachable.f6a221ab3b093fc4-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/derive_more-4900dcbe6b0f93e2.d b/src-tauri/html_scraper/target/debug/deps/derive_more-4900dcbe6b0f93e2.d new file mode 100644 index 0000000..4228aa3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/derive_more-4900dcbe6b0f93e2.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libderive_more-4900dcbe6b0f93e2.dylib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/syn_compat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_assign_like.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_helpers.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_like.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/derive_more-4900dcbe6b0f93e2.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/syn_compat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_assign_like.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_helpers.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_like.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/syn_compat.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/utils.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_assign_like.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_helpers.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_like.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.d b/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.d new file mode 100644 index 0000000..b4ee216 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/diyfp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/dtoa.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/diyfp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/dtoa.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/diyfp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/dtoa.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/diyfp.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/dtoa.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.dtoa.e89bdeb55a03d729-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.dtoa.e89bdeb55a03d729-cgu.0.rcgu.o new file mode 100644 index 0000000..d2ef7f1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.dtoa.e89bdeb55a03d729-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.d b/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.d new file mode 100644 index 0000000..6dc8e84 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-short-0.3.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-short-0.3.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-short-0.3.5/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-short-0.3.5/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.dtoa_short.6a4908e62f78fba9-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.dtoa_short.6a4908e62f78fba9-cgu.0.rcgu.o new file mode 100644 index 0000000..dd08bf6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.dtoa_short.6a4908e62f78fba9-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.d b/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.d new file mode 100644 index 0000000..be80efb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/iter.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/iter.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/iter.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/iter.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.ego_tree.64d46a3d8b59774f-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.ego_tree.64d46a3d8b59774f-cgu.0.rcgu.o new file mode 100644 index 0000000..9425d33 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.ego_tree.64d46a3d8b59774f-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.d b/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.d new file mode 100644 index 0000000..17e553a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/futf-0.1.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/futf-0.1.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/futf-0.1.5/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/futf-0.1.5/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.futf.ffa191e414c6c955-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.futf.ffa191e414c6c955-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.futf.ffa191e414c6c955-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.d b/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.d new file mode 100644 index 0000000..005ffda --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/fxhash-0.2.1/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/fxhash-0.2.1/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/fxhash-0.2.1/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/fxhash-0.2.1/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.fxhash.ebb04e844a81fe44-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.fxhash.ebb04e844a81fe44-cgu.0.rcgu.o new file mode 100644 index 0000000..f489239 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.fxhash.ebb04e844a81fe44-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.d b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.d new file mode 100644 index 0000000..2b13223 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getopts-0.2.24/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getopts-0.2.24/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getopts-0.2.24/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getopts-0.2.24/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.0.rcgu.o new file mode 100644 index 0000000..855cf26 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.1.rcgu.o new file mode 100644 index 0000000..fe74807 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.2.rcgu.o new file mode 100644 index 0000000..a5fcfad Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.3.rcgu.o new file mode 100644 index 0000000..559b80f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.4.rcgu.o new file mode 100644 index 0000000..e3560a3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getrandom-009f56382c9c07b5.d b/src-tauri/html_scraper/target/debug/deps/getrandom-009f56382c9c07b5.d new file mode 100644 index 0000000..fe4fe53 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/getrandom-009f56382c9c07b5.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error_impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util_libc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/getentropy.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error_impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util_libc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/getentropy.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/getrandom-009f56382c9c07b5.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error_impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util_libc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/getentropy.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error_impls.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util_libc.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/getentropy.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.d b/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.d new file mode 100644 index 0000000..c120605 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/../README.md /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/../util_libc.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/../README.md /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/../util_libc.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/../README.md /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/../util_libc.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/util.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/../README.md: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/getentropy.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/../util_libc.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.getrandom.23514f9a2e17d5ce-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.getrandom.23514f9a2e17d5ce-cgu.0.rcgu.o new file mode 100644 index 0000000..f3fa174 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.getrandom.23514f9a2e17d5ce-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.d b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.d new file mode 100644 index 0000000..df6f1ea --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.d @@ -0,0 +1,22 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/util/str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/driver.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/serialize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/interface.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/states.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/tag_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/types.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/util/str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/driver.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/serialize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/interface.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/states.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/tag_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/types.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/util/str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/driver.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/serialize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/interface.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/states.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/tag_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/types.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/util/str.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/driver.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/serialize/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/interface.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/states.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/tag_sets.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/data.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/types.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out diff --git a/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.0.rcgu.o new file mode 100644 index 0000000..310c66d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.1.rcgu.o new file mode 100644 index 0000000..7718ca4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4 b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4 new file mode 100755 index 0000000..e845f06 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4 differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0fcsk5p6640nhux62do561e5m.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0fcsk5p6640nhux62do561e5m.rcgu.o new file mode 100644 index 0000000..73237af Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0fcsk5p6640nhux62do561e5m.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0lv1mmoupz9d2b3tsknm8hutu.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0lv1mmoupz9d2b3tsknm8hutu.rcgu.o new file mode 100644 index 0000000..0a43811 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0lv1mmoupz9d2b3tsknm8hutu.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0rc2l8pajzz4gn7cbc7dqx9jk.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0rc2l8pajzz4gn7cbc7dqx9jk.rcgu.o new file mode 100644 index 0000000..e5707d2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0rc2l8pajzz4gn7cbc7dqx9jk.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0yspoa633qln51fo83mxqf1n4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0yspoa633qln51fo83mxqf1n4.rcgu.o new file mode 100644 index 0000000..2b7a222 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0yspoa633qln51fo83mxqf1n4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.17irvcia3duzq2q2yty2ykg4r.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.17irvcia3duzq2q2yty2ykg4r.rcgu.o new file mode 100644 index 0000000..926b7cc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.17irvcia3duzq2q2yty2ykg4r.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1jfw1o0xa71tt5aq2hwesyntw.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1jfw1o0xa71tt5aq2hwesyntw.rcgu.o new file mode 100644 index 0000000..2923fc9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1jfw1o0xa71tt5aq2hwesyntw.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1qjnh3krkjn4vhomsnc78lrsb.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1qjnh3krkjn4vhomsnc78lrsb.rcgu.o new file mode 100644 index 0000000..d90d152 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1qjnh3krkjn4vhomsnc78lrsb.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.233dygu5oemottzw6otgw9n8u.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.233dygu5oemottzw6otgw9n8u.rcgu.o new file mode 100644 index 0000000..ef81c9e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.233dygu5oemottzw6otgw9n8u.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26sb7rgkr7wddh9b0t5gdjp6m.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26sb7rgkr7wddh9b0t5gdjp6m.rcgu.o new file mode 100644 index 0000000..9495466 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26sb7rgkr7wddh9b0t5gdjp6m.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26vljy91qcv7539nvfgh5xd99.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26vljy91qcv7539nvfgh5xd99.rcgu.o new file mode 100644 index 0000000..4f9d3b6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26vljy91qcv7539nvfgh5xd99.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.35x00blx5saj5o1842c4tptbc.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.35x00blx5saj5o1842c4tptbc.rcgu.o new file mode 100644 index 0000000..b6f8e9d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.35x00blx5saj5o1842c4tptbc.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.38ad93pjtjpnvx08yejfcu8w3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.38ad93pjtjpnvx08yejfcu8w3.rcgu.o new file mode 100644 index 0000000..2456fa9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.38ad93pjtjpnvx08yejfcu8w3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3f2zivfsult6pdsh53l8cujpl.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3f2zivfsult6pdsh53l8cujpl.rcgu.o new file mode 100644 index 0000000..3b11151 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3f2zivfsult6pdsh53l8cujpl.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3n4f594le6oudtkcwz57j5o86.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3n4f594le6oudtkcwz57j5o86.rcgu.o new file mode 100644 index 0000000..3dd0cb4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3n4f594le6oudtkcwz57j5o86.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3pp2h5b4ctd7pdyw2l38lyslh.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3pp2h5b4ctd7pdyw2l38lyslh.rcgu.o new file mode 100644 index 0000000..0e69e5f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3pp2h5b4ctd7pdyw2l38lyslh.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.490hh0cdvmtz0ui41hfslqzg4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.490hh0cdvmtz0ui41hfslqzg4.rcgu.o new file mode 100644 index 0000000..8023410 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.490hh0cdvmtz0ui41hfslqzg4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.4odrr8frdyp89dnhj8f1vjoir.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.4odrr8frdyp89dnhj8f1vjoir.rcgu.o new file mode 100644 index 0000000..16ca3f1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.4odrr8frdyp89dnhj8f1vjoir.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.5ndejy401jrgeyx0cgghjw105.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.5ndejy401jrgeyx0cgghjw105.rcgu.o new file mode 100644 index 0000000..0ce0e32 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.5ndejy401jrgeyx0cgghjw105.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.6qamp1awtw2pt9zsjj4ydtv8t.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.6qamp1awtw2pt9zsjj4ydtv8t.rcgu.o new file mode 100644 index 0000000..541a332 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.6qamp1awtw2pt9zsjj4ydtv8t.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.70omcky5x2tj76lsdy8b3o2l6.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.70omcky5x2tj76lsdy8b3o2l6.rcgu.o new file mode 100644 index 0000000..d51bcaa Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.70omcky5x2tj76lsdy8b3o2l6.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.726sor76cik6i9d5nfxa3fgj8.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.726sor76cik6i9d5nfxa3fgj8.rcgu.o new file mode 100644 index 0000000..e6c994b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.726sor76cik6i9d5nfxa3fgj8.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.76hqp2u3747liovxqib89kwks.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.76hqp2u3747liovxqib89kwks.rcgu.o new file mode 100644 index 0000000..c79fc36 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.76hqp2u3747liovxqib89kwks.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.77q5twacv6b41mehd4zfes6vd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.77q5twacv6b41mehd4zfes6vd.rcgu.o new file mode 100644 index 0000000..f6e9612 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.77q5twacv6b41mehd4zfes6vd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7s4qd3pxcyrfo9b9vroupubq5.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7s4qd3pxcyrfo9b9vroupubq5.rcgu.o new file mode 100644 index 0000000..ceee5ab Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7s4qd3pxcyrfo9b9vroupubq5.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7zhjmr777hvu459ex8pmwlgvi.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7zhjmr777hvu459ex8pmwlgvi.rcgu.o new file mode 100644 index 0000000..ae70ae0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7zhjmr777hvu459ex8pmwlgvi.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.88o5p7bc6b00in5g8diw4skk3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.88o5p7bc6b00in5g8diw4skk3.rcgu.o new file mode 100644 index 0000000..d617ac8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.88o5p7bc6b00in5g8diw4skk3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.89ltyufelia3ztv9eg7cngsiz.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.89ltyufelia3ztv9eg7cngsiz.rcgu.o new file mode 100644 index 0000000..5954e92 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.89ltyufelia3ztv9eg7cngsiz.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8mpkm3obli6gu0cjt15zvy71m.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8mpkm3obli6gu0cjt15zvy71m.rcgu.o new file mode 100644 index 0000000..600c441 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8mpkm3obli6gu0cjt15zvy71m.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8rxju4hhiq6wux82l6yiizkgd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8rxju4hhiq6wux82l6yiizkgd.rcgu.o new file mode 100644 index 0000000..86075c6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8rxju4hhiq6wux82l6yiizkgd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8tza4jqu1gm9jh0ur7c8u4tzi.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8tza4jqu1gm9jh0ur7c8u4tzi.rcgu.o new file mode 100644 index 0000000..ec017e1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8tza4jqu1gm9jh0ur7c8u4tzi.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.962gt8otmgg19vybis8vnqowe.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.962gt8otmgg19vybis8vnqowe.rcgu.o new file mode 100644 index 0000000..9adca25 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.962gt8otmgg19vybis8vnqowe.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.a5pftzzs9gp08dycqcefqtez3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.a5pftzzs9gp08dycqcefqtez3.rcgu.o new file mode 100644 index 0000000..c392175 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.a5pftzzs9gp08dycqcefqtez3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.atm1ikwm5ete2bpwsg0zzwzub.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.atm1ikwm5ete2bpwsg0zzwzub.rcgu.o new file mode 100644 index 0000000..66c86b4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.atm1ikwm5ete2bpwsg0zzwzub.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b12r6v1udsr6tk3v1gmt7g6h3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b12r6v1udsr6tk3v1gmt7g6h3.rcgu.o new file mode 100644 index 0000000..340c47b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b12r6v1udsr6tk3v1gmt7g6h3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b59ofr9ymqm4k9j0mgk91aj3a.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b59ofr9ymqm4k9j0mgk91aj3a.rcgu.o new file mode 100644 index 0000000..2f8c02f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b59ofr9ymqm4k9j0mgk91aj3a.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.bckj4pq8r3y675k238szfito9.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.bckj4pq8r3y675k238szfito9.rcgu.o new file mode 100644 index 0000000..36078df Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.bckj4pq8r3y675k238szfito9.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.c3rmrr85ht2zojihk5adrhhlm.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.c3rmrr85ht2zojihk5adrhhlm.rcgu.o new file mode 100644 index 0000000..02d81ba Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.c3rmrr85ht2zojihk5adrhhlm.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cgufaxjv7gcvm0rfr63u6iu8a.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cgufaxjv7gcvm0rfr63u6iu8a.rcgu.o new file mode 100644 index 0000000..30502c0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cgufaxjv7gcvm0rfr63u6iu8a.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cqz2n9ptrsu52ia9zlrgxvm8f.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cqz2n9ptrsu52ia9zlrgxvm8f.rcgu.o new file mode 100644 index 0000000..43682d5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cqz2n9ptrsu52ia9zlrgxvm8f.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cwxjdol3rqcaeuy9f9veuiikc.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cwxjdol3rqcaeuy9f9veuiikc.rcgu.o new file mode 100644 index 0000000..886d1b6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cwxjdol3rqcaeuy9f9veuiikc.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d new file mode 100644 index 0000000..a4acd11 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4: src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d: src/lib.rs + +src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d2ishb7f5q91fc4yvgnkim9ba.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d2ishb7f5q91fc4yvgnkim9ba.rcgu.o new file mode 100644 index 0000000..a79adc6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d2ishb7f5q91fc4yvgnkim9ba.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dlcz24gcirwy97wt2bgol3ggj.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dlcz24gcirwy97wt2bgol3ggj.rcgu.o new file mode 100644 index 0000000..7c51d8c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dlcz24gcirwy97wt2bgol3ggj.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dvqjbjk7knm8idwr6dekzfdqm.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dvqjbjk7knm8idwr6dekzfdqm.rcgu.o new file mode 100644 index 0000000..63484f9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dvqjbjk7knm8idwr6dekzfdqm.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dy8l49glza8fngu15t3426uka.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dy8l49glza8fngu15t3426uka.rcgu.o new file mode 100644 index 0000000..d8655dc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dy8l49glza8fngu15t3426uka.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.egzmj45w6ie3mmtfmtk69befw.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.egzmj45w6ie3mmtfmtk69befw.rcgu.o new file mode 100644 index 0000000..6a5ac10 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.egzmj45w6ie3mmtfmtk69befw.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.ela3k6e9d7iwlu6pryv95glg9.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.ela3k6e9d7iwlu6pryv95glg9.rcgu.o new file mode 100644 index 0000000..9efd492 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.ela3k6e9d7iwlu6pryv95glg9.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.en6fxehcklkge1kilqu1ld4b1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.en6fxehcklkge1kilqu1ld4b1.rcgu.o new file mode 100644 index 0000000..e83e4a9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.en6fxehcklkge1kilqu1ld4b1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.f2hq9dlrbzf6msnd4nv213mp9.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.f2hq9dlrbzf6msnd4nv213mp9.rcgu.o new file mode 100644 index 0000000..9744542 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.f2hq9dlrbzf6msnd4nv213mp9.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05a6ledm442jo1gucysw1iy2z.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05a6ledm442jo1gucysw1iy2z.rcgu.o new file mode 100644 index 0000000..6b3bf74 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05a6ledm442jo1gucysw1iy2z.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05chzh1mrghd3iwcetxqdf9bw.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05chzh1mrghd3iwcetxqdf9bw.rcgu.o new file mode 100644 index 0000000..cd80156 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05chzh1mrghd3iwcetxqdf9bw.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.16x6yclox1660fea03vwrbdzd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.16x6yclox1660fea03vwrbdzd.rcgu.o new file mode 100644 index 0000000..7296bd3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.16x6yclox1660fea03vwrbdzd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1stwb7jdagsfck60n0ggk68n5.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1stwb7jdagsfck60n0ggk68n5.rcgu.o new file mode 100644 index 0000000..dc2a437 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1stwb7jdagsfck60n0ggk68n5.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1u5v5rxzv4wnoop5ia95w49pj.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1u5v5rxzv4wnoop5ia95w49pj.rcgu.o new file mode 100644 index 0000000..80109f2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1u5v5rxzv4wnoop5ia95w49pj.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1xxmhia9kqr2fen0aqth4lgi2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1xxmhia9kqr2fen0aqth4lgi2.rcgu.o new file mode 100644 index 0000000..f33e827 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1xxmhia9kqr2fen0aqth4lgi2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.243zektbon76lz4jau4xt9iqm.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.243zektbon76lz4jau4xt9iqm.rcgu.o new file mode 100644 index 0000000..5fd01ec Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.243zektbon76lz4jau4xt9iqm.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2lvyx338e47biinqax6gmkrko.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2lvyx338e47biinqax6gmkrko.rcgu.o new file mode 100644 index 0000000..a33494e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2lvyx338e47biinqax6gmkrko.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2mn8jkuf32lyu5ug7ekt3vvmd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2mn8jkuf32lyu5ug7ekt3vvmd.rcgu.o new file mode 100644 index 0000000..bc7a82b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2mn8jkuf32lyu5ug7ekt3vvmd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2s48w3375yopeg099qp6t5i4z.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2s48w3375yopeg099qp6t5i4z.rcgu.o new file mode 100644 index 0000000..0dbbda5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2s48w3375yopeg099qp6t5i4z.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.34a5zqftso1nwi6bs3s4sk3ke.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.34a5zqftso1nwi6bs3s4sk3ke.rcgu.o new file mode 100644 index 0000000..74362a0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.34a5zqftso1nwi6bs3s4sk3ke.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4nj10wf1h4hzsfuynqbvv0fr4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4nj10wf1h4hzsfuynqbvv0fr4.rcgu.o new file mode 100644 index 0000000..8158d63 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4nj10wf1h4hzsfuynqbvv0fr4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4sgt24yjv7uia1rpgx9f877ee.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4sgt24yjv7uia1rpgx9f877ee.rcgu.o new file mode 100644 index 0000000..8adcf55 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4sgt24yjv7uia1rpgx9f877ee.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5ag3o1w3blfhe071d46d9h8fy.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5ag3o1w3blfhe071d46d9h8fy.rcgu.o new file mode 100644 index 0000000..eb520a9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5ag3o1w3blfhe071d46d9h8fy.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5e07khggczo8grt88x9i7erto.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5e07khggczo8grt88x9i7erto.rcgu.o new file mode 100644 index 0000000..886c135 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5e07khggczo8grt88x9i7erto.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5w6s4xyqkj1xm1qxyvymvwdbc.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5w6s4xyqkj1xm1qxyvymvwdbc.rcgu.o new file mode 100644 index 0000000..627e690 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5w6s4xyqkj1xm1qxyvymvwdbc.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6817i3jciu74vc3dhj8y17aa2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6817i3jciu74vc3dhj8y17aa2.rcgu.o new file mode 100644 index 0000000..ea23a18 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6817i3jciu74vc3dhj8y17aa2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6az7uphpl02i4avsk3a9hg97v.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6az7uphpl02i4avsk3a9hg97v.rcgu.o new file mode 100644 index 0000000..f099dc5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6az7uphpl02i4avsk3a9hg97v.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.70vofehzcthuhi40tmkvs96im.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.70vofehzcthuhi40tmkvs96im.rcgu.o new file mode 100644 index 0000000..e77b020 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.70vofehzcthuhi40tmkvs96im.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.78d3jzr1zep8upbt038or67le.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.78d3jzr1zep8upbt038or67le.rcgu.o new file mode 100644 index 0000000..147a7ea Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.78d3jzr1zep8upbt038or67le.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.79f2qavqcxsebur5gz2rry5zk.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.79f2qavqcxsebur5gz2rry5zk.rcgu.o new file mode 100644 index 0000000..c66e719 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.79f2qavqcxsebur5gz2rry5zk.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7qrcnk7rog5oepgx6pegt2wzo.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7qrcnk7rog5oepgx6pegt2wzo.rcgu.o new file mode 100644 index 0000000..9341d89 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7qrcnk7rog5oepgx6pegt2wzo.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7yc1jl711aez0bjkzo1o01waw.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7yc1jl711aez0bjkzo1o01waw.rcgu.o new file mode 100644 index 0000000..19d38c5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7yc1jl711aez0bjkzo1o01waw.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.80uysws5vhhcfiyq9nic4fdwo.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.80uysws5vhhcfiyq9nic4fdwo.rcgu.o new file mode 100644 index 0000000..b1c869b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.80uysws5vhhcfiyq9nic4fdwo.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.82fxdn2ehecz9n39f82b6b4fb.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.82fxdn2ehecz9n39f82b6b4fb.rcgu.o new file mode 100644 index 0000000..d6a8d20 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.82fxdn2ehecz9n39f82b6b4fb.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.8ucb4g9vn0csrqdg2g7dgdax5.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.8ucb4g9vn0csrqdg2g7dgdax5.rcgu.o new file mode 100644 index 0000000..d68d523 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.8ucb4g9vn0csrqdg2g7dgdax5.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91edmc95ooazz02973f88yj7b.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91edmc95ooazz02973f88yj7b.rcgu.o new file mode 100644 index 0000000..39c6929 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91edmc95ooazz02973f88yj7b.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91ef7hs2am60yu9o03fd1ekx8.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91ef7hs2am60yu9o03fd1ekx8.rcgu.o new file mode 100644 index 0000000..21b7d61 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91ef7hs2am60yu9o03fd1ekx8.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.99jlkld7682hdghzkvam2tq8c.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.99jlkld7682hdghzkvam2tq8c.rcgu.o new file mode 100644 index 0000000..a80689f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.99jlkld7682hdghzkvam2tq8c.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.abh9r7pecmjzp0toy267fug24.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.abh9r7pecmjzp0toy267fug24.rcgu.o new file mode 100644 index 0000000..550955f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.abh9r7pecmjzp0toy267fug24.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.avfz260hoshohzg4acd3kbw10.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.avfz260hoshohzg4acd3kbw10.rcgu.o new file mode 100644 index 0000000..e063fdf Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.avfz260hoshohzg4acd3kbw10.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.awoydahoh83qpnn5fyieht4cd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.awoydahoh83qpnn5fyieht4cd.rcgu.o new file mode 100644 index 0000000..ee0d9d8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.awoydahoh83qpnn5fyieht4cd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.bddc41bnkoos7s44jc3kvdc5x.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.bddc41bnkoos7s44jc3kvdc5x.rcgu.o new file mode 100644 index 0000000..ca2aa66 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.bddc41bnkoos7s44jc3kvdc5x.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c0g2ui1n1zvke9c4alvr9n0o9.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c0g2ui1n1zvke9c4alvr9n0o9.rcgu.o new file mode 100644 index 0000000..2ceb711 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c0g2ui1n1zvke9c4alvr9n0o9.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c3gpklby2ah3x08d1l1i0fflu.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c3gpklby2ah3x08d1l1i0fflu.rcgu.o new file mode 100644 index 0000000..5bae350 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c3gpklby2ah3x08d1l1i0fflu.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c5bfqnj2m0qterp3rel36ng05.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c5bfqnj2m0qterp3rel36ng05.rcgu.o new file mode 100644 index 0000000..919e1ea Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c5bfqnj2m0qterp3rel36ng05.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.clyosjzsb1xhzciq3qvvwfsh8.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.clyosjzsb1xhzciq3qvvwfsh8.rcgu.o new file mode 100644 index 0000000..0fed0dd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.clyosjzsb1xhzciq3qvvwfsh8.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.crhqry4ewjrecgeyoadxytteg.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.crhqry4ewjrecgeyoadxytteg.rcgu.o new file mode 100644 index 0000000..27fbb3b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.crhqry4ewjrecgeyoadxytteg.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d new file mode 100644 index 0000000..5c20157 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rmeta: src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rlib: src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d: src/lib.rs + +src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d82211zvty1oq5m1q1twcdhjd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d82211zvty1oq5m1q1twcdhjd.rcgu.o new file mode 100644 index 0000000..40e236e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d82211zvty1oq5m1q1twcdhjd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dj6fx2sc6j85j0b1pa1src98c.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dj6fx2sc6j85j0b1pa1src98c.rcgu.o new file mode 100644 index 0000000..1a19428 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dj6fx2sc6j85j0b1pa1src98c.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dk872qge7yvm5fqqxrjo69r9w.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dk872qge7yvm5fqqxrjo69r9w.rcgu.o new file mode 100644 index 0000000..6087aa3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dk872qge7yvm5fqqxrjo69r9w.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.doep033if0jpgqu1ordr2l9m8.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.doep033if0jpgqu1ordr2l9m8.rcgu.o new file mode 100644 index 0000000..f2eac40 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.doep033if0jpgqu1ordr2l9m8.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dv47t7wnxe8bkj61x2dae1g44.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dv47t7wnxe8bkj61x2dae1g44.rcgu.o new file mode 100644 index 0000000..cd1dacd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dv47t7wnxe8bkj61x2dae1g44.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.engrpahpcqd41cxw5158s884n.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.engrpahpcqd41cxw5158s884n.rcgu.o new file mode 100644 index 0000000..ea194f4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.engrpahpcqd41cxw5158s884n.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.f01v3auyr8xc6l8jhxxo44iwg.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.f01v3auyr8xc6l8jhxxo44iwg.rcgu.o new file mode 100644 index 0000000..06bd16a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.f01v3auyr8xc6l8jhxxo44iwg.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.d b/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.d new file mode 100644 index 0000000..ec4bfac --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/udiv128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/udiv128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/udiv128.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/udiv128.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.itoa.4d428fd2eb19912f-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.itoa.4d428fd2eb19912f-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.itoa.4d428fd2eb19912f-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rlib b/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rlib new file mode 100644 index 0000000..3eaa056 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rmeta b/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rmeta new file mode 100644 index 0000000..cc057b9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rlib b/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rlib new file mode 100644 index 0000000..6f907a5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rmeta b/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rmeta new file mode 100644 index 0000000..73ed008 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rlib b/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rlib new file mode 100644 index 0000000..26502e1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rmeta b/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rmeta new file mode 100644 index 0000000..828b6ad Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rlib b/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rlib new file mode 100644 index 0000000..de73576 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rmeta b/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rmeta new file mode 100644 index 0000000..21ad469 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rlib b/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rlib new file mode 100644 index 0000000..e7ff273 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rmeta b/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rmeta new file mode 100644 index 0000000..71214d3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libc-01916927d843a511.d b/src-tauri/html_scraper/target/debug/deps/libc-01916927d843a511.d new file mode 100644 index 0000000..507b868 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/libc-01916927d843a511.d @@ -0,0 +1,16 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libc-01916927d843a511.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.d b/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.d new file mode 100644 index 0000000..7d53b54 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.d @@ -0,0 +1,16 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.libc.52c187f5e3b2f141-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.libc.52c187f5e3b2f141-cgu.0.rcgu.o new file mode 100644 index 0000000..746c734 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.libc.52c187f5e3b2f141-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rlib b/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rlib new file mode 100644 index 0000000..3a8c9d2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rmeta b/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rmeta new file mode 100644 index 0000000..3ed2397 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rlib b/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rlib new file mode 100644 index 0000000..92573dd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rmeta b/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rmeta new file mode 100644 index 0000000..bcf788a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libcssparser_macros-309442e57d19e9f2.dylib b/src-tauri/html_scraper/target/debug/deps/libcssparser_macros-309442e57d19e9f2.dylib new file mode 100755 index 0000000..3bddb60 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libcssparser_macros-309442e57d19e9f2.dylib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rlib b/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rlib new file mode 100644 index 0000000..92e5bfd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rmeta b/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rmeta new file mode 100644 index 0000000..369f43e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libderive_more-4900dcbe6b0f93e2.dylib b/src-tauri/html_scraper/target/debug/deps/libderive_more-4900dcbe6b0f93e2.dylib new file mode 100755 index 0000000..06724c7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libderive_more-4900dcbe6b0f93e2.dylib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rlib b/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rlib new file mode 100644 index 0000000..8220006 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rmeta b/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rmeta new file mode 100644 index 0000000..b7f53ba Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rlib b/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rlib new file mode 100644 index 0000000..f727658 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rmeta b/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rmeta new file mode 100644 index 0000000..4fd73e3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rlib b/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rlib new file mode 100644 index 0000000..82f1fb2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rmeta b/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rmeta new file mode 100644 index 0000000..9b2b933 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rlib b/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rlib new file mode 100644 index 0000000..e852977 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rmeta b/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rmeta new file mode 100644 index 0000000..b42f20e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rlib b/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rlib new file mode 100644 index 0000000..56d6b36 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rmeta b/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rmeta new file mode 100644 index 0000000..93829d3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rlib b/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rlib new file mode 100644 index 0000000..8f2f5e3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rmeta b/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rmeta new file mode 100644 index 0000000..a404d7f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rlib b/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rlib new file mode 100644 index 0000000..3d84f40 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rmeta b/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rmeta new file mode 100644 index 0000000..97561fe Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rlib b/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rlib new file mode 100644 index 0000000..17e5d94 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rmeta b/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rmeta new file mode 100644 index 0000000..a47ab97 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rlib b/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rlib new file mode 100644 index 0000000..e266c7f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rmeta b/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rmeta new file mode 100644 index 0000000..866a796 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rlib b/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rlib new file mode 100644 index 0000000..84731b8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rmeta b/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rmeta new file mode 100644 index 0000000..e6ffb24 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rlib b/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rlib new file mode 100644 index 0000000..0d3a861 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rmeta b/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rmeta new file mode 100644 index 0000000..fbc35fd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rlib b/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rlib new file mode 100644 index 0000000..b3ff092 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rmeta b/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rmeta new file mode 100644 index 0000000..e48575e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rlib b/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rlib new file mode 100644 index 0000000..cc4ee83 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rmeta b/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rmeta new file mode 100644 index 0000000..4c627cf Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rlib b/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rlib new file mode 100644 index 0000000..77ece32 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rmeta b/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rmeta new file mode 100644 index 0000000..708d6ec Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rlib b/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rlib new file mode 100644 index 0000000..77b7af0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rmeta b/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rmeta new file mode 100644 index 0000000..c41d616 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rlib b/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rlib new file mode 100644 index 0000000..c98a0e1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rmeta b/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rmeta new file mode 100644 index 0000000..746d919 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rlib b/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rlib new file mode 100644 index 0000000..8bb2996 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rmeta b/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rmeta new file mode 100644 index 0000000..a625b9b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rlib b/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rlib new file mode 100644 index 0000000..3b8f4be Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rmeta b/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rmeta new file mode 100644 index 0000000..062a9a5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rlib b/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rlib new file mode 100644 index 0000000..429c24c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rmeta b/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rmeta new file mode 100644 index 0000000..8279b9a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rlib b/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rlib new file mode 100644 index 0000000..fee335f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rmeta b/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rmeta new file mode 100644 index 0000000..1eecb82 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rlib b/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rlib new file mode 100644 index 0000000..ef51b46 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rmeta b/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rmeta new file mode 100644 index 0000000..baf6a82 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rlib b/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rlib new file mode 100644 index 0000000..756c691 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rmeta new file mode 100644 index 0000000..a46d056 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rlib b/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rlib new file mode 100644 index 0000000..d9bcfdb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rmeta new file mode 100644 index 0000000..04bba9f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rlib new file mode 100644 index 0000000..a23808a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rmeta new file mode 100644 index 0000000..16a8226 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rlib new file mode 100644 index 0000000..7c6190e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rmeta new file mode 100644 index 0000000..1d0efb7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rlib new file mode 100644 index 0000000..cba8e22 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rmeta new file mode 100644 index 0000000..cd1e2b0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rlib new file mode 100644 index 0000000..b1272db Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rmeta new file mode 100644 index 0000000..03fd501 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_macros-36bc32c64923e436.dylib b/src-tauri/html_scraper/target/debug/deps/libphf_macros-36bc32c64923e436.dylib new file mode 100755 index 0000000..e038201 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_macros-36bc32c64923e436.dylib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rlib new file mode 100644 index 0000000..c454ac8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rmeta new file mode 100644 index 0000000..a8c4d8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rlib new file mode 100644 index 0000000..dbd9661 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rmeta new file mode 100644 index 0000000..0b8b7ff Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rlib new file mode 100644 index 0000000..ca312a2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rmeta new file mode 100644 index 0000000..133fd6a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rlib b/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rlib new file mode 100644 index 0000000..fb2f14f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rmeta b/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rmeta new file mode 100644 index 0000000..ae50d1e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rlib b/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rlib new file mode 100644 index 0000000..c13b5e9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rmeta b/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rmeta new file mode 100644 index 0000000..7177f9f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rlib b/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rlib new file mode 100644 index 0000000..e29c1d9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rmeta b/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rmeta new file mode 100644 index 0000000..714be5a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rlib b/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rlib new file mode 100644 index 0000000..01e7e98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rmeta b/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rmeta new file mode 100644 index 0000000..27ac3ec Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rlib b/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rlib new file mode 100644 index 0000000..a342d01 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rmeta b/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rmeta new file mode 100644 index 0000000..bc644d2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rlib b/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rlib new file mode 100644 index 0000000..0277ede Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rmeta b/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rmeta new file mode 100644 index 0000000..7d25ef0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rlib b/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rlib new file mode 100644 index 0000000..231053b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rmeta b/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rmeta new file mode 100644 index 0000000..f7013ef Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rlib b/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rlib new file mode 100644 index 0000000..63dfe40 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rmeta b/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rmeta new file mode 100644 index 0000000..b575c5f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rlib b/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rlib new file mode 100644 index 0000000..e880c5c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rmeta b/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rmeta new file mode 100644 index 0000000..a32c631 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rlib b/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rlib new file mode 100644 index 0000000..581fb3d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rmeta b/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rmeta new file mode 100644 index 0000000..62ccc2f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rlib b/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rlib new file mode 100644 index 0000000..075b179 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rmeta b/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rmeta new file mode 100644 index 0000000..e3f2928 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rlib b/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rlib new file mode 100644 index 0000000..d07e61e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rmeta b/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rmeta new file mode 100644 index 0000000..b1c78a4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rlib b/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rlib new file mode 100644 index 0000000..0bf6984 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rmeta b/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rmeta new file mode 100644 index 0000000..2e7c193 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rlib b/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rlib new file mode 100644 index 0000000..ada8708 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rmeta b/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rmeta new file mode 100644 index 0000000..c3eddba Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rlib b/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rlib new file mode 100644 index 0000000..84182ed Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rmeta b/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rmeta new file mode 100644 index 0000000..b41e3e7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rlib b/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rlib new file mode 100644 index 0000000..48e800e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rmeta b/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rmeta new file mode 100644 index 0000000..97ea68b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rlib b/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rlib new file mode 100644 index 0000000..5ced3cd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rmeta b/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rmeta new file mode 100644 index 0000000..da7611e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rlib b/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rlib new file mode 100644 index 0000000..5c031f6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rmeta b/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rmeta new file mode 100644 index 0000000..1c1a112 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rlib b/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rlib new file mode 100644 index 0000000..a40aecf Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rmeta b/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rmeta new file mode 100644 index 0000000..d9e78cc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rlib b/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rlib new file mode 100644 index 0000000..f100d96 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rmeta b/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rmeta new file mode 100644 index 0000000..c75f2c0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rlib b/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rlib new file mode 100644 index 0000000..6fe135a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rmeta b/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rmeta new file mode 100644 index 0000000..545ffee Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rlib b/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rlib new file mode 100644 index 0000000..d111ac5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rmeta b/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rmeta new file mode 100644 index 0000000..08f11f4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rlib b/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rlib new file mode 100644 index 0000000..29adb90 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rmeta b/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rmeta new file mode 100644 index 0000000..09fdc64 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rlib b/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rlib new file mode 100644 index 0000000..95faced Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rmeta b/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rmeta new file mode 100644 index 0000000..047377e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rlib b/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rlib new file mode 100644 index 0000000..7ff3d1e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rmeta b/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rmeta new file mode 100644 index 0000000..60885d5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libthiserror_impl-7462c846dc67d23c.dylib b/src-tauri/html_scraper/target/debug/deps/libthiserror_impl-7462c846dc67d23c.dylib new file mode 100755 index 0000000..c769b3f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libthiserror_impl-7462c846dc67d23c.dylib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rlib b/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rlib new file mode 100644 index 0000000..f7b5799 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rmeta b/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rmeta new file mode 100644 index 0000000..f3f85f7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rlib b/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rlib new file mode 100644 index 0000000..c08bdc0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rmeta b/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rmeta new file mode 100644 index 0000000..781e50d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rlib b/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rlib new file mode 100644 index 0000000..9f8837a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rmeta b/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rmeta new file mode 100644 index 0000000..dd8a883 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rlib b/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rlib new file mode 100644 index 0000000..187ca8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rmeta b/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rmeta new file mode 100644 index 0000000..1219eb0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rlib b/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rlib new file mode 100644 index 0000000..906f81f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rmeta b/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rmeta new file mode 100644 index 0000000..c83ad64 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.d b/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.d new file mode 100644 index 0000000..5973b04 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/rwlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/rwlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/rwlock.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/mutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/remutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/rwlock.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.lock_api.a0eddf272e46b4f3-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.lock_api.a0eddf272e46b4f3-cgu.0.rcgu.o new file mode 100644 index 0000000..c72730b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.lock_api.a0eddf272e46b4f3-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.d b/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.d new file mode 100644 index 0000000..0cdf732 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/serde.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/__private_api.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/serde.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/__private_api.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/serde.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/__private_api.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/serde.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/__private_api.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.log.1dc01c71d0fd18b3-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.log.1dc01c71d0fd18b3-cgu.0.rcgu.o new file mode 100644 index 0000000..f654dc3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.log.1dc01c71d0fd18b3-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.d b/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.d new file mode 100644 index 0000000..d27b19a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/test.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/mem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/syntax_ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/matches.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/inspect.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/cfg.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/test.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/mem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/syntax_ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/matches.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/inspect.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/cfg.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/test.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/mem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/syntax_ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/matches.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/inspect.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/cfg.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/test.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/mem.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/format.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/syntax_ext.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/matches.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/inspect.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/cfg.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.mac.19e58a4a71914c7e-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.mac.19e58a4a71914c7e-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.mac.19e58a4a71914c7e-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.d b/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.d new file mode 100644 index 0000000..8376a75 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/tree_builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/serialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/buffer_queue.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/smallcharset.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/tree_builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/serialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/buffer_queue.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/smallcharset.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/tree_builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/serialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/buffer_queue.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/smallcharset.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/data/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/tree_builder.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/serialize.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/buffer_queue.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/smallcharset.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out diff --git a/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.markup5ever.cc2f085d2b94e7a6-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.markup5ever.cc2f085d2b94e7a6-cgu.0.rcgu.o new file mode 100644 index 0000000..beb8310 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.markup5ever.cc2f085d2b94e7a6-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.d b/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.d new file mode 100644 index 0000000..63dd505 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.d @@ -0,0 +1,30 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/shiftor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/twoway.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/cow.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/searcher.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/vector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/shiftor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/twoway.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/cow.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/searcher.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/vector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/shiftor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/twoway.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/cow.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/searcher.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/vector.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/rabinkarp.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/shiftor.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/twoway.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/packedpair.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/cow.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/ext.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/searcher.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/vector.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.memchr.fb606b7f001ba48a-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.memchr.fb606b7f001ba48a-cgu.0.rcgu.o new file mode 100644 index 0000000..13a3fef Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.memchr.fb606b7f001ba48a-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.d b/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.d new file mode 100644 index 0000000..1b30765 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/imp_std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/race.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/imp_std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/race.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/imp_std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/race.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/imp_std.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/race.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.once_cell.fb3e9783ff3da451-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.once_cell.fb3e9783ff3da451-cgu.0.rcgu.o new file mode 100644 index 0000000..efd10ea Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.once_cell.fb3e9783ff3da451-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.d b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.d new file mode 100644 index 0000000..5b3018b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.d @@ -0,0 +1,19 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/condvar.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/elision.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/once.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/deadlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/condvar.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/elision.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/once.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/deadlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/condvar.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/elision.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/once.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/deadlock.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/condvar.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/elision.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/fair_mutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/mutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/once.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_fair_mutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_mutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_rwlock.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/remutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/rwlock.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/util.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/deadlock.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.0.rcgu.o new file mode 100644 index 0000000..7be9eaa Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.1.rcgu.o new file mode 100644 index 0000000..2bb8062 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.2.rcgu.o new file mode 100644 index 0000000..be9006a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.d b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.d new file mode 100644 index 0000000..9c7ff62 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/parking_lot.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/spinwait.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/word_lock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/unix.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/parking_lot.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/spinwait.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/word_lock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/unix.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/parking_lot.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/spinwait.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/word_lock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/unix.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/parking_lot.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/spinwait.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/util.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/word_lock.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/unix.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.0.rcgu.o new file mode 100644 index 0000000..dcd3a90 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.1.rcgu.o new file mode 100644 index 0000000..20e3dc2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.d b/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.d new file mode 100644 index 0000000..4441aa0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/set.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_set.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/set.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.phf.d5c939bb1c9ade6-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.phf.d5c939bb1c9ade6-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.phf.d5c939bb1c9ade6-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.d b/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.d new file mode 100644 index 0000000..b8c398c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/set.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_set.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/set.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.phf.2ad363b7848cb1a7-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.phf.2ad363b7848cb1a7-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.phf.2ad363b7848cb1a7-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/phf_codegen-5ac0e57e503f39ec.d b/src-tauri/html_scraper/target/debug/deps/phf_codegen-5ac0e57e503f39ec.d new file mode 100644 index 0000000..9bff3fa --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_codegen-5ac0e57e503f39ec.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_codegen-5ac0e57e503f39ec.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_codegen-7910a3fb545bdda5.d b/src-tauri/html_scraper/target/debug/deps/phf_codegen-7910a3fb545bdda5.d new file mode 100644 index 0000000..338218a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_codegen-7910a3fb545bdda5.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_codegen-7910a3fb545bdda5.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_generator-07face5c6d99eafc.d b/src-tauri/html_scraper/target/debug/deps/phf_generator-07face5c6d99eafc.d new file mode 100644 index 0000000..6fa96f5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_generator-07face5c6d99eafc.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_generator-07face5c6d99eafc.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_generator-0f5544fb7fb4274a.d b/src-tauri/html_scraper/target/debug/deps/phf_generator-0f5544fb7fb4274a.d new file mode 100644 index 0000000..896f587 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_generator-0f5544fb7fb4274a.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_generator-0f5544fb7fb4274a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_macros-36bc32c64923e436.d b/src-tauri/html_scraper/target/debug/deps/phf_macros-36bc32c64923e436.d new file mode 100644 index 0000000..4890305 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_macros-36bc32c64923e436.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_macros-36bc32c64923e436.dylib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_macros-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_macros-36bc32c64923e436.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_macros-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_macros-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_shared-4c15ddf12e8e6b17.d b/src-tauri/html_scraper/target/debug/deps/phf_shared-4c15ddf12e8e6b17.d new file mode 100644 index 0000000..18aa227 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_shared-4c15ddf12e8e6b17.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_shared-4c15ddf12e8e6b17.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.d b/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.d new file mode 100644 index 0000000..c318431 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.phf_shared.36fc865ee9f5d069-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.phf_shared.36fc865ee9f5d069-cgu.0.rcgu.o new file mode 100644 index 0000000..e7c9693 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.phf_shared.36fc865ee9f5d069-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.d b/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.d new file mode 100644 index 0000000..399291e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.phf_shared.a6e6aa63e256f82-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.phf_shared.a6e6aa63e256f82-cgu.0.rcgu.o new file mode 100644 index 0000000..51fffbe Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.phf_shared.a6e6aa63e256f82-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/ppv_lite86-7bfc9380fa4080a1.d b/src-tauri/html_scraper/target/debug/deps/ppv_lite86-7bfc9380fa4080a1.d new file mode 100644 index 0000000..019396c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/ppv_lite86-7bfc9380fa4080a1.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/ppv_lite86-7bfc9380fa4080a1.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/soft.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/types.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/generic.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.d b/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.d new file mode 100644 index 0000000..0d27646 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/precomputed-hash-0.1.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/precomputed-hash-0.1.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/precomputed-hash-0.1.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/precomputed-hash-0.1.1/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.precomputed_hash.8eb35ea0ee158c6d-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.precomputed_hash.8eb35ea0ee158c6d-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.precomputed_hash.8eb35ea0ee158c6d-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/proc_macro2-d7a701b428e81ccd.d b/src-tauri/html_scraper/target/debug/deps/proc_macro2-d7a701b428e81ccd.d new file mode 100644 index 0000000..5ae48ea --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/proc_macro2-d7a701b428e81ccd.d @@ -0,0 +1,15 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/marker.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/probe.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/rcvec.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/detection.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/fallback.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/extra.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/wrapper.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/marker.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/probe.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/rcvec.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/detection.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/fallback.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/extra.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/wrapper.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/proc_macro2-d7a701b428e81ccd.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/marker.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/probe.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/rcvec.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/detection.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/fallback.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/extra.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/wrapper.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/marker.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/parse.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/probe.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/rcvec.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/detection.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/fallback.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/extra.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/wrapper.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/quote-18bba557c7524ff3.d b/src-tauri/html_scraper/target/debug/deps/quote-18bba557c7524ff3.d new file mode 100644 index 0000000..1a44299 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/quote-18bba557c7524ff3.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/to_tokens.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/runtime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/spanned.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/to_tokens.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/runtime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/spanned.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/quote-18bba557c7524ff3.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/to_tokens.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/runtime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/spanned.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ext.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/format.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ident_fragment.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/to_tokens.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/runtime.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/spanned.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/rand-26f83a8e5bd6b340.d b/src-tauri/html_scraper/target/debug/deps/rand-26f83a8e5bd6b340.d new file mode 100644 index 0000000..165f04c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/rand-26f83a8e5bd6b340.d @@ -0,0 +1,31 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/index.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/index.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/rand-26f83a8e5bd6b340.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/index.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/bernoulli.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/distribution.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/float.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/integer.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/other.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/slice.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/utils.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted_index.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/uniform.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/prelude.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rng.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/read.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/reseeding.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mock.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/xoshiro256plusplus.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/small.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/std.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/thread.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/index.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/rand_chacha-88c08f61188566b9.d b/src-tauri/html_scraper/target/debug/deps/rand_chacha-88c08f61188566b9.d new file mode 100644 index 0000000..30cb487 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/rand_chacha-88c08f61188566b9.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/rand_chacha-88c08f61188566b9.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/chacha.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/guts.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/rand_core-40abbc76b58e3e8b.d b/src-tauri/html_scraper/target/debug/deps/rand_core-40abbc76b58e3e8b.d new file mode 100644 index 0000000..e772032 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/rand_core-40abbc76b58e3e8b.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/os.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/os.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/rand_core-40abbc76b58e3e8b.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/os.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/block.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/impls.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/le.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/os.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.d b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.d new file mode 100644 index 0000000..72b1875 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/builders.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/find_byte.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/string.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/string.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/builders.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/find_byte.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/string.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/string.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/builders.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/find_byte.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/string.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/string.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/builders.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/bytes.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/find_byte.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/bytes.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/string.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/bytes.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/string.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.0.rcgu.o new file mode 100644 index 0000000..0dfbb3e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.1.rcgu.o new file mode 100644 index 0000000..a3635eb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.d b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.d new file mode 100644 index 0000000..35e3d73 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.d @@ -0,0 +1,65 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/onepass.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/id.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/limited.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/reverse_inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/stopat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/strategy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/wrappers.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/backtrack.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/compiler.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/literal_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/nfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/pikevm.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/range_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/captures.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/escape.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/interpolate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/lazy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/look.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/pool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/aho_corasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/byteset.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memmem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/teddy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/start.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/syntax.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/wire.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/empty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/sparse_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/unicode_data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/onepass.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/id.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/limited.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/reverse_inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/stopat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/strategy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/wrappers.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/backtrack.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/compiler.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/literal_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/nfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/pikevm.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/range_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/captures.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/escape.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/interpolate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/lazy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/look.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/pool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/aho_corasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/byteset.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memmem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/teddy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/start.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/syntax.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/wire.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/empty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/sparse_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/unicode_data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/onepass.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/id.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/limited.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/reverse_inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/stopat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/strategy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/wrappers.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/backtrack.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/compiler.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/literal_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/nfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/pikevm.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/range_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/captures.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/escape.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/interpolate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/lazy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/look.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/pool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/aho_corasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/byteset.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memmem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/teddy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/start.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/syntax.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/wire.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/empty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/sparse_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/unicode_data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/utf8.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/onepass.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/remapper.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/dfa.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/id.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/regex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/search.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/limited.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/literal.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/regex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/reverse_inner.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/stopat.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/strategy.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/wrappers.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/backtrack.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/builder.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/compiler.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/literal_trie.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/nfa.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/pikevm.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/range_trie.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/alphabet.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/captures.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/escape.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/interpolate.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/iter.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/lazy.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/look.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/pool.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/aho_corasick.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/byteset.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memmem.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/teddy.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/primitives.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/start.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/syntax.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/wire.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/state.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/empty.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/int.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/search.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/sparse_set.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/unicode_data/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/utf8.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.00.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.00.rcgu.o new file mode 100644 index 0000000..9679b8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.00.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.01.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.01.rcgu.o new file mode 100644 index 0000000..a2380f0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.01.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.02.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.02.rcgu.o new file mode 100644 index 0000000..5e69bec Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.02.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.03.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.03.rcgu.o new file mode 100644 index 0000000..04fc5ba Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.03.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.04.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.04.rcgu.o new file mode 100644 index 0000000..9c523ee Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.04.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.05.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.05.rcgu.o new file mode 100644 index 0000000..43e3fd1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.05.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.06.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.06.rcgu.o new file mode 100644 index 0000000..6d62002 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.06.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.07.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.07.rcgu.o new file mode 100644 index 0000000..f153fc7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.07.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.08.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.08.rcgu.o new file mode 100644 index 0000000..728e342 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.08.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.09.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.09.rcgu.o new file mode 100644 index 0000000..3a10e98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.09.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.10.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.10.rcgu.o new file mode 100644 index 0000000..e1bf088 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.10.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.11.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.11.rcgu.o new file mode 100644 index 0000000..0ea84b0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.11.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.12.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.12.rcgu.o new file mode 100644 index 0000000..0f98007 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.12.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.13.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.13.rcgu.o new file mode 100644 index 0000000..9746579 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.13.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.14.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.14.rcgu.o new file mode 100644 index 0000000..86922d0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.14.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.15.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.15.rcgu.o new file mode 100644 index 0000000..9845529 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.15.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.d b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.d new file mode 100644 index 0000000..4dd486e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.d @@ -0,0 +1,37 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/either.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/interval.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/translate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/age.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/case_folding_simple.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/general_category.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/grapheme_cluster_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/perl_word.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_bool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_names.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_values.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script_extension.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/sentence_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/word_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/either.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/interval.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/translate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/age.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/case_folding_simple.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/general_category.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/grapheme_cluster_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/perl_word.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_bool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_names.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_values.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script_extension.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/sentence_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/word_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/either.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/interval.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/translate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/age.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/case_folding_simple.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/general_category.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/grapheme_cluster_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/perl_word.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_bool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_names.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_values.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script_extension.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/sentence_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/word_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/utf8.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/parse.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/print.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/visitor.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/debug.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/either.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/interval.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/literal.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/print.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/translate.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/visitor.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/parser.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/rank.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/age.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/case_folding_simple.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/general_category.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/grapheme_cluster_break.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/perl_word.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_bool.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_names.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_values.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script_extension.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/sentence_break.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/word_break.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/utf8.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.00.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.00.rcgu.o new file mode 100644 index 0000000..04a6171 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.00.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.01.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.01.rcgu.o new file mode 100644 index 0000000..20d27ac Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.01.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.02.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.02.rcgu.o new file mode 100644 index 0000000..be08453 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.02.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.03.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.03.rcgu.o new file mode 100644 index 0000000..d51f7c8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.03.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.04.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.04.rcgu.o new file mode 100644 index 0000000..26483af Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.04.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.05.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.05.rcgu.o new file mode 100644 index 0000000..0c3f923 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.05.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.06.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.06.rcgu.o new file mode 100644 index 0000000..24c56f7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.06.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.07.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.07.rcgu.o new file mode 100644 index 0000000..63585c4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.07.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.08.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.08.rcgu.o new file mode 100644 index 0000000..7190613 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.08.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.09.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.09.rcgu.o new file mode 100644 index 0000000..395d037 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.09.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.10.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.10.rcgu.o new file mode 100644 index 0000000..e77b352 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.10.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.11.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.11.rcgu.o new file mode 100644 index 0000000..0e6835c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.11.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.12.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.12.rcgu.o new file mode 100644 index 0000000..567c659 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.12.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.13.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.13.rcgu.o new file mode 100644 index 0000000..63e9a48 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.13.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.14.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.14.rcgu.o new file mode 100644 index 0000000..8a2d4be Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.14.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.15.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.15.rcgu.o new file mode 100644 index 0000000..62a4b39 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.15.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.d b/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.d new file mode 100644 index 0000000..926dbed --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scopeguard-1.2.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scopeguard-1.2.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scopeguard-1.2.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scopeguard-1.2.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.scopeguard.76aa88803bc034cb-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.scopeguard.76aa88803bc034cb-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.scopeguard.76aa88803bc034cb-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.d b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.d new file mode 100644 index 0000000..6fa803e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.d @@ -0,0 +1,19 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/element.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/tree_sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selectable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/element.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/tree_sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selectable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/element.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/tree_sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selectable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selector.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/element.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/serializable.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error/utils.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/serializable.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/tree_sink.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node/serializable.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selectable.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selector.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.00.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.00.rcgu.o new file mode 100644 index 0000000..fecfadb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.00.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.01.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.01.rcgu.o new file mode 100644 index 0000000..93b2d06 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.01.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.02.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.02.rcgu.o new file mode 100644 index 0000000..4994f6f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.02.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.03.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.03.rcgu.o new file mode 100644 index 0000000..d821508 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.03.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.04.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.04.rcgu.o new file mode 100644 index 0000000..82628c1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.04.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.05.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.05.rcgu.o new file mode 100644 index 0000000..f017e32 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.05.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.06.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.06.rcgu.o new file mode 100644 index 0000000..214f019 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.06.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.07.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.07.rcgu.o new file mode 100644 index 0000000..15c065f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.07.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.08.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.08.rcgu.o new file mode 100644 index 0000000..567a531 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.08.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.09.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.09.rcgu.o new file mode 100644 index 0000000..9434898 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.09.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.10.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.10.rcgu.o new file mode 100644 index 0000000..a9b0646 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.10.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.11.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.11.rcgu.o new file mode 100644 index 0000000..611068a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.11.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.12.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.12.rcgu.o new file mode 100644 index 0000000..a674e85 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.12.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.13.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.13.rcgu.o new file mode 100644 index 0000000..78fdc0b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.13.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.14.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.14.rcgu.o new file mode 100644 index 0000000..abb69a7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.14.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.15.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.15.rcgu.o new file mode 100644 index 0000000..db75d56 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.15.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.d b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.d new file mode 100644 index 0000000..8fe6402 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.d @@ -0,0 +1,20 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/bloom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/context.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/matching.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/nth_index_cache.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/tree.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/visitor.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/bloom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/context.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/matching.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/nth_index_cache.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/tree.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/visitor.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/bloom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/context.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/matching.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/nth_index_cache.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/tree.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/visitor.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/attr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/bloom.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/builder.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/context.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/matching.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/nth_index_cache.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/parser.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/sink.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/tree.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/visitor.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.0.rcgu.o new file mode 100644 index 0000000..2a96af3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.1.rcgu.o new file mode 100644 index 0000000..df1274c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.2.rcgu.o new file mode 100644 index 0000000..7ecb0e0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.3.rcgu.o new file mode 100644 index 0000000..bee3e21 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.4.rcgu.o new file mode 100644 index 0000000..4a756c7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.d b/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.d new file mode 100644 index 0000000..3ddc8a3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/integer128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/de.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/ser.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/integer128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/de.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/ser.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/integer128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/de.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/ser.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/integer128.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/de.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/ser.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out diff --git a/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.serde.486a608c3e6c66a8-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.serde.486a608c3e6c66a8-cgu.0.rcgu.o new file mode 100644 index 0000000..b552f44 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.serde.486a608c3e6c66a8-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.d b/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.d new file mode 100644 index 0000000..3bdca0f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.d @@ -0,0 +1,27 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/crate_root.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/value.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/ignored_any.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impossible.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/content.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/seed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/doc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/size_hint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/string.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/crate_root.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/value.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/ignored_any.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impossible.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/content.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/seed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/doc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/size_hint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/string.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/crate_root.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/value.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/ignored_any.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impossible.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/content.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/seed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/doc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/size_hint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/string.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/crate_root.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/value.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/ignored_any.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/impls.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/fmt.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impls.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impossible.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/format.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/content.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/seed.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/doc.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/size_hint.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/string.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out diff --git a/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.serde_core.40bc510fee60ef4d-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.serde_core.40bc510fee60ef4d-cgu.0.rcgu.o new file mode 100644 index 0000000..c4984d5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.serde_core.40bc510fee60ef4d-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.d b/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.d new file mode 100644 index 0000000..81c9560 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/servo_arc-0.3.0/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/servo_arc-0.3.0/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/servo_arc-0.3.0/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/servo_arc-0.3.0/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.servo_arc.dd743db395c1ab18-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.servo_arc.dd743db395c1ab18-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.servo_arc.dd743db395c1ab18-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.d b/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.d new file mode 100644 index 0000000..ad03eeb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip128.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.siphasher.afd4c4f24aa57ad2-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.siphasher.afd4c4f24aa57ad2-cgu.0.rcgu.o new file mode 100644 index 0000000..f9041d5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.siphasher.afd4c4f24aa57ad2-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.d b/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.d new file mode 100644 index 0000000..cbff759 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/../README.md + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/../README.md + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/../README.md + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip128.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/../README.md: diff --git a/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.siphasher.d463fc31b7587c94-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.siphasher.d463fc31b7587c94-cgu.0.rcgu.o new file mode 100644 index 0000000..aed3a95 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.siphasher.d463fc31b7587c94-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.d b/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.d new file mode 100644 index 0000000..1c325c2 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/smallvec-1.15.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/smallvec-1.15.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/smallvec-1.15.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/smallvec-1.15.1/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.smallvec.2ea9cff6eb76fdde-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.smallvec.2ea9cff6eb76fdde-cgu.0.rcgu.o new file mode 100644 index 0000000..4276ced Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.smallvec.2ea9cff6eb76fdde-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.d b/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.d new file mode 100644 index 0000000..4325f27 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/stable_deref_trait-1.2.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/stable_deref_trait-1.2.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/stable_deref_trait-1.2.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/stable_deref_trait-1.2.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.stable_deref_trait.f0d3702e9e4bbdd9-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.stable_deref_trait.f0d3702e9e4bbdd9-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.stable_deref_trait.f0d3702e9e4bbdd9-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.d b/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.d new file mode 100644 index 0000000..0907471 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/atom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/dynamic_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/static_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/trivial_impls.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/atom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/dynamic_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/static_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/trivial_impls.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/atom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/dynamic_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/static_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/trivial_impls.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/atom.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/dynamic_set.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/static_sets.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/trivial_impls.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.string_cache.ee163e5e5d6e0be9-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.string_cache.ee163e5e5d6e0be9-cgu.0.rcgu.o new file mode 100644 index 0000000..22c6e71 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.string_cache.ee163e5e5d6e0be9-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/string_cache_codegen-cd0dc4a88bbb3be6.d b/src-tauri/html_scraper/target/debug/deps/string_cache_codegen-cd0dc4a88bbb3be6.d new file mode 100644 index 0000000..4fd2a01 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/string_cache_codegen-cd0dc4a88bbb3be6.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/string_cache_codegen-cd0dc4a88bbb3be6.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache_codegen-0.5.4/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/syn-2aa77fc1e3a70b43.d b/src-tauri/html_scraper/target/debug/deps/syn-2aa77fc1e3a70b43.d new file mode 100644 index 0000000..94a6174 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/syn-2aa77fc1e3a70b43.d @@ -0,0 +1,58 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/group.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/token.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/bigint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/classify.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/derive.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/drops.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/expr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/file.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/fixup.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/generics.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ident.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/item.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lifetime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lit.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lookahead.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/mac.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/meta.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/op.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/discouraged.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_quote.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/pat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/path.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/precedence.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/punctuated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/restriction.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/sealed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/span.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/spanned.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/stmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/tt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/verbatim.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/whitespace.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/export.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/fold.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/clone.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/eq.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/hash.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/group.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/token.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/bigint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/classify.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/derive.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/drops.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/expr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/file.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/fixup.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/generics.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ident.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/item.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lifetime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lit.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lookahead.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/mac.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/meta.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/op.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/discouraged.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_quote.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/pat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/path.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/precedence.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/punctuated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/restriction.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/sealed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/span.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/spanned.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/stmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/tt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/verbatim.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/whitespace.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/export.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/fold.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/clone.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/eq.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/hash.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/syn-2aa77fc1e3a70b43.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/group.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/token.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/bigint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/classify.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/derive.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/drops.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/expr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/file.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/fixup.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/generics.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ident.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/item.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lifetime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lit.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lookahead.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/mac.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/meta.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/op.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/discouraged.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_quote.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/pat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/path.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/precedence.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/punctuated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/restriction.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/sealed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/span.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/spanned.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/stmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/tt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/verbatim.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/whitespace.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/export.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/fold.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/clone.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/eq.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/hash.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/group.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/token.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/attr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/bigint.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/buffer.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/classify.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_keyword.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_punctuation.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/data.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/derive.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/drops.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/expr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ext.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/file.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/fixup.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/generics.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ident.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/item.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lifetime.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lit.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lookahead.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/mac.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/meta.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/op.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/discouraged.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_macro_input.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_quote.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/pat.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/path.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/precedence.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/print.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/punctuated.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/restriction.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/sealed.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/span.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/spanned.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/stmt.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/thread.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/tt.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ty.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/verbatim.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/whitespace.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/export.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/fold.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/clone.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/debug.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/eq.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/hash.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.d b/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.d new file mode 100644 index 0000000..21f9590 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/stream.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/buf32.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/tendril.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/utf8_decode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/util.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/stream.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/buf32.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/tendril.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/utf8_decode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/util.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/stream.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/buf32.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/tendril.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/utf8_decode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/util.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/fmt.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/stream.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/buf32.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/tendril.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/utf8_decode.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/util.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.tendril.df029e6305171a48-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.tendril.df029e6305171a48-cgu.0.rcgu.o new file mode 100644 index 0000000..f001870 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.tendril.df029e6305171a48-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.d b/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.d new file mode 100644 index 0000000..2bffb1b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/aserror.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/display.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/aserror.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/display.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/aserror.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/display.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/aserror.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/display.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.thiserror.1f5046b1747482aa-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.thiserror.1f5046b1747482aa-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.thiserror.1f5046b1747482aa-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/thiserror_impl-7462c846dc67d23c.d b/src-tauri/html_scraper/target/debug/deps/thiserror_impl-7462c846dc67d23c.d new file mode 100644 index 0000000..1efd3a0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/thiserror_impl-7462c846dc67d23c.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libthiserror_impl-7462c846dc67d23c.dylib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/ast.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/expand.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/generics.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/prop.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/scan_expr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/span.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/valid.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/thiserror_impl-7462c846dc67d23c.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/ast.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/expand.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/generics.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/prop.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/scan_expr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/span.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/valid.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/ast.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/attr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/expand.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/fmt.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/generics.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/prop.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/scan_expr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/span.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/valid.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/unicode_ident-1017dd60fc08fd88.d b/src-tauri/html_scraper/target/debug/deps/unicode_ident-1017dd60fc08fd88.d new file mode 100644 index 0000000..e8083ff --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/unicode_ident-1017dd60fc08fd88.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/unicode_ident-1017dd60fc08fd88.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/tables.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/tables.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.d b/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.d new file mode 100644 index 0000000..51b9cee --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/tables.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/tables.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.unicode_width.38bb9f55821a505c-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.unicode_width.38bb9f55821a505c-cgu.0.rcgu.o new file mode 100644 index 0000000..b1bb20c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.unicode_width.38bb9f55821a505c-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.d b/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.d new file mode 100644 index 0000000..98cfc18 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lossy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/read.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lossy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/read.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lossy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/read.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lossy.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/read.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.utf8.99cdeef47289a7ee-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.utf8.99cdeef47289a7ee-cgu.0.rcgu.o new file mode 100644 index 0000000..cd921f3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.utf8.99cdeef47289a7ee-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/version_check-924408caddcfebba.d b/src-tauri/html_scraper/target/debug/deps/version_check-924408caddcfebba.d new file mode 100644 index 0000000..684242f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/version_check-924408caddcfebba.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/date.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/date.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/version_check-924408caddcfebba.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/date.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/version.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/channel.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/date.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.d b/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.d new file mode 100644 index 0000000..367e289 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.d @@ -0,0 +1,28 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byte_slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byteorder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/deprecated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/doctests.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/layout.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/ref.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/split_at.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/wrappers.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byte_slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byteorder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/deprecated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/doctests.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/layout.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/ref.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/split_at.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/wrappers.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byte_slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byteorder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/deprecated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/doctests.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/layout.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/ref.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/split_at.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/wrappers.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macro_util.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byte_slice.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byteorder.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/deprecated.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/doctests.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/impls.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/layout.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/inner.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/invariant.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/ptr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/transmute.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/ref.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/split_at.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/wrappers.rs: + +# env-dep:CARGO_PKG_VERSION=0.8.27 diff --git a/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.zerocopy.cbc842af99811a07-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.zerocopy.cbc842af99811a07-cgu.0.rcgu.o new file mode 100644 index 0000000..3832726 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.zerocopy.cbc842af99811a07-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05a6ledm442jo1gucysw1iy2z.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05a6ledm442jo1gucysw1iy2z.o new file mode 100644 index 0000000..6b3bf74 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05a6ledm442jo1gucysw1iy2z.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05chzh1mrghd3iwcetxqdf9bw.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05chzh1mrghd3iwcetxqdf9bw.o new file mode 100644 index 0000000..cd80156 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05chzh1mrghd3iwcetxqdf9bw.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/16x6yclox1660fea03vwrbdzd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/16x6yclox1660fea03vwrbdzd.o new file mode 100644 index 0000000..7296bd3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/16x6yclox1660fea03vwrbdzd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1stwb7jdagsfck60n0ggk68n5.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1stwb7jdagsfck60n0ggk68n5.o new file mode 100644 index 0000000..dc2a437 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1stwb7jdagsfck60n0ggk68n5.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1u5v5rxzv4wnoop5ia95w49pj.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1u5v5rxzv4wnoop5ia95w49pj.o new file mode 100644 index 0000000..80109f2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1u5v5rxzv4wnoop5ia95w49pj.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1xxmhia9kqr2fen0aqth4lgi2.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1xxmhia9kqr2fen0aqth4lgi2.o new file mode 100644 index 0000000..f33e827 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1xxmhia9kqr2fen0aqth4lgi2.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/243zektbon76lz4jau4xt9iqm.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/243zektbon76lz4jau4xt9iqm.o new file mode 100644 index 0000000..5fd01ec Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/243zektbon76lz4jau4xt9iqm.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2lvyx338e47biinqax6gmkrko.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2lvyx338e47biinqax6gmkrko.o new file mode 100644 index 0000000..a33494e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2lvyx338e47biinqax6gmkrko.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2mn8jkuf32lyu5ug7ekt3vvmd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2mn8jkuf32lyu5ug7ekt3vvmd.o new file mode 100644 index 0000000..bc7a82b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2mn8jkuf32lyu5ug7ekt3vvmd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2s48w3375yopeg099qp6t5i4z.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2s48w3375yopeg099qp6t5i4z.o new file mode 100644 index 0000000..0dbbda5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2s48w3375yopeg099qp6t5i4z.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/34a5zqftso1nwi6bs3s4sk3ke.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/34a5zqftso1nwi6bs3s4sk3ke.o new file mode 100644 index 0000000..74362a0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/34a5zqftso1nwi6bs3s4sk3ke.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4nj10wf1h4hzsfuynqbvv0fr4.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4nj10wf1h4hzsfuynqbvv0fr4.o new file mode 100644 index 0000000..8158d63 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4nj10wf1h4hzsfuynqbvv0fr4.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4sgt24yjv7uia1rpgx9f877ee.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4sgt24yjv7uia1rpgx9f877ee.o new file mode 100644 index 0000000..8adcf55 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4sgt24yjv7uia1rpgx9f877ee.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5ag3o1w3blfhe071d46d9h8fy.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5ag3o1w3blfhe071d46d9h8fy.o new file mode 100644 index 0000000..eb520a9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5ag3o1w3blfhe071d46d9h8fy.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5e07khggczo8grt88x9i7erto.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5e07khggczo8grt88x9i7erto.o new file mode 100644 index 0000000..886c135 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5e07khggczo8grt88x9i7erto.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5w6s4xyqkj1xm1qxyvymvwdbc.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5w6s4xyqkj1xm1qxyvymvwdbc.o new file mode 100644 index 0000000..627e690 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5w6s4xyqkj1xm1qxyvymvwdbc.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6817i3jciu74vc3dhj8y17aa2.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6817i3jciu74vc3dhj8y17aa2.o new file mode 100644 index 0000000..ea23a18 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6817i3jciu74vc3dhj8y17aa2.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6az7uphpl02i4avsk3a9hg97v.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6az7uphpl02i4avsk3a9hg97v.o new file mode 100644 index 0000000..f099dc5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6az7uphpl02i4avsk3a9hg97v.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/70vofehzcthuhi40tmkvs96im.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/70vofehzcthuhi40tmkvs96im.o new file mode 100644 index 0000000..e77b020 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/70vofehzcthuhi40tmkvs96im.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/78d3jzr1zep8upbt038or67le.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/78d3jzr1zep8upbt038or67le.o new file mode 100644 index 0000000..147a7ea Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/78d3jzr1zep8upbt038or67le.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/79f2qavqcxsebur5gz2rry5zk.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/79f2qavqcxsebur5gz2rry5zk.o new file mode 100644 index 0000000..c66e719 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/79f2qavqcxsebur5gz2rry5zk.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7qrcnk7rog5oepgx6pegt2wzo.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7qrcnk7rog5oepgx6pegt2wzo.o new file mode 100644 index 0000000..9341d89 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7qrcnk7rog5oepgx6pegt2wzo.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7yc1jl711aez0bjkzo1o01waw.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7yc1jl711aez0bjkzo1o01waw.o new file mode 100644 index 0000000..19d38c5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7yc1jl711aez0bjkzo1o01waw.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/80uysws5vhhcfiyq9nic4fdwo.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/80uysws5vhhcfiyq9nic4fdwo.o new file mode 100644 index 0000000..b1c869b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/80uysws5vhhcfiyq9nic4fdwo.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/82fxdn2ehecz9n39f82b6b4fb.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/82fxdn2ehecz9n39f82b6b4fb.o new file mode 100644 index 0000000..d6a8d20 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/82fxdn2ehecz9n39f82b6b4fb.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/8ucb4g9vn0csrqdg2g7dgdax5.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/8ucb4g9vn0csrqdg2g7dgdax5.o new file mode 100644 index 0000000..d68d523 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/8ucb4g9vn0csrqdg2g7dgdax5.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91edmc95ooazz02973f88yj7b.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91edmc95ooazz02973f88yj7b.o new file mode 100644 index 0000000..39c6929 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91edmc95ooazz02973f88yj7b.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91ef7hs2am60yu9o03fd1ekx8.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91ef7hs2am60yu9o03fd1ekx8.o new file mode 100644 index 0000000..21b7d61 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91ef7hs2am60yu9o03fd1ekx8.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/99jlkld7682hdghzkvam2tq8c.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/99jlkld7682hdghzkvam2tq8c.o new file mode 100644 index 0000000..a80689f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/99jlkld7682hdghzkvam2tq8c.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/abh9r7pecmjzp0toy267fug24.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/abh9r7pecmjzp0toy267fug24.o new file mode 100644 index 0000000..550955f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/abh9r7pecmjzp0toy267fug24.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/avfz260hoshohzg4acd3kbw10.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/avfz260hoshohzg4acd3kbw10.o new file mode 100644 index 0000000..e063fdf Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/avfz260hoshohzg4acd3kbw10.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/awoydahoh83qpnn5fyieht4cd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/awoydahoh83qpnn5fyieht4cd.o new file mode 100644 index 0000000..ee0d9d8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/awoydahoh83qpnn5fyieht4cd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/bddc41bnkoos7s44jc3kvdc5x.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/bddc41bnkoos7s44jc3kvdc5x.o new file mode 100644 index 0000000..ca2aa66 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/bddc41bnkoos7s44jc3kvdc5x.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c0g2ui1n1zvke9c4alvr9n0o9.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c0g2ui1n1zvke9c4alvr9n0o9.o new file mode 100644 index 0000000..2ceb711 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c0g2ui1n1zvke9c4alvr9n0o9.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c3gpklby2ah3x08d1l1i0fflu.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c3gpklby2ah3x08d1l1i0fflu.o new file mode 100644 index 0000000..5bae350 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c3gpklby2ah3x08d1l1i0fflu.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c5bfqnj2m0qterp3rel36ng05.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c5bfqnj2m0qterp3rel36ng05.o new file mode 100644 index 0000000..919e1ea Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c5bfqnj2m0qterp3rel36ng05.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/clyosjzsb1xhzciq3qvvwfsh8.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/clyosjzsb1xhzciq3qvvwfsh8.o new file mode 100644 index 0000000..0fed0dd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/clyosjzsb1xhzciq3qvvwfsh8.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/crhqry4ewjrecgeyoadxytteg.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/crhqry4ewjrecgeyoadxytteg.o new file mode 100644 index 0000000..27fbb3b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/crhqry4ewjrecgeyoadxytteg.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/d82211zvty1oq5m1q1twcdhjd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/d82211zvty1oq5m1q1twcdhjd.o new file mode 100644 index 0000000..40e236e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/d82211zvty1oq5m1q1twcdhjd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dep-graph.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dep-graph.bin new file mode 100644 index 0000000..2690e1b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dep-graph.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dj6fx2sc6j85j0b1pa1src98c.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dj6fx2sc6j85j0b1pa1src98c.o new file mode 100644 index 0000000..1a19428 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dj6fx2sc6j85j0b1pa1src98c.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dk872qge7yvm5fqqxrjo69r9w.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dk872qge7yvm5fqqxrjo69r9w.o new file mode 100644 index 0000000..6087aa3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dk872qge7yvm5fqqxrjo69r9w.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/doep033if0jpgqu1ordr2l9m8.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/doep033if0jpgqu1ordr2l9m8.o new file mode 100644 index 0000000..f2eac40 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/doep033if0jpgqu1ordr2l9m8.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dv47t7wnxe8bkj61x2dae1g44.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dv47t7wnxe8bkj61x2dae1g44.o new file mode 100644 index 0000000..cd1dacd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dv47t7wnxe8bkj61x2dae1g44.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/engrpahpcqd41cxw5158s884n.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/engrpahpcqd41cxw5158s884n.o new file mode 100644 index 0000000..ea194f4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/engrpahpcqd41cxw5158s884n.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/f01v3auyr8xc6l8jhxxo44iwg.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/f01v3auyr8xc6l8jhxxo44iwg.o new file mode 100644 index 0000000..06bd16a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/f01v3auyr8xc6l8jhxxo44iwg.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/query-cache.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/query-cache.bin new file mode 100644 index 0000000..ab705a7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/query-cache.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/work-products.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/work-products.bin new file mode 100644 index 0000000..c452b72 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/work-products.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3.lock b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3.lock new file mode 100755 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0fcsk5p6640nhux62do561e5m.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0fcsk5p6640nhux62do561e5m.o new file mode 100644 index 0000000..73237af Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0fcsk5p6640nhux62do561e5m.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0lv1mmoupz9d2b3tsknm8hutu.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0lv1mmoupz9d2b3tsknm8hutu.o new file mode 100644 index 0000000..0a43811 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0lv1mmoupz9d2b3tsknm8hutu.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0rc2l8pajzz4gn7cbc7dqx9jk.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0rc2l8pajzz4gn7cbc7dqx9jk.o new file mode 100644 index 0000000..e5707d2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0rc2l8pajzz4gn7cbc7dqx9jk.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0yspoa633qln51fo83mxqf1n4.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0yspoa633qln51fo83mxqf1n4.o new file mode 100644 index 0000000..2b7a222 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0yspoa633qln51fo83mxqf1n4.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/17irvcia3duzq2q2yty2ykg4r.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/17irvcia3duzq2q2yty2ykg4r.o new file mode 100644 index 0000000..926b7cc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/17irvcia3duzq2q2yty2ykg4r.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1jfw1o0xa71tt5aq2hwesyntw.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1jfw1o0xa71tt5aq2hwesyntw.o new file mode 100644 index 0000000..2923fc9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1jfw1o0xa71tt5aq2hwesyntw.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1qjnh3krkjn4vhomsnc78lrsb.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1qjnh3krkjn4vhomsnc78lrsb.o new file mode 100644 index 0000000..d90d152 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1qjnh3krkjn4vhomsnc78lrsb.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/233dygu5oemottzw6otgw9n8u.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/233dygu5oemottzw6otgw9n8u.o new file mode 100644 index 0000000..ef81c9e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/233dygu5oemottzw6otgw9n8u.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26sb7rgkr7wddh9b0t5gdjp6m.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26sb7rgkr7wddh9b0t5gdjp6m.o new file mode 100644 index 0000000..9495466 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26sb7rgkr7wddh9b0t5gdjp6m.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26vljy91qcv7539nvfgh5xd99.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26vljy91qcv7539nvfgh5xd99.o new file mode 100644 index 0000000..4f9d3b6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26vljy91qcv7539nvfgh5xd99.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/35x00blx5saj5o1842c4tptbc.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/35x00blx5saj5o1842c4tptbc.o new file mode 100644 index 0000000..b6f8e9d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/35x00blx5saj5o1842c4tptbc.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/38ad93pjtjpnvx08yejfcu8w3.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/38ad93pjtjpnvx08yejfcu8w3.o new file mode 100644 index 0000000..2456fa9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/38ad93pjtjpnvx08yejfcu8w3.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3f2zivfsult6pdsh53l8cujpl.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3f2zivfsult6pdsh53l8cujpl.o new file mode 100644 index 0000000..3b11151 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3f2zivfsult6pdsh53l8cujpl.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3n4f594le6oudtkcwz57j5o86.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3n4f594le6oudtkcwz57j5o86.o new file mode 100644 index 0000000..3dd0cb4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3n4f594le6oudtkcwz57j5o86.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3pp2h5b4ctd7pdyw2l38lyslh.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3pp2h5b4ctd7pdyw2l38lyslh.o new file mode 100644 index 0000000..0e69e5f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3pp2h5b4ctd7pdyw2l38lyslh.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/490hh0cdvmtz0ui41hfslqzg4.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/490hh0cdvmtz0ui41hfslqzg4.o new file mode 100644 index 0000000..8023410 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/490hh0cdvmtz0ui41hfslqzg4.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/4odrr8frdyp89dnhj8f1vjoir.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/4odrr8frdyp89dnhj8f1vjoir.o new file mode 100644 index 0000000..16ca3f1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/4odrr8frdyp89dnhj8f1vjoir.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/5ndejy401jrgeyx0cgghjw105.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/5ndejy401jrgeyx0cgghjw105.o new file mode 100644 index 0000000..0ce0e32 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/5ndejy401jrgeyx0cgghjw105.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/6qamp1awtw2pt9zsjj4ydtv8t.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/6qamp1awtw2pt9zsjj4ydtv8t.o new file mode 100644 index 0000000..541a332 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/6qamp1awtw2pt9zsjj4ydtv8t.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/70omcky5x2tj76lsdy8b3o2l6.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/70omcky5x2tj76lsdy8b3o2l6.o new file mode 100644 index 0000000..d51bcaa Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/70omcky5x2tj76lsdy8b3o2l6.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/726sor76cik6i9d5nfxa3fgj8.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/726sor76cik6i9d5nfxa3fgj8.o new file mode 100644 index 0000000..e6c994b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/726sor76cik6i9d5nfxa3fgj8.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/76hqp2u3747liovxqib89kwks.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/76hqp2u3747liovxqib89kwks.o new file mode 100644 index 0000000..c79fc36 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/76hqp2u3747liovxqib89kwks.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/77q5twacv6b41mehd4zfes6vd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/77q5twacv6b41mehd4zfes6vd.o new file mode 100644 index 0000000..f6e9612 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/77q5twacv6b41mehd4zfes6vd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7s4qd3pxcyrfo9b9vroupubq5.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7s4qd3pxcyrfo9b9vroupubq5.o new file mode 100644 index 0000000..ceee5ab Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7s4qd3pxcyrfo9b9vroupubq5.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7zhjmr777hvu459ex8pmwlgvi.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7zhjmr777hvu459ex8pmwlgvi.o new file mode 100644 index 0000000..ae70ae0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7zhjmr777hvu459ex8pmwlgvi.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/88o5p7bc6b00in5g8diw4skk3.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/88o5p7bc6b00in5g8diw4skk3.o new file mode 100644 index 0000000..d617ac8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/88o5p7bc6b00in5g8diw4skk3.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/89ltyufelia3ztv9eg7cngsiz.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/89ltyufelia3ztv9eg7cngsiz.o new file mode 100644 index 0000000..5954e92 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/89ltyufelia3ztv9eg7cngsiz.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8mpkm3obli6gu0cjt15zvy71m.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8mpkm3obli6gu0cjt15zvy71m.o new file mode 100644 index 0000000..600c441 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8mpkm3obli6gu0cjt15zvy71m.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8rxju4hhiq6wux82l6yiizkgd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8rxju4hhiq6wux82l6yiizkgd.o new file mode 100644 index 0000000..86075c6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8rxju4hhiq6wux82l6yiizkgd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8tza4jqu1gm9jh0ur7c8u4tzi.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8tza4jqu1gm9jh0ur7c8u4tzi.o new file mode 100644 index 0000000..ec017e1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8tza4jqu1gm9jh0ur7c8u4tzi.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/962gt8otmgg19vybis8vnqowe.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/962gt8otmgg19vybis8vnqowe.o new file mode 100644 index 0000000..9adca25 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/962gt8otmgg19vybis8vnqowe.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/a5pftzzs9gp08dycqcefqtez3.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/a5pftzzs9gp08dycqcefqtez3.o new file mode 100644 index 0000000..c392175 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/a5pftzzs9gp08dycqcefqtez3.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/atm1ikwm5ete2bpwsg0zzwzub.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/atm1ikwm5ete2bpwsg0zzwzub.o new file mode 100644 index 0000000..66c86b4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/atm1ikwm5ete2bpwsg0zzwzub.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b12r6v1udsr6tk3v1gmt7g6h3.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b12r6v1udsr6tk3v1gmt7g6h3.o new file mode 100644 index 0000000..340c47b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b12r6v1udsr6tk3v1gmt7g6h3.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b59ofr9ymqm4k9j0mgk91aj3a.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b59ofr9ymqm4k9j0mgk91aj3a.o new file mode 100644 index 0000000..2f8c02f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b59ofr9ymqm4k9j0mgk91aj3a.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/bckj4pq8r3y675k238szfito9.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/bckj4pq8r3y675k238szfito9.o new file mode 100644 index 0000000..36078df Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/bckj4pq8r3y675k238szfito9.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/c3rmrr85ht2zojihk5adrhhlm.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/c3rmrr85ht2zojihk5adrhhlm.o new file mode 100644 index 0000000..02d81ba Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/c3rmrr85ht2zojihk5adrhhlm.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cgufaxjv7gcvm0rfr63u6iu8a.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cgufaxjv7gcvm0rfr63u6iu8a.o new file mode 100644 index 0000000..30502c0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cgufaxjv7gcvm0rfr63u6iu8a.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cqz2n9ptrsu52ia9zlrgxvm8f.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cqz2n9ptrsu52ia9zlrgxvm8f.o new file mode 100644 index 0000000..43682d5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cqz2n9ptrsu52ia9zlrgxvm8f.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cwxjdol3rqcaeuy9f9veuiikc.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cwxjdol3rqcaeuy9f9veuiikc.o new file mode 100644 index 0000000..886d1b6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cwxjdol3rqcaeuy9f9veuiikc.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/d2ishb7f5q91fc4yvgnkim9ba.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/d2ishb7f5q91fc4yvgnkim9ba.o new file mode 100644 index 0000000..a79adc6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/d2ishb7f5q91fc4yvgnkim9ba.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dep-graph.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dep-graph.bin new file mode 100644 index 0000000..8e5e6f0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dep-graph.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dlcz24gcirwy97wt2bgol3ggj.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dlcz24gcirwy97wt2bgol3ggj.o new file mode 100644 index 0000000..7c51d8c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dlcz24gcirwy97wt2bgol3ggj.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dvqjbjk7knm8idwr6dekzfdqm.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dvqjbjk7knm8idwr6dekzfdqm.o new file mode 100644 index 0000000..63484f9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dvqjbjk7knm8idwr6dekzfdqm.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dy8l49glza8fngu15t3426uka.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dy8l49glza8fngu15t3426uka.o new file mode 100644 index 0000000..d8655dc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dy8l49glza8fngu15t3426uka.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/egzmj45w6ie3mmtfmtk69befw.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/egzmj45w6ie3mmtfmtk69befw.o new file mode 100644 index 0000000..6a5ac10 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/egzmj45w6ie3mmtfmtk69befw.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/ela3k6e9d7iwlu6pryv95glg9.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/ela3k6e9d7iwlu6pryv95glg9.o new file mode 100644 index 0000000..9efd492 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/ela3k6e9d7iwlu6pryv95glg9.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/en6fxehcklkge1kilqu1ld4b1.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/en6fxehcklkge1kilqu1ld4b1.o new file mode 100644 index 0000000..e83e4a9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/en6fxehcklkge1kilqu1ld4b1.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/f2hq9dlrbzf6msnd4nv213mp9.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/f2hq9dlrbzf6msnd4nv213mp9.o new file mode 100644 index 0000000..9744542 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/f2hq9dlrbzf6msnd4nv213mp9.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/query-cache.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/query-cache.bin new file mode 100644 index 0000000..b273d78 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/query-cache.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/work-products.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/work-products.bin new file mode 100644 index 0000000..5e874d3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/work-products.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v.lock b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v.lock new file mode 100755 index 0000000..e69de29 diff --git a/src-tauri/openai/.gitignore b/src-tauri/openai/.gitignore deleted file mode 100644 index ea8c4bf..0000000 --- a/src-tauri/openai/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/target diff --git a/src-tauri/openai/Cargo.lock b/src-tauri/openai/Cargo.lock deleted file mode 100644 index 41da778..0000000 --- a/src-tauri/openai/Cargo.lock +++ /dev/null @@ -1,1671 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 4 - -[[package]] -name = "addr2line" -version = "0.24.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" -dependencies = [ - "gimli", -] - -[[package]] -name = "adler2" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" - -[[package]] -name = "atomic-waker" -version = "1.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" - -[[package]] -name = "autocfg" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" - -[[package]] -name = "backtrace" -version = "0.3.75" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" -dependencies = [ - "addr2line", - "cfg-if", - "libc", - "miniz_oxide", - "object", - "rustc-demangle", - "windows-targets 0.52.6", -] - -[[package]] -name = "base64" -version = "0.22.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - -[[package]] -name = "bitflags" -version = "2.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" - -[[package]] -name = "bumpalo" -version = "3.19.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" - -[[package]] -name = "bytes" -version = "1.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" - -[[package]] -name = "cc" -version = "1.2.29" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362" -dependencies = [ - "shlex", -] - -[[package]] -name = "cfg-if" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" - -[[package]] -name = "core-foundation" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "core-foundation-sys" -version = "0.8.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" - -[[package]] -name = "displaydoc" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "encoding_rs" -version = "0.8.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "equivalent" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" - -[[package]] -name = "errno" -version = "0.3.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" -dependencies = [ - "libc", - "windows-sys 0.60.2", -] - -[[package]] -name = "fastrand" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" - -[[package]] -name = "fnv" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - -[[package]] -name = "foreign-types" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" -dependencies = [ - "foreign-types-shared", -] - -[[package]] -name = "foreign-types-shared" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" - -[[package]] -name = "form_urlencoded" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" -dependencies = [ - "percent-encoding", -] - -[[package]] -name = "futures-channel" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" -dependencies = [ - "futures-core", -] - -[[package]] -name = "futures-core" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" - -[[package]] -name = "futures-sink" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" - -[[package]] -name = "futures-task" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" - -[[package]] -name = "futures-util" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" -dependencies = [ - "futures-core", - "futures-task", - "pin-project-lite", - "pin-utils", -] - -[[package]] -name = "getrandom" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" -dependencies = [ - "cfg-if", - "libc", - "wasi 0.11.1+wasi-snapshot-preview1", -] - -[[package]] -name = "getrandom" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" -dependencies = [ - "cfg-if", - "libc", - "r-efi", - "wasi 0.14.2+wasi-0.2.4", -] - -[[package]] -name = "gimli" -version = "0.31.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" - -[[package]] -name = "h2" -version = "0.4.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785" -dependencies = [ - "atomic-waker", - "bytes", - "fnv", - "futures-core", - "futures-sink", - "http", - "indexmap", - "slab", - "tokio", - "tokio-util", - "tracing", -] - -[[package]] -name = "hashbrown" -version = "0.15.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" - -[[package]] -name = "http" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" -dependencies = [ - "bytes", - "fnv", - "itoa", -] - -[[package]] -name = "http-body" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" -dependencies = [ - "bytes", - "http", -] - -[[package]] -name = "http-body-util" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" -dependencies = [ - "bytes", - "futures-core", - "http", - "http-body", - "pin-project-lite", -] - -[[package]] -name = "httparse" -version = "1.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" - -[[package]] -name = "hyper" -version = "1.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" -dependencies = [ - "bytes", - "futures-channel", - "futures-util", - "h2", - "http", - "http-body", - "httparse", - "itoa", - "pin-project-lite", - "smallvec", - "tokio", - "want", -] - -[[package]] -name = "hyper-rustls" -version = "0.27.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" -dependencies = [ - "http", - "hyper", - "hyper-util", - "rustls", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", -] - -[[package]] -name = "hyper-tls" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" -dependencies = [ - "bytes", - "http-body-util", - "hyper", - "hyper-util", - "native-tls", - "tokio", - "tokio-native-tls", - "tower-service", -] - -[[package]] -name = "hyper-util" -version = "0.1.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f66d5bd4c6f02bf0542fad85d626775bab9258cf795a4256dcaf3161114d1df" -dependencies = [ - "base64", - "bytes", - "futures-channel", - "futures-core", - "futures-util", - "http", - "http-body", - "hyper", - "ipnet", - "libc", - "percent-encoding", - "pin-project-lite", - "socket2", - "system-configuration", - "tokio", - "tower-service", - "tracing", - "windows-registry", -] - -[[package]] -name = "icu_collections" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" -dependencies = [ - "displaydoc", - "potential_utf", - "yoke", - "zerofrom", - "zerovec", -] - -[[package]] -name = "icu_locale_core" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" -dependencies = [ - "displaydoc", - "litemap", - "tinystr", - "writeable", - "zerovec", -] - -[[package]] -name = "icu_normalizer" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" -dependencies = [ - "displaydoc", - "icu_collections", - "icu_normalizer_data", - "icu_properties", - "icu_provider", - "smallvec", - "zerovec", -] - -[[package]] -name = "icu_normalizer_data" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" - -[[package]] -name = "icu_properties" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" -dependencies = [ - "displaydoc", - "icu_collections", - "icu_locale_core", - "icu_properties_data", - "icu_provider", - "potential_utf", - "zerotrie", - "zerovec", -] - -[[package]] -name = "icu_properties_data" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" - -[[package]] -name = "icu_provider" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" -dependencies = [ - "displaydoc", - "icu_locale_core", - "stable_deref_trait", - "tinystr", - "writeable", - "yoke", - "zerofrom", - "zerotrie", - "zerovec", -] - -[[package]] -name = "idna" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" -dependencies = [ - "idna_adapter", - "smallvec", - "utf8_iter", -] - -[[package]] -name = "idna_adapter" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" -dependencies = [ - "icu_normalizer", - "icu_properties", -] - -[[package]] -name = "indexmap" -version = "2.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" -dependencies = [ - "equivalent", - "hashbrown", -] - -[[package]] -name = "io-uring" -version = "0.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013" -dependencies = [ - "bitflags", - "cfg-if", - "libc", -] - -[[package]] -name = "ipnet" -version = "2.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" - -[[package]] -name = "iri-string" -version = "0.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" -dependencies = [ - "memchr", - "serde", -] - -[[package]] -name = "itoa" -version = "1.0.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" - -[[package]] -name = "js-sys" -version = "0.3.77" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" -dependencies = [ - "once_cell", - "wasm-bindgen", -] - -[[package]] -name = "libc" -version = "0.2.174" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" - -[[package]] -name = "linux-raw-sys" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" - -[[package]] -name = "litemap" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" - -[[package]] -name = "lock_api" -version = "0.4.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" -dependencies = [ - "autocfg", - "scopeguard", -] - -[[package]] -name = "log" -version = "0.4.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" - -[[package]] -name = "memchr" -version = "2.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" - -[[package]] -name = "mime" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" - -[[package]] -name = "miniz_oxide" -version = "0.8.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" -dependencies = [ - "adler2", -] - -[[package]] -name = "mio" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" -dependencies = [ - "libc", - "wasi 0.11.1+wasi-snapshot-preview1", - "windows-sys 0.59.0", -] - -[[package]] -name = "native-tls" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" -dependencies = [ - "libc", - "log", - "openssl", - "openssl-probe", - "openssl-sys", - "schannel", - "security-framework", - "security-framework-sys", - "tempfile", -] - -[[package]] -name = "object" -version = "0.36.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" -dependencies = [ - "memchr", -] - -[[package]] -name = "once_cell" -version = "1.21.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" - -[[package]] -name = "openai" -version = "0.1.0" -dependencies = [ - "reqwest", - "serde", - "serde_json", - "tokio", -] - -[[package]] -name = "openssl" -version = "0.10.73" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8" -dependencies = [ - "bitflags", - "cfg-if", - "foreign-types", - "libc", - "once_cell", - "openssl-macros", - "openssl-sys", -] - -[[package]] -name = "openssl-macros" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "openssl-probe" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" - -[[package]] -name = "openssl-sys" -version = "0.9.109" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571" -dependencies = [ - "cc", - "libc", - "pkg-config", - "vcpkg", -] - -[[package]] -name = "parking_lot" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" -dependencies = [ - "lock_api", - "parking_lot_core", -] - -[[package]] -name = "parking_lot_core" -version = "0.9.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" -dependencies = [ - "cfg-if", - "libc", - "redox_syscall", - "smallvec", - "windows-targets 0.52.6", -] - -[[package]] -name = "percent-encoding" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" - -[[package]] -name = "pin-project-lite" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" - -[[package]] -name = "pin-utils" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - -[[package]] -name = "pkg-config" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" - -[[package]] -name = "potential_utf" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" -dependencies = [ - "zerovec", -] - -[[package]] -name = "proc-macro2" -version = "1.0.95" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "quote" -version = "1.0.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "r-efi" -version = "5.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" - -[[package]] -name = "redox_syscall" -version = "0.5.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6" -dependencies = [ - "bitflags", -] - -[[package]] -name = "reqwest" -version = "0.12.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531" -dependencies = [ - "base64", - "bytes", - "encoding_rs", - "futures-core", - "h2", - "http", - "http-body", - "http-body-util", - "hyper", - "hyper-rustls", - "hyper-tls", - "hyper-util", - "js-sys", - "log", - "mime", - "native-tls", - "percent-encoding", - "pin-project-lite", - "rustls-pki-types", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tokio-native-tls", - "tower", - "tower-http", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "ring" -version = "0.17.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" -dependencies = [ - "cc", - "cfg-if", - "getrandom 0.2.16", - "libc", - "untrusted", - "windows-sys 0.52.0", -] - -[[package]] -name = "rustc-demangle" -version = "0.1.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f" - -[[package]] -name = "rustix" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266" -dependencies = [ - "bitflags", - "errno", - "libc", - "linux-raw-sys", - "windows-sys 0.59.0", -] - -[[package]] -name = "rustls" -version = "0.23.29" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2491382039b29b9b11ff08b76ff6c97cf287671dbb74f0be44bda389fffe9bd1" -dependencies = [ - "once_cell", - "rustls-pki-types", - "rustls-webpki", - "subtle", - "zeroize", -] - -[[package]] -name = "rustls-pki-types" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" -dependencies = [ - "zeroize", -] - -[[package]] -name = "rustls-webpki" -version = "0.103.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc" -dependencies = [ - "ring", - "rustls-pki-types", - "untrusted", -] - -[[package]] -name = "rustversion" -version = "1.0.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" - -[[package]] -name = "ryu" -version = "1.0.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" - -[[package]] -name = "schannel" -version = "0.1.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" -dependencies = [ - "windows-sys 0.59.0", -] - -[[package]] -name = "scopeguard" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - -[[package]] -name = "security-framework" -version = "2.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" -dependencies = [ - "bitflags", - "core-foundation", - "core-foundation-sys", - "libc", - "security-framework-sys", -] - -[[package]] -name = "security-framework-sys" -version = "2.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "serde" -version = "1.0.219" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde_derive" -version = "1.0.219" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "serde_json" -version = "1.0.140" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" -dependencies = [ - "itoa", - "memchr", - "ryu", - "serde", -] - -[[package]] -name = "serde_urlencoded" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" -dependencies = [ - "form_urlencoded", - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "shlex" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - -[[package]] -name = "signal-hook-registry" -version = "1.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" -dependencies = [ - "libc", -] - -[[package]] -name = "slab" -version = "0.4.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d" - -[[package]] -name = "smallvec" -version = "1.15.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" - -[[package]] -name = "socket2" -version = "0.5.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" -dependencies = [ - "libc", - "windows-sys 0.52.0", -] - -[[package]] -name = "stable_deref_trait" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" - -[[package]] -name = "subtle" -version = "2.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" - -[[package]] -name = "syn" -version = "2.0.104" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "sync_wrapper" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" -dependencies = [ - "futures-core", -] - -[[package]] -name = "synstructure" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "system-configuration" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" -dependencies = [ - "bitflags", - "core-foundation", - "system-configuration-sys", -] - -[[package]] -name = "system-configuration-sys" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "tempfile" -version = "3.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" -dependencies = [ - "fastrand", - "getrandom 0.3.3", - "once_cell", - "rustix", - "windows-sys 0.59.0", -] - -[[package]] -name = "tinystr" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" -dependencies = [ - "displaydoc", - "zerovec", -] - -[[package]] -name = "tokio" -version = "1.46.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" -dependencies = [ - "backtrace", - "bytes", - "io-uring", - "libc", - "mio", - "parking_lot", - "pin-project-lite", - "signal-hook-registry", - "slab", - "socket2", - "tokio-macros", - "windows-sys 0.52.0", -] - -[[package]] -name = "tokio-macros" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "tokio-native-tls" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" -dependencies = [ - "native-tls", - "tokio", -] - -[[package]] -name = "tokio-rustls" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" -dependencies = [ - "rustls", - "tokio", -] - -[[package]] -name = "tokio-util" -version = "0.7.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" -dependencies = [ - "bytes", - "futures-core", - "futures-sink", - "pin-project-lite", - "tokio", -] - -[[package]] -name = "tower" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" -dependencies = [ - "futures-core", - "futures-util", - "pin-project-lite", - "sync_wrapper", - "tokio", - "tower-layer", - "tower-service", -] - -[[package]] -name = "tower-http" -version = "0.6.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" -dependencies = [ - "bitflags", - "bytes", - "futures-util", - "http", - "http-body", - "iri-string", - "pin-project-lite", - "tower", - "tower-layer", - "tower-service", -] - -[[package]] -name = "tower-layer" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" - -[[package]] -name = "tower-service" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" - -[[package]] -name = "tracing" -version = "0.1.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" -dependencies = [ - "pin-project-lite", - "tracing-core", -] - -[[package]] -name = "tracing-core" -version = "0.1.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" -dependencies = [ - "once_cell", -] - -[[package]] -name = "try-lock" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" - -[[package]] -name = "unicode-ident" -version = "1.0.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" - -[[package]] -name = "untrusted" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" - -[[package]] -name = "url" -version = "2.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" -dependencies = [ - "form_urlencoded", - "idna", - "percent-encoding", -] - -[[package]] -name = "utf8_iter" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" - -[[package]] -name = "vcpkg" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" - -[[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.1+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" - -[[package]] -name = "wasi" -version = "0.14.2+wasi-0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" -dependencies = [ - "wit-bindgen-rt", -] - -[[package]] -name = "wasm-bindgen" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" -dependencies = [ - "cfg-if", - "once_cell", - "rustversion", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" -dependencies = [ - "bumpalo", - "log", - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-futures" -version = "0.4.50" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" -dependencies = [ - "cfg-if", - "js-sys", - "once_cell", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" -dependencies = [ - "quote", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" -dependencies = [ - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "web-sys" -version = "0.3.77" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "windows-link" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" - -[[package]] -name = "windows-registry" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" -dependencies = [ - "windows-link", - "windows-result", - "windows-strings", -] - -[[package]] -name = "windows-result" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" -dependencies = [ - "windows-link", -] - -[[package]] -name = "windows-strings" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" -dependencies = [ - "windows-link", -] - -[[package]] -name = "windows-sys" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" -dependencies = [ - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-sys" -version = "0.59.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" -dependencies = [ - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-sys" -version = "0.60.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" -dependencies = [ - "windows-targets 0.53.2", -] - -[[package]] -name = "windows-targets" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" -dependencies = [ - "windows_aarch64_gnullvm 0.52.6", - "windows_aarch64_msvc 0.52.6", - "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm 0.52.6", - "windows_i686_msvc 0.52.6", - "windows_x86_64_gnu 0.52.6", - "windows_x86_64_gnullvm 0.52.6", - "windows_x86_64_msvc 0.52.6", -] - -[[package]] -name = "windows-targets" -version = "0.53.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" -dependencies = [ - "windows_aarch64_gnullvm 0.53.0", - "windows_aarch64_msvc 0.53.0", - "windows_i686_gnu 0.53.0", - "windows_i686_gnullvm 0.53.0", - "windows_i686_msvc 0.53.0", - "windows_x86_64_gnu 0.53.0", - "windows_x86_64_gnullvm 0.53.0", - "windows_x86_64_msvc 0.53.0", -] - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" - -[[package]] -name = "windows_i686_gnu" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" - -[[package]] -name = "windows_i686_gnu" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" - -[[package]] -name = "windows_i686_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" - -[[package]] -name = "windows_i686_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" - -[[package]] -name = "windows_i686_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" - -[[package]] -name = "windows_i686_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" - -[[package]] -name = "wit-bindgen-rt" -version = "0.39.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" -dependencies = [ - "bitflags", -] - -[[package]] -name = "writeable" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" - -[[package]] -name = "yoke" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" -dependencies = [ - "serde", - "stable_deref_trait", - "yoke-derive", - "zerofrom", -] - -[[package]] -name = "yoke-derive" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" -dependencies = [ - "proc-macro2", - "quote", - "syn", - "synstructure", -] - -[[package]] -name = "zerofrom" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" -dependencies = [ - "zerofrom-derive", -] - -[[package]] -name = "zerofrom-derive" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" -dependencies = [ - "proc-macro2", - "quote", - "syn", - "synstructure", -] - -[[package]] -name = "zeroize" -version = "1.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" - -[[package]] -name = "zerotrie" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" -dependencies = [ - "displaydoc", - "yoke", - "zerofrom", -] - -[[package]] -name = "zerovec" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428" -dependencies = [ - "yoke", - "zerofrom", - "zerovec-derive", -] - -[[package]] -name = "zerovec-derive" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] diff --git a/src-tauri/openai/Cargo.toml b/src-tauri/openai/Cargo.toml deleted file mode 100644 index 5e9e828..0000000 --- a/src-tauri/openai/Cargo.toml +++ /dev/null @@ -1,10 +0,0 @@ -[package] -name = "openai" -version = "0.1.0" -edition = "2021" - -[dependencies] -reqwest = "0.12.22" -tokio = { version = "1.38.0", features = ["full"] } -serde = { version = "1.0.203", features = ["derive"] } -serde_json = "1.0.120" diff --git a/src-tauri/openai/src/lib.rs b/src-tauri/openai/src/lib.rs deleted file mode 100644 index a6ef53a..0000000 --- a/src-tauri/openai/src/lib.rs +++ /dev/null @@ -1,93 +0,0 @@ -use serde::{Deserialize, Serialize}; - -const API_KEY: &str = "sk-2tosmoMAa45r9HrovQ24oC4nmMfeSI4a8vq8gyElC2ZRRrqv"; // 请替换为您的OpenAI API密钥 -const API_URL: &str = "https://api.llvho.com/v1/chat/completions"; - -// --- Structs for Serialization (Request) --- - -#[derive(Serialize)] -struct ChatCompletionRequest<'a> { - model: &'a str, - messages: Vec>, -} - -#[derive(Serialize)] -struct RequestMessage<'a> { - role: &'a str, - content: &'a str, -} - -// --- Structs for Deserialization (Response) --- - -#[derive(Deserialize)] -struct ChatCompletionResponse { - choices: Vec, -} - -#[derive(Deserialize)] -struct Choice { - message: ResponseMessage, -} - -#[derive(Deserialize)] -struct ResponseMessage { - #[allow(dead_code)] - role: String, - content: String, -} - -pub async fn ask_openai(user_prompt: &str, system_prompt: &str) -> Result { - let client = reqwest::Client::new(); - - let messages = vec![ - RequestMessage { - role: "system", - content: system_prompt, - }, - RequestMessage { - role: "user", - content: user_prompt, - }, - ]; - - let request_body = ChatCompletionRequest { - model: "gemini-2.5-flash", - messages, - }; - - let response = client - .post(API_URL) - .bearer_auth(API_KEY) - .json(&request_body) - .send() - .await?; - - let response = response.error_for_status()?; - let chat_response = response.json::().await?; - - if let Some(choice) = chat_response.choices.get(0) { - Ok(choice.message.content.clone()) - } else { - Ok("No response from AI.".to_string()) - } -} - -#[cfg(test)] -mod tests { - use super::*; - - #[tokio::test] - async fn test_ask_openai() { - // 请注意:此测试会真实调用OpenAI API并产生费用。 - // 请确保您已经设置了正确的API_KEY。 - // 在实际测试中,您可能希望使用模拟(mocking)来避免网络调用。 - let user_prompt = "Hello, who are you?"; - let system_prompt = "You are a helpful assistant."; - let result = ask_openai(user_prompt, system_prompt).await; - if let Err(e) = &result { - eprintln!("API call failed with error: {}", e); - } - assert!(result.is_ok()); - println!("AI Response: {}", result.unwrap()); - } -} diff --git a/src-tauri/tms_service/Cargo.toml b/src-tauri/tms_service/Cargo.toml index bcca07c..642ca99 100644 --- a/src-tauri/tms_service/Cargo.toml +++ b/src-tauri/tms_service/Cargo.toml @@ -8,5 +8,4 @@ reqwest = "0.12.22" tokio = { version = "1", features = ["full"] } serde = { version = "1", features = ["derive"] } serde_json = "1" -openai = { path = "../openai" } html_scraper = { path = "../html_scraper" } diff --git a/src-tauri/tms_service/src/lib.rs b/src-tauri/tms_service/src/lib.rs index de68f19..b8abbde 100644 --- a/src-tauri/tms_service/src/lib.rs +++ b/src-tauri/tms_service/src/lib.rs @@ -121,8 +121,12 @@ pub async fn create_ticket(cookie: &str, n2p: &str, massageQ: &str, wx: Option<& let workorder_bytes = workorder_res.bytes().await?; let workorder_html = String::from_utf8_lossy(&workorder_bytes).to_string(); - let system_prompt_details = "找到最新的一个工单所对应的详情按钮的url地址中id的值,只要告诉我对应的值就可以,不要说其他任何内容"; - let details_url = openai::ask_openai(&workorder_html, system_prompt_details).await?; + let details_url = match html_scraper::find_latest_work_order_id(&workorder_html) { + Ok(Some(id)) => format!("{}", id), + Ok(None) => return Ok("没有找到最新工单的详情链接".to_string()), + Err(e) => return Ok(format!("查找最新工单详情链接时出错: {}", e)), + }; + println!("最新工单详情链接{}", details_url); Ok(details_url) } @@ -187,6 +191,8 @@ pub async fn close(cookie: &str, gdID: &str) -> Result { Ok(response_body) } + + #[cfg(test)] mod tests { use super::*;