Search lyrics or song metadata from your terminal
genius genius-lyrics-search genius-lyrics cli rust

Initial Commit

+1728
+2
.gitignore
··· 1 + /target 2 + .vscode
+1452
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "android_system_properties" 7 + version = "0.1.4" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "d7ed72e1635e121ca3e79420540282af22da58be50de153d36f81ddc6b83aa9e" 10 + dependencies = [ 11 + "libc", 12 + ] 13 + 14 + [[package]] 15 + name = "ansi_term" 16 + version = "0.12.1" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 19 + dependencies = [ 20 + "winapi", 21 + ] 22 + 23 + [[package]] 24 + name = "atty" 25 + version = "0.2.14" 26 + source = "registry+https://github.com/rust-lang/crates.io-index" 27 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 28 + dependencies = [ 29 + "hermit-abi", 30 + "libc", 31 + "winapi", 32 + ] 33 + 34 + [[package]] 35 + name = "autocfg" 36 + version = "1.1.0" 37 + source = "registry+https://github.com/rust-lang/crates.io-index" 38 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 39 + 40 + [[package]] 41 + name = "base64" 42 + version = "0.13.0" 43 + source = "registry+https://github.com/rust-lang/crates.io-index" 44 + checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 45 + 46 + [[package]] 47 + name = "bitflags" 48 + version = "1.3.2" 49 + source = "registry+https://github.com/rust-lang/crates.io-index" 50 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 51 + 52 + [[package]] 53 + name = "block-buffer" 54 + version = "0.10.2" 55 + source = "registry+https://github.com/rust-lang/crates.io-index" 56 + checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324" 57 + dependencies = [ 58 + "generic-array", 59 + ] 60 + 61 + [[package]] 62 + name = "bumpalo" 63 + version = "3.11.0" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d" 66 + 67 + [[package]] 68 + name = "bytecount" 69 + version = "0.6.3" 70 + source = "registry+https://github.com/rust-lang/crates.io-index" 71 + checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c" 72 + 73 + [[package]] 74 + name = "bytes" 75 + version = "1.2.1" 76 + source = "registry+https://github.com/rust-lang/crates.io-index" 77 + checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" 78 + 79 + [[package]] 80 + name = "cc" 81 + version = "1.0.73" 82 + source = "registry+https://github.com/rust-lang/crates.io-index" 83 + checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 84 + 85 + [[package]] 86 + name = "cfg-if" 87 + version = "1.0.0" 88 + source = "registry+https://github.com/rust-lang/crates.io-index" 89 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 90 + 91 + [[package]] 92 + name = "chrono" 93 + version = "0.4.22" 94 + source = "registry+https://github.com/rust-lang/crates.io-index" 95 + checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1" 96 + dependencies = [ 97 + "iana-time-zone", 98 + "js-sys", 99 + "num-integer", 100 + "num-traits", 101 + "time", 102 + "wasm-bindgen", 103 + "winapi", 104 + ] 105 + 106 + [[package]] 107 + name = "clap" 108 + version = "3.2.17" 109 + source = "registry+https://github.com/rust-lang/crates.io-index" 110 + checksum = "29e724a68d9319343bb3328c9cc2dfde263f4b3142ee1059a9980580171c954b" 111 + dependencies = [ 112 + "atty", 113 + "bitflags", 114 + "clap_lex", 115 + "indexmap", 116 + "strsim", 117 + "termcolor", 118 + "textwrap", 119 + ] 120 + 121 + [[package]] 122 + name = "clap_lex" 123 + version = "0.2.4" 124 + source = "registry+https://github.com/rust-lang/crates.io-index" 125 + checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 126 + dependencies = [ 127 + "os_str_bytes", 128 + ] 129 + 130 + [[package]] 131 + name = "colored_json" 132 + version = "2.1.0" 133 + source = "registry+https://github.com/rust-lang/crates.io-index" 134 + checksum = "1fd32eb54d016e203b7c2600e3a7802c75843a92e38ccc4869aefeca21771a64" 135 + dependencies = [ 136 + "ansi_term", 137 + "atty", 138 + "libc", 139 + "serde", 140 + "serde_json", 141 + ] 142 + 143 + [[package]] 144 + name = "core-foundation" 145 + version = "0.9.3" 146 + source = "registry+https://github.com/rust-lang/crates.io-index" 147 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 148 + dependencies = [ 149 + "core-foundation-sys", 150 + "libc", 151 + ] 152 + 153 + [[package]] 154 + name = "core-foundation-sys" 155 + version = "0.8.3" 156 + source = "registry+https://github.com/rust-lang/crates.io-index" 157 + checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 158 + 159 + [[package]] 160 + name = "cpufeatures" 161 + version = "0.2.4" 162 + source = "registry+https://github.com/rust-lang/crates.io-index" 163 + checksum = "dc948ebb96241bb40ab73effeb80d9f93afaad49359d159a5e61be51619fe813" 164 + dependencies = [ 165 + "libc", 166 + ] 167 + 168 + [[package]] 169 + name = "crypto-common" 170 + version = "0.1.6" 171 + source = "registry+https://github.com/rust-lang/crates.io-index" 172 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 173 + dependencies = [ 174 + "generic-array", 175 + "typenum", 176 + ] 177 + 178 + [[package]] 179 + name = "digest" 180 + version = "0.10.3" 181 + source = "registry+https://github.com/rust-lang/crates.io-index" 182 + checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 183 + dependencies = [ 184 + "block-buffer", 185 + "crypto-common", 186 + "subtle", 187 + ] 188 + 189 + [[package]] 190 + name = "encoding_rs" 191 + version = "0.8.31" 192 + source = "registry+https://github.com/rust-lang/crates.io-index" 193 + checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 194 + dependencies = [ 195 + "cfg-if", 196 + ] 197 + 198 + [[package]] 199 + name = "fastrand" 200 + version = "1.8.0" 201 + source = "registry+https://github.com/rust-lang/crates.io-index" 202 + checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 203 + dependencies = [ 204 + "instant", 205 + ] 206 + 207 + [[package]] 208 + name = "fnv" 209 + version = "1.0.7" 210 + source = "registry+https://github.com/rust-lang/crates.io-index" 211 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 212 + 213 + [[package]] 214 + name = "foreign-types" 215 + version = "0.3.2" 216 + source = "registry+https://github.com/rust-lang/crates.io-index" 217 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 218 + dependencies = [ 219 + "foreign-types-shared", 220 + ] 221 + 222 + [[package]] 223 + name = "foreign-types-shared" 224 + version = "0.1.1" 225 + source = "registry+https://github.com/rust-lang/crates.io-index" 226 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 227 + 228 + [[package]] 229 + name = "form_urlencoded" 230 + version = "1.0.1" 231 + source = "registry+https://github.com/rust-lang/crates.io-index" 232 + checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 233 + dependencies = [ 234 + "matches", 235 + "percent-encoding", 236 + ] 237 + 238 + [[package]] 239 + name = "futures-channel" 240 + version = "0.3.23" 241 + source = "registry+https://github.com/rust-lang/crates.io-index" 242 + checksum = "2bfc52cbddcfd745bf1740338492bb0bd83d76c67b445f91c5fb29fae29ecaa1" 243 + dependencies = [ 244 + "futures-core", 245 + ] 246 + 247 + [[package]] 248 + name = "futures-core" 249 + version = "0.3.23" 250 + source = "registry+https://github.com/rust-lang/crates.io-index" 251 + checksum = "d2acedae88d38235936c3922476b10fced7b2b68136f5e3c03c2d5be348a1115" 252 + 253 + [[package]] 254 + name = "futures-sink" 255 + version = "0.3.23" 256 + source = "registry+https://github.com/rust-lang/crates.io-index" 257 + checksum = "ca0bae1fe9752cf7fd9b0064c674ae63f97b37bc714d745cbde0afb7ec4e6765" 258 + 259 + [[package]] 260 + name = "futures-task" 261 + version = "0.3.23" 262 + source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "842fc63b931f4056a24d59de13fb1272134ce261816e063e634ad0c15cdc5306" 264 + 265 + [[package]] 266 + name = "futures-util" 267 + version = "0.3.23" 268 + source = "registry+https://github.com/rust-lang/crates.io-index" 269 + checksum = "f0828a5471e340229c11c77ca80017937ce3c58cb788a17e5f1c2d5c485a9577" 270 + dependencies = [ 271 + "futures-core", 272 + "futures-task", 273 + "pin-project-lite", 274 + "pin-utils", 275 + ] 276 + 277 + [[package]] 278 + name = "generic-array" 279 + version = "0.14.6" 280 + source = "registry+https://github.com/rust-lang/crates.io-index" 281 + checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 282 + dependencies = [ 283 + "typenum", 284 + "version_check", 285 + ] 286 + 287 + [[package]] 288 + name = "genius-cli" 289 + version = "0.1.0" 290 + dependencies = [ 291 + "clap", 292 + "colored_json", 293 + "genius-rs", 294 + "owo-colors", 295 + "rand", 296 + "serde", 297 + "serde_json", 298 + "tabled", 299 + "tokio", 300 + ] 301 + 302 + [[package]] 303 + name = "genius-rs" 304 + version = "0.5.0" 305 + source = "git+https://github.com/tsirysndr/genius-rust?rev=3d9108c#3d9108cd29670bae8c0c14ba1b83d9829c7c0808" 306 + dependencies = [ 307 + "base64", 308 + "chrono", 309 + "hmac", 310 + "reqwest", 311 + "serde", 312 + "sha2", 313 + "thiserror", 314 + ] 315 + 316 + [[package]] 317 + name = "getrandom" 318 + version = "0.2.7" 319 + source = "registry+https://github.com/rust-lang/crates.io-index" 320 + checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 321 + dependencies = [ 322 + "cfg-if", 323 + "libc", 324 + "wasi 0.11.0+wasi-snapshot-preview1", 325 + ] 326 + 327 + [[package]] 328 + name = "h2" 329 + version = "0.3.14" 330 + source = "registry+https://github.com/rust-lang/crates.io-index" 331 + checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be" 332 + dependencies = [ 333 + "bytes", 334 + "fnv", 335 + "futures-core", 336 + "futures-sink", 337 + "futures-util", 338 + "http", 339 + "indexmap", 340 + "slab", 341 + "tokio", 342 + "tokio-util", 343 + "tracing", 344 + ] 345 + 346 + [[package]] 347 + name = "hashbrown" 348 + version = "0.12.3" 349 + source = "registry+https://github.com/rust-lang/crates.io-index" 350 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 351 + 352 + [[package]] 353 + name = "heck" 354 + version = "0.4.0" 355 + source = "registry+https://github.com/rust-lang/crates.io-index" 356 + checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 357 + 358 + [[package]] 359 + name = "hermit-abi" 360 + version = "0.1.19" 361 + source = "registry+https://github.com/rust-lang/crates.io-index" 362 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 363 + dependencies = [ 364 + "libc", 365 + ] 366 + 367 + [[package]] 368 + name = "hmac" 369 + version = "0.12.1" 370 + source = "registry+https://github.com/rust-lang/crates.io-index" 371 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 372 + dependencies = [ 373 + "digest", 374 + ] 375 + 376 + [[package]] 377 + name = "http" 378 + version = "0.2.8" 379 + source = "registry+https://github.com/rust-lang/crates.io-index" 380 + checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 381 + dependencies = [ 382 + "bytes", 383 + "fnv", 384 + "itoa", 385 + ] 386 + 387 + [[package]] 388 + name = "http-body" 389 + version = "0.4.5" 390 + source = "registry+https://github.com/rust-lang/crates.io-index" 391 + checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 392 + dependencies = [ 393 + "bytes", 394 + "http", 395 + "pin-project-lite", 396 + ] 397 + 398 + [[package]] 399 + name = "httparse" 400 + version = "1.7.1" 401 + source = "registry+https://github.com/rust-lang/crates.io-index" 402 + checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" 403 + 404 + [[package]] 405 + name = "httpdate" 406 + version = "1.0.2" 407 + source = "registry+https://github.com/rust-lang/crates.io-index" 408 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 409 + 410 + [[package]] 411 + name = "hyper" 412 + version = "0.14.20" 413 + source = "registry+https://github.com/rust-lang/crates.io-index" 414 + checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac" 415 + dependencies = [ 416 + "bytes", 417 + "futures-channel", 418 + "futures-core", 419 + "futures-util", 420 + "h2", 421 + "http", 422 + "http-body", 423 + "httparse", 424 + "httpdate", 425 + "itoa", 426 + "pin-project-lite", 427 + "socket2", 428 + "tokio", 429 + "tower-service", 430 + "tracing", 431 + "want", 432 + ] 433 + 434 + [[package]] 435 + name = "hyper-tls" 436 + version = "0.5.0" 437 + source = "registry+https://github.com/rust-lang/crates.io-index" 438 + checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 439 + dependencies = [ 440 + "bytes", 441 + "hyper", 442 + "native-tls", 443 + "tokio", 444 + "tokio-native-tls", 445 + ] 446 + 447 + [[package]] 448 + name = "iana-time-zone" 449 + version = "0.1.46" 450 + source = "registry+https://github.com/rust-lang/crates.io-index" 451 + checksum = "ad2bfd338099682614d3ee3fe0cd72e0b6a41ca6a87f6a74a3bd593c91650501" 452 + dependencies = [ 453 + "android_system_properties", 454 + "core-foundation-sys", 455 + "js-sys", 456 + "wasm-bindgen", 457 + "winapi", 458 + ] 459 + 460 + [[package]] 461 + name = "idna" 462 + version = "0.2.3" 463 + source = "registry+https://github.com/rust-lang/crates.io-index" 464 + checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 465 + dependencies = [ 466 + "matches", 467 + "unicode-bidi", 468 + "unicode-normalization", 469 + ] 470 + 471 + [[package]] 472 + name = "indexmap" 473 + version = "1.9.1" 474 + source = "registry+https://github.com/rust-lang/crates.io-index" 475 + checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 476 + dependencies = [ 477 + "autocfg", 478 + "hashbrown", 479 + ] 480 + 481 + [[package]] 482 + name = "instant" 483 + version = "0.1.12" 484 + source = "registry+https://github.com/rust-lang/crates.io-index" 485 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 486 + dependencies = [ 487 + "cfg-if", 488 + ] 489 + 490 + [[package]] 491 + name = "ipnet" 492 + version = "2.5.0" 493 + source = "registry+https://github.com/rust-lang/crates.io-index" 494 + checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b" 495 + 496 + [[package]] 497 + name = "itoa" 498 + version = "1.0.3" 499 + source = "registry+https://github.com/rust-lang/crates.io-index" 500 + checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" 501 + 502 + [[package]] 503 + name = "js-sys" 504 + version = "0.3.59" 505 + source = "registry+https://github.com/rust-lang/crates.io-index" 506 + checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2" 507 + dependencies = [ 508 + "wasm-bindgen", 509 + ] 510 + 511 + [[package]] 512 + name = "lazy_static" 513 + version = "1.4.0" 514 + source = "registry+https://github.com/rust-lang/crates.io-index" 515 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 516 + 517 + [[package]] 518 + name = "libc" 519 + version = "0.2.132" 520 + source = "registry+https://github.com/rust-lang/crates.io-index" 521 + checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5" 522 + 523 + [[package]] 524 + name = "lock_api" 525 + version = "0.4.7" 526 + source = "registry+https://github.com/rust-lang/crates.io-index" 527 + checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" 528 + dependencies = [ 529 + "autocfg", 530 + "scopeguard", 531 + ] 532 + 533 + [[package]] 534 + name = "log" 535 + version = "0.4.17" 536 + source = "registry+https://github.com/rust-lang/crates.io-index" 537 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 538 + dependencies = [ 539 + "cfg-if", 540 + ] 541 + 542 + [[package]] 543 + name = "matches" 544 + version = "0.1.9" 545 + source = "registry+https://github.com/rust-lang/crates.io-index" 546 + checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 547 + 548 + [[package]] 549 + name = "memchr" 550 + version = "2.5.0" 551 + source = "registry+https://github.com/rust-lang/crates.io-index" 552 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 553 + 554 + [[package]] 555 + name = "mime" 556 + version = "0.3.16" 557 + source = "registry+https://github.com/rust-lang/crates.io-index" 558 + checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 559 + 560 + [[package]] 561 + name = "mio" 562 + version = "0.8.4" 563 + source = "registry+https://github.com/rust-lang/crates.io-index" 564 + checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf" 565 + dependencies = [ 566 + "libc", 567 + "log", 568 + "wasi 0.11.0+wasi-snapshot-preview1", 569 + "windows-sys", 570 + ] 571 + 572 + [[package]] 573 + name = "native-tls" 574 + version = "0.2.10" 575 + source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" 577 + dependencies = [ 578 + "lazy_static", 579 + "libc", 580 + "log", 581 + "openssl", 582 + "openssl-probe", 583 + "openssl-sys", 584 + "schannel", 585 + "security-framework", 586 + "security-framework-sys", 587 + "tempfile", 588 + ] 589 + 590 + [[package]] 591 + name = "num-integer" 592 + version = "0.1.45" 593 + source = "registry+https://github.com/rust-lang/crates.io-index" 594 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 595 + dependencies = [ 596 + "autocfg", 597 + "num-traits", 598 + ] 599 + 600 + [[package]] 601 + name = "num-traits" 602 + version = "0.2.15" 603 + source = "registry+https://github.com/rust-lang/crates.io-index" 604 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 605 + dependencies = [ 606 + "autocfg", 607 + ] 608 + 609 + [[package]] 610 + name = "num_cpus" 611 + version = "1.13.1" 612 + source = "registry+https://github.com/rust-lang/crates.io-index" 613 + checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 614 + dependencies = [ 615 + "hermit-abi", 616 + "libc", 617 + ] 618 + 619 + [[package]] 620 + name = "once_cell" 621 + version = "1.13.1" 622 + source = "registry+https://github.com/rust-lang/crates.io-index" 623 + checksum = "074864da206b4973b84eb91683020dbefd6a8c3f0f38e054d93954e891935e4e" 624 + 625 + [[package]] 626 + name = "openssl" 627 + version = "0.10.41" 628 + source = "registry+https://github.com/rust-lang/crates.io-index" 629 + checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0" 630 + dependencies = [ 631 + "bitflags", 632 + "cfg-if", 633 + "foreign-types", 634 + "libc", 635 + "once_cell", 636 + "openssl-macros", 637 + "openssl-sys", 638 + ] 639 + 640 + [[package]] 641 + name = "openssl-macros" 642 + version = "0.1.0" 643 + source = "registry+https://github.com/rust-lang/crates.io-index" 644 + checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 645 + dependencies = [ 646 + "proc-macro2", 647 + "quote", 648 + "syn", 649 + ] 650 + 651 + [[package]] 652 + name = "openssl-probe" 653 + version = "0.1.5" 654 + source = "registry+https://github.com/rust-lang/crates.io-index" 655 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 656 + 657 + [[package]] 658 + name = "openssl-sys" 659 + version = "0.9.75" 660 + source = "registry+https://github.com/rust-lang/crates.io-index" 661 + checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f" 662 + dependencies = [ 663 + "autocfg", 664 + "cc", 665 + "libc", 666 + "pkg-config", 667 + "vcpkg", 668 + ] 669 + 670 + [[package]] 671 + name = "os_str_bytes" 672 + version = "6.3.0" 673 + source = "registry+https://github.com/rust-lang/crates.io-index" 674 + checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff" 675 + 676 + [[package]] 677 + name = "owo-colors" 678 + version = "3.5.0" 679 + source = "registry+https://github.com/rust-lang/crates.io-index" 680 + checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" 681 + 682 + [[package]] 683 + name = "papergrid" 684 + version = "0.5.1" 685 + source = "registry+https://github.com/rust-lang/crates.io-index" 686 + checksum = "453cf71f2a37af495a1a124bf30d4d7469cfbea58e9f2479be9d222396a518a2" 687 + dependencies = [ 688 + "bytecount", 689 + "fnv", 690 + "unicode-width", 691 + ] 692 + 693 + [[package]] 694 + name = "parking_lot" 695 + version = "0.12.1" 696 + source = "registry+https://github.com/rust-lang/crates.io-index" 697 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 698 + dependencies = [ 699 + "lock_api", 700 + "parking_lot_core", 701 + ] 702 + 703 + [[package]] 704 + name = "parking_lot_core" 705 + version = "0.9.3" 706 + source = "registry+https://github.com/rust-lang/crates.io-index" 707 + checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 708 + dependencies = [ 709 + "cfg-if", 710 + "libc", 711 + "redox_syscall", 712 + "smallvec", 713 + "windows-sys", 714 + ] 715 + 716 + [[package]] 717 + name = "percent-encoding" 718 + version = "2.1.0" 719 + source = "registry+https://github.com/rust-lang/crates.io-index" 720 + checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 721 + 722 + [[package]] 723 + name = "pin-project-lite" 724 + version = "0.2.9" 725 + source = "registry+https://github.com/rust-lang/crates.io-index" 726 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 727 + 728 + [[package]] 729 + name = "pin-utils" 730 + version = "0.1.0" 731 + source = "registry+https://github.com/rust-lang/crates.io-index" 732 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 733 + 734 + [[package]] 735 + name = "pkg-config" 736 + version = "0.3.25" 737 + source = "registry+https://github.com/rust-lang/crates.io-index" 738 + checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" 739 + 740 + [[package]] 741 + name = "ppv-lite86" 742 + version = "0.2.16" 743 + source = "registry+https://github.com/rust-lang/crates.io-index" 744 + checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 745 + 746 + [[package]] 747 + name = "proc-macro-error" 748 + version = "1.0.4" 749 + source = "registry+https://github.com/rust-lang/crates.io-index" 750 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 751 + dependencies = [ 752 + "proc-macro-error-attr", 753 + "proc-macro2", 754 + "quote", 755 + "syn", 756 + "version_check", 757 + ] 758 + 759 + [[package]] 760 + name = "proc-macro-error-attr" 761 + version = "1.0.4" 762 + source = "registry+https://github.com/rust-lang/crates.io-index" 763 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 764 + dependencies = [ 765 + "proc-macro2", 766 + "quote", 767 + "version_check", 768 + ] 769 + 770 + [[package]] 771 + name = "proc-macro2" 772 + version = "1.0.43" 773 + source = "registry+https://github.com/rust-lang/crates.io-index" 774 + checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab" 775 + dependencies = [ 776 + "unicode-ident", 777 + ] 778 + 779 + [[package]] 780 + name = "quote" 781 + version = "1.0.21" 782 + source = "registry+https://github.com/rust-lang/crates.io-index" 783 + checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 784 + dependencies = [ 785 + "proc-macro2", 786 + ] 787 + 788 + [[package]] 789 + name = "rand" 790 + version = "0.8.5" 791 + source = "registry+https://github.com/rust-lang/crates.io-index" 792 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 793 + dependencies = [ 794 + "libc", 795 + "rand_chacha", 796 + "rand_core", 797 + ] 798 + 799 + [[package]] 800 + name = "rand_chacha" 801 + version = "0.3.1" 802 + source = "registry+https://github.com/rust-lang/crates.io-index" 803 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 804 + dependencies = [ 805 + "ppv-lite86", 806 + "rand_core", 807 + ] 808 + 809 + [[package]] 810 + name = "rand_core" 811 + version = "0.6.3" 812 + source = "registry+https://github.com/rust-lang/crates.io-index" 813 + checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 814 + dependencies = [ 815 + "getrandom", 816 + ] 817 + 818 + [[package]] 819 + name = "redox_syscall" 820 + version = "0.2.16" 821 + source = "registry+https://github.com/rust-lang/crates.io-index" 822 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 823 + dependencies = [ 824 + "bitflags", 825 + ] 826 + 827 + [[package]] 828 + name = "remove_dir_all" 829 + version = "0.5.3" 830 + source = "registry+https://github.com/rust-lang/crates.io-index" 831 + checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 832 + dependencies = [ 833 + "winapi", 834 + ] 835 + 836 + [[package]] 837 + name = "reqwest" 838 + version = "0.11.11" 839 + source = "registry+https://github.com/rust-lang/crates.io-index" 840 + checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92" 841 + dependencies = [ 842 + "base64", 843 + "bytes", 844 + "encoding_rs", 845 + "futures-core", 846 + "futures-util", 847 + "h2", 848 + "http", 849 + "http-body", 850 + "hyper", 851 + "hyper-tls", 852 + "ipnet", 853 + "js-sys", 854 + "lazy_static", 855 + "log", 856 + "mime", 857 + "native-tls", 858 + "percent-encoding", 859 + "pin-project-lite", 860 + "serde", 861 + "serde_json", 862 + "serde_urlencoded", 863 + "tokio", 864 + "tokio-native-tls", 865 + "tower-service", 866 + "url", 867 + "wasm-bindgen", 868 + "wasm-bindgen-futures", 869 + "web-sys", 870 + "winreg", 871 + ] 872 + 873 + [[package]] 874 + name = "ryu" 875 + version = "1.0.11" 876 + source = "registry+https://github.com/rust-lang/crates.io-index" 877 + checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 878 + 879 + [[package]] 880 + name = "schannel" 881 + version = "0.1.20" 882 + source = "registry+https://github.com/rust-lang/crates.io-index" 883 + checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 884 + dependencies = [ 885 + "lazy_static", 886 + "windows-sys", 887 + ] 888 + 889 + [[package]] 890 + name = "scopeguard" 891 + version = "1.1.0" 892 + source = "registry+https://github.com/rust-lang/crates.io-index" 893 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 894 + 895 + [[package]] 896 + name = "security-framework" 897 + version = "2.7.0" 898 + source = "registry+https://github.com/rust-lang/crates.io-index" 899 + checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" 900 + dependencies = [ 901 + "bitflags", 902 + "core-foundation", 903 + "core-foundation-sys", 904 + "libc", 905 + "security-framework-sys", 906 + ] 907 + 908 + [[package]] 909 + name = "security-framework-sys" 910 + version = "2.6.1" 911 + source = "registry+https://github.com/rust-lang/crates.io-index" 912 + checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 913 + dependencies = [ 914 + "core-foundation-sys", 915 + "libc", 916 + ] 917 + 918 + [[package]] 919 + name = "serde" 920 + version = "1.0.144" 921 + source = "registry+https://github.com/rust-lang/crates.io-index" 922 + checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860" 923 + dependencies = [ 924 + "serde_derive", 925 + ] 926 + 927 + [[package]] 928 + name = "serde_derive" 929 + version = "1.0.144" 930 + source = "registry+https://github.com/rust-lang/crates.io-index" 931 + checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00" 932 + dependencies = [ 933 + "proc-macro2", 934 + "quote", 935 + "syn", 936 + ] 937 + 938 + [[package]] 939 + name = "serde_json" 940 + version = "1.0.85" 941 + source = "registry+https://github.com/rust-lang/crates.io-index" 942 + checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" 943 + dependencies = [ 944 + "itoa", 945 + "ryu", 946 + "serde", 947 + ] 948 + 949 + [[package]] 950 + name = "serde_urlencoded" 951 + version = "0.7.1" 952 + source = "registry+https://github.com/rust-lang/crates.io-index" 953 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 954 + dependencies = [ 955 + "form_urlencoded", 956 + "itoa", 957 + "ryu", 958 + "serde", 959 + ] 960 + 961 + [[package]] 962 + name = "sha2" 963 + version = "0.10.2" 964 + source = "registry+https://github.com/rust-lang/crates.io-index" 965 + checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676" 966 + dependencies = [ 967 + "cfg-if", 968 + "cpufeatures", 969 + "digest", 970 + ] 971 + 972 + [[package]] 973 + name = "signal-hook-registry" 974 + version = "1.4.0" 975 + source = "registry+https://github.com/rust-lang/crates.io-index" 976 + checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 977 + dependencies = [ 978 + "libc", 979 + ] 980 + 981 + [[package]] 982 + name = "slab" 983 + version = "0.4.7" 984 + source = "registry+https://github.com/rust-lang/crates.io-index" 985 + checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 986 + dependencies = [ 987 + "autocfg", 988 + ] 989 + 990 + [[package]] 991 + name = "smallvec" 992 + version = "1.9.0" 993 + source = "registry+https://github.com/rust-lang/crates.io-index" 994 + checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" 995 + 996 + [[package]] 997 + name = "socket2" 998 + version = "0.4.6" 999 + source = "registry+https://github.com/rust-lang/crates.io-index" 1000 + checksum = "10c98bba371b9b22a71a9414e420f92ddeb2369239af08200816169d5e2dd7aa" 1001 + dependencies = [ 1002 + "libc", 1003 + "winapi", 1004 + ] 1005 + 1006 + [[package]] 1007 + name = "strsim" 1008 + version = "0.10.0" 1009 + source = "registry+https://github.com/rust-lang/crates.io-index" 1010 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 1011 + 1012 + [[package]] 1013 + name = "subtle" 1014 + version = "2.4.1" 1015 + source = "registry+https://github.com/rust-lang/crates.io-index" 1016 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 1017 + 1018 + [[package]] 1019 + name = "syn" 1020 + version = "1.0.99" 1021 + source = "registry+https://github.com/rust-lang/crates.io-index" 1022 + checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13" 1023 + dependencies = [ 1024 + "proc-macro2", 1025 + "quote", 1026 + "unicode-ident", 1027 + ] 1028 + 1029 + [[package]] 1030 + name = "tabled" 1031 + version = "0.8.0" 1032 + source = "registry+https://github.com/rust-lang/crates.io-index" 1033 + checksum = "e5b2f8c37d26d87d2252187b0a45ea3cbf42baca10377c7e7eaaa2800fa9bf97" 1034 + dependencies = [ 1035 + "papergrid", 1036 + "tabled_derive", 1037 + "unicode-width", 1038 + ] 1039 + 1040 + [[package]] 1041 + name = "tabled_derive" 1042 + version = "0.4.0" 1043 + source = "registry+https://github.com/rust-lang/crates.io-index" 1044 + checksum = "f9ee618502f497abf593e1c5c9577f34775b111480009ffccd7ad70d23fcaba8" 1045 + dependencies = [ 1046 + "heck", 1047 + "proc-macro-error", 1048 + "proc-macro2", 1049 + "quote", 1050 + "syn", 1051 + ] 1052 + 1053 + [[package]] 1054 + name = "tempfile" 1055 + version = "3.3.0" 1056 + source = "registry+https://github.com/rust-lang/crates.io-index" 1057 + checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 1058 + dependencies = [ 1059 + "cfg-if", 1060 + "fastrand", 1061 + "libc", 1062 + "redox_syscall", 1063 + "remove_dir_all", 1064 + "winapi", 1065 + ] 1066 + 1067 + [[package]] 1068 + name = "termcolor" 1069 + version = "1.1.3" 1070 + source = "registry+https://github.com/rust-lang/crates.io-index" 1071 + checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 1072 + dependencies = [ 1073 + "winapi-util", 1074 + ] 1075 + 1076 + [[package]] 1077 + name = "textwrap" 1078 + version = "0.15.0" 1079 + source = "registry+https://github.com/rust-lang/crates.io-index" 1080 + checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" 1081 + 1082 + [[package]] 1083 + name = "thiserror" 1084 + version = "1.0.32" 1085 + source = "registry+https://github.com/rust-lang/crates.io-index" 1086 + checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994" 1087 + dependencies = [ 1088 + "thiserror-impl", 1089 + ] 1090 + 1091 + [[package]] 1092 + name = "thiserror-impl" 1093 + version = "1.0.32" 1094 + source = "registry+https://github.com/rust-lang/crates.io-index" 1095 + checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21" 1096 + dependencies = [ 1097 + "proc-macro2", 1098 + "quote", 1099 + "syn", 1100 + ] 1101 + 1102 + [[package]] 1103 + name = "time" 1104 + version = "0.1.44" 1105 + source = "registry+https://github.com/rust-lang/crates.io-index" 1106 + checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" 1107 + dependencies = [ 1108 + "libc", 1109 + "wasi 0.10.0+wasi-snapshot-preview1", 1110 + "winapi", 1111 + ] 1112 + 1113 + [[package]] 1114 + name = "tinyvec" 1115 + version = "1.6.0" 1116 + source = "registry+https://github.com/rust-lang/crates.io-index" 1117 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1118 + dependencies = [ 1119 + "tinyvec_macros", 1120 + ] 1121 + 1122 + [[package]] 1123 + name = "tinyvec_macros" 1124 + version = "0.1.0" 1125 + source = "registry+https://github.com/rust-lang/crates.io-index" 1126 + checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 1127 + 1128 + [[package]] 1129 + name = "tokio" 1130 + version = "1.20.1" 1131 + source = "registry+https://github.com/rust-lang/crates.io-index" 1132 + checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" 1133 + dependencies = [ 1134 + "autocfg", 1135 + "bytes", 1136 + "libc", 1137 + "memchr", 1138 + "mio", 1139 + "num_cpus", 1140 + "once_cell", 1141 + "parking_lot", 1142 + "pin-project-lite", 1143 + "signal-hook-registry", 1144 + "socket2", 1145 + "tokio-macros", 1146 + "winapi", 1147 + ] 1148 + 1149 + [[package]] 1150 + name = "tokio-macros" 1151 + version = "1.8.0" 1152 + source = "registry+https://github.com/rust-lang/crates.io-index" 1153 + checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" 1154 + dependencies = [ 1155 + "proc-macro2", 1156 + "quote", 1157 + "syn", 1158 + ] 1159 + 1160 + [[package]] 1161 + name = "tokio-native-tls" 1162 + version = "0.3.0" 1163 + source = "registry+https://github.com/rust-lang/crates.io-index" 1164 + checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" 1165 + dependencies = [ 1166 + "native-tls", 1167 + "tokio", 1168 + ] 1169 + 1170 + [[package]] 1171 + name = "tokio-util" 1172 + version = "0.7.3" 1173 + source = "registry+https://github.com/rust-lang/crates.io-index" 1174 + checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45" 1175 + dependencies = [ 1176 + "bytes", 1177 + "futures-core", 1178 + "futures-sink", 1179 + "pin-project-lite", 1180 + "tokio", 1181 + "tracing", 1182 + ] 1183 + 1184 + [[package]] 1185 + name = "tower-service" 1186 + version = "0.3.2" 1187 + source = "registry+https://github.com/rust-lang/crates.io-index" 1188 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 1189 + 1190 + [[package]] 1191 + name = "tracing" 1192 + version = "0.1.36" 1193 + source = "registry+https://github.com/rust-lang/crates.io-index" 1194 + checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307" 1195 + dependencies = [ 1196 + "cfg-if", 1197 + "pin-project-lite", 1198 + "tracing-core", 1199 + ] 1200 + 1201 + [[package]] 1202 + name = "tracing-core" 1203 + version = "0.1.29" 1204 + source = "registry+https://github.com/rust-lang/crates.io-index" 1205 + checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7" 1206 + dependencies = [ 1207 + "once_cell", 1208 + ] 1209 + 1210 + [[package]] 1211 + name = "try-lock" 1212 + version = "0.2.3" 1213 + source = "registry+https://github.com/rust-lang/crates.io-index" 1214 + checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 1215 + 1216 + [[package]] 1217 + name = "typenum" 1218 + version = "1.15.0" 1219 + source = "registry+https://github.com/rust-lang/crates.io-index" 1220 + checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 1221 + 1222 + [[package]] 1223 + name = "unicode-bidi" 1224 + version = "0.3.8" 1225 + source = "registry+https://github.com/rust-lang/crates.io-index" 1226 + checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 1227 + 1228 + [[package]] 1229 + name = "unicode-ident" 1230 + version = "1.0.3" 1231 + source = "registry+https://github.com/rust-lang/crates.io-index" 1232 + checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf" 1233 + 1234 + [[package]] 1235 + name = "unicode-normalization" 1236 + version = "0.1.21" 1237 + source = "registry+https://github.com/rust-lang/crates.io-index" 1238 + checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6" 1239 + dependencies = [ 1240 + "tinyvec", 1241 + ] 1242 + 1243 + [[package]] 1244 + name = "unicode-width" 1245 + version = "0.1.9" 1246 + source = "registry+https://github.com/rust-lang/crates.io-index" 1247 + checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" 1248 + 1249 + [[package]] 1250 + name = "url" 1251 + version = "2.2.2" 1252 + source = "registry+https://github.com/rust-lang/crates.io-index" 1253 + checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 1254 + dependencies = [ 1255 + "form_urlencoded", 1256 + "idna", 1257 + "matches", 1258 + "percent-encoding", 1259 + ] 1260 + 1261 + [[package]] 1262 + name = "vcpkg" 1263 + version = "0.2.15" 1264 + source = "registry+https://github.com/rust-lang/crates.io-index" 1265 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1266 + 1267 + [[package]] 1268 + name = "version_check" 1269 + version = "0.9.4" 1270 + source = "registry+https://github.com/rust-lang/crates.io-index" 1271 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1272 + 1273 + [[package]] 1274 + name = "want" 1275 + version = "0.3.0" 1276 + source = "registry+https://github.com/rust-lang/crates.io-index" 1277 + checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 1278 + dependencies = [ 1279 + "log", 1280 + "try-lock", 1281 + ] 1282 + 1283 + [[package]] 1284 + name = "wasi" 1285 + version = "0.10.0+wasi-snapshot-preview1" 1286 + source = "registry+https://github.com/rust-lang/crates.io-index" 1287 + checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 1288 + 1289 + [[package]] 1290 + name = "wasi" 1291 + version = "0.11.0+wasi-snapshot-preview1" 1292 + source = "registry+https://github.com/rust-lang/crates.io-index" 1293 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1294 + 1295 + [[package]] 1296 + name = "wasm-bindgen" 1297 + version = "0.2.82" 1298 + source = "registry+https://github.com/rust-lang/crates.io-index" 1299 + checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d" 1300 + dependencies = [ 1301 + "cfg-if", 1302 + "wasm-bindgen-macro", 1303 + ] 1304 + 1305 + [[package]] 1306 + name = "wasm-bindgen-backend" 1307 + version = "0.2.82" 1308 + source = "registry+https://github.com/rust-lang/crates.io-index" 1309 + checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f" 1310 + dependencies = [ 1311 + "bumpalo", 1312 + "log", 1313 + "once_cell", 1314 + "proc-macro2", 1315 + "quote", 1316 + "syn", 1317 + "wasm-bindgen-shared", 1318 + ] 1319 + 1320 + [[package]] 1321 + name = "wasm-bindgen-futures" 1322 + version = "0.4.32" 1323 + source = "registry+https://github.com/rust-lang/crates.io-index" 1324 + checksum = "fa76fb221a1f8acddf5b54ace85912606980ad661ac7a503b4570ffd3a624dad" 1325 + dependencies = [ 1326 + "cfg-if", 1327 + "js-sys", 1328 + "wasm-bindgen", 1329 + "web-sys", 1330 + ] 1331 + 1332 + [[package]] 1333 + name = "wasm-bindgen-macro" 1334 + version = "0.2.82" 1335 + source = "registry+https://github.com/rust-lang/crates.io-index" 1336 + checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602" 1337 + dependencies = [ 1338 + "quote", 1339 + "wasm-bindgen-macro-support", 1340 + ] 1341 + 1342 + [[package]] 1343 + name = "wasm-bindgen-macro-support" 1344 + version = "0.2.82" 1345 + source = "registry+https://github.com/rust-lang/crates.io-index" 1346 + checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da" 1347 + dependencies = [ 1348 + "proc-macro2", 1349 + "quote", 1350 + "syn", 1351 + "wasm-bindgen-backend", 1352 + "wasm-bindgen-shared", 1353 + ] 1354 + 1355 + [[package]] 1356 + name = "wasm-bindgen-shared" 1357 + version = "0.2.82" 1358 + source = "registry+https://github.com/rust-lang/crates.io-index" 1359 + checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a" 1360 + 1361 + [[package]] 1362 + name = "web-sys" 1363 + version = "0.3.59" 1364 + source = "registry+https://github.com/rust-lang/crates.io-index" 1365 + checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1" 1366 + dependencies = [ 1367 + "js-sys", 1368 + "wasm-bindgen", 1369 + ] 1370 + 1371 + [[package]] 1372 + name = "winapi" 1373 + version = "0.3.9" 1374 + source = "registry+https://github.com/rust-lang/crates.io-index" 1375 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1376 + dependencies = [ 1377 + "winapi-i686-pc-windows-gnu", 1378 + "winapi-x86_64-pc-windows-gnu", 1379 + ] 1380 + 1381 + [[package]] 1382 + name = "winapi-i686-pc-windows-gnu" 1383 + version = "0.4.0" 1384 + source = "registry+https://github.com/rust-lang/crates.io-index" 1385 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1386 + 1387 + [[package]] 1388 + name = "winapi-util" 1389 + version = "0.1.5" 1390 + source = "registry+https://github.com/rust-lang/crates.io-index" 1391 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1392 + dependencies = [ 1393 + "winapi", 1394 + ] 1395 + 1396 + [[package]] 1397 + name = "winapi-x86_64-pc-windows-gnu" 1398 + version = "0.4.0" 1399 + source = "registry+https://github.com/rust-lang/crates.io-index" 1400 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1401 + 1402 + [[package]] 1403 + name = "windows-sys" 1404 + version = "0.36.1" 1405 + source = "registry+https://github.com/rust-lang/crates.io-index" 1406 + checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 1407 + dependencies = [ 1408 + "windows_aarch64_msvc", 1409 + "windows_i686_gnu", 1410 + "windows_i686_msvc", 1411 + "windows_x86_64_gnu", 1412 + "windows_x86_64_msvc", 1413 + ] 1414 + 1415 + [[package]] 1416 + name = "windows_aarch64_msvc" 1417 + version = "0.36.1" 1418 + source = "registry+https://github.com/rust-lang/crates.io-index" 1419 + checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 1420 + 1421 + [[package]] 1422 + name = "windows_i686_gnu" 1423 + version = "0.36.1" 1424 + source = "registry+https://github.com/rust-lang/crates.io-index" 1425 + checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 1426 + 1427 + [[package]] 1428 + name = "windows_i686_msvc" 1429 + version = "0.36.1" 1430 + source = "registry+https://github.com/rust-lang/crates.io-index" 1431 + checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 1432 + 1433 + [[package]] 1434 + name = "windows_x86_64_gnu" 1435 + version = "0.36.1" 1436 + source = "registry+https://github.com/rust-lang/crates.io-index" 1437 + checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 1438 + 1439 + [[package]] 1440 + name = "windows_x86_64_msvc" 1441 + version = "0.36.1" 1442 + source = "registry+https://github.com/rust-lang/crates.io-index" 1443 + checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 1444 + 1445 + [[package]] 1446 + name = "winreg" 1447 + version = "0.10.1" 1448 + source = "registry+https://github.com/rust-lang/crates.io-index" 1449 + checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 1450 + dependencies = [ 1451 + "winapi", 1452 + ]
+28
Cargo.toml
··· 1 + [package] 2 + name = "genius-cli" 3 + version = "0.1.0" 4 + edition = "2021" 5 + description = "A command-line interface for Genius.com" 6 + readme = "README.md" 7 + repository = "https://github.com/tsirysndr/genius-cli" 8 + license = "MIT" 9 + authors = ["Tsiry Sandratraina <tsiry.sndr@aol.com>"] 10 + categories = ["command-line-utilities"] 11 + keywords = ["tokio", "lyrics", "cli", "genius"] 12 + 13 + [[bin]] 14 + name = "genius" 15 + path = "src/main.rs" 16 + 17 + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 18 + 19 + [dependencies] 20 + clap = "3.2.17" 21 + colored_json = "2.1.0" 22 + genius-rs = { git = "https://github.com/tsirysndr/genius-rust", rev = "3d9108c" } 23 + owo-colors = "3.5.0" 24 + rand = "0.8.5" 25 + serde = "1.0.144" 26 + serde_json = "1.0.85" 27 + tabled = "0.8.0" 28 + tokio = { version = "1.20.1", features = ["full"] }
+19
LICENSE
··· 1 + Copyright (c) 2022 Tsiry Sandratraina <tsiry.sndr@aol.com> 2 + 3 + Permission is hereby granted, free of charge, to any person obtaining a copy 4 + of this software and associated documentation files (the "Software"), to deal 5 + in the Software without restriction, including without limitation the rights 6 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 + copies of the Software, and to permit persons to whom the Software is 8 + furnished to do so, subject to the following conditions: 9 + 10 + The above copyright notice and this permission notice shall be included in all 11 + copies or substantial portions of the Software. 12 + 13 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 + SOFTWARE.
+43
README.md
··· 1 + # Genius CLI 2 + 3 + <p> 4 + <a href="https://crates.io/crates/genius-cli" target="_blank"> 5 + <img src="https://img.shields.io/crates/v/genius-cli.svg" /> 6 + </a> 7 + <a href="https://crates.io/crates/genius-cli" target="_blank"> 8 + <img src="https://img.shields.io/crates/dr/genius-cli" /> 9 + </a> 10 + <a href="https://docs.rs/genius-cli" target="_blank"> 11 + <img src="https://docs.rs/genius-cli/badge.svg" /> 12 + </a> 13 + <a href="LICENSE" target="_blank"> 14 + <img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-blue.svg" /> 15 + </a> 16 + </p> 17 + 18 + Genius CLI helps you search for lyrics or song informations from [Genius](https://genius.com), right from your terminal. 19 + 20 + ## Installation 21 + 22 + ```bash 23 + cargo install genius-cli 24 + ``` 25 + 26 + <img width="800" src="./preview.svg"> 27 + 28 + ## Usage 29 + 30 + ``` 31 + USAGE: 32 + genius <SUBCOMMAND> 33 + 34 + OPTIONS: 35 + -h, --help Print help information 36 + -V, --version Print version information 37 + 38 + SUBCOMMANDS: 39 + help Print this message or the help of the given subcommand(s) 40 + lyrics Get the lyrics of a song 41 + search Search for a song 42 + song Get song informations 43 + ```
+1
preview.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1400" height="694.72"><rect width="1400" height="694.72" rx="0" ry="0" class="a"/><svg height="694.72" viewBox="0 0 140 69.472" width="1400" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>@keyframes G{0%{transform:translateX(0)}1.09%{transform:translateX(-140px)}3.73%{transform:translateX(-280px)}3.74%{transform:translateX(-560px)}3.75%{transform:translateX(-840px)}3.76%{transform:translateX(-1260px)}3.77%{transform:translateX(-1540px)}3.78%{transform:translateX(-1820px)}3.79%{transform:translateX(-2240px)}3.8%{transform:translateX(-2380px)}3.81%{transform:translateX(-2660px)}4.3%{transform:translateX(-2800px)}4.31%{transform:translateX(-2940px)}4.37%{transform:translateX(-3080px)}11.18%{transform:translateX(-3220px)}11.19%{transform:translateX(-3360px)}11.2%{transform:translateX(-3500px)}11.54%{transform:translateX(-3640px)}12.46%{transform:translateX(-3780px)}12.93%{transform:translateX(-3920px)}13.41%{transform:translateX(-4060px)}13.98%{transform:translateX(-4340px)}14.62%{transform:translateX(-4620px)}16.91%{transform:translateX(-5040px)}17.45%{transform:translateX(-5180px)}19.17%{transform:translateX(-5320px)}19.82%{transform:translateX(-5460px)}20.84%{transform:translateX(-5600px)}21.2%{transform:translateX(-5740px)}22.1%{transform:translateX(-6160px)}22.12%{transform:translateX(-6300px)}22.13%{transform:translateX(-6720px)}22.25%{transform:translateX(-7000px)}29.07%{transform:translateX(-7420px)}29.37%{transform:translateX(-7560px)}30.09%{transform:translateX(-7700px)}30.59%{transform:translateX(-7840px)}30.96%{transform:translateX(-7980px)}31.58%{transform:translateX(-8120px)}31.59%{transform:translateX(-8260px)}32.84%{transform:translateX(-8540px)}35.01%{transform:translateX(-8960px)}35.61%{transform:translateX(-9240px)}37.9%{transform:translateX(-9380px)}37.91%{transform:translateX(-9520px)}39.09%{transform:translateX(-9940px)}43.67%{transform:translateX(-12880px)}43.68%{transform:translateX(-14840px)}43.69%{transform:translateX(-15260px)}43.83%{transform:translateX(-15540px)}48.16%{transform:translateX(-15960px)}48.41%{transform:translateX(-16100px)}49.14%{transform:translateX(-16240px)}49.56%{transform:translateX(-16380px)}49.85%{transform:translateX(-16520px)}50.8%{transform:translateX(-16800px)}51.62%{transform:translateX(-17080px)}55.51%{transform:translateX(-17500px)}58.57%{transform:translateX(-17780px)}61.28%{transform:translateX(-18340px)}66.21%{transform:translateX(-18480px)}69.21%{transform:translateX(-19320px)}69.22%{transform:translateX(-19600px)}69.38%{transform:translateX(-19880px)}76.46%{transform:translateX(-20300px)}76.8%{transform:translateX(-20440px)}77%{transform:translateX(-20580px)}77.33%{transform:translateX(-20720px)}77.69%{transform:translateX(-20860px)}78.18%{transform:translateX(-21140px)}79.19%{transform:translateX(-21420px)}81.64%{transform:translateX(-21700px)}84.03%{transform:translateX(-21840px)}84.04%{transform:translateX(-21980px)}86.79%{transform:translateX(-22400px)}91.19%{transform:translateX(-22540px)}95.18%{transform:translateX(-23100px)}95.35%{transform:translateX(-23380px)}to{transform:translateX(-23800px)}}.a{fill:#282d35}.c,.d,.e,.f{fill:#b9c0cb;white-space:pre}.d,.e,.f{fill:#b9bfca;font-weight:700}.e,.f{fill:#e88388}.f{fill:#b9c0cb}.g,.h,.i,.j,.k,.l{fill:#a8cc8c;white-space:pre}.h,.i,.j,.k,.l{fill:#ff70a6}.i,.j,.k,.l{fill:#ffbebc}.j,.k,.l{fill:#fff}.k,.l{fill:#bc93ff}.l{fill:#a9ffb4}.m,.n,.o,.p,.q,.r{fill:#94ffa2;white-space:pre}.n,.o,.p,.q,.r{fill:#81ff91}.o,.p,.q,.r{fill:#00c7fc}.p,.q,.r{fill:#ffafd2}.q,.r{fill:red}.r{fill:#555}.s,.t,.u,.v,.w,.x{fill:#005fd7;white-space:pre}.t,.u,.v,.w,.x{fill:#00afff}.u,.v,.w,.x{fill:#fef5ed}.v,.w,.x{fill:#dbab79}.w,.x{fill:#990}.x{fill:#71bef2;font-weight:700}.y{fill:#6f7783}.A,.z{font-weight:700}.z{fill:#005fd7;white-space:pre}.A{fill:#00afff}.A,.C,.I{white-space:pre}.I{fill:#00afff;text-decoration:underline}</style><g font-family="Monaco,Consolas,Menlo,'Bitstream Vera Sans Mono','Powerline Symbols',monospace" font-size="1.67"><defs><symbol id="1"><text y="1.67" class="c">Now</text><text x="4.008" y="1.67" class="c">using</text><text x="10.02" y="1.67" class="c">node</text><text x="15.03" y="1.67" class="c">v16.15.1</text><text x="24.048" y="1.67" class="c">(npm</text><text x="29.058" y="1.67" class="c">v8.11.0)</text></symbol><symbol id="2"><text x="9.018" y="1.67" class="d">_,met$$$$$gg.</text><text x="33.066" y="1.67" class="e">tsirysndr</text><text x="42.084" y="1.67" class="f">@</text><text x="43.086" y="1.67" class="e">tsiry-xps139305</text></symbol><symbol id="3"><text x="6.012" y="1.67" class="d">,g$$$$$$$$$$$$$$$P.</text><text x="33.066" y="1.67" class="e">OS:</text><text x="37.074" y="1.67" class="c">Debian</text><text x="44.088" y="1.67" class="c">11</text><text x="47.094" y="1.67" class="c">bullseye</text></symbol><symbol id="4"><text x="4.008" y="1.67" class="d">,g$$P&quot;&quot;</text><text x="18.036" y="1.67" class="d">&quot;&quot;&quot;Y$$.&quot;.</text><text x="33.066" y="1.67" class="e">Kernel:</text><text x="41.082" y="1.67" class="c">x86_64</text><text x="48.096" y="1.67" class="c">Linux</text><text x="54.108" y="1.67" class="c">5.10.0-17-amd64</text></symbol><symbol id="5"><text x="3.006" y="1.67" class="d">,$$P&apos;</text><text x="22.044" y="1.67" class="d">`$$$.</text><text x="33.066" y="1.67" class="e">Uptime:</text><text x="41.082" y="1.67" class="c">3d</text><text x="44.088" y="1.67" class="c">2h</text><text x="47.094" y="1.67" class="c">21m</text></symbol><symbol id="6"><text x="2.004" y="1.67" class="d">&apos;,$$P</text><text x="14.028" y="1.67" class="d">,ggs.</text><text x="24.048" y="1.67" class="d">`$$b:</text><text x="33.066" y="1.67" class="e">Packages:</text><text x="43.086" y="1.67" class="c">2532</text></symbol><symbol id="7"><text x="2.004" y="1.67" class="d">`d$$&apos;</text><text x="12.024" y="1.67" class="d">,$P&quot;&apos;</text><text x="20.04" y="1.67" class="e">.</text><text x="25.05" y="1.67" class="d">$$$</text><text x="33.066" y="1.67" class="e">Shell:</text><text x="40.08" y="1.67" class="c">fish</text><text x="45.09" y="1.67" class="c">3.5.1</text></symbol><symbol id="8"><text x="3.006" y="1.67" class="d">$$P</text><text x="12.024" y="1.67" class="d">d$&apos;</text><text x="20.04" y="1.67" class="e">,</text><text x="25.05" y="1.67" class="d">$$P</text><text x="33.066" y="1.67" class="e">Resolution:</text><text x="45.09" y="1.67" class="c">1920x1080</text></symbol><symbol id="9"><text x="3.006" y="1.67" class="d">$$:</text><text x="12.024" y="1.67" class="d">$$.</text><text x="18.036" y="1.67" class="e">-</text><text x="23.046" y="1.67" class="d">,d$$&apos;</text><text x="33.066" y="1.67" class="e">WM:</text><text x="37.074" y="1.67" class="c">KWin</text></symbol><symbol id="10"><text x="3.006" y="1.67" class="d">$$\;</text><text x="13.026" y="1.67" class="d">Y$b._</text><text x="21.042" y="1.67" class="d">_,d$P&apos;</text><text x="33.066" y="1.67" class="e">GTK</text><text x="37.074" y="1.67" class="e">Theme:</text><text x="44.088" y="1.67" class="c">Cutefish-light</text><text x="59.118" y="1.67" class="c">[GTK3]</text></symbol><symbol id="11"><text x="3.006" y="1.67" class="d">Y$$.</text><text x="11.022" y="1.67" class="e">`.</text><text x="13.026" y="1.67" class="d">`&quot;Y$$$$P&quot;&apos;</text><text x="33.066" y="1.67" class="e">Disk:</text><text x="39.078" y="1.67" class="c">346G</text><text x="44.088" y="1.67" class="c">/</text><text x="46.092" y="1.67" class="c">460G</text><text x="51.102" y="1.67" class="c">(80%)</text></symbol><symbol id="12"><text x="3.006" y="1.67" class="d">`$$b</text><text x="13.026" y="1.67" class="e">&quot;-.__</text><text x="33.066" y="1.67" class="e">CPU:</text><text x="38.076" y="1.67" class="c">11th</text><text x="43.086" y="1.67" class="c">Gen</text><text x="47.094" y="1.67" class="c">Intel</text><text x="53.106" y="1.67" class="c">Core</text><text x="58.116" y="1.67" class="c">i7-1165G7</text><text x="68.136" y="1.67" class="c">@</text><text x="70.14" y="1.67" class="c">8x</text><text x="73.146" y="1.67" class="c">4.7GHz</text><text x="80.16" y="1.67" class="c">[55.0°C]</text></symbol><symbol id="13"><text x="4.008" y="1.67" class="d">`Y$$</text><text x="33.066" y="1.67" class="e">GPU:</text><text x="38.076" y="1.67" class="c">Mesa</text><text x="43.086" y="1.67" class="c">Intel(R)</text><text x="52.104" y="1.67" class="c">Xe</text><text x="55.11" y="1.67" class="c">Graphics</text><text x="64.128" y="1.67" class="c">(TGL</text><text x="69.138" y="1.67" class="c">GT2)</text></symbol><symbol id="14"><text x="5.01" y="1.67" class="d">`Y$$.</text><text x="33.066" y="1.67" class="e">RAM:</text><text x="38.076" y="1.67" class="c">12346MiB</text><text x="47.094" y="1.67" class="c">/</text><text x="49.098" y="1.67" class="c">15737MiB</text></symbol><symbol id="15"><text x="7.014" y="1.67" class="d">`$$b.</text></symbol><symbol id="16"><text x="9.018" y="1.67" class="d">`Y$$b.</text></symbol><symbol id="17"><text x="12.024" y="1.67" class="d">`&quot;Y$b._</text></symbol><symbol id="18"><text x="16.032" y="1.67" class="d">`&quot;&quot;&quot;&quot;</text></symbol><symbol id="19"><text y="1.67" class="c">Welcome</text><text x="8.016" y="1.67" class="c">to</text><text x="11.022" y="1.67" class="c">fish,</text><text x="17.034" y="1.67" class="c">the</text><text x="21.042" y="1.67" class="c">friendly</text><text x="30.06" y="1.67" class="c">interactive</text><text x="42.084" y="1.67" class="c">shell</text></symbol><symbol id="20"><text y="1.67" class="c">Type</text><text x="5.01" y="1.67" class="g">help</text><text x="10.02" y="1.67" class="c">for</text><text x="14.028" y="1.67" class="c">instructions</text><text x="27.054" y="1.67" class="c">on</text><text x="30.06" y="1.67" class="c">how</text><text x="34.068" y="1.67" class="c">to</text><text x="37.074" y="1.67" class="c">use</text><text x="41.082" y="1.67" class="c">fish</text></symbol><symbol id="21"><text x="1.002" y="1.67" class="h"></text><text x="3.006" y="1.67" class="i">tsirysndr</text><text x="13.026" y="1.67" class="j">on</text><text x="16.032" y="1.67" class="k">Sunday</text><text x="23.046" y="1.67" class="j">at</text><text x="26.052" y="1.67" class="k">1:06</text><text x="31.062" y="1.67" class="k">AM</text><text x="108.216" y="1.67" class="l">0s</text><text x="111.222" y="1.67" class="j"></text><text x="113.226" y="1.67" class="j">CPU:</text><text x="118.236" y="1.67" class="m">69.5%</text><text x="124.248" y="1.67" class="j"></text><text x="126.252" y="1.67" class="j">RAM:</text><text x="131.262" y="1.67" class="n">15/16GB</text></symbol><symbol id="22"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text></symbol><symbol id="23"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><text x="16.032" y="1.67" class="c">g</text></symbol><symbol id="24"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><text x="16.032" y="1.67" class="q">g</text><text x="17.034" y="1.67" class="r">enius</text><text x="23.046" y="1.67" class="r">search</text><text x="30.06" y="1.67" class="r">&apos;I</text><text x="33.066" y="1.67" class="r">Met</text><text x="37.074" y="1.67" class="r">Tay</text><text x="41.082" y="1.67" class="r">Keith</text><text x="47.094" y="1.67" class="r">First&apos;</text></symbol><symbol id="25"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><text x="16.032" y="1.67" class="q">ge</text><text x="18.036" y="1.67" class="r">nius</text><text x="23.046" y="1.67" class="r">search</text><text x="30.06" y="1.67" class="r">&apos;I</text><text x="33.066" y="1.67" class="r">Met</text><text x="37.074" y="1.67" class="r">Tay</text><text x="41.082" y="1.67" class="r">Keith</text><text x="47.094" y="1.67" class="r">First&apos;</text></symbol><symbol id="26"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><text x="16.032" y="1.67" class="q">gen</text><text x="19.038" y="1.67" class="r">ius</text><text x="23.046" y="1.67" class="r">search</text><text x="30.06" y="1.67" class="r">&apos;I</text><text x="33.066" y="1.67" class="r">Met</text><text x="37.074" y="1.67" class="r">Tay</text><text x="41.082" y="1.67" class="r">Keith</text><text x="47.094" y="1.67" class="r">First&apos;</text></symbol><symbol id="27"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><text x="16.032" y="1.67" class="q">geni</text><text x="20.04" y="1.67" class="r">us</text><text x="23.046" y="1.67" class="r">search</text><text x="30.06" y="1.67" class="r">&apos;I</text><text x="33.066" y="1.67" class="r">Met</text><text x="37.074" y="1.67" class="r">Tay</text><text x="41.082" y="1.67" class="r">Keith</text><text x="47.094" y="1.67" class="r">First&apos;</text></symbol><symbol id="28"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><text x="16.032" y="1.67" class="q">geniu</text><text x="21.042" y="1.67" class="r">s</text><text x="23.046" y="1.67" class="r">search</text><text x="30.06" y="1.67" class="r">&apos;I</text><text x="33.066" y="1.67" class="r">Met</text><text x="37.074" y="1.67" class="r">Tay</text><text x="41.082" y="1.67" class="r">Keith</text><text x="47.094" y="1.67" class="r">First&apos;</text></symbol><symbol id="29"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><text x="16.032" y="1.67" class="q">genius</text><text x="23.046" y="1.67" class="r">search</text><text x="30.06" y="1.67" class="r">&apos;I</text><text x="33.066" y="1.67" class="r">Met</text><text x="37.074" y="1.67" class="r">Tay</text><text x="41.082" y="1.67" class="r">Keith</text><text x="47.094" y="1.67" class="r">First&apos;</text></symbol><symbol id="30"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><text x="16.032" y="1.67" class="s">genius</text><text x="23.046" y="1.67" class="r">search</text><text x="30.06" y="1.67" class="r">&apos;I</text><text x="33.066" y="1.67" class="r">Met</text><text x="37.074" y="1.67" class="r">Tay</text><text x="41.082" y="1.67" class="r">Keith</text><text x="47.094" y="1.67" class="r">First&apos;</text></symbol><symbol id="31"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><text x="16.032" y="1.67" class="s">genius</text><text x="23.046" y="1.67" class="t">--help</text></symbol><symbol id="32"><text y="1.67" class="u"></text><text x="2.004" y="1.67" class="s">genius</text><text x="9.018" y="1.67" class="t">--help</text></symbol><symbol id="33"><text y="1.67" class="g">genius</text><text x="7.014" y="1.67" class="c">0.1.0</text></symbol><symbol id="34"><text y="1.67" class="c">Tsiry</text><text x="6.012" y="1.67" class="c">Sandratraina</text><text x="19.038" y="1.67" class="c">&lt;tsiry.sndr@aol.com&gt;</text></symbol><symbol id="35"><text x="4.008" y="1.67" class="c">______</text><text x="21.042" y="1.67" class="c">_</text><text x="37.074" y="1.67" class="c">________</text><text x="49.098" y="1.67" class="c">____</text></symbol><symbol id="36"><text x="3.006" y="1.67" class="c">/</text><text x="5.01" y="1.67" class="c">____/__</text><text x="14.028" y="1.67" class="c">____</text><text x="20.04" y="1.67" class="c">(_)_</text><text x="26.052" y="1.67" class="c">_______</text><text x="36.072" y="1.67" class="c">/</text><text x="38.076" y="1.67" class="c">____/</text><text x="44.088" y="1.67" class="c">/</text><text x="48.096" y="1.67" class="c">/</text><text x="51.102" y="1.67" class="c">_/</text></symbol><symbol id="37"><text x="2.004" y="1.67" class="c">/</text><text x="4.008" y="1.67" class="c">/</text><text x="6.012" y="1.67" class="c">__/</text><text x="10.02" y="1.67" class="c">_</text><text x="12.024" y="1.67" class="c">\/</text><text x="15.03" y="1.67" class="c">__</text><text x="18.036" y="1.67" class="c">\/</text><text x="21.042" y="1.67" class="c">/</text><text x="23.046" y="1.67" class="c">/</text><text x="25.05" y="1.67" class="c">/</text><text x="27.054" y="1.67" class="c">/</text><text x="29.058" y="1.67" class="c">___/</text><text x="35.07" y="1.67" class="c">/</text><text x="37.074" y="1.67" class="c">/</text><text x="41.082" y="1.67" class="c">/</text><text x="43.086" y="1.67" class="c">/</text><text x="48.096" y="1.67" class="c">/</text><text x="50.1" y="1.67" class="c">/</text></symbol><symbol id="38"><text x="1.002" y="1.67" class="c">/</text><text x="3.006" y="1.67" class="c">/_/</text><text x="7.014" y="1.67" class="c">/</text><text x="10.02" y="1.67" class="c">__/</text><text x="14.028" y="1.67" class="c">/</text><text x="16.032" y="1.67" class="c">/</text><text x="18.036" y="1.67" class="c">/</text><text x="20.04" y="1.67" class="c">/</text><text x="22.044" y="1.67" class="c">/_/</text><text x="26.052" y="1.67" class="c">(__</text><text x="31.062" y="1.67" class="c">)</text><text x="34.068" y="1.67" class="c">/</text><text x="36.072" y="1.67" class="c">/___/</text><text x="42.084" y="1.67" class="c">/____/</text><text x="49.098" y="1.67" class="c">/</text></symbol><symbol id="39"><text x="1.002" y="1.67" class="c">\____/\___/_/</text><text x="15.03" y="1.67" class="c">/_/_/\__,_/____/</text><text x="34.068" y="1.67" class="c">\____/_____/___/</text></symbol><symbol id="40"><text y="1.67" class="v">USAGE:</text></symbol><symbol id="41"><text x="4.008" y="1.67" class="c">genius</text><text x="11.022" y="1.67" class="c">&lt;SUBCOMMAND&gt;</text></symbol><symbol id="42"><text y="1.67" class="v">OPTIONS:</text></symbol><symbol id="43"><text x="4.008" y="1.67" class="g">-h</text><text x="6.012" y="1.67" class="c">,</text><text x="8.016" y="1.67" class="g">--help</text><text x="21.042" y="1.67" class="c">Print</text><text x="27.054" y="1.67" class="c">help</text><text x="32.064" y="1.67" class="c">information</text></symbol><symbol id="44"><text x="4.008" y="1.67" class="g">-V</text><text x="6.012" y="1.67" class="c">,</text><text x="8.016" y="1.67" class="g">--version</text><text x="21.042" y="1.67" class="c">Print</text><text x="27.054" y="1.67" class="c">version</text><text x="35.07" y="1.67" class="c">information</text></symbol><symbol id="45"><text y="1.67" class="v">SUBCOMMANDS:</text></symbol><symbol id="46"><text x="4.008" y="1.67" class="g">help</text><text x="14.028" y="1.67" class="c">Print</text><text x="20.04" y="1.67" class="c">this</text><text x="25.05" y="1.67" class="c">message</text><text x="33.066" y="1.67" class="c">or</text><text x="36.072" y="1.67" class="c">the</text><text x="40.08" y="1.67" class="c">help</text><text x="45.09" y="1.67" class="c">of</text><text x="48.096" y="1.67" class="c">the</text><text x="52.104" y="1.67" class="c">given</text><text x="58.116" y="1.67" class="c">subcommand(s)</text></symbol><symbol id="47"><text x="4.008" y="1.67" class="g">lyrics</text><text x="14.028" y="1.67" class="c">Get</text><text x="18.036" y="1.67" class="c">the</text><text x="22.044" y="1.67" class="c">lyrics</text><text x="29.058" y="1.67" class="c">of</text><text x="32.064" y="1.67" class="c">a</text><text x="34.068" y="1.67" class="c">song</text></symbol><symbol id="48"><text x="4.008" y="1.67" class="g">search</text><text x="14.028" y="1.67" class="c">Search</text><text x="21.042" y="1.67" class="c">for</text><text x="25.05" y="1.67" class="c">a</text><text x="27.054" y="1.67" class="c">song</text></symbol><symbol id="49"><text x="4.008" y="1.67" class="g">song</text><text x="14.028" y="1.67" class="c">Get</text><text x="18.036" y="1.67" class="c">song</text><text x="23.046" y="1.67" class="c">informations</text></symbol><symbol id="50"><text x="1.002" y="1.67" class="h"></text><text x="3.006" y="1.67" class="i">tsirysndr</text><text x="13.026" y="1.67" class="j">on</text><text x="16.032" y="1.67" class="k">Sunday</text><text x="23.046" y="1.67" class="j">at</text><text x="26.052" y="1.67" class="k">1:06</text><text x="31.062" y="1.67" class="k">AM</text><text x="103.206" y="1.67" class="l">0.007s</text><text x="110.22" y="1.67" class="j"></text><text x="112.224" y="1.67" class="j">CPU:</text><text x="117.234" y="1.67" class="m">69.31%</text><text x="124.248" y="1.67" class="j"></text><text x="126.252" y="1.67" class="j">RAM:</text><text x="131.262" y="1.67" class="n">15/16GB</text></symbol><symbol id="51"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><text x="16.032" y="1.67" class="s">genius</text><text x="23.046" y="1.67" class="r">--help</text></symbol><symbol id="52"><text y="1.67" class="u"></text><text x="2.004" y="1.67" class="s">genius</text><text x="9.018" y="1.67" class="t">search</text><text x="16.032" y="1.67" class="w">&apos;I</text><text x="19.038" y="1.67" class="w">Met</text><text x="23.046" y="1.67" class="w">Tay</text><text x="27.054" y="1.67" class="w">Keith</text><text x="33.066" y="1.67" class="w">First&apos;</text></symbol><symbol id="53"><text y="1.67" class="f">[</text></symbol><symbol id="54"><text x="2.004" y="1.67" class="f">{</text></symbol><symbol id="55"><text x="4.008" y="1.67" class="x">&quot;index&quot;</text><text x="11.022" y="1.67" class="c">:</text><text x="13.026" y="1.67" class="g">&quot;song&quot;</text><text x="19.038" y="1.67" class="c">,</text></symbol><symbol id="56"><text x="4.008" y="1.67" class="x">&quot;result&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="f">{</text></symbol><symbol id="57"><text x="6.012" y="1.67" class="x">&quot;annotation_count&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="c">3,</text></symbol><symbol id="58"><text x="6.012" y="1.67" class="x">&quot;api_path&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;/songs/6110431&quot;</text><text x="34.068" y="1.67" class="c">,</text></symbol><symbol id="59"><text x="6.012" y="1.67" class="x">&quot;featured_artists&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="f">[</text></symbol><symbol id="60"><text x="8.016" y="1.67" class="f">{</text></symbol><symbol id="61"><text x="10.02" y="1.67" class="x">&quot;api_path&quot;</text><text x="20.04" y="1.67" class="c">:</text><text x="22.044" y="1.67" class="g">&quot;/artists/1110328&quot;</text><text x="40.08" y="1.67" class="c">,</text></symbol><symbol id="62"><text x="10.02" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="28.056" y="1.67" class="c">:</text><text x="30.06" y="1.67" class="g">&quot;https://images.genius.com/883ae92f9df1109797e99e0537fd8b02.1000x333x1.jpg&quot;</text><text x="105.21" y="1.67" class="c">,</text></symbol><symbol id="63"><text x="10.02" y="1.67" class="x">&quot;id&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">1110328,</text></symbol><symbol id="64"><text x="10.02" y="1.67" class="x">&quot;image_url&quot;</text><text x="21.042" y="1.67" class="c">:</text><text x="23.046" y="1.67" class="g">&quot;https://images.genius.com/98367f3cd4548347b114452eb3a5927f.1000x1000x1.jpg&quot;</text><text x="99.198" y="1.67" class="c">,</text></symbol><symbol id="65"><text x="10.02" y="1.67" class="x">&quot;iq&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">3433,</text></symbol><symbol id="66"><text x="10.02" y="1.67" class="x">&quot;is_meme_verified&quot;</text><text x="28.056" y="1.67" class="c">:</text><text x="30.06" y="1.67" class="c">false,</text></symbol><symbol id="67"><text x="10.02" y="1.67" class="x">&quot;is_verified&quot;</text><text x="23.046" y="1.67" class="c">:</text><text x="25.05" y="1.67" class="c">true,</text></symbol><symbol id="68"><text x="10.02" y="1.67" class="x">&quot;name&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;Lil</text><text x="23.046" y="1.67" class="g">Baby&quot;</text><text x="28.056" y="1.67" class="c">,</text></symbol><symbol id="69"><text x="10.02" y="1.67" class="x">&quot;url&quot;</text><text x="15.03" y="1.67" class="c">:</text><text x="17.034" y="1.67" class="g">&quot;https://genius.com/artists/Lil-baby&quot;</text></symbol><symbol id="70"><text x="8.016" y="1.67" class="f">}</text><text x="9.018" y="1.67" class="c">,</text></symbol><symbol id="71"><text x="10.02" y="1.67" class="x">&quot;api_path&quot;</text><text x="20.04" y="1.67" class="c">:</text><text x="22.044" y="1.67" class="g">&quot;/artists/572354&quot;</text><text x="39.078" y="1.67" class="c">,</text></symbol><symbol id="72"><text x="10.02" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="28.056" y="1.67" class="c">:</text><text x="30.06" y="1.67" class="g">&quot;https://images.genius.com/62fbc87715f47a4fab4cfb198148e0d9.1000x1000x1.jpg&quot;</text><text x="106.212" y="1.67" class="c">,</text></symbol><symbol id="73"><text x="10.02" y="1.67" class="x">&quot;id&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">572354,</text></symbol><symbol id="74"><text x="10.02" y="1.67" class="x">&quot;image_url&quot;</text><text x="21.042" y="1.67" class="c">:</text><text x="23.046" y="1.67" class="g">&quot;https://images.genius.com/f2e787a92f823bc4bfc47e59890a7d3c.670x670x1.jpg&quot;</text><text x="97.194" y="1.67" class="c">,</text></symbol><symbol id="75"><text x="10.02" y="1.67" class="x">&quot;iq&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">793,</text></symbol><symbol id="76"><text x="10.02" y="1.67" class="x">&quot;name&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;Moneybagg</text><text x="29.058" y="1.67" class="g">Yo&quot;</text><text x="32.064" y="1.67" class="c">,</text></symbol><symbol id="77"><text x="10.02" y="1.67" class="x">&quot;url&quot;</text><text x="15.03" y="1.67" class="c">:</text><text x="17.034" y="1.67" class="g">&quot;https://genius.com/artists/Moneybagg-yo&quot;</text></symbol><symbol id="78"><text x="8.016" y="1.67" class="f">}</text></symbol><symbol id="79"><text x="6.012" y="1.67" class="f">]</text><text x="7.014" y="1.67" class="c">,</text></symbol><symbol id="80"><text x="6.012" y="1.67" class="x">&quot;full_title&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;I</text><text x="23.046" y="1.67" class="g">Met</text><text x="27.054" y="1.67" class="g">Tay</text><text x="31.062" y="1.67" class="g">Keith</text><text x="37.074" y="1.67" class="g">First</text><text x="43.086" y="1.67" class="g">by Blac Youngsta</text><text x="60.12" y="1.67" class="g">(Ft. Lil Baby</text><text x="74.148" y="1.67" class="g">&amp;</text><text x="76.152" y="1.67" class="g">Moneybagg Yo)&quot;</text><text x="90.18" y="1.67" class="c">,</text></symbol><symbol id="81"><text x="6.012" y="1.67" class="x">&quot;header_image_thumbnail_url&quot;</text><text x="34.068" y="1.67" class="c">:</text><text x="36.072" y="1.67" class="g">&quot;https://images.genius.com/c3fe3b03bad352a1433443db73acee3e.300x300x1.png&quot;</text><text x="110.22" y="1.67" class="c">,</text></symbol><symbol id="82"><text x="6.012" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="g">&quot;https://images.genius.com/c3fe3b03bad352a1433443db73acee3e.1000x1000x1.png&quot;</text><text x="102.204" y="1.67" class="c">,</text></symbol><symbol id="83"><text x="6.012" y="1.67" class="x">&quot;id&quot;</text><text x="10.02" y="1.67" class="c">:</text><text x="12.024" y="1.67" class="c">6110431,</text></symbol><symbol id="84"><text x="6.012" y="1.67" class="x">&quot;lyrics_owner_id&quot;</text><text x="23.046" y="1.67" class="c">:</text><text x="25.05" y="1.67" class="c">5748418,</text></symbol><symbol id="85"><text x="6.012" y="1.67" class="x">&quot;lyrics_state&quot;</text><text x="20.04" y="1.67" class="c">:</text><text x="22.044" y="1.67" class="g">&quot;complete&quot;</text><text x="32.064" y="1.67" class="c">,</text></symbol><symbol id="86"><text x="6.012" y="1.67" class="x">&quot;path&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="g">&quot;/Blac-youngsta-i-met-tay-keith-first-lyrics&quot;</text><text x="59.118" y="1.67" class="c">,</text></symbol><symbol id="87"><text x="6.012" y="1.67" class="x">&quot;primary_artist&quot;</text><text x="22.044" y="1.67" class="c">:</text><text x="24.048" y="1.67" class="f">{</text></symbol><symbol id="88"><text x="8.016" y="1.67" class="x">&quot;api_path&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;/artists/407382&quot;</text><text x="37.074" y="1.67" class="c">,</text></symbol><symbol id="89"><text x="8.016" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/6fbf215a9b81b60e26b4a1873beeedf3.1000x563x1.jpg&quot;</text><text x="103.206" y="1.67" class="c">,</text></symbol><symbol id="90"><text x="8.016" y="1.67" class="x">&quot;id&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="c">407382,</text></symbol><symbol id="91"><text x="8.016" y="1.67" class="x">&quot;image_url&quot;</text><text x="19.038" y="1.67" class="c">:</text><text x="21.042" y="1.67" class="g">&quot;https://images.genius.com/ab14ce6f7a618a943b2ef26c27c36d17.308x308x1.jpg&quot;</text><text x="95.19" y="1.67" class="c">,</text></symbol><symbol id="92"><text x="8.016" y="1.67" class="x">&quot;iq&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="c">816,</text></symbol><symbol id="93"><text x="8.016" y="1.67" class="x">&quot;is_meme_verified&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">false,</text></symbol><symbol id="94"><text x="8.016" y="1.67" class="x">&quot;is_verified&quot;</text><text x="21.042" y="1.67" class="c">:</text><text x="23.046" y="1.67" class="c">true,</text></symbol><symbol id="95"><text x="8.016" y="1.67" class="x">&quot;name&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="g">&quot;Blac</text><text x="22.044" y="1.67" class="g">Youngsta&quot;</text><text x="31.062" y="1.67" class="c">,</text></symbol><symbol id="96"><text x="8.016" y="1.67" class="x">&quot;url&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;https://genius.com/artists/Blac-youngsta&quot;</text></symbol><symbol id="97"><text x="6.012" y="1.67" class="f">}</text><text x="7.014" y="1.67" class="c">,</text></symbol><symbol id="98"><text x="6.012" y="1.67" class="x">&quot;</text></symbol><symbol id="99"><text x="6.012" y="1.67" class="x">&quot;pyongs_count&quot;</text><text x="20.04" y="1.67" class="c">:</text><text x="22.044" y="1.67" class="c">2,</text></symbol><symbol id="100"><text x="6.012" y="1.67" class="x">&quot;release_date_components&quot;</text><text x="31.062" y="1.67" class="c">:</text><text x="33.066" y="1.67" class="f">{</text></symbol><symbol id="101"><text x="8.016" y="1.67" class="x">&quot;day&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="c">30,</text></symbol><symbol id="102"><text x="8.016" y="1.67" class="x">&quot;month&quot;</text><text x="15.03" y="1.67" class="c">:</text><text x="17.034" y="1.67" class="c">10,</text></symbol><symbol id="103"><text x="8.016" y="1.67" class="x">&quot;year&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">2020</text></symbol><symbol id="104"><text x="6.012" y="1.67" class="x">&quot;release_date_for_display&quot;</text><text x="32.064" y="1.67" class="c">:</text><text x="34.068" y="1.67" class="g">&quot;October</text><text x="43.086" y="1.67" class="g">30,</text><text x="47.094" y="1.67" class="g">2020&quot;</text><text x="52.104" y="1.67" class="c">,</text></symbol><symbol id="105"><text x="6.012" y="1.67" class="x">&quot;song_art_image_thumbnail_url&quot;</text><text x="36.072" y="1.67" class="c">:</text><text x="38.076" y="1.67" class="g">&quot;https://images.genius.com/c3fe3b03bad352a1433443db73acee3e.300x300x1.png&quot;</text><text x="112.224" y="1.67" class="c">,</text></symbol><symbol id="106"><text x="6.012" y="1.67" class="x">&quot;song_art_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/c3fe3b03bad352a1433443db73acee3e.1000x1000x1.png&quot;</text><text x="104.208" y="1.67" class="c">,</text></symbol><symbol id="107"><text x="6.012" y="1.67" class="x">&quot;stats&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="f">{</text></symbol><symbol id="108"><text x="8.016" y="1.67" class="x">&quot;hot&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="c">false,</text></symbol><symbol id="109"><text x="8.016" y="1.67" class="x">&quot;pageviews&quot;</text><text x="19.038" y="1.67" class="c">:</text><text x="21.042" y="1.67" class="c">12798,</text></symbol><symbol id="110"><text x="8.016" y="1.67" class="x">&quot;unreviewed_annotations&quot;</text><text x="32.064" y="1.67" class="c">:</text><text x="34.068" y="1.67" class="c">2</text></symbol><symbol id="111"><text x="6.012" y="1.67" class="x">&quot;title&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;I</text><text x="18.036" y="1.67" class="g">Met</text><text x="22.044" y="1.67" class="g">Tay</text><text x="26.052" y="1.67" class="g">Keith</text><text x="32.064" y="1.67" class="g">First&quot;</text><text x="38.076" y="1.67" class="c">,</text></symbol><symbol id="112"><text x="6.012" y="1.67" class="x">&quot;title_with_featured&quot;</text><text x="27.054" y="1.67" class="c">:</text><text x="29.058" y="1.67" class="g">&quot;I</text><text x="32.064" y="1.67" class="g">Met</text><text x="36.072" y="1.67" class="g">Tay</text><text x="40.08" y="1.67" class="g">Keith</text><text x="46.092" y="1.67" class="g">First</text><text x="52.104" y="1.67" class="g">(Ft. Lil Baby</text><text x="66.132" y="1.67" class="g">&amp;</text><text x="68.136" y="1.67" class="g">Moneybagg Yo)&quot;</text><text x="82.164" y="1.67" class="c">,</text></symbol><symbol id="113"><text x="6.012" y="1.67" class="x">&quot;url&quot;</text><text x="11.022" y="1.67" class="c">:</text><text x="13.026" y="1.67" class="g">&quot;https://genius.com/Blac-youngsta-i-met-tay-keith-first-lyrics&quot;</text></symbol><symbol id="114"><text x="4.008" y="1.67" class="f">}</text><text x="5.01" y="1.67" class="c">,</text></symbol><symbol id="115"><text x="4.008" y="1.67" class="x">&quot;type&quot;</text><text x="10.02" y="1.67" class="c">:</text><text x="12.024" y="1.67" class="g">&quot;song&quot;</text></symbol><symbol id="116"><text x="2.004" y="1.67" class="f">}</text><text x="3.006" y="1.67" class="c">,</text></symbol><symbol id="117"><text x="6.012" y="1.67" class="x">&quot;annotation_count&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="c">1,</text></symbol><symbol id="118"><text x="6.012" y="1.67" class="x">&quot;api_path&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;/songs/5998942&quot;</text><text x="34.068" y="1.67" class="c">,</text></symbol><symbol id="119"><text x="6.012" y="1.67" class="x">&quot;featured_artists&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="f">[]</text><text x="28.056" y="1.67" class="c">,</text></symbol><symbol id="120"><text x="6.012" y="1.67" class="x">&quot;full_title&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;This</text><text x="26.052" y="1.67" class="g">Is</text><text x="29.058" y="1.67" class="g">Moneybagg</text><text x="39.078" y="1.67" class="g">Yo</text><text x="42.084" y="1.67" class="g">by Spotify&quot;</text><text x="53.106" y="1.67" class="c">,</text></symbol><symbol id="121"><text x="6.012" y="1.67" class="x">&quot;header_image_thumbnail_url&quot;</text><text x="34.068" y="1.67" class="c">:</text><text x="36.072" y="1.67" class="g">&quot;https://images.genius.com/a17a98ff7092934eb97f51cb1e5d60b6.300x300x1.png&quot;</text><text x="110.22" y="1.67" class="c">,</text></symbol><symbol id="122"><text x="6.012" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="g">&quot;https://images.genius.com/a17a98ff7092934eb97f51cb1e5d60b6.603x604x1.png&quot;</text><text x="100.2" y="1.67" class="c">,</text></symbol><symbol id="123"><text x="6.012" y="1.67" class="x">&quot;id&quot;</text><text x="10.02" y="1.67" class="c">:</text><text x="12.024" y="1.67" class="c">5998942,</text></symbol><symbol id="124"><text x="6.012" y="1.67" class="x">&quot;lyrics_owner_id&quot;</text><text x="23.046" y="1.67" class="c">:</text><text x="25.05" y="1.67" class="c">12245849,</text></symbol><symbol id="125"><text x="6.012" y="1.67" class="x">&quot;path&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="g">&quot;/Spotify-this-is-moneybagg-yo-lyrics&quot;</text><text x="52.104" y="1.67" class="c">,</text></symbol><symbol id="126"><text x="8.016" y="1.67" class="x">&quot;api_path&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;/artists/69342&quot;</text><text x="36.072" y="1.67" class="c">,</text></symbol><symbol id="127"><text x="8.016" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/da32597113461492089ce24af5568ab7.1000x419x1.png&quot;</text><text x="103.206" y="1.67" class="c">,</text></symbol><symbol id="128"><text x="8.016" y="1.67" class="x">&quot;id&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="c">69342,</text></symbol><symbol id="129"><text x="8.016" y="1.67" class="x">&quot;image_url&quot;</text><text x="19.038" y="1.67" class="c">:</text><text x="21.042" y="1.67" class="g">&quot;https://images.genius.com/4d7925a03026cc6d993484d2712b75e9.709x709x1.png&quot;</text><text x="95.19" y="1.67" class="c">,</text></symbol><symbol id="130"><text x="8.016" y="1.67" class="x">&quot;is_verified&quot;</text><text x="21.042" y="1.67" class="c">:</text><text x="23.046" y="1.67" class="c">false,</text></symbol><symbol id="131"><text x="8.016" y="1.67" class="x">&quot;name&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="g">&quot;Spotify&quot;</text><text x="25.05" y="1.67" class="c">,</text></symbol><symbol id="132"><text x="8.016" y="1.67" class="x">&quot;url&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;https://genius.com/artists/Spotify&quot;</text></symbol><symbol id="133"><text x="8.016" y="1.67" class="x">&quot;day&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="c">28,</text></symbol><symbol id="134"><text x="8.016" y="1.67" class="x">&quot;month&quot;</text><text x="15.03" y="1.67" class="c">:</text><text x="17.034" y="1.67" class="c">4,</text></symbol><symbol id="135"><text x="8.016" y="1.67" class="x">&quot;year&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">2021</text></symbol><symbol id="136"><text x="6.012" y="1.67" class="x">&quot;release_date_for_display&quot;</text><text x="32.064" y="1.67" class="c">:</text><text x="34.068" y="1.67" class="g">&quot;April</text><text x="41.082" y="1.67" class="g">28,</text><text x="45.09" y="1.67" class="g">2021&quot;</text><text x="50.1" y="1.67" class="c">,</text></symbol><symbol id="137"><text x="6.012" y="1.67" class="x">&quot;song_art_image_thumbnail_url&quot;</text><text x="36.072" y="1.67" class="c">:</text><text x="38.076" y="1.67" class="g">&quot;https://images.genius.com/a17a98ff7092934eb97f51cb1e5d60b6.300x300x1.png&quot;</text><text x="112.224" y="1.67" class="c">,</text></symbol><symbol id="138"><text x="6.012" y="1.67" class="x">&quot;song_art_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/a17a98ff7092934eb97f51cb1e5d60b6.603x604x1.png&quot;</text><text x="102.204" y="1.67" class="c">,</text></symbol><symbol id="139"><text x="8.016" y="1.67" class="x">&quot;unreviewed_annotations&quot;</text><text x="32.064" y="1.67" class="c">:</text><text x="34.068" y="1.67" class="c">1</text></symbol><symbol id="140"><text x="6.012" y="1.67" class="x">&quot;title&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;This</text><text x="21.042" y="1.67" class="g">Is</text><text x="24.048" y="1.67" class="g">Moneybagg</text><text x="34.068" y="1.67" class="g">Yo&quot;</text><text x="37.074" y="1.67" class="c">,</text></symbol><symbol id="141"><text x="6.012" y="1.67" class="x">&quot;title_with_featured&quot;</text><text x="27.054" y="1.67" class="c">:</text><text x="29.058" y="1.67" class="g">&quot;This</text><text x="35.07" y="1.67" class="g">Is</text><text x="38.076" y="1.67" class="g">Moneybagg</text><text x="48.096" y="1.67" class="g">Yo&quot;</text><text x="51.102" y="1.67" class="c">,</text></symbol><symbol id="142"><text x="6.012" y="1.67" class="x">&quot;url&quot;</text><text x="11.022" y="1.67" class="c">:</text><text x="13.026" y="1.67" class="g">&quot;https://genius.com/Spotify-this-is-moneybagg-yo-lyrics&quot;</text></symbol><symbol id="143"><text x="6.012" y="1.67" class="x">&quot;api_path&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;/songs/6140493&quot;</text><text x="34.068" y="1.67" class="c">,</text></symbol><symbol id="144"><text x="6.012" y="1.67" class="x">&quot;full_title&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;Mr.</text><text x="25.05" y="1.67" class="g">Rap</text><text x="29.058" y="1.67" class="g">Reviews</text><text x="37.074" y="1.67" class="g">Specials</text><text x="46.092" y="1.67" class="g">(10/30/20)</text><text x="57.114" y="1.67" class="g">by Mr. Rap</text><text x="68.136" y="1.67" class="g">Reviews&quot;</text><text x="76.152" y="1.67" class="c">,</text></symbol><symbol id="145"><text x="6.012" y="1.67" class="x">&quot;header_image_thumbnail_url&quot;</text><text x="34.068" y="1.67" class="c">:</text><text x="36.072" y="1.67" class="g">&quot;https://images.genius.com/067bfa193b0d39ae5a5598c711aa8641.300x300x1.png&quot;</text><text x="110.22" y="1.67" class="c">,</text></symbol><symbol id="146"><text x="6.012" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="g">&quot;https://images.genius.com/067bfa193b0d39ae5a5598c711aa8641.458x458x1.png&quot;</text><text x="100.2" y="1.67" class="c">,</text></symbol><symbol id="147"><text x="6.012" y="1.67" class="x">&quot;id&quot;</text><text x="10.02" y="1.67" class="c">:</text><text x="12.024" y="1.67" class="c">6140493,</text></symbol><symbol id="148"><text x="6.012" y="1.67" class="x">&quot;lyrics_owner_id&quot;</text><text x="23.046" y="1.67" class="c">:</text><text x="25.05" y="1.67" class="c">10970379,</text></symbol><symbol id="149"><text x="6.012" y="1.67" class="x">&quot;path&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="g">&quot;/Mr-rap-reviews-mr-rap-reviews-specials-10-30-20-lyrics&quot;</text><text x="71.142" y="1.67" class="c">,</text></symbol><symbol id="150"><text x="8.016" y="1.67" class="x">&quot;api_path&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;/artists/2437989&quot;</text><text x="38.076" y="1.67" class="c">,</text></symbol><symbol id="151"><text x="8.016" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/067bfa193b0d39ae5a5598c711aa8641.458x458x1.png&quot;</text><text x="102.204" y="1.67" class="c">,</text></symbol><symbol id="152"><text x="8.016" y="1.67" class="x">&quot;id&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="c">2437989,</text></symbol><symbol id="153"><text x="8.016" y="1.67" class="x">&quot;image_url&quot;</text><text x="19.038" y="1.67" class="c">:</text><text x="21.042" y="1.67" class="g">&quot;https://images.genius.com/067bfa193b0d39ae5a5598c711aa8641.458x458x1.png&quot;</text><text x="95.19" y="1.67" class="c">,</text></symbol><symbol id="154"><text x="8.016" y="1.67" class="x">&quot;name&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="g">&quot;Mr.</text><text x="21.042" y="1.67" class="g">Rap</text><text x="25.05" y="1.67" class="g">Reviews&quot;</text><text x="33.066" y="1.67" class="c">,</text></symbol><symbol id="155"><text x="8.016" y="1.67" class="x">&quot;url&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;https://genius.com/artists/Mr-rap-reviews&quot;</text></symbol><symbol id="156"><text x="6.012" y="1.67" class="x">&quot;song_art_image_thumbnail_url&quot;</text><text x="36.072" y="1.67" class="c">:</text><text x="38.076" y="1.67" class="g">&quot;https://images.genius.com/067bfa193b0d39ae5a5598c711aa8641.300x300x1.png&quot;</text><text x="112.224" y="1.67" class="c">,</text></symbol><symbol id="157"><text x="6.012" y="1.67" class="x">&quot;song_art_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/067bfa193b0d39ae5a5598c711aa8641.458x458x1.png&quot;</text><text x="102.204" y="1.67" class="c">,</text></symbol><symbol id="158"><text x="6.012" y="1.67" class="x">&quot;title&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;Mr.</text><text x="20.04" y="1.67" class="g">Rap</text><text x="24.048" y="1.67" class="g">Reviews</text><text x="32.064" y="1.67" class="g">Specials</text><text x="41.082" y="1.67" class="g">(10/30/20)&quot;</text><text x="52.104" y="1.67" class="c">,</text></symbol><symbol id="159"><text x="6.012" y="1.67" class="x">&quot;title_with_featured&quot;</text><text x="27.054" y="1.67" class="c">:</text><text x="29.058" y="1.67" class="g">&quot;Mr.</text><text x="34.068" y="1.67" class="g">Rap</text><text x="38.076" y="1.67" class="g">Reviews</text><text x="46.092" y="1.67" class="g">Specials</text><text x="55.11" y="1.67" class="g">(10/30/20)&quot;</text><text x="66.132" y="1.67" class="c">,</text></symbol><symbol id="160"><text x="6.012" y="1.67" class="x">&quot;url&quot;</text><text x="11.022" y="1.67" class="c">:</text><text x="13.026" y="1.67" class="g">&quot;https://genius.com/Mr-rap-reviews-mr-rap-reviews-specials-10-30-20-lyrics&quot;</text></symbol><symbol id="161"><text x="6.012" y="1.67" class="x">&quot;api_path&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;/songs/6162117&quot;</text><text x="34.068" y="1.67" class="c">,</text></symbol><symbol id="162"><text x="6.012" y="1.67" class="x">&quot;full_title&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;Mr.</text><text x="25.05" y="1.67" class="g">Rap</text><text x="29.058" y="1.67" class="g">Reviews</text><text x="37.074" y="1.67" class="g">Specials</text><text x="46.092" y="1.67" class="g">(11/6/20)</text><text x="56.112" y="1.67" class="g">by Mr. Rap</text><text x="67.134" y="1.67" class="g">Reviews&quot;</text><text x="75.15" y="1.67" class="c">,</text></symbol><symbol id="163"><text x="6.012" y="1.67" class="x">&quot;id&quot;</text><text x="10.02" y="1.67" class="c">:</text><text x="12.024" y="1.67" class="c">6162117,</text></symbol><symbol id="164"><text x="6.012" y="1.67" class="x">&quot;path&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="g">&quot;/Mr-rap-reviews-mr-rap-reviews-specials-11-6-20-lyrics&quot;</text><text x="70.14" y="1.67" class="c">,</text></symbol><symbol id="165"><text x="8.016" y="1.67" class="x">&quot;day&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="c">6,</text></symbol><symbol id="166"><text x="8.016" y="1.67" class="x">&quot;month&quot;</text><text x="15.03" y="1.67" class="c">:</text><text x="17.034" y="1.67" class="c">11,</text></symbol><symbol id="167"><text x="6.012" y="1.67" class="x">&quot;release_date_for_display&quot;</text><text x="32.064" y="1.67" class="c">:</text><text x="34.068" y="1.67" class="g">&quot;November</text><text x="44.088" y="1.67" class="g">6,</text><text x="47.094" y="1.67" class="g">2020&quot;</text><text x="52.104" y="1.67" class="c">,</text></symbol><symbol id="168"><text x="6.012" y="1.67" class="x">&quot;title&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;Mr.</text><text x="20.04" y="1.67" class="g">Rap</text><text x="24.048" y="1.67" class="g">Reviews</text><text x="32.064" y="1.67" class="g">Specials</text><text x="41.082" y="1.67" class="g">(11/6/20)&quot;</text><text x="51.102" y="1.67" class="c">,</text></symbol><symbol id="169"><text x="6.012" y="1.67" class="x">&quot;title_with_featured&quot;</text><text x="27.054" y="1.67" class="c">:</text><text x="29.058" y="1.67" class="g">&quot;Mr.</text><text x="34.068" y="1.67" class="g">Rap</text><text x="38.076" y="1.67" class="g">Reviews</text><text x="46.092" y="1.67" class="g">Specials</text><text x="55.11" y="1.67" class="g">(11/6/20)&quot;</text><text x="65.13" y="1.67" class="c">,</text></symbol><symbol id="170"><text x="6.012" y="1.67" class="x">&quot;url&quot;</text><text x="11.022" y="1.67" class="c">:</text><text x="13.026" y="1.67" class="g">&quot;https://genius.com/Mr-rap-reviews-mr-rap-reviews-specials-11-6-20-lyrics&quot;</text></symbol><symbol id="171"><text x="6.012" y="1.67" class="x">&quot;api_path&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;/songs/4221987&quot;</text><text x="34.068" y="1.67" class="c">,</text></symbol><symbol id="172"><text x="6.012" y="1.67" class="x">&quot;full_title&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;TaKe</text><text x="26.052" y="1.67" class="g">oNe</text><text x="30.06" y="1.67" class="g">by Co Cash</text><text x="41.082" y="1.67" class="g">&amp;</text><text x="43.086" y="1.67" class="g">Tay</text><text x="47.094" y="1.67" class="g">Keith&quot;</text><text x="53.106" y="1.67" class="c">,</text></symbol><symbol id="173"><text x="6.012" y="1.67" class="x">&quot;header_image_thumbnail_url&quot;</text><text x="34.068" y="1.67" class="c">:</text><text x="36.072" y="1.67" class="g">&quot;https://images.genius.com/f2ef818d77f5c0e1b2f015361188e4c3.300x300x1.jpg&quot;</text><text x="110.22" y="1.67" class="c">,</text></symbol><symbol id="174"><text x="6.012" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="g">&quot;https://images.genius.com/f2ef818d77f5c0e1b2f015361188e4c3.500x500x1.jpg&quot;</text><text x="100.2" y="1.67" class="c">,</text></symbol><symbol id="175"><text x="6.012" y="1.67" class="x">&quot;id&quot;</text><text x="10.02" y="1.67" class="c">:</text><text x="12.024" y="1.67" class="c">4221987,</text></symbol><symbol id="176"><text x="6.012" y="1.67" class="x">&quot;lyrics_owner_id&quot;</text><text x="23.046" y="1.67" class="c">:</text><text x="25.05" y="1.67" class="c">162854,</text></symbol><symbol id="177"><text x="6.012" y="1.67" class="x">&quot;path&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="g">&quot;/Co-cash-and-tay-keith-take-one-lyrics&quot;</text><text x="54.108" y="1.67" class="c">,</text></symbol><symbol id="178"><text x="8.016" y="1.67" class="x">&quot;api_path&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;/artists/2056839&quot;</text><text x="38.076" y="1.67" class="c">,</text></symbol><symbol id="179"><text x="8.016" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://assets.genius.com/images/default_avatar_300.png?1661530474&quot;</text><text x="96.192" y="1.67" class="c">,</text></symbol><symbol id="180"><text x="8.016" y="1.67" class="x">&quot;id&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="c">2056839,</text></symbol><symbol id="181"><text x="8.016" y="1.67" class="x">&quot;image_url&quot;</text><text x="19.038" y="1.67" class="c">:</text><text x="21.042" y="1.67" class="g">&quot;https://assets.genius.com/images/default_avatar_300.png?1661530474&quot;</text><text x="89.178" y="1.67" class="c">,</text></symbol><symbol id="182"><text x="8.016" y="1.67" class="x">&quot;name&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="g">&quot;Co</text><text x="20.04" y="1.67" class="g">Cash</text><text x="25.05" y="1.67" class="g">&amp;</text><text x="27.054" y="1.67" class="g">Tay</text><text x="31.062" y="1.67" class="g">Keith&quot;</text><text x="37.074" y="1.67" class="c">,</text></symbol><symbol id="183"><text x="8.016" y="1.67" class="x">&quot;url&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;https://genius.com/artists/Co-cash-and-tay-keith&quot;</text></symbol><symbol id="184"><text x="8.016" y="1.67" class="x">&quot;day&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="c">18,</text></symbol><symbol id="185"><text x="8.016" y="1.67" class="x">&quot;month&quot;</text><text x="15.03" y="1.67" class="c">:</text><text x="17.034" y="1.67" class="c">5,</text></symbol><symbol id="186"><text x="8.016" y="1.67" class="x">&quot;year&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">2018</text></symbol><symbol id="187"><text x="6.012" y="1.67" class="x">&quot;release_date_for_display&quot;</text><text x="32.064" y="1.67" class="c">:</text><text x="34.068" y="1.67" class="g">&quot;May</text><text x="39.078" y="1.67" class="g">18,</text><text x="43.086" y="1.67" class="g">2018&quot;</text><text x="48.096" y="1.67" class="c">,</text></symbol><symbol id="188"><text x="6.012" y="1.67" class="x">&quot;song_art_image_thumbnail_url&quot;</text><text x="36.072" y="1.67" class="c">:</text><text x="38.076" y="1.67" class="g">&quot;https://images.genius.com/f2ef818d77f5c0e1b2f015361188e4c3.300x300x1.jpg&quot;</text><text x="112.224" y="1.67" class="c">,</text></symbol><symbol id="189"><text x="6.012" y="1.67" class="x">&quot;song_art_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/f2ef818d77f5c0e1b2f015361188e4c3.500x500x1.jpg&quot;</text><text x="102.204" y="1.67" class="c">,</text></symbol><symbol id="190"><text x="6.012" y="1.67" class="x">&quot;title&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;TaKe</text><text x="21.042" y="1.67" class="g">oNe&quot;</text><text x="25.05" y="1.67" class="c">,</text></symbol><symbol id="191"><text x="6.012" y="1.67" class="x">&quot;title_with_featured&quot;</text><text x="27.054" y="1.67" class="c">:</text><text x="29.058" y="1.67" class="g">&quot;TaKe</text><text x="35.07" y="1.67" class="g">oNe&quot;</text><text x="39.078" y="1.67" class="c">,</text></symbol><symbol id="192"><text x="6.012" y="1.67" class="x">&quot;url&quot;</text><text x="11.022" y="1.67" class="c">:</text><text x="13.026" y="1.67" class="g">&quot;https://genius.com/Co-cash-and-tay-keith-take-one-lyrics&quot;</text></symbol><symbol id="193"><text x="6.012" y="1.67" class="x">&quot;annotation_count&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="c">2,</text></symbol><symbol id="194"><text x="6.012" y="1.67" class="x">&quot;api_path&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;/songs/7662731&quot;</text><text x="34.068" y="1.67" class="c">,</text></symbol><symbol id="195"><text x="6.012" y="1.67" class="x">&quot;full_title&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;Rap</text><text x="25.05" y="1.67" class="g">Check</text><text x="31.062" y="1.67" class="g">by Yo Gotti&quot;</text><text x="43.086" y="1.67" class="c">,</text></symbol><symbol id="196"><text x="6.012" y="1.67" class="x">&quot;header_image_thumbnail_url&quot;</text><text x="34.068" y="1.67" class="c">:</text><text x="36.072" y="1.67" class="g">&quot;https://images.genius.com/16634070b9c07b70d46ed89e705aa537.300x300x1.png&quot;</text><text x="110.22" y="1.67" class="c">,</text></symbol><symbol id="197"><text x="6.012" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="g">&quot;https://images.genius.com/16634070b9c07b70d46ed89e705aa537.1000x1000x1.png&quot;</text><text x="102.204" y="1.67" class="c">,</text></symbol><symbol id="198"><text x="6.012" y="1.67" class="x">&quot;id&quot;</text><text x="10.02" y="1.67" class="c">:</text><text x="12.024" y="1.67" class="c">7662731,</text></symbol><symbol id="199"><text x="6.012" y="1.67" class="x">&quot;lyrics_owner_id&quot;</text><text x="23.046" y="1.67" class="c">:</text><text x="25.05" y="1.67" class="c">548516,</text></symbol><symbol id="200"><text x="6.012" y="1.67" class="x">&quot;path&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="g">&quot;/Yo-gotti-rap-check-lyrics&quot;</text><text x="42.084" y="1.67" class="c">,</text></symbol><symbol id="201"><text x="8.016" y="1.67" class="x">&quot;api_path&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;/artists/118&quot;</text><text x="34.068" y="1.67" class="c">,</text></symbol><symbol id="202"><text x="8.016" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/89bf1b3f62c694f2bd8e5c3643a9c75f.1000x676x1.jpg&quot;</text><text x="103.206" y="1.67" class="c">,</text></symbol><symbol id="203"><text x="8.016" y="1.67" class="x">&quot;id&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="c">118,</text></symbol><symbol id="204"><text x="8.016" y="1.67" class="x">&quot;image_url&quot;</text><text x="19.038" y="1.67" class="c">:</text><text x="21.042" y="1.67" class="g">&quot;https://images.genius.com/993fc023fd24aa29153af7b870237e2f.730x730x1.jpg&quot;</text><text x="95.19" y="1.67" class="c">,</text></symbol><symbol id="205"><text x="8.016" y="1.67" class="x">&quot;iq&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="c">9785,</text></symbol><symbol id="206"><text x="8.016" y="1.67" class="x">&quot;is_meme_verified&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">true,</text></symbol><symbol id="207"><text x="8.016" y="1.67" class="x">&quot;name&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="g">&quot;Yo</text><text x="20.04" y="1.67" class="g">Gotti&quot;</text><text x="26.052" y="1.67" class="c">,</text></symbol><symbol id="208"><text x="8.016" y="1.67" class="x">&quot;url&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;https://genius.com/artists/Yo-gotti&quot;</text></symbol><symbol id="209"><text x="8.016" y="1.67" class="x">&quot;day&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="c">4,</text></symbol><symbol id="210"><text x="8.016" y="1.67" class="x">&quot;month&quot;</text><text x="15.03" y="1.67" class="c">:</text><text x="17.034" y="1.67" class="c">2,</text></symbol><symbol id="211"><text x="8.016" y="1.67" class="x">&quot;year&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">2022</text></symbol><symbol id="212"><text x="6.012" y="1.67" class="x">&quot;release_date_for_display&quot;</text><text x="32.064" y="1.67" class="c">:</text><text x="34.068" y="1.67" class="g">&quot;February</text><text x="44.088" y="1.67" class="g">4,</text><text x="47.094" y="1.67" class="g">2022&quot;</text><text x="52.104" y="1.67" class="c">,</text></symbol><symbol id="213"><text x="6.012" y="1.67" class="x">&quot;song_art_image_thumbnail_url&quot;</text><text x="36.072" y="1.67" class="c">:</text><text x="38.076" y="1.67" class="g">&quot;https://images.genius.com/16634070b9c07b70d46ed89e705aa537.300x300x1.png&quot;</text><text x="112.224" y="1.67" class="c">,</text></symbol><symbol id="214"><text x="6.012" y="1.67" class="x">&quot;song_art_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/16634070b9c07b70d46ed89e705aa537.1000x1000x1.png&quot;</text><text x="104.208" y="1.67" class="c">,</text></symbol><symbol id="215"><text x="6.012" y="1.67" class="x">&quot;title&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;Rap</text><text x="20.04" y="1.67" class="g">Check&quot;</text><text x="26.052" y="1.67" class="c">,</text></symbol><symbol id="216"><text x="6.012" y="1.67" class="x">&quot;title_with_featured&quot;</text><text x="27.054" y="1.67" class="c">:</text><text x="29.058" y="1.67" class="g">&quot;Rap</text><text x="34.068" y="1.67" class="g">Check&quot;</text><text x="40.08" y="1.67" class="c">,</text></symbol><symbol id="217"><text x="6.012" y="1.67" class="x">&quot;url&quot;</text><text x="11.022" y="1.67" class="c">:</text><text x="13.026" y="1.67" class="g">&quot;https://genius.com/Yo-gotti-rap-check-lyrics&quot;</text></symbol><symbol id="218"><text x="6.012" y="1.67" class="x">&quot;annotation_count&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="c">0,</text></symbol><symbol id="219"><text x="6.012" y="1.67" class="x">&quot;api_path&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;/songs/5330756&quot;</text><text x="34.068" y="1.67" class="c">,</text></symbol><symbol id="220"><text x="6.012" y="1.67" class="x">&quot;full_title&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;No</text><text x="24.048" y="1.67" class="g">discussion</text><text x="35.07" y="1.67" class="g">by Draxo D&quot;</text><text x="46.092" y="1.67" class="c">,</text></symbol><symbol id="221"><text x="6.012" y="1.67" class="x">&quot;header_image_thumbnail_url&quot;</text><text x="34.068" y="1.67" class="c">:</text><text x="36.072" y="1.67" class="g">&quot;https://assets.genius.com/images/default_cover_image.png?1661530474&quot;</text><text x="105.21" y="1.67" class="c">,</text></symbol><symbol id="222"><text x="6.012" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="g">&quot;https://assets.genius.com/images/default_cover_image.png?1661530474&quot;</text><text x="95.19" y="1.67" class="c">,</text></symbol><symbol id="223"><text x="6.012" y="1.67" class="x">&quot;id&quot;</text><text x="10.02" y="1.67" class="c">:</text><text x="12.024" y="1.67" class="c">5330756,</text></symbol><symbol id="224"><text x="6.012" y="1.67" class="x">&quot;lyrics_owner_id&quot;</text><text x="23.046" y="1.67" class="c">:</text><text x="25.05" y="1.67" class="c">8375600,</text></symbol><symbol id="225"><text x="6.012" y="1.67" class="x">&quot;path&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="g">&quot;/Draxo-d-no-discussion-lyrics&quot;</text><text x="45.09" y="1.67" class="c">,</text></symbol><symbol id="226"><text x="8.016" y="1.67" class="x">&quot;api_path&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;/artists/2011929&quot;</text><text x="38.076" y="1.67" class="c">,</text></symbol><symbol id="227"><text x="8.016" y="1.67" class="x">&quot;</text></symbol><symbol id="228"><text x="8.016" y="1.67" class="x">&quot;id&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="c">2011929,</text></symbol><symbol id="229"><text x="8.016" y="1.67" class="x">&quot;name&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="g">&quot;Draxo</text><text x="23.046" y="1.67" class="g">D&quot;</text><text x="25.05" y="1.67" class="c">,</text></symbol><symbol id="230"><text x="8.016" y="1.67" class="x">&quot;url&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;https://genius.com/artists/Draxo-d&quot;</text></symbol><symbol id="231"><text x="6.012" y="1.67" class="x">&quot;song_art_image_thumbnail_url&quot;</text><text x="36.072" y="1.67" class="c">:</text><text x="38.076" y="1.67" class="g">&quot;https://assets.genius.com/images/default_cover_image.png?1661530474&quot;</text><text x="107.214" y="1.67" class="c">,</text></symbol><symbol id="232"><text x="6.012" y="1.67" class="x">&quot;song_art_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://assets.genius.com/images/default_cover_image.png?1661530474&quot;</text><text x="97.194" y="1.67" class="c">,</text></symbol><symbol id="233"><text x="8.016" y="1.67" class="x">&quot;unreviewed_annotations&quot;</text><text x="32.064" y="1.67" class="c">:</text><text x="34.068" y="1.67" class="c">0</text></symbol><symbol id="234"><text x="6.012" y="1.67" class="x">&quot;title&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;No</text><text x="19.038" y="1.67" class="g">discussion&quot;</text><text x="30.06" y="1.67" class="c">,</text></symbol><symbol id="235"><text x="6.012" y="1.67" class="x">&quot;title_with_featured&quot;</text><text x="27.054" y="1.67" class="c">:</text><text x="29.058" y="1.67" class="g">&quot;No</text><text x="33.066" y="1.67" class="g">discussion&quot;</text><text x="44.088" y="1.67" class="c">,</text></symbol><symbol id="236"><text x="6.012" y="1.67" class="x">&quot;url&quot;</text><text x="11.022" y="1.67" class="c">:</text><text x="13.026" y="1.67" class="g">&quot;https://genius.com/Draxo-d-no-discussion-lyrics&quot;</text></symbol><symbol id="237"><text x="6.012" y="1.67" class="x">&quot;api_path&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;/songs/4579112&quot;</text><text x="34.068" y="1.67" class="c">,</text></symbol><symbol id="238"><text x="10.02" y="1.67" class="x">&quot;api_path&quot;</text><text x="20.04" y="1.67" class="c">:</text><text x="22.044" y="1.67" class="g">&quot;/artists/1543480&quot;</text><text x="40.08" y="1.67" class="c">,</text></symbol><symbol id="239"><text x="10.02" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="28.056" y="1.67" class="c">:</text><text x="30.06" y="1.67" class="g">&quot;https://images.genius.com/7c871c509a67044938f6223d8989c6d7.1000x210x1.jpg&quot;</text><text x="105.21" y="1.67" class="c">,</text></symbol><symbol id="240"><text x="10.02" y="1.67" class="x">&quot;id&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">1543480,</text></symbol><symbol id="241"><text x="10.02" y="1.67" class="x">&quot;image_url&quot;</text><text x="21.042" y="1.67" class="c">:</text><text x="23.046" y="1.67" class="g">&quot;https://images.genius.com/57c2f3f3c7e227d89d4240db37497537.702x702x1.jpg&quot;</text><text x="97.194" y="1.67" class="c">,</text></symbol><symbol id="242"><text x="10.02" y="1.67" class="x">&quot;iq&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">3505,</text></symbol><symbol id="243"><text x="10.02" y="1.67" class="x">&quot;name&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;​Jane</text><text x="25.05" y="1.67" class="g">Remover&quot;</text><text x="33.066" y="1.67" class="c">,</text></symbol><symbol id="244"><text x="10.02" y="1.67" class="x">&quot;url&quot;</text><text x="15.03" y="1.67" class="c">:</text><text x="17.034" y="1.67" class="g">&quot;https://genius.com/artists/Jane-remover&quot;</text></symbol><symbol id="245"><text x="10.02" y="1.67" class="x">&quot;api_path&quot;</text><text x="20.04" y="1.67" class="c">:</text><text x="22.044" y="1.67" class="g">&quot;/artists/1252740&quot;</text><text x="40.08" y="1.67" class="c">,</text></symbol><symbol id="246"><text x="10.02" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="28.056" y="1.67" class="c">:</text><text x="30.06" y="1.67" class="g">&quot;https://images.genius.com/08df698891c71046d46dcadccb4fc597.664x674x1.png&quot;</text><text x="104.208" y="1.67" class="c">,</text></symbol><symbol id="247"><text x="10.02" y="1.67" class="x">&quot;id&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">1252740,</text></symbol><symbol id="248"><text x="10.02" y="1.67" class="x">&quot;image_url&quot;</text><text x="21.042" y="1.67" class="c">:</text><text x="23.046" y="1.67" class="g">&quot;https://images.genius.com/e5eb2c7eebc3fae7af52f342b11a4b23.417x417x1.png&quot;</text><text x="97.194" y="1.67" class="c">,</text></symbol><symbol id="249"><text x="10.02" y="1.67" class="x">&quot;is_verified&quot;</text><text x="23.046" y="1.67" class="c">:</text><text x="25.05" y="1.67" class="c">false,</text></symbol><symbol id="250"><text x="10.02" y="1.67" class="x">&quot;name&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;Lil</text><text x="23.046" y="1.67" class="g">Phlegm&quot;</text><text x="30.06" y="1.67" class="c">,</text></symbol><symbol id="251"><text x="10.02" y="1.67" class="x">&quot;url&quot;</text><text x="15.03" y="1.67" class="c">:</text><text x="17.034" y="1.67" class="g">&quot;https://genius.com/artists/Lil-phlegm&quot;</text></symbol><symbol id="252"><text x="6.012" y="1.67" class="x">&quot;full_title&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;EstoyDiablo</text><text x="33.066" y="1.67" class="g">Remix</text><text x="39.078" y="1.67" class="g">by Prod Lukerman</text><text x="56.112" y="1.67" class="g">(Ft. ​Jane Remover</text><text x="75.15" y="1.67" class="g">&amp;</text><text x="77.154" y="1.67" class="g">Lil Phlegm)&quot;</text><text x="89.178" y="1.67" class="c">,</text></symbol><symbol id="253"><text x="6.012" y="1.67" class="x">&quot;header_image_thumbnail_url&quot;</text><text x="34.068" y="1.67" class="c">:</text><text x="36.072" y="1.67" class="g">&quot;https://images.genius.com/13a0fba4ca583cb6d569118c15052db5.300x304x1.png&quot;</text><text x="110.22" y="1.67" class="c">,</text></symbol><symbol id="254"><text x="6.012" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="g">&quot;https://images.genius.com/13a0fba4ca583cb6d569118c15052db5.986x1000x1.png&quot;</text><text x="101.202" y="1.67" class="c">,</text></symbol><symbol id="255"><text x="6.012" y="1.67" class="x">&quot;id&quot;</text><text x="10.02" y="1.67" class="c">:</text><text x="12.024" y="1.67" class="c">4579112,</text></symbol><symbol id="256"><text x="6.012" y="1.67" class="x">&quot;lyrics_owner_id&quot;</text><text x="23.046" y="1.67" class="c">:</text><text x="25.05" y="1.67" class="c">5351337,</text></symbol><symbol id="257"><text x="6.012" y="1.67" class="x">&quot;path&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="g">&quot;/Prod-lukerman-estoydiablo-remix-lyrics&quot;</text><text x="55.11" y="1.67" class="c">,</text></symbol><symbol id="258"><text x="8.016" y="1.67" class="x">&quot;api_path&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;/artists/1791983&quot;</text><text x="38.076" y="1.67" class="c">,</text></symbol><symbol id="259"><text x="8.016" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/a41eba2ec23ab0fc65dc65b9c79121b3.391x138x1.png&quot;</text><text x="102.204" y="1.67" class="c">,</text></symbol><symbol id="260"><text x="8.016" y="1.67" class="x">&quot;id&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="c">1791983,</text></symbol><symbol id="261"><text x="8.016" y="1.67" class="x">&quot;image_url&quot;</text><text x="19.038" y="1.67" class="c">:</text><text x="21.042" y="1.67" class="g">&quot;https://images.genius.com/47851061bdac41a736febe5331199257.495x495x1.png&quot;</text><text x="95.19" y="1.67" class="c">,</text></symbol><symbol id="262"><text x="8.016" y="1.67" class="x">&quot;name&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="g">&quot;Prod</text><text x="22.044" y="1.67" class="g">Lukerman&quot;</text><text x="31.062" y="1.67" class="c">,</text></symbol><symbol id="263"><text x="8.016" y="1.67" class="x">&quot;url&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;https://genius.com/artists/Prod-lukerman&quot;</text></symbol><symbol id="264"><text x="8.016" y="1.67" class="x">&quot;year&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="c">2019</text></symbol><symbol id="265"><text x="6.012" y="1.67" class="x">&quot;release_date_for_display&quot;</text><text x="32.064" y="1.67" class="c">:</text><text x="34.068" y="1.67" class="g">&quot;May</text><text x="39.078" y="1.67" class="g">18,</text><text x="43.086" y="1.67" class="g">2019&quot;</text><text x="48.096" y="1.67" class="c">,</text></symbol><symbol id="266"><text x="6.012" y="1.67" class="x">&quot;song_art_image_thumbnail_url&quot;</text><text x="36.072" y="1.67" class="c">:</text><text x="38.076" y="1.67" class="g">&quot;https://images.genius.com/13a0fba4ca583cb6d569118c15052db5.300x304x1.png&quot;</text><text x="112.224" y="1.67" class="c">,</text></symbol><symbol id="267"><text x="6.012" y="1.67" class="x">&quot;song_art_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/13a0fba4ca583cb6d569118c15052db5.986x1000x1.png&quot;</text><text x="103.206" y="1.67" class="c">,</text></symbol><symbol id="268"><text x="6.012" y="1.67" class="x">&quot;title&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;EstoyDiablo</text><text x="28.056" y="1.67" class="g">Remix&quot;</text><text x="34.068" y="1.67" class="c">,</text></symbol><symbol id="269"><text x="6.012" y="1.67" class="x">&quot;title_with_featured&quot;</text><text x="27.054" y="1.67" class="c">:</text><text x="29.058" y="1.67" class="g">&quot;EstoyDiablo</text><text x="42.084" y="1.67" class="g">Remix</text><text x="48.096" y="1.67" class="g">(Ft. ​Jane Remover</text><text x="67.134" y="1.67" class="g">&amp;</text><text x="69.138" y="1.67" class="g">Lil Phlegm)&quot;</text><text x="81.162" y="1.67" class="c">,</text></symbol><symbol id="270"><text x="6.012" y="1.67" class="x">&quot;url&quot;</text><text x="11.022" y="1.67" class="c">:</text><text x="13.026" y="1.67" class="g">&quot;https://genius.com/Prod-lukerman-estoydiablo-remix-lyrics&quot;</text></symbol><symbol id="271"><text x="6.012" y="1.67" class="x">&quot;api_path&quot;</text><text x="16.032" y="1.67" class="c">:</text><text x="18.036" y="1.67" class="g">&quot;/songs/4050859&quot;</text><text x="34.068" y="1.67" class="c">,</text></symbol><symbol id="272"><text x="6.012" y="1.67" class="x">&quot;full_title&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;Plot</text><text x="26.052" y="1.67" class="g">Twist</text><text x="32.064" y="1.67" class="g">by Tay Keith</text><text x="45.09" y="1.67" class="g">&amp;</text><text x="47.094" y="1.67" class="g">Lil</text><text x="51.102" y="1.67" class="g">Juice&quot;</text><text x="57.114" y="1.67" class="c">,</text></symbol><symbol id="273"><text x="6.012" y="1.67" class="x">&quot;header_image_thumbnail_url&quot;</text><text x="34.068" y="1.67" class="c">:</text><text x="36.072" y="1.67" class="g">&quot;https://images.genius.com/169f1ee4a87c25c41f69e389fe4abb8b.300x300x1.jpg&quot;</text><text x="110.22" y="1.67" class="c">,</text></symbol><symbol id="274"><text x="6.012" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="24.048" y="1.67" class="c">:</text><text x="26.052" y="1.67" class="g">&quot;https://images.genius.com/169f1ee4a87c25c41f69e389fe4abb8b.500x500x1.jpg&quot;</text><text x="100.2" y="1.67" class="c">,</text></symbol><symbol id="275"><text x="6.012" y="1.67" class="x">&quot;id&quot;</text><text x="10.02" y="1.67" class="c">:</text><text x="12.024" y="1.67" class="c">4050859,</text></symbol><symbol id="276"><text x="6.012" y="1.67" class="x">&quot;lyrics_owner_id&quot;</text><text x="23.046" y="1.67" class="c">:</text><text x="25.05" y="1.67" class="c">7211822,</text></symbol><symbol id="277"><text x="6.012" y="1.67" class="x">&quot;path&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="g">&quot;/Tay-keith-and-lil-juice-plot-twist-lyrics&quot;</text><text x="58.116" y="1.67" class="c">,</text></symbol><symbol id="278"><text x="8.016" y="1.67" class="x">&quot;api_path&quot;</text><text x="18.036" y="1.67" class="c">:</text><text x="20.04" y="1.67" class="g">&quot;/artists/1612048&quot;</text><text x="38.076" y="1.67" class="c">,</text></symbol><symbol id="279"><text x="8.016" y="1.67" class="x">&quot;header_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/19116564f8e78dc6d68794f4597aa950.720x720x1.jpg&quot;</text><text x="102.204" y="1.67" class="c">,</text></symbol><symbol id="280"><text x="8.016" y="1.67" class="x">&quot;id&quot;</text><text x="12.024" y="1.67" class="c">:</text><text x="14.028" y="1.67" class="c">1612048,</text></symbol><symbol id="281"><text x="8.016" y="1.67" class="x">&quot;image_url&quot;</text><text x="19.038" y="1.67" class="c">:</text><text x="21.042" y="1.67" class="g">&quot;https://images.genius.com/19116564f8e78dc6d68794f4597aa950.720x720x1.jpg&quot;</text><text x="95.19" y="1.67" class="c">,</text></symbol><symbol id="282"><text x="8.016" y="1.67" class="x">&quot;name&quot;</text><text x="14.028" y="1.67" class="c">:</text><text x="16.032" y="1.67" class="g">&quot;Tay</text><text x="21.042" y="1.67" class="g">Keith</text><text x="27.054" y="1.67" class="g">&amp;</text><text x="29.058" y="1.67" class="g">Lil</text><text x="33.066" y="1.67" class="g">Juice&quot;</text><text x="39.078" y="1.67" class="c">,</text></symbol><symbol id="283"><text x="8.016" y="1.67" class="x">&quot;url&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;https://genius.com/artists/Tay-keith-and-lil-juice&quot;</text></symbol><symbol id="284"><text x="8.016" y="1.67" class="x">&quot;day&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="c">24,</text></symbol><symbol id="285"><text x="8.016" y="1.67" class="x">&quot;month&quot;</text><text x="15.03" y="1.67" class="c">:</text><text x="17.034" y="1.67" class="c">9,</text></symbol><symbol id="286"><text x="6.012" y="1.67" class="x">&quot;release_date_for_display&quot;</text><text x="32.064" y="1.67" class="c">:</text><text x="34.068" y="1.67" class="g">&quot;September</text><text x="45.09" y="1.67" class="g">24,</text><text x="49.098" y="1.67" class="g">2018&quot;</text><text x="54.108" y="1.67" class="c">,</text></symbol><symbol id="287"><text x="6.012" y="1.67" class="x">&quot;song_art_image_thumbnail_url&quot;</text><text x="36.072" y="1.67" class="c">:</text><text x="38.076" y="1.67" class="g">&quot;https://images.genius.com/169f1ee4a87c25c41f69e389fe4abb8b.300x300x1.jpg&quot;</text><text x="112.224" y="1.67" class="c">,</text></symbol><symbol id="288"><text x="6.012" y="1.67" class="x">&quot;song_art_image_url&quot;</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="g">&quot;https://images.genius.com/169f1ee4a87c25c41f69e389fe4abb8b.500x500x1.jpg&quot;</text><text x="102.204" y="1.67" class="c">,</text></symbol><symbol id="289"><text x="8.016" y="1.67" class="x">&quot;pageviews&quot;</text><text x="19.038" y="1.67" class="c">:</text><text x="21.042" y="1.67" class="c">8067,</text></symbol><symbol id="290"><text x="6.012" y="1.67" class="x">&quot;title&quot;</text><text x="13.026" y="1.67" class="c">:</text><text x="15.03" y="1.67" class="g">&quot;Plot</text><text x="21.042" y="1.67" class="g">Twist&quot;</text><text x="27.054" y="1.67" class="c">,</text></symbol><symbol id="291"><text x="6.012" y="1.67" class="x">&quot;title_with_featured&quot;</text><text x="27.054" y="1.67" class="c">:</text><text x="29.058" y="1.67" class="g">&quot;Plot</text><text x="35.07" y="1.67" class="g">Twist&quot;</text><text x="41.082" y="1.67" class="c">,</text></symbol><symbol id="292"><text x="6.012" y="1.67" class="x">&quot;url&quot;</text><text x="11.022" y="1.67" class="c">:</text><text x="13.026" y="1.67" class="g">&quot;https://genius.com/Tay-keith-and-lil-juice-plot-twist-lyrics&quot;</text></symbol><symbol id="293"><text x="2.004" y="1.67" class="f">}</text></symbol><symbol id="294"><text y="1.67" class="f">]</text></symbol><symbol id="295"><text x="1.002" y="1.67" class="h"></text><text x="3.006" y="1.67" class="i">tsirysndr</text><text x="13.026" y="1.67" class="j">on</text><text x="16.032" y="1.67" class="k">Sunday</text><text x="23.046" y="1.67" class="j">at</text><text x="26.052" y="1.67" class="k">1:07</text><text x="31.062" y="1.67" class="k">AM</text><text x="103.206" y="1.67" class="l">1.256s</text><text x="110.22" y="1.67" class="j"></text><text x="112.224" y="1.67" class="j">CPU:</text><text x="117.234" y="1.67" class="m">69.29%</text><text x="124.248" y="1.67" class="j"></text><text x="126.252" y="1.67" class="j">RAM:</text><text x="131.262" y="1.67" class="n">15/16GB</text></symbol><symbol id="296"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><path class="y" d="M16.032 0h6v2.171h-6z"/><text x="16.032" y="1.67" class="z">genius</text><path class="y" d="M22.044 0h1v2.171h-1z"/><text x="22.044" y="1.67" class="c"></text><path class="y" d="M23.046 0h1v2.171h-1z"/><text x="23.046" y="1.67" class="A">l</text><text x="24.048" y="1.67" class="t">yrics</text><text x="30.06" y="1.67" class="t">6110431</text></symbol><symbol id="297"><text y="1.67" class="u"></text><text x="2.004" y="1.67" class="s">genius</text><text x="9.018" y="1.67" class="t">lyrics</text><text x="16.032" y="1.67" class="t">6110431</text></symbol><symbol id="298"><path fill="orange" d="M0 0h37v2.171H0z"/><text y="1.67" class="C">Blac Youngsta - I Met Tay Keith First</text></symbol><symbol id="299"><text y="1.67" style="white-space:pre" fill="orange">https://genius.com/Blac-youngsta-i-met-tay-keith-first-lyrics</text></symbol><symbol id="300"><text x="1.002" y="1.67" class="c">[Chorus:</text><text x="10.02" y="1.67" class="c">Blac</text><text x="15.03" y="1.67" class="c">Youngsta]</text></symbol><symbol id="301"><text x="1.002" y="1.67" class="c">I</text><text x="3.006" y="1.67" class="c">been</text><text x="8.016" y="1.67" class="c">goin&apos;</text><text x="14.028" y="1.67" class="c">hard</text><text x="19.038" y="1.67" class="c">for</text><text x="23.046" y="1.67" class="c">the</text><text x="27.054" y="1.67" class="c">block</text><text x="33.066" y="1.67" class="c">for</text><text x="37.074" y="1.67" class="c">done</text><text x="42.084" y="1.67" class="c">too</text><text x="46.092" y="1.67" class="c">long</text></symbol><symbol id="302"><text x="1.002" y="1.67" class="c">You</text><text x="5.01" y="1.67" class="c">ain&apos;t</text><text x="11.022" y="1.67" class="c">tryna</text><text x="17.034" y="1.67" class="c">pull</text><text x="22.044" y="1.67" class="c">down</text><text x="27.054" y="1.67" class="c">shop,</text><text x="33.066" y="1.67" class="c">nigga,</text><text x="40.08" y="1.67" class="c">move</text><text x="45.09" y="1.67" class="c">on</text></symbol><symbol id="303"><text x="1.002" y="1.67" class="c">I&apos;m</text><text x="5.01" y="1.67" class="c">in</text><text x="8.016" y="1.67" class="c">L.A.</text><text x="13.026" y="1.67" class="c">in</text><text x="16.032" y="1.67" class="c">the</text><text x="20.04" y="1.67" class="c">mansion</text><text x="28.056" y="1.67" class="c">with</text><text x="33.066" y="1.67" class="c">the</text><text x="37.074" y="1.67" class="c">pool</text><text x="42.084" y="1.67" class="c">long</text></symbol><symbol id="304"><text x="1.002" y="1.67" class="c">She</text><text x="5.01" y="1.67" class="c">was</text><text x="9.018" y="1.67" class="c">bald</text><text x="14.028" y="1.67" class="c">head</text><text x="19.038" y="1.67" class="c">at</text><text x="22.044" y="1.67" class="c">first</text><text x="28.056" y="1.67" class="c">until</text><text x="34.068" y="1.67" class="c">her</text><text x="38.076" y="1.67" class="c">hair</text><text x="43.086" y="1.67" class="c">grew</text><text x="48.096" y="1.67" class="c">long</text></symbol><symbol id="305"><text x="1.002" y="1.67" class="c">I</text><text x="3.006" y="1.67" class="c">ain&apos;t</text><text x="9.018" y="1.67" class="c">goin&apos;</text><text x="15.03" y="1.67" class="c">in</text><text x="18.036" y="1.67" class="c">the</text><text x="22.044" y="1.67" class="c">club</text><text x="27.054" y="1.67" class="c">&apos;less</text><text x="33.066" y="1.67" class="c">I</text><text x="35.07" y="1.67" class="c">got</text><text x="39.078" y="1.67" class="c">the</text><text x="43.086" y="1.67" class="c">tool</text><text x="48.096" y="1.67" class="c">on</text></symbol><symbol id="306"><text x="1.002" y="1.67" class="c">Goin&apos;</text><text x="7.014" y="1.67" class="c">against</text><text x="15.03" y="1.67" class="c">the</text><text x="19.038" y="1.67" class="c">gang,</text><text x="25.05" y="1.67" class="c">that&apos;s</text><text x="32.064" y="1.67" class="c">the</text><text x="36.072" y="1.67" class="c">way</text><text x="40.08" y="1.67" class="c">you</text><text x="44.088" y="1.67" class="c">get</text><text x="48.096" y="1.67" class="c">shoot</text><text x="54.108" y="1.67" class="c">on</text></symbol><symbol id="307"><text x="1.002" y="1.67" class="c">Code</text><text x="6.012" y="1.67" class="c">red,</text><text x="11.022" y="1.67" class="c">I</text><text x="13.026" y="1.67" class="c">don&apos;t</text><text x="19.038" y="1.67" class="c">give</text><text x="24.048" y="1.67" class="c">a</text><text x="26.052" y="1.67" class="c">fuck</text><text x="31.062" y="1.67" class="c">who</text><text x="35.07" y="1.67" class="c">I</text><text x="37.074" y="1.67" class="c">knew</text><text x="42.084" y="1.67" class="c">long</text></symbol><symbol id="308"><text x="1.002" y="1.67" class="c">And</text><text x="5.01" y="1.67" class="c">don&apos;t</text><text x="11.022" y="1.67" class="c">tryna</text><text x="17.034" y="1.67" class="c">fix</text><text x="21.042" y="1.67" class="c">what</text><text x="26.052" y="1.67" class="c">you</text><text x="30.06" y="1.67" class="c">said,</text><text x="36.072" y="1.67" class="c">nigga,</text><text x="43.086" y="1.67" class="c">you</text><text x="47.094" y="1.67" class="c">grown</text><text x="53.106" y="1.67" class="c">(Yeah)</text></symbol><symbol id="309"><text x="1.002" y="1.67" class="c">And</text><text x="5.01" y="1.67" class="c">don&apos;t</text><text x="11.022" y="1.67" class="c">tryna</text><text x="17.034" y="1.67" class="c">fix</text><text x="21.042" y="1.67" class="c">what</text><text x="26.052" y="1.67" class="c">you</text><text x="30.06" y="1.67" class="c">said,</text><text x="36.072" y="1.67" class="c">nigga,</text><text x="43.086" y="1.67" class="c">you</text><text x="47.094" y="1.67" class="c">grown</text></symbol><symbol id="310"><text x="1.002" y="1.67" class="c">Look</text><text x="6.012" y="1.67" class="c">in</text><text x="9.018" y="1.67" class="c">my</text><text x="12.024" y="1.67" class="c">eyes</text><text x="17.034" y="1.67" class="c">and</text><text x="21.042" y="1.67" class="c">you</text><text x="25.05" y="1.67" class="c">can</text><text x="29.058" y="1.67" class="c">see</text><text x="33.066" y="1.67" class="c">what</text><text x="38.076" y="1.67" class="c">&apos;Pac</text><text x="43.086" y="1.67" class="c">see</text><text x="47.094" y="1.67" class="c">(See</text><text x="52.104" y="1.67" class="c">me)</text></symbol><symbol id="311"><text x="1.002" y="1.67" class="c">I</text><text x="3.006" y="1.67" class="c">put</text><text x="7.014" y="1.67" class="c">a</text><text x="9.018" y="1.67" class="c">hit</text><text x="13.026" y="1.67" class="c">on</text><text x="16.032" y="1.67" class="c">my</text><text x="19.038" y="1.67" class="c">verse,</text><text x="26.052" y="1.67" class="c">I</text><text x="28.056" y="1.67" class="c">met</text><text x="32.064" y="1.67" class="c">Tay</text><text x="36.072" y="1.67" class="c">Keith</text><text x="42.084" y="1.67" class="c">first</text><text x="48.096" y="1.67" class="c">(Facts)</text></symbol><symbol id="312"><text x="1.002" y="1.67" class="c">She</text><text x="5.01" y="1.67" class="c">gon&apos;</text><text x="10.02" y="1.67" class="c">drop</text><text x="15.03" y="1.67" class="c">it</text><text x="18.036" y="1.67" class="c">to</text><text x="21.042" y="1.67" class="c">the</text><text x="25.05" y="1.67" class="c">floor</text><text x="31.062" y="1.67" class="c">and</text><text x="35.07" y="1.67" class="c">make</text><text x="40.08" y="1.67" class="c">it</text><text x="43.086" y="1.67" class="c">twerk</text><text x="49.098" y="1.67" class="c">(Facts)</text></symbol><symbol id="313"><text x="1.002" y="1.67" class="c">If</text><text x="4.008" y="1.67" class="c">I</text><text x="6.012" y="1.67" class="c">shot</text><text x="11.022" y="1.67" class="c">my</text><text x="14.028" y="1.67" class="c">plug,</text><text x="20.04" y="1.67" class="c">I&apos;ma</text><text x="25.05" y="1.67" class="c">make</text><text x="30.06" y="1.67" class="c">it</text><text x="33.066" y="1.67" class="c">work</text><text x="38.076" y="1.67" class="c">(Boom)</text></symbol><symbol id="314"><text x="1.002" y="1.67" class="c">My</text><text x="4.008" y="1.67" class="c">lil&apos;</text><text x="9.018" y="1.67" class="c">shooters</text><text x="18.036" y="1.67" class="c">slip</text><text x="23.046" y="1.67" class="c">and</text><text x="27.054" y="1.67" class="c">slide,</text><text x="34.068" y="1.67" class="c">make</text><text x="39.078" y="1.67" class="c">it</text><text x="42.084" y="1.67" class="c">surf</text><text x="47.094" y="1.67" class="c">(Grrt)</text></symbol><symbol id="315"><text x="1.002" y="1.67" class="c">Rich</text><text x="6.012" y="1.67" class="c">nigga</text><text x="12.024" y="1.67" class="c">healthy,</text><text x="21.042" y="1.67" class="c">I</text><text x="23.046" y="1.67" class="c">don&apos;t</text><text x="29.058" y="1.67" class="c">eat</text><text x="33.066" y="1.67" class="c">no</text><text x="36.072" y="1.67" class="c">fruits</text><text x="43.086" y="1.67" class="c">(Whoo)</text></symbol><symbol id="316"><text x="1.002" y="1.67" class="c">I</text><text x="3.006" y="1.67" class="c">kick</text><text x="8.016" y="1.67" class="c">shit</text><text x="13.026" y="1.67" class="c">on</text><text x="16.032" y="1.67" class="c">your</text><text x="21.042" y="1.67" class="c">block</text><text x="27.054" y="1.67" class="c">like</text><text x="32.064" y="1.67" class="c">I&apos;m</text><text x="36.072" y="1.67" class="c">Goku</text><text x="41.082" y="1.67" class="c">(Go)</text></symbol><symbol id="317"><text x="1.002" y="1.67" class="c">I&apos;m</text><text x="5.01" y="1.67" class="c">a</text><text x="7.014" y="1.67" class="c">real</text><text x="12.024" y="1.67" class="c">nigga,</text><text x="19.038" y="1.67" class="c">keep</text><text x="24.048" y="1.67" class="c">it</text><text x="27.054" y="1.67" class="c">real</text><text x="32.064" y="1.67" class="c">like</text><text x="37.074" y="1.67" class="c">I&apos;m</text><text x="41.082" y="1.67" class="c">supposed</text><text x="50.1" y="1.67" class="c">to</text><text x="53.106" y="1.67" class="c">(Go)</text></symbol><symbol id="318"><text x="1.002" y="1.67" class="c">[Verse</text><text x="8.016" y="1.67" class="c">2:</text><text x="11.022" y="1.67" class="c">Lil</text><text x="15.03" y="1.67" class="c">Baby]</text></symbol><symbol id="319"><text x="1.002" y="1.67" class="c">I</text><text x="3.006" y="1.67" class="c">been</text><text x="8.016" y="1.67" class="c">goin&apos;</text><text x="14.028" y="1.67" class="c">hard</text><text x="19.038" y="1.67" class="c">for</text><text x="23.046" y="1.67" class="c">the</text><text x="27.054" y="1.67" class="c">hood</text><text x="32.064" y="1.67" class="c">since</text><text x="38.076" y="1.67" class="c">four</text><text x="43.086" y="1.67" class="c">feet</text></symbol><symbol id="320"><text x="1.002" y="1.67" class="c">The</text><text x="5.01" y="1.67" class="c">killers,</text><text x="14.028" y="1.67" class="c">the</text><text x="18.036" y="1.67" class="c">robbers,</text><text x="27.054" y="1.67" class="c">the</text><text x="31.062" y="1.67" class="c">police,</text><text x="39.078" y="1.67" class="c">they</text><text x="44.088" y="1.67" class="c">know</text><text x="49.098" y="1.67" class="c">me</text></symbol><symbol id="321"><text x="1.002" y="1.67" class="c">[Verse</text><text x="8.016" y="1.67" class="c">3:</text><text x="11.022" y="1.67" class="c">Moneybagg</text><text x="21.042" y="1.67" class="c">Yo]</text></symbol><symbol id="322"><text x="1.002" y="1.67" class="c">Beam</text><text x="6.012" y="1.67" class="c">on</text><text x="9.018" y="1.67" class="c">the</text><text x="13.026" y="1.67" class="c">Glock,</text><text x="20.04" y="1.67" class="c">I</text><text x="22.044" y="1.67" class="c">done</text><text x="27.054" y="1.67" class="c">got</text><text x="31.062" y="1.67" class="c">a</text><text x="33.066" y="1.67" class="c">new</text><text x="37.074" y="1.67" class="c">gizmo</text></symbol><symbol id="323"><text x="1.002" y="1.67" class="c">Sign</text><text x="6.012" y="1.67" class="c">to</text><text x="9.018" y="1.67" class="c">Bread</text><text x="15.03" y="1.67" class="c">Gang,</text><text x="21.042" y="1.67" class="c">get</text><text x="25.05" y="1.67" class="c">a</text><text x="27.054" y="1.67" class="c">chain</text><text x="33.066" y="1.67" class="c">and</text><text x="37.074" y="1.67" class="c">extendo</text></symbol><symbol id="324"><text x="1.002" y="1.67" class="c">F.N.</text><text x="6.012" y="1.67" class="c">bullet,</text><text x="14.028" y="1.67" class="c">put</text><text x="18.036" y="1.67" class="c">that</text><text x="23.046" y="1.67" class="c">shit</text><text x="28.056" y="1.67" class="c">against</text><text x="36.072" y="1.67" class="c">the</text><text x="40.08" y="1.67" class="c">window</text></symbol><symbol id="325"><text x="1.002" y="1.67" class="c">Fuck</text><text x="6.012" y="1.67" class="c">with</text><text x="11.022" y="1.67" class="c">everybody,</text><text x="22.044" y="1.67" class="c">but</text><text x="26.052" y="1.67" class="c">I</text><text x="28.056" y="1.67" class="c">bang</text><text x="33.066" y="1.67" class="c">with</text><text x="38.076" y="1.67" class="c">the</text><text x="42.084" y="1.67" class="c">bando</text></symbol><symbol id="326"><text x="1.002" y="1.67" class="c">Hit</text><text x="5.01" y="1.67" class="c">her</text><text x="9.018" y="1.67" class="c">first</text><text x="15.03" y="1.67" class="c">night</text><text x="21.042" y="1.67" class="c">that</text><text x="26.052" y="1.67" class="c">we</text><text x="29.058" y="1.67" class="c">met,</text><text x="34.068" y="1.67" class="c">she</text><text x="38.076" y="1.67" class="c">easy</text></symbol><symbol id="327"><text x="1.002" y="1.67" class="c">30</text><text x="4.008" y="1.67" class="c">gon&apos;</text><text x="9.018" y="1.67" class="c">slime</text><text x="15.03" y="1.67" class="c">you</text><text x="19.038" y="1.67" class="c">out,</text><text x="24.048" y="1.67" class="c">he</text><text x="27.054" y="1.67" class="c">greasy</text></symbol><symbol id="328"><text x="1.002" y="1.67" class="c">Better</text><text x="8.016" y="1.67" class="c">not</text><text x="12.024" y="1.67" class="c">up</text><text x="15.03" y="1.67" class="c">no</text><text x="18.036" y="1.67" class="c">gun</text><text x="22.044" y="1.67" class="c">and</text><text x="26.052" y="1.67" class="c">don&apos;t</text><text x="32.064" y="1.67" class="c">squeeze</text><text x="40.08" y="1.67" class="c">it</text></symbol><symbol id="329"><text x="1.002" y="1.67" class="c">Stampin&apos;</text><text x="10.02" y="1.67" class="c">shit,</text><text x="16.032" y="1.67" class="c">my</text><text x="19.038" y="1.67" class="c">opps</text><text x="24.048" y="1.67" class="c">and</text><text x="28.056" y="1.67" class="c">them</text><text x="33.066" y="1.67" class="c">heated</text><text x="40.08" y="1.67" class="c">(Fuck</text><text x="46.092" y="1.67" class="c">&apos;em)</text></symbol><symbol id="330"><text x="1.002" y="1.67" class="c">Been</text><text x="6.012" y="1.67" class="c">goin&apos;</text><text x="12.024" y="1.67" class="c">federal,</text><text x="21.042" y="1.67" class="c">me</text><text x="24.048" y="1.67" class="c">and</text><text x="28.056" y="1.67" class="c">Tay</text><text x="32.064" y="1.67" class="c">Keith</text><text x="38.076" y="1.67" class="c">(Facts)</text></symbol><symbol id="331"><text x="1.002" y="1.67" class="c">Good</text><text x="6.012" y="1.67" class="c">bowls</text><text x="12.024" y="1.67" class="c">of</text><text x="15.03" y="1.67" class="c">regular</text><text x="23.046" y="1.67" class="c">came</text><text x="28.056" y="1.67" class="c">from</text><text x="33.066" y="1.67" class="c">AZ</text><text x="36.072" y="1.67" class="c">(Pack)</text></symbol><symbol id="332"><text x="1.002" y="1.67" class="c">Seven-forty-two,</text><text x="18.036" y="1.67" class="c">pull</text><text x="23.046" y="1.67" class="c">up</text><text x="26.052" y="1.67" class="c">and</text><text x="30.06" y="1.67" class="c">see</text><text x="34.068" y="1.67" class="c">me</text><text x="37.074" y="1.67" class="c">(Trap)</text></symbol><symbol id="333"><text x="1.002" y="1.67" class="c">Three-ninety-two,</text><text x="19.038" y="1.67" class="c">I</text><text x="21.042" y="1.67" class="c">lose</text><text x="26.052" y="1.67" class="c">the</text><text x="30.06" y="1.67" class="c">police</text><text x="37.074" y="1.67" class="c">(Skat)</text></symbol><symbol id="334"><text x="1.002" y="1.67" class="c">I&apos;m</text><text x="5.01" y="1.67" class="c">that</text><text x="10.02" y="1.67" class="c">nigga</text><text x="16.032" y="1.67" class="c">that</text><text x="21.042" y="1.67" class="c">you</text><text x="25.05" y="1.67" class="c">never</text><text x="31.062" y="1.67" class="c">gon&apos;</text><text x="36.072" y="1.67" class="c">be</text><text x="39.078" y="1.67" class="c">(Speak</text><text x="46.092" y="1.67" class="c">up)</text></symbol><symbol id="335"><text x="1.002" y="1.67" class="c">Load</text><text x="6.012" y="1.67" class="c">the</text><text x="10.02" y="1.67" class="c">drum</text><text x="15.03" y="1.67" class="c">like</text><text x="20.04" y="1.67" class="c">I&apos;m</text><text x="24.048" y="1.67" class="c">makin&apos;</text><text x="31.062" y="1.67" class="c">the</text><text x="35.07" y="1.67" class="c">beat</text><text x="40.08" y="1.67" class="c">(Huh)</text></symbol><symbol id="336"><text x="1.002" y="1.67" class="c">A</text><text x="3.006" y="1.67" class="c">year</text><text x="8.016" y="1.67" class="c">lease,</text><text x="15.03" y="1.67" class="c">hitters</text><text x="23.046" y="1.67" class="c">move</text><text x="28.056" y="1.67" class="c">on</text><text x="31.062" y="1.67" class="c">your</text><text x="36.072" y="1.67" class="c">street</text><text x="43.086" y="1.67" class="c">(No)</text></symbol><symbol id="337"><text x="1.002" y="1.67" class="c">Once</text><text x="6.012" y="1.67" class="c">they</text><text x="11.022" y="1.67" class="c">crank</text><text x="17.034" y="1.67" class="c">up,</text><text x="21.042" y="1.67" class="c">it&apos;ll</text><text x="27.054" y="1.67" class="c">never</text><text x="33.066" y="1.67" class="c">be</text><text x="36.072" y="1.67" class="c">peace</text></symbol><symbol id="338"><text x="1.002" y="1.67" class="h"></text><text x="3.006" y="1.67" class="i">tsirysndr</text><text x="13.026" y="1.67" class="j">on</text><text x="16.032" y="1.67" class="k">Sunday</text><text x="23.046" y="1.67" class="j">at</text><text x="26.052" y="1.67" class="k">1:07</text><text x="31.062" y="1.67" class="k">AM</text><text x="104.208" y="1.67" class="l">2.17s</text><text x="110.22" y="1.67" class="j"></text><text x="112.224" y="1.67" class="j">CPU:</text><text x="117.234" y="1.67" class="m">69.26%</text><text x="124.248" y="1.67" class="j"></text><text x="126.252" y="1.67" class="j">RAM:</text><text x="131.262" y="1.67" class="n">15/16GB</text></symbol><symbol id="339"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><text x="16.032" y="1.67" class="s">genius</text><text x="23.046" y="1.67" class="r">lyrics</text><text x="30.06" y="1.67" class="r">6110431</text></symbol><symbol id="340"><text x="1.002" y="1.67" class="o"></text><text x="3.006" y="1.67" class="p">{</text><text x="5.01" y="1.67" class="p"></text><text x="7.014" y="1.67" class="p">home</text><text x="12.024" y="1.67" class="p">}</text><text x="14.028" y="1.67" class="l"></text><path class="y" d="M16.032 0h6v2.171h-6z"/><text x="16.032" y="1.67" class="z">genius</text><path class="y" d="M22.044 0h1v2.171h-1z"/><text x="22.044" y="1.67" class="c"></text><path class="y" d="M23.046 0h1v2.171h-1z"/><text x="23.046" y="1.67" class="A">l</text><text x="24.048" y="1.67" class="t">yrics</text><text x="30.06" y="1.67" class="t">8333752</text></symbol><symbol id="341"><text y="1.67" class="u"></text><text x="2.004" y="1.67" class="s">genius</text><text x="9.018" y="1.67" class="t">lyrics</text><text x="16.032" y="1.67" class="t">8333752</text></symbol><symbol id="342"><text x="1.002" y="1.67" class="c">Handeha</text><text x="9.018" y="1.67" class="c">tongotra</text><text x="18.036" y="1.67" class="c">aho</text><text x="22.044" y="1.67" class="c">raha</text><text x="27.054" y="1.67" class="c">mety</text><text x="32.064" y="1.67" class="c">natao</text></symbol><symbol id="343"><text x="1.002" y="1.67" class="c">Ka</text><text x="4.008" y="1.67" class="c">mandehana</text><text x="14.028" y="1.67" class="c">ah</text></symbol><symbol id="344"><text x="1.002" y="1.67" class="c">Tsara</text><text x="7.014" y="1.67" class="c">tso-drano</text></symbol><symbol id="345"><text x="1.002" y="1.67" class="c">Tohizo</text><text x="8.016" y="1.67" class="c">ny</text><text x="11.022" y="1.67" class="c">lalanao</text></symbol><symbol id="346"><text x="1.002" y="1.67" class="c">Fa</text><text x="4.008" y="1.67" class="c">any</text><text x="8.016" y="1.67" class="c">indray</text><text x="15.03" y="1.67" class="c">izao</text><text x="20.04" y="1.67" class="c">ny</text><text x="23.046" y="1.67" class="c">ilanao</text></symbol><symbol id="347"><text x="1.002" y="1.67" class="c">Any</text><text x="5.01" y="1.67" class="c">E!</text><text x="8.016" y="1.67" class="c">Ehee!</text><text x="14.028" y="1.67" class="c">Any</text><text x="18.036" y="1.67" class="c">E!</text><text x="21.042" y="1.67" class="c">Ehee!</text><text x="27.054" y="1.67" class="c">Any</text><text x="31.062" y="1.67" class="c">E!</text><text x="34.068" y="1.67" class="c">Ehee!</text></symbol><symbol id="348"><text x="1.002" y="1.67" class="c">Ity</text><text x="5.01" y="1.67" class="c">foko</text><text x="10.02" y="1.67" class="c">mitoro</text><text x="17.034" y="1.67" class="c">nanjary</text><text x="25.05" y="1.67" class="c">tsy</text><text x="29.058" y="1.67" class="c">tamana</text></symbol><symbol id="349"><text x="1.002" y="1.67" class="c">Ny</text><text x="4.008" y="1.67" class="c">alahelom-po</text><text x="16.032" y="1.67" class="c">tsy</text><text x="20.04" y="1.67" class="c">haiko</text><text x="26.052" y="1.67" class="c">fafana</text></symbol><symbol id="350"><text x="1.002" y="1.67" class="c">Fa</text><text x="4.008" y="1.67" class="c">na</text><text x="7.014" y="1.67" class="c">dia</text><text x="11.022" y="1.67" class="c">maniry</text><text x="18.036" y="1.67" class="c">mafy</text><text x="23.046" y="1.67" class="c">aza</text><text x="27.054" y="1.67" class="c">aho</text><text x="31.062" y="1.67" class="c">ny</text><text x="34.068" y="1.67" class="c">ho</text><text x="37.074" y="1.67" class="c">eo</text><text x="40.08" y="1.67" class="c">anilanao</text></symbol><symbol id="351"><text x="1.002" y="1.67" class="c">F&apos;izay</text><text x="8.016" y="1.67" class="c">no</text><text x="11.022" y="1.67" class="c">lalana,</text><text x="19.038" y="1.67" class="c">ny</text><text x="22.044" y="1.67" class="c">fiainana</text></symbol><symbol id="352"><text x="1.002" y="1.67" class="c">Ka</text><text x="4.008" y="1.67" class="c">mandehana,</text><text x="15.03" y="1.67" class="c">tsara</text><text x="21.042" y="1.67" class="c">tso-drano</text></symbol><symbol id="353"><text x="1.002" y="1.67" class="c">Ka</text><text x="4.008" y="1.67" class="c">mandehana</text><text x="14.028" y="1.67" class="c">eh!</text></symbol><symbol id="354"><text x="1.002" y="1.67" class="h"></text><text x="3.006" y="1.67" class="i">tsirysndr</text><text x="13.026" y="1.67" class="j">on</text><text x="16.032" y="1.67" class="k">Sunday</text><text x="23.046" y="1.67" class="j">at</text><text x="26.052" y="1.67" class="k">1:07</text><text x="31.062" y="1.67" class="k">AM</text><text x="103.206" y="1.67" class="l">2.294s</text><text x="110.22" y="1.67" class="j"></text><text x="112.224" y="1.67" class="j">CPU:</text><text x="117.234" y="1.67" class="m">69.27%</text><text x="124.248" y="1.67" class="j"></text><text x="126.252" y="1.67" class="j">RAM:</text><text x="131.262" y="1.67" class="n">15/16GB</text></symbol><symbol id="a"><path fill="transparent" d="M0 0h140v32H0z"/></symbol><symbol id="b"><path fill="#6f7683" d="M0 0h1.102v2.171H0z"/></symbol></defs><path class="a" d="M0 0h140v69.472H0z"/><g style="animation-duration:27.322223s;animation-iteration-count:infinite;animation-name:G;animation-timing-function:steps(1,end)"><svg width="23940"><svg><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="140"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="2.146"/><use xlink:href="#1"/></svg><svg x="280"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="4.317"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/></svg><svg x="420"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="6.488"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/></svg><svg x="560"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="8.659"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/></svg><svg x="700"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="10.83"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/></svg><svg x="840"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="13.001"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/></svg><svg x="980"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="15.172"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/></svg><svg x="1120"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="17.343"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/></svg><svg x="1260"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="19.514"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/></svg><svg x="1400"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="21.685"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/></svg><svg x="1540"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="23.856"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/></svg><svg x="1680"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="26.027"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/></svg><svg x="1820"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="28.198"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/></svg><svg x="1960"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="30.369"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/></svg><svg x="2100"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="32.54"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/></svg><svg x="2240"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="34.711"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/></svg><svg x="2380"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/></svg><svg x="2520"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="39.053"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/></svg><svg x="2660"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="41.224"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/></svg><svg x="2800"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="45.566"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/></svg><svg x="2940"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="45.566"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/></svg><svg x="3080"><use xlink:href="#a"/><use xlink:href="#b" x="15.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#22" y="49.933"/></svg><svg x="3220"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#23" y="49.933"/></svg><svg x="3360"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><text x="1.002" y="51.603" class="o"></text><text x="3.006" y="51.603" class="p">{</text><text x="5.01" y="51.603" class="p"></text><text x="7.014" y="51.603" class="p">home</text><text x="12.024" y="51.603" class="p">}</text><text x="14.028" y="51.603" class="l"></text><text x="16.032" y="51.603" class="q">g</text></svg><svg x="3500"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#24" y="49.933"/></svg><svg x="3640"><use xlink:href="#a"/><use xlink:href="#b" x="17.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#25" y="49.933"/></svg><svg x="3780"><use xlink:href="#a"/><use xlink:href="#b" x="18.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#26" y="49.933"/></svg><svg x="3920"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#27" y="49.933"/></svg><svg x="4060"><use xlink:href="#a"/><use xlink:href="#b" x="20.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#28" y="49.933"/></svg><svg x="4200"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#29" y="49.933"/></svg><svg x="4340"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#30" y="49.933"/></svg><svg x="4480"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#30" y="49.933"/></svg><svg x="4620"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#30" y="49.933"/></svg><svg x="4760"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><text x="1.002" y="51.603" class="o"></text><text x="3.006" y="51.603" class="p">{</text><text x="5.01" y="51.603" class="p"></text><text x="7.014" y="51.603" class="p">home</text><text x="12.024" y="51.603" class="p">}</text><text x="14.028" y="51.603" class="l"></text><text x="16.032" y="51.603" class="s">genius</text><text x="23.046" y="51.603" class="c">-</text></svg><svg x="4900"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><text x="1.002" y="51.603" class="o"></text><text x="3.006" y="51.603" class="p">{</text><text x="5.01" y="51.603" class="p"></text><text x="7.014" y="51.603" class="p">home</text><text x="12.024" y="51.603" class="p">}</text><text x="14.028" y="51.603" class="l"></text><text x="16.032" y="51.603" class="s">genius</text><text x="23.046" y="51.603" class="c">-</text><text x="24.048" y="51.603" class="r">-help</text></svg><svg x="5040"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><text x="1.002" y="51.603" class="o"></text><text x="3.006" y="51.603" class="p">{</text><text x="5.01" y="51.603" class="p"></text><text x="7.014" y="51.603" class="p">home</text><text x="12.024" y="51.603" class="p">}</text><text x="14.028" y="51.603" class="l"></text><text x="16.032" y="51.603" class="s">genius</text><text x="23.046" y="51.603" class="t">-</text><text x="24.048" y="51.603" class="r">-help</text></svg><svg x="5180"><use xlink:href="#a"/><use xlink:href="#b" x="24.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><text x="1.002" y="51.603" class="o"></text><text x="3.006" y="51.603" class="p">{</text><text x="5.01" y="51.603" class="p"></text><text x="7.014" y="51.603" class="p">home</text><text x="12.024" y="51.603" class="p">}</text><text x="14.028" y="51.603" class="l"></text><text x="16.032" y="51.603" class="s">genius</text><text x="23.046" y="51.603" class="t">--</text><text x="25.05" y="51.603" class="r">help</text></svg><svg x="5320"><use xlink:href="#a"/><use xlink:href="#b" x="25.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><text x="1.002" y="51.603" class="o"></text><text x="3.006" y="51.603" class="p">{</text><text x="5.01" y="51.603" class="p"></text><text x="7.014" y="51.603" class="p">home</text><text x="12.024" y="51.603" class="p">}</text><text x="14.028" y="51.603" class="l"></text><text x="16.032" y="51.603" class="s">genius</text><text x="23.046" y="51.603" class="t">--h</text><text x="26.052" y="51.603" class="r">elp</text></svg><svg x="5460"><use xlink:href="#a"/><use xlink:href="#b" x="26.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><text x="1.002" y="51.603" class="o"></text><text x="3.006" y="51.603" class="p">{</text><text x="5.01" y="51.603" class="p"></text><text x="7.014" y="51.603" class="p">home</text><text x="12.024" y="51.603" class="p">}</text><text x="14.028" y="51.603" class="l"></text><text x="16.032" y="51.603" class="s">genius</text><text x="23.046" y="51.603" class="t">--he</text><text x="27.054" y="51.603" class="r">lp</text></svg><svg x="5600"><use xlink:href="#a"/><use xlink:href="#b" x="27.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><text x="1.002" y="51.603" class="o"></text><text x="3.006" y="51.603" class="p">{</text><text x="5.01" y="51.603" class="p"></text><text x="7.014" y="51.603" class="p">home</text><text x="12.024" y="51.603" class="p">}</text><text x="14.028" y="51.603" class="l"></text><text x="16.032" y="51.603" class="s">genius</text><text x="23.046" y="51.603" class="t">--hel</text><text x="28.056" y="51.603" class="r">p</text></svg><svg x="5740"><use xlink:href="#a"/><use xlink:href="#b" x="28.996" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#31" y="49.933"/></svg><svg x="5880"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="49.908"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#21" y="47.762"/><use xlink:href="#31" y="49.933"/></svg><svg x="6020"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="47.737"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#32" y="45.591"/></svg><svg x="6160"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="47.737"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#11" y="21.71"/><use xlink:href="#12" y="23.881"/><use xlink:href="#13" y="26.052"/><use xlink:href="#14" y="28.223"/><use xlink:href="#15" y="30.394"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="41.249"/><use xlink:href="#20" y="43.42"/><use xlink:href="#32" y="45.591"/></svg><svg x="6300"><use xlink:href="#a"/><use xlink:href="#b" x="9.996" y="67.276"/><use xlink:href="#12"/><use xlink:href="#13" y="2.171"/><use xlink:href="#14" y="4.342"/><use xlink:href="#15" y="6.513"/><use xlink:href="#16" y="8.684"/><use xlink:href="#17" y="10.855"/><use xlink:href="#18" y="13.026"/><use xlink:href="#19" y="17.368"/><use xlink:href="#20" y="19.539"/><use xlink:href="#32" y="21.71"/><use xlink:href="#33" y="23.881"/><use xlink:href="#34" y="26.052"/><use xlink:href="#35" y="30.394"/><use xlink:href="#36" y="32.565"/><use xlink:href="#37" y="34.736"/><use xlink:href="#38" y="36.907"/><use xlink:href="#39" y="39.078"/><use xlink:href="#40" y="45.591"/><use xlink:href="#41" y="47.762"/><use xlink:href="#42" y="52.104"/><use xlink:href="#43" y="54.275"/><use xlink:href="#44" y="56.446"/><use xlink:href="#45" y="60.788"/><use xlink:href="#46" y="62.959"/><use xlink:href="#47" y="65.13"/><text x="4.008" y="68.971" class="g">search</text></svg><svg x="6440"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#14"/><use xlink:href="#15" y="2.171"/><use xlink:href="#16" y="4.342"/><use xlink:href="#17" y="6.513"/><use xlink:href="#18" y="8.684"/><use xlink:href="#19" y="13.026"/><use xlink:href="#20" y="15.197"/><use xlink:href="#32" y="17.368"/><use xlink:href="#33" y="19.539"/><use xlink:href="#34" y="21.71"/><use xlink:href="#35" y="26.052"/><use xlink:href="#36" y="28.223"/><use xlink:href="#37" y="30.394"/><use xlink:href="#38" y="32.565"/><use xlink:href="#39" y="34.736"/><use xlink:href="#40" y="41.249"/><use xlink:href="#41" y="43.42"/><use xlink:href="#42" y="47.762"/><use xlink:href="#43" y="49.933"/><use xlink:href="#44" y="52.104"/><use xlink:href="#45" y="56.446"/><use xlink:href="#46" y="58.617"/><use xlink:href="#47" y="60.788"/><use xlink:href="#48" y="62.959"/><use xlink:href="#49" y="65.13"/></svg><svg x="6580"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#14"/><use xlink:href="#15" y="2.171"/><use xlink:href="#16" y="4.342"/><use xlink:href="#17" y="6.513"/><use xlink:href="#18" y="8.684"/><use xlink:href="#19" y="13.026"/><use xlink:href="#20" y="15.197"/><use xlink:href="#32" y="17.368"/><use xlink:href="#33" y="19.539"/><use xlink:href="#34" y="21.71"/><use xlink:href="#35" y="26.052"/><use xlink:href="#36" y="28.223"/><use xlink:href="#37" y="30.394"/><use xlink:href="#38" y="32.565"/><use xlink:href="#39" y="34.736"/><use xlink:href="#40" y="41.249"/><use xlink:href="#41" y="43.42"/><use xlink:href="#42" y="47.762"/><use xlink:href="#43" y="49.933"/><use xlink:href="#44" y="52.104"/><use xlink:href="#45" y="56.446"/><use xlink:href="#46" y="58.617"/><use xlink:href="#47" y="60.788"/><use xlink:href="#48" y="62.959"/><use xlink:href="#49" y="65.13"/></svg><svg x="6720"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#14"/><use xlink:href="#15" y="2.171"/><use xlink:href="#16" y="4.342"/><use xlink:href="#17" y="6.513"/><use xlink:href="#18" y="8.684"/><use xlink:href="#19" y="13.026"/><use xlink:href="#20" y="15.197"/><use xlink:href="#32" y="17.368"/><use xlink:href="#33" y="19.539"/><use xlink:href="#34" y="21.71"/><use xlink:href="#35" y="26.052"/><use xlink:href="#36" y="28.223"/><use xlink:href="#37" y="30.394"/><use xlink:href="#38" y="32.565"/><use xlink:href="#39" y="34.736"/><use xlink:href="#40" y="41.249"/><use xlink:href="#41" y="43.42"/><use xlink:href="#42" y="47.762"/><use xlink:href="#43" y="49.933"/><use xlink:href="#44" y="52.104"/><use xlink:href="#45" y="56.446"/><use xlink:href="#46" y="58.617"/><use xlink:href="#47" y="60.788"/><use xlink:href="#48" y="62.959"/><use xlink:href="#49" y="65.13"/></svg><svg x="6860"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#14"/><use xlink:href="#15" y="2.171"/><use xlink:href="#16" y="4.342"/><use xlink:href="#17" y="6.513"/><use xlink:href="#18" y="8.684"/><use xlink:href="#19" y="13.026"/><use xlink:href="#20" y="15.197"/><use xlink:href="#32" y="17.368"/><use xlink:href="#33" y="19.539"/><use xlink:href="#34" y="21.71"/><use xlink:href="#35" y="26.052"/><use xlink:href="#36" y="28.223"/><use xlink:href="#37" y="30.394"/><use xlink:href="#38" y="32.565"/><use xlink:href="#39" y="34.736"/><use xlink:href="#40" y="41.249"/><use xlink:href="#41" y="43.42"/><use xlink:href="#42" y="47.762"/><use xlink:href="#43" y="49.933"/><use xlink:href="#44" y="52.104"/><use xlink:href="#45" y="56.446"/><use xlink:href="#46" y="58.617"/><use xlink:href="#47" y="60.788"/><use xlink:href="#48" y="62.959"/><use xlink:href="#49" y="65.13"/></svg><svg x="7000"><use xlink:href="#a"/><use xlink:href="#b" x="15.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><use xlink:href="#22" y="67.301"/></svg><svg x="7140"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><use xlink:href="#23" y="67.301"/></svg><svg x="7280"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="c">g</text><text x="17.034" y="68.971" class="r">enius</text><text x="23.046" y="68.971" class="r">--help</text></svg><svg x="7420"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">g</text><text x="17.034" y="68.971" class="r">enius</text><text x="23.046" y="68.971" class="r">--help</text></svg><svg x="7560"><use xlink:href="#a"/><use xlink:href="#b" x="17.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">ge</text><text x="18.036" y="68.971" class="r">nius</text><text x="23.046" y="68.971" class="r">--help</text></svg><svg x="7700"><use xlink:href="#a"/><use xlink:href="#b" x="18.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">gen</text><text x="19.038" y="68.971" class="r">ius</text><text x="23.046" y="68.971" class="r">--help</text></svg><svg x="7840"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">geni</text><text x="20.04" y="68.971" class="r">us</text><text x="23.046" y="68.971" class="r">--help</text></svg><svg x="7980"><use xlink:href="#a"/><use xlink:href="#b" x="20.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">geniu</text><text x="21.042" y="68.971" class="r">s</text><text x="23.046" y="68.971" class="r">--help</text></svg><svg x="8120"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">genius</text><text x="23.046" y="68.971" class="r">--help</text></svg><svg x="8260"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><use xlink:href="#51" y="67.301"/></svg><svg x="8400"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><use xlink:href="#51" y="67.301"/></svg><svg x="8540"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><use xlink:href="#51" y="67.301"/></svg><svg x="8680"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="c">s</text></svg><svg x="8820"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="c">s</text><text x="24.048" y="68.971" class="r">earch</text><text x="30.06" y="68.971" class="r">&apos;I</text><text x="33.066" y="68.971" class="r">Met</text><text x="37.074" y="68.971" class="r">Tay</text><text x="41.082" y="68.971" class="r">Keith</text><text x="47.094" y="68.971" class="r">First&apos;</text></svg><svg x="8960"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="I">s</text><text x="24.048" y="68.971" class="r">earch</text><text x="30.06" y="68.971" class="r">&apos;I</text><text x="33.066" y="68.971" class="r">Met</text><text x="37.074" y="68.971" class="r">Tay</text><text x="41.082" y="68.971" class="r">Keith</text><text x="47.094" y="68.971" class="r">First&apos;</text></svg><svg x="9100"><use xlink:href="#a"/><use xlink:href="#b" x="24.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="I">se</text><text x="25.05" y="68.971" class="r">arch</text><text x="30.06" y="68.971" class="r">&apos;I</text><text x="33.066" y="68.971" class="r">Met</text><text x="37.074" y="68.971" class="r">Tay</text><text x="41.082" y="68.971" class="r">Keith</text><text x="47.094" y="68.971" class="r">First&apos;</text></svg><svg x="9240"><use xlink:href="#a"/><use xlink:href="#b" x="24.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="t">se</text><text x="25.05" y="68.971" class="r">arch</text><text x="30.06" y="68.971" class="r">&apos;I</text><text x="33.066" y="68.971" class="r">Met</text><text x="37.074" y="68.971" class="r">Tay</text><text x="41.082" y="68.971" class="r">Keith</text><text x="47.094" y="68.971" class="r">First&apos;</text></svg><svg x="9380"><use xlink:href="#a"/><use xlink:href="#b" x="52.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="t">search</text><text x="30.06" y="68.971" class="t">&apos;I</text><text x="33.066" y="68.971" class="t">Met</text><text x="37.074" y="68.971" class="t">Tay</text><text x="41.082" y="68.971" class="t">Keith</text><text x="47.094" y="68.971" class="t">First&apos;</text></svg><svg x="9520"><use xlink:href="#a"/><use xlink:href="#b" x="52.996" y="67.276"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#50" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="t">search</text><text x="30.06" y="68.971" class="w">&apos;I</text><text x="33.066" y="68.971" class="w">Met</text><text x="37.074" y="68.971" class="w">Tay</text><text x="41.082" y="68.971" class="w">Keith</text><text x="47.094" y="68.971" class="w">First&apos;</text></svg><svg x="9660"><use xlink:href="#a"/><use xlink:href="#b" x="38.996" y="62.934"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#52" y="62.959"/></svg><svg x="9800"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="65.105"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#52" y="62.959"/></svg><svg x="9940"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="65.105"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#19" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="21.71"/><use xlink:href="#36" y="23.881"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="28.223"/><use xlink:href="#39" y="30.394"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#49" y="60.788"/><use xlink:href="#52" y="62.959"/></svg><svg x="10080"><use xlink:href="#a"/><use xlink:href="#b" x="29.996" y="67.276"/><use xlink:href="#37"/><use xlink:href="#38" y="2.171"/><use xlink:href="#39" y="4.342"/><use xlink:href="#40" y="10.855"/><use xlink:href="#41" y="13.026"/><use xlink:href="#42" y="17.368"/><use xlink:href="#43" y="19.539"/><use xlink:href="#44" y="21.71"/><use xlink:href="#45" y="26.052"/><use xlink:href="#46" y="28.223"/><use xlink:href="#47" y="30.394"/><use xlink:href="#48" y="32.565"/><use xlink:href="#49" y="34.736"/><use xlink:href="#52" y="36.907"/><use xlink:href="#53" y="39.078"/><use xlink:href="#54" y="41.249"/><use xlink:href="#55" y="43.42"/><use xlink:href="#56" y="45.591"/><use xlink:href="#57" y="47.762"/><use xlink:href="#58" y="49.933"/><use xlink:href="#59" y="52.104"/><use xlink:href="#60" y="54.275"/><use xlink:href="#61" y="56.446"/><use xlink:href="#62" y="58.617"/><use xlink:href="#63" y="60.788"/><use xlink:href="#64" y="62.959"/><use xlink:href="#65" y="65.13"/><text x="10.02" y="68.971" class="x">&quot;is_meme_verified&quot;</text><text x="28.056" y="68.971" class="c">:</text></svg><svg x="10220"><use xlink:href="#a"/><use xlink:href="#b" x="10.996" y="67.276"/><use xlink:href="#46"/><use xlink:href="#47" y="2.171"/><use xlink:href="#48" y="4.342"/><use xlink:href="#49" y="6.513"/><use xlink:href="#52" y="8.684"/><use xlink:href="#53" y="10.855"/><use xlink:href="#54" y="13.026"/><use xlink:href="#55" y="15.197"/><use xlink:href="#56" y="17.368"/><use xlink:href="#57" y="19.539"/><use xlink:href="#58" y="21.71"/><use xlink:href="#59" y="23.881"/><use xlink:href="#60" y="26.052"/><use xlink:href="#61" y="28.223"/><use xlink:href="#62" y="30.394"/><use xlink:href="#63" y="32.565"/><use xlink:href="#64" y="34.736"/><use xlink:href="#65" y="36.907"/><use xlink:href="#66" y="39.078"/><use xlink:href="#67" y="41.249"/><use xlink:href="#68" y="43.42"/><use xlink:href="#69" y="45.591"/><use xlink:href="#70" y="47.762"/><use xlink:href="#60" y="49.933"/><use xlink:href="#71" y="52.104"/><use xlink:href="#72" y="54.275"/><use xlink:href="#73" y="56.446"/><use xlink:href="#74" y="58.617"/><use xlink:href="#75" y="60.788"/><use xlink:href="#66" y="62.959"/><use xlink:href="#67" y="65.13"/><text x="10.02" y="68.971" class="x">&quot;</text></svg><svg x="10360"><use xlink:href="#a"/><use xlink:href="#b" x="35.996" y="67.276"/><use xlink:href="#58"/><use xlink:href="#59" y="2.171"/><use xlink:href="#60" y="4.342"/><use xlink:href="#61" y="6.513"/><use xlink:href="#62" y="8.684"/><use xlink:href="#63" y="10.855"/><use xlink:href="#64" y="13.026"/><use xlink:href="#65" y="15.197"/><use xlink:href="#66" y="17.368"/><use xlink:href="#67" y="19.539"/><use xlink:href="#68" y="21.71"/><use xlink:href="#69" y="23.881"/><use xlink:href="#70" y="26.052"/><use xlink:href="#60" y="28.223"/><use xlink:href="#71" y="30.394"/><use xlink:href="#72" y="32.565"/><use xlink:href="#73" y="34.736"/><use xlink:href="#74" y="36.907"/><use xlink:href="#75" y="39.078"/><use xlink:href="#66" y="41.249"/><use xlink:href="#67" y="43.42"/><use xlink:href="#76" y="45.591"/><use xlink:href="#77" y="47.762"/><use xlink:href="#78" y="49.933"/><use xlink:href="#79" y="52.104"/><use xlink:href="#80" y="54.275"/><use xlink:href="#81" y="56.446"/><use xlink:href="#82" y="58.617"/><use xlink:href="#83" y="60.788"/><use xlink:href="#84" y="62.959"/><use xlink:href="#85" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;path&quot;</text><text x="12.024" y="68.971" class="c">:</text><text x="14.028" y="68.971" class="g">&quot;/Blac-youngsta-i-met-</text></svg><svg x="10500"><use xlink:href="#a"/><use xlink:href="#b" x="6.996" y="67.276"/><use xlink:href="#70"/><use xlink:href="#60" y="2.171"/><use xlink:href="#71" y="4.342"/><use xlink:href="#72" y="6.513"/><use xlink:href="#73" y="8.684"/><use xlink:href="#74" y="10.855"/><use xlink:href="#75" y="13.026"/><use xlink:href="#66" y="15.197"/><use xlink:href="#67" y="17.368"/><use xlink:href="#76" y="19.539"/><use xlink:href="#77" y="21.71"/><use xlink:href="#78" y="23.881"/><use xlink:href="#79" y="26.052"/><use xlink:href="#80" y="28.223"/><use xlink:href="#81" y="30.394"/><use xlink:href="#82" y="32.565"/><use xlink:href="#83" y="34.736"/><use xlink:href="#84" y="36.907"/><use xlink:href="#85" y="39.078"/><use xlink:href="#86" y="41.249"/><use xlink:href="#87" y="43.42"/><use xlink:href="#88" y="45.591"/><use xlink:href="#89" y="47.762"/><use xlink:href="#90" y="49.933"/><use xlink:href="#91" y="52.104"/><use xlink:href="#92" y="54.275"/><use xlink:href="#93" y="56.446"/><use xlink:href="#94" y="58.617"/><use xlink:href="#95" y="60.788"/><use xlink:href="#96" y="62.959"/><use xlink:href="#97" y="65.13"/><use xlink:href="#98" y="67.301"/></svg><svg x="10640"><use xlink:href="#a"/><use xlink:href="#b" x="5.996" y="67.276"/><use xlink:href="#81"/><use xlink:href="#82" y="2.171"/><use xlink:href="#83" y="4.342"/><use xlink:href="#84" y="6.513"/><use xlink:href="#85" y="8.684"/><use xlink:href="#86" y="10.855"/><use xlink:href="#87" y="13.026"/><use xlink:href="#88" y="15.197"/><use xlink:href="#89" y="17.368"/><use xlink:href="#90" y="19.539"/><use xlink:href="#91" y="21.71"/><use xlink:href="#92" y="23.881"/><use xlink:href="#93" y="26.052"/><use xlink:href="#94" y="28.223"/><use xlink:href="#95" y="30.394"/><use xlink:href="#96" y="32.565"/><use xlink:href="#97" y="34.736"/><use xlink:href="#99" y="36.907"/><use xlink:href="#100" y="39.078"/><use xlink:href="#101" y="41.249"/><use xlink:href="#102" y="43.42"/><use xlink:href="#103" y="45.591"/><use xlink:href="#97" y="47.762"/><use xlink:href="#104" y="49.933"/><use xlink:href="#105" y="52.104"/><use xlink:href="#106" y="54.275"/><use xlink:href="#107" y="56.446"/><use xlink:href="#108" y="58.617"/><use xlink:href="#109" y="60.788"/><use xlink:href="#110" y="62.959"/><use xlink:href="#97" y="65.13"/></svg><svg x="10780"><use xlink:href="#a"/><use xlink:href="#b" x="6.996" y="67.276"/><use xlink:href="#94"/><use xlink:href="#95" y="2.171"/><use xlink:href="#96" y="4.342"/><use xlink:href="#97" y="6.513"/><use xlink:href="#99" y="8.684"/><use xlink:href="#100" y="10.855"/><use xlink:href="#101" y="13.026"/><use xlink:href="#102" y="15.197"/><use xlink:href="#103" y="17.368"/><use xlink:href="#97" y="19.539"/><use xlink:href="#104" y="21.71"/><use xlink:href="#105" y="23.881"/><use xlink:href="#106" y="26.052"/><use xlink:href="#107" y="28.223"/><use xlink:href="#108" y="30.394"/><use xlink:href="#109" y="32.565"/><use xlink:href="#110" y="34.736"/><use xlink:href="#97" y="36.907"/><use xlink:href="#111" y="39.078"/><use xlink:href="#112" y="41.249"/><use xlink:href="#113" y="43.42"/><use xlink:href="#114" y="45.591"/><use xlink:href="#115" y="47.762"/><use xlink:href="#116" y="49.933"/><use xlink:href="#54" y="52.104"/><use xlink:href="#55" y="54.275"/><use xlink:href="#56" y="56.446"/><use xlink:href="#117" y="58.617"/><use xlink:href="#118" y="60.788"/><use xlink:href="#119" y="62.959"/><use xlink:href="#120" y="65.13"/><use xlink:href="#98" y="67.301"/></svg><svg x="10920"><use xlink:href="#a"/><use xlink:href="#b" x="11.996" y="67.276"/><use xlink:href="#97"/><use xlink:href="#104" y="2.171"/><use xlink:href="#105" y="4.342"/><use xlink:href="#106" y="6.513"/><use xlink:href="#107" y="8.684"/><use xlink:href="#108" y="10.855"/><use xlink:href="#109" y="13.026"/><use xlink:href="#110" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#111" y="19.539"/><use xlink:href="#112" y="21.71"/><use xlink:href="#113" y="23.881"/><use xlink:href="#114" y="26.052"/><use xlink:href="#115" y="28.223"/><use xlink:href="#116" y="30.394"/><use xlink:href="#54" y="32.565"/><use xlink:href="#55" y="34.736"/><use xlink:href="#56" y="36.907"/><use xlink:href="#117" y="39.078"/><use xlink:href="#118" y="41.249"/><use xlink:href="#119" y="43.42"/><use xlink:href="#120" y="45.591"/><use xlink:href="#121" y="47.762"/><use xlink:href="#122" y="49.933"/><use xlink:href="#123" y="52.104"/><use xlink:href="#124" y="54.275"/><use xlink:href="#85" y="56.446"/><use xlink:href="#125" y="58.617"/><use xlink:href="#87" y="60.788"/><use xlink:href="#126" y="62.959"/><use xlink:href="#127" y="65.13"/><text x="8.016" y="68.971" class="x">&quot;id&quot;</text></svg><svg x="11060"><use xlink:href="#a"/><use xlink:href="#b" x="85.996" y="67.276"/><use xlink:href="#115"/><use xlink:href="#116" y="2.171"/><use xlink:href="#54" y="4.342"/><use xlink:href="#55" y="6.513"/><use xlink:href="#56" y="8.684"/><use xlink:href="#117" y="10.855"/><use xlink:href="#118" y="13.026"/><use xlink:href="#119" y="15.197"/><use xlink:href="#120" y="17.368"/><use xlink:href="#121" y="19.539"/><use xlink:href="#122" y="21.71"/><use xlink:href="#123" y="23.881"/><use xlink:href="#124" y="26.052"/><use xlink:href="#85" y="28.223"/><use xlink:href="#125" y="30.394"/><use xlink:href="#87" y="32.565"/><use xlink:href="#126" y="34.736"/><use xlink:href="#127" y="36.907"/><use xlink:href="#128" y="39.078"/><use xlink:href="#129" y="41.249"/><use xlink:href="#93" y="43.42"/><use xlink:href="#130" y="45.591"/><use xlink:href="#131" y="47.762"/><use xlink:href="#132" y="49.933"/><use xlink:href="#97" y="52.104"/><use xlink:href="#100" y="54.275"/><use xlink:href="#133" y="56.446"/><use xlink:href="#134" y="58.617"/><use xlink:href="#135" y="60.788"/><use xlink:href="#97" y="62.959"/><use xlink:href="#136" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;song_art_image_thumbnail_url&quot;</text><text x="36.072" y="68.971" class="c">:</text><text x="38.076" y="68.971" class="g">&quot;https://images.genius.com/a17a98ff7092934eb97f5</text></svg><svg x="11200"><use xlink:href="#a"/><use xlink:href="#b" x="5.996" y="67.276"/><use xlink:href="#87"/><use xlink:href="#126" y="2.171"/><use xlink:href="#127" y="4.342"/><use xlink:href="#128" y="6.513"/><use xlink:href="#129" y="8.684"/><use xlink:href="#93" y="10.855"/><use xlink:href="#130" y="13.026"/><use xlink:href="#131" y="15.197"/><use xlink:href="#132" y="17.368"/><use xlink:href="#97" y="19.539"/><use xlink:href="#100" y="21.71"/><use xlink:href="#133" y="23.881"/><use xlink:href="#134" y="26.052"/><use xlink:href="#135" y="28.223"/><use xlink:href="#97" y="30.394"/><use xlink:href="#136" y="32.565"/><use xlink:href="#137" y="34.736"/><use xlink:href="#138" y="36.907"/><use xlink:href="#107" y="39.078"/><use xlink:href="#108" y="41.249"/><use xlink:href="#139" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#140" y="47.762"/><use xlink:href="#141" y="49.933"/><use xlink:href="#142" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#116" y="58.617"/><use xlink:href="#54" y="60.788"/><use xlink:href="#55" y="62.959"/><use xlink:href="#56" y="65.13"/></svg><svg x="11340"><use xlink:href="#a"/><use xlink:href="#b" x="46.996" y="67.276"/><use xlink:href="#97"/><use xlink:href="#100" y="2.171"/><use xlink:href="#133" y="4.342"/><use xlink:href="#134" y="6.513"/><use xlink:href="#135" y="8.684"/><use xlink:href="#97" y="10.855"/><use xlink:href="#136" y="13.026"/><use xlink:href="#137" y="15.197"/><use xlink:href="#138" y="17.368"/><use xlink:href="#107" y="19.539"/><use xlink:href="#108" y="21.71"/><use xlink:href="#139" y="23.881"/><use xlink:href="#97" y="26.052"/><use xlink:href="#140" y="28.223"/><use xlink:href="#141" y="30.394"/><use xlink:href="#142" y="32.565"/><use xlink:href="#114" y="34.736"/><use xlink:href="#115" y="36.907"/><use xlink:href="#116" y="39.078"/><use xlink:href="#54" y="41.249"/><use xlink:href="#55" y="43.42"/><use xlink:href="#56" y="45.591"/><use xlink:href="#117" y="47.762"/><use xlink:href="#143" y="49.933"/><use xlink:href="#119" y="52.104"/><use xlink:href="#144" y="54.275"/><use xlink:href="#145" y="56.446"/><use xlink:href="#146" y="58.617"/><use xlink:href="#147" y="60.788"/><use xlink:href="#148" y="62.959"/><use xlink:href="#85" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;path&quot;</text><text x="12.024" y="68.971" class="c">:</text><text x="14.028" y="68.971" class="g">&quot;/Mr-rap-reviews-mr-rap-reviews-s</text></svg><svg x="11480"><use xlink:href="#a"/><use xlink:href="#b" x="32.996" y="67.276"/><use xlink:href="#139"/><use xlink:href="#97" y="2.171"/><use xlink:href="#140" y="4.342"/><use xlink:href="#141" y="6.513"/><use xlink:href="#142" y="8.684"/><use xlink:href="#114" y="10.855"/><use xlink:href="#115" y="13.026"/><use xlink:href="#116" y="15.197"/><use xlink:href="#54" y="17.368"/><use xlink:href="#55" y="19.539"/><use xlink:href="#56" y="21.71"/><use xlink:href="#117" y="23.881"/><use xlink:href="#143" y="26.052"/><use xlink:href="#119" y="28.223"/><use xlink:href="#144" y="30.394"/><use xlink:href="#145" y="32.565"/><use xlink:href="#146" y="34.736"/><use xlink:href="#147" y="36.907"/><use xlink:href="#148" y="39.078"/><use xlink:href="#85" y="41.249"/><use xlink:href="#149" y="43.42"/><use xlink:href="#87" y="45.591"/><use xlink:href="#150" y="47.762"/><use xlink:href="#151" y="49.933"/><use xlink:href="#152" y="52.104"/><use xlink:href="#153" y="54.275"/><use xlink:href="#93" y="56.446"/><use xlink:href="#130" y="58.617"/><use xlink:href="#154" y="60.788"/><use xlink:href="#155" y="62.959"/><use xlink:href="#97" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;release_date_components&quot;</text><text x="31.062" y="68.971" class="c">:</text></svg><svg x="11620"><use xlink:href="#a"/><use xlink:href="#b" x="27.996" y="67.276"/><use xlink:href="#119"/><use xlink:href="#144" y="2.171"/><use xlink:href="#145" y="4.342"/><use xlink:href="#146" y="6.513"/><use xlink:href="#147" y="8.684"/><use xlink:href="#148" y="10.855"/><use xlink:href="#85" y="13.026"/><use xlink:href="#149" y="15.197"/><use xlink:href="#87" y="17.368"/><use xlink:href="#150" y="19.539"/><use xlink:href="#151" y="21.71"/><use xlink:href="#152" y="23.881"/><use xlink:href="#153" y="26.052"/><use xlink:href="#93" y="28.223"/><use xlink:href="#130" y="30.394"/><use xlink:href="#154" y="32.565"/><use xlink:href="#155" y="34.736"/><use xlink:href="#97" y="36.907"/><use xlink:href="#100" y="39.078"/><use xlink:href="#101" y="41.249"/><use xlink:href="#102" y="43.42"/><use xlink:href="#103" y="45.591"/><use xlink:href="#97" y="47.762"/><use xlink:href="#104" y="49.933"/><use xlink:href="#156" y="52.104"/><use xlink:href="#157" y="54.275"/><use xlink:href="#107" y="56.446"/><use xlink:href="#108" y="58.617"/><use xlink:href="#139" y="60.788"/><use xlink:href="#97" y="62.959"/><use xlink:href="#158" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;title_with_featured&quot;</text><text x="27.054" y="68.971" class="c">:</text></svg><svg x="11760"><use xlink:href="#a"/><use xlink:href="#b" x="108.996" y="67.276"/><use xlink:href="#153"/><use xlink:href="#93" y="2.171"/><use xlink:href="#130" y="4.342"/><use xlink:href="#154" y="6.513"/><use xlink:href="#155" y="8.684"/><use xlink:href="#97" y="10.855"/><use xlink:href="#100" y="13.026"/><use xlink:href="#101" y="15.197"/><use xlink:href="#102" y="17.368"/><use xlink:href="#103" y="19.539"/><use xlink:href="#97" y="21.71"/><use xlink:href="#104" y="23.881"/><use xlink:href="#156" y="26.052"/><use xlink:href="#157" y="28.223"/><use xlink:href="#107" y="30.394"/><use xlink:href="#108" y="32.565"/><use xlink:href="#139" y="34.736"/><use xlink:href="#97" y="36.907"/><use xlink:href="#158" y="39.078"/><use xlink:href="#159" y="41.249"/><use xlink:href="#160" y="43.42"/><use xlink:href="#114" y="45.591"/><use xlink:href="#115" y="47.762"/><use xlink:href="#116" y="49.933"/><use xlink:href="#54" y="52.104"/><use xlink:href="#55" y="54.275"/><use xlink:href="#56" y="56.446"/><use xlink:href="#117" y="58.617"/><use xlink:href="#161" y="60.788"/><use xlink:href="#119" y="62.959"/><use xlink:href="#162" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;header_image_thumbnail_url&quot;</text><text x="34.068" y="68.971" class="c">:</text><text x="36.072" y="68.971" class="g">&quot;https://images.genius.com/067bfa193b0d39ae5a5598c711aa8641.300x300x1.png</text></svg><svg x="11900"><use xlink:href="#a"/><use xlink:href="#b" x="60.996" y="67.276"/><use xlink:href="#97"/><use xlink:href="#104" y="2.171"/><use xlink:href="#156" y="4.342"/><use xlink:href="#157" y="6.513"/><use xlink:href="#107" y="8.684"/><use xlink:href="#108" y="10.855"/><use xlink:href="#139" y="13.026"/><use xlink:href="#97" y="15.197"/><use xlink:href="#158" y="17.368"/><use xlink:href="#159" y="19.539"/><use xlink:href="#160" y="21.71"/><use xlink:href="#114" y="23.881"/><use xlink:href="#115" y="26.052"/><use xlink:href="#116" y="28.223"/><use xlink:href="#54" y="30.394"/><use xlink:href="#55" y="32.565"/><use xlink:href="#56" y="34.736"/><use xlink:href="#117" y="36.907"/><use xlink:href="#161" y="39.078"/><use xlink:href="#119" y="41.249"/><use xlink:href="#162" y="43.42"/><use xlink:href="#145" y="45.591"/><use xlink:href="#146" y="47.762"/><use xlink:href="#163" y="49.933"/><use xlink:href="#148" y="52.104"/><use xlink:href="#85" y="54.275"/><use xlink:href="#164" y="56.446"/><use xlink:href="#87" y="58.617"/><use xlink:href="#150" y="60.788"/><use xlink:href="#151" y="62.959"/><use xlink:href="#152" y="65.13"/><text x="8.016" y="68.971" class="x">&quot;image_url&quot;</text><text x="19.038" y="68.971" class="c">:</text><text x="21.042" y="68.971" class="g">&quot;https://images.genius.com/067bfa193b0d3</text></svg><svg x="12040"><use xlink:href="#a"/><use xlink:href="#b" x="26.996" y="67.276"/><use xlink:href="#116"/><use xlink:href="#54" y="2.171"/><use xlink:href="#55" y="4.342"/><use xlink:href="#56" y="6.513"/><use xlink:href="#117" y="8.684"/><use xlink:href="#161" y="10.855"/><use xlink:href="#119" y="13.026"/><use xlink:href="#162" y="15.197"/><use xlink:href="#145" y="17.368"/><use xlink:href="#146" y="19.539"/><use xlink:href="#163" y="21.71"/><use xlink:href="#148" y="23.881"/><use xlink:href="#85" y="26.052"/><use xlink:href="#164" y="28.223"/><use xlink:href="#87" y="30.394"/><use xlink:href="#150" y="32.565"/><use xlink:href="#151" y="34.736"/><use xlink:href="#152" y="36.907"/><use xlink:href="#153" y="39.078"/><use xlink:href="#93" y="41.249"/><use xlink:href="#130" y="43.42"/><use xlink:href="#154" y="45.591"/><use xlink:href="#155" y="47.762"/><use xlink:href="#97" y="49.933"/><use xlink:href="#100" y="52.104"/><use xlink:href="#165" y="54.275"/><use xlink:href="#166" y="56.446"/><use xlink:href="#103" y="58.617"/><use xlink:href="#97" y="60.788"/><use xlink:href="#167" y="62.959"/><use xlink:href="#156" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;song_art_image_url&quot;</text><text x="26.052" y="68.971" class="c">:</text></svg><svg x="12180"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#87"/><use xlink:href="#150" y="2.171"/><use xlink:href="#151" y="4.342"/><use xlink:href="#152" y="6.513"/><use xlink:href="#153" y="8.684"/><use xlink:href="#93" y="10.855"/><use xlink:href="#130" y="13.026"/><use xlink:href="#154" y="15.197"/><use xlink:href="#155" y="17.368"/><use xlink:href="#97" y="19.539"/><use xlink:href="#100" y="21.71"/><use xlink:href="#165" y="23.881"/><use xlink:href="#166" y="26.052"/><use xlink:href="#103" y="28.223"/><use xlink:href="#97" y="30.394"/><use xlink:href="#167" y="32.565"/><use xlink:href="#156" y="34.736"/><use xlink:href="#157" y="36.907"/><use xlink:href="#107" y="39.078"/><use xlink:href="#108" y="41.249"/><use xlink:href="#139" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#168" y="47.762"/><use xlink:href="#169" y="49.933"/><use xlink:href="#170" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#116" y="58.617"/><use xlink:href="#54" y="60.788"/><use xlink:href="#55" y="62.959"/><use xlink:href="#56" y="65.13"/><use xlink:href="#117" y="67.301"/></svg><svg x="12320"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="67.276"/><use xlink:href="#100"/><use xlink:href="#165" y="2.171"/><use xlink:href="#166" y="4.342"/><use xlink:href="#103" y="6.513"/><use xlink:href="#97" y="8.684"/><use xlink:href="#167" y="10.855"/><use xlink:href="#156" y="13.026"/><use xlink:href="#157" y="15.197"/><use xlink:href="#107" y="17.368"/><use xlink:href="#108" y="19.539"/><use xlink:href="#139" y="21.71"/><use xlink:href="#97" y="23.881"/><use xlink:href="#168" y="26.052"/><use xlink:href="#169" y="28.223"/><use xlink:href="#170" y="30.394"/><use xlink:href="#114" y="32.565"/><use xlink:href="#115" y="34.736"/><use xlink:href="#116" y="36.907"/><use xlink:href="#54" y="39.078"/><use xlink:href="#55" y="41.249"/><use xlink:href="#56" y="43.42"/><use xlink:href="#117" y="45.591"/><use xlink:href="#171" y="47.762"/><use xlink:href="#119" y="49.933"/><use xlink:href="#172" y="52.104"/><use xlink:href="#173" y="54.275"/><use xlink:href="#174" y="56.446"/><use xlink:href="#175" y="58.617"/><use xlink:href="#176" y="60.788"/><use xlink:href="#85" y="62.959"/><use xlink:href="#177" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;primary_artist&quot;</text><text x="22.044" y="68.971" class="c">:</text></svg><svg x="12460"><use xlink:href="#a"/><use xlink:href="#b" x="13.996" y="67.276"/><use xlink:href="#168"/><use xlink:href="#169" y="2.171"/><use xlink:href="#170" y="4.342"/><use xlink:href="#114" y="6.513"/><use xlink:href="#115" y="8.684"/><use xlink:href="#116" y="10.855"/><use xlink:href="#54" y="13.026"/><use xlink:href="#55" y="15.197"/><use xlink:href="#56" y="17.368"/><use xlink:href="#117" y="19.539"/><use xlink:href="#171" y="21.71"/><use xlink:href="#119" y="23.881"/><use xlink:href="#172" y="26.052"/><use xlink:href="#173" y="28.223"/><use xlink:href="#174" y="30.394"/><use xlink:href="#175" y="32.565"/><use xlink:href="#176" y="34.736"/><use xlink:href="#85" y="36.907"/><use xlink:href="#177" y="39.078"/><use xlink:href="#87" y="41.249"/><use xlink:href="#178" y="43.42"/><use xlink:href="#179" y="45.591"/><use xlink:href="#180" y="47.762"/><use xlink:href="#181" y="49.933"/><use xlink:href="#93" y="52.104"/><use xlink:href="#130" y="54.275"/><use xlink:href="#182" y="56.446"/><use xlink:href="#183" y="58.617"/><use xlink:href="#97" y="60.788"/><use xlink:href="#100" y="62.959"/><use xlink:href="#184" y="65.13"/><text x="8.016" y="68.971" class="x">&quot;month</text></svg><svg x="12600"><use xlink:href="#a"/><use xlink:href="#b" x="42.996" y="67.276"/><use xlink:href="#172"/><use xlink:href="#173" y="2.171"/><use xlink:href="#174" y="4.342"/><use xlink:href="#175" y="6.513"/><use xlink:href="#176" y="8.684"/><use xlink:href="#85" y="10.855"/><use xlink:href="#177" y="13.026"/><use xlink:href="#87" y="15.197"/><use xlink:href="#178" y="17.368"/><use xlink:href="#179" y="19.539"/><use xlink:href="#180" y="21.71"/><use xlink:href="#181" y="23.881"/><use xlink:href="#93" y="26.052"/><use xlink:href="#130" y="28.223"/><use xlink:href="#182" y="30.394"/><use xlink:href="#183" y="32.565"/><use xlink:href="#97" y="34.736"/><use xlink:href="#100" y="36.907"/><use xlink:href="#184" y="39.078"/><use xlink:href="#185" y="41.249"/><use xlink:href="#186" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#187" y="47.762"/><use xlink:href="#188" y="49.933"/><use xlink:href="#189" y="52.104"/><use xlink:href="#107" y="54.275"/><use xlink:href="#108" y="56.446"/><use xlink:href="#139" y="58.617"/><use xlink:href="#97" y="60.788"/><use xlink:href="#190" y="62.959"/><use xlink:href="#191" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;url&quot;</text><text x="11.022" y="68.971" class="c">:</text><text x="13.026" y="68.971" class="g">&quot;https://genius.com/Co-cash-an</text></svg><svg x="12740"><use xlink:href="#a"/><use xlink:href="#b" x="8.996" y="67.276"/><use xlink:href="#130"/><use xlink:href="#182" y="2.171"/><use xlink:href="#183" y="4.342"/><use xlink:href="#97" y="6.513"/><use xlink:href="#100" y="8.684"/><use xlink:href="#184" y="10.855"/><use xlink:href="#185" y="13.026"/><use xlink:href="#186" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#187" y="19.539"/><use xlink:href="#188" y="21.71"/><use xlink:href="#189" y="23.881"/><use xlink:href="#107" y="26.052"/><use xlink:href="#108" y="28.223"/><use xlink:href="#139" y="30.394"/><use xlink:href="#97" y="32.565"/><use xlink:href="#190" y="34.736"/><use xlink:href="#191" y="36.907"/><use xlink:href="#192" y="39.078"/><use xlink:href="#114" y="41.249"/><use xlink:href="#115" y="43.42"/><use xlink:href="#116" y="45.591"/><use xlink:href="#54" y="47.762"/><use xlink:href="#55" y="49.933"/><use xlink:href="#56" y="52.104"/><use xlink:href="#193" y="54.275"/><use xlink:href="#194" y="56.446"/><use xlink:href="#119" y="58.617"/><use xlink:href="#195" y="60.788"/><use xlink:href="#196" y="62.959"/><use xlink:href="#197" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;id</text></svg><svg x="12880"><use xlink:href="#a"/><use xlink:href="#b" x="27.996" y="67.276"/><use xlink:href="#189"/><use xlink:href="#107" y="2.171"/><use xlink:href="#108" y="4.342"/><use xlink:href="#139" y="6.513"/><use xlink:href="#97" y="8.684"/><use xlink:href="#190" y="10.855"/><use xlink:href="#191" y="13.026"/><use xlink:href="#192" y="15.197"/><use xlink:href="#114" y="17.368"/><use xlink:href="#115" y="19.539"/><use xlink:href="#116" y="21.71"/><use xlink:href="#54" y="23.881"/><use xlink:href="#55" y="26.052"/><use xlink:href="#56" y="28.223"/><use xlink:href="#193" y="30.394"/><use xlink:href="#194" y="32.565"/><use xlink:href="#119" y="34.736"/><use xlink:href="#195" y="36.907"/><use xlink:href="#196" y="39.078"/><use xlink:href="#197" y="41.249"/><use xlink:href="#198" y="43.42"/><use xlink:href="#199" y="45.591"/><use xlink:href="#85" y="47.762"/><use xlink:href="#200" y="49.933"/><use xlink:href="#87" y="52.104"/><use xlink:href="#201" y="54.275"/><use xlink:href="#202" y="56.446"/><use xlink:href="#203" y="58.617"/><use xlink:href="#204" y="60.788"/><use xlink:href="#205" y="62.959"/><use xlink:href="#206" y="65.13"/><use xlink:href="#94" y="67.301"/></svg><svg x="13020"><use xlink:href="#a"/><use xlink:href="#b" x="10.996" y="67.276"/><use xlink:href="#56"/><use xlink:href="#193" y="2.171"/><use xlink:href="#194" y="4.342"/><use xlink:href="#119" y="6.513"/><use xlink:href="#195" y="8.684"/><use xlink:href="#196" y="10.855"/><use xlink:href="#197" y="13.026"/><use xlink:href="#198" y="15.197"/><use xlink:href="#199" y="17.368"/><use xlink:href="#85" y="19.539"/><use xlink:href="#200" y="21.71"/><use xlink:href="#87" y="23.881"/><use xlink:href="#201" y="26.052"/><use xlink:href="#202" y="28.223"/><use xlink:href="#203" y="30.394"/><use xlink:href="#204" y="32.565"/><use xlink:href="#205" y="34.736"/><use xlink:href="#206" y="36.907"/><use xlink:href="#94" y="39.078"/><use xlink:href="#207" y="41.249"/><use xlink:href="#208" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#100" y="47.762"/><use xlink:href="#209" y="49.933"/><use xlink:href="#210" y="52.104"/><use xlink:href="#211" y="54.275"/><use xlink:href="#97" y="56.446"/><use xlink:href="#212" y="58.617"/><use xlink:href="#213" y="60.788"/><use xlink:href="#214" y="62.959"/><use xlink:href="#107" y="65.13"/><text x="8.016" y="68.971" class="x">&quot;ho</text></svg><svg x="13160"><use xlink:href="#a"/><use xlink:href="#b" x="43.996" y="67.276"/><use xlink:href="#204"/><use xlink:href="#205" y="2.171"/><use xlink:href="#206" y="4.342"/><use xlink:href="#94" y="6.513"/><use xlink:href="#207" y="8.684"/><use xlink:href="#208" y="10.855"/><use xlink:href="#97" y="13.026"/><use xlink:href="#100" y="15.197"/><use xlink:href="#209" y="17.368"/><use xlink:href="#210" y="19.539"/><use xlink:href="#211" y="21.71"/><use xlink:href="#97" y="23.881"/><use xlink:href="#212" y="26.052"/><use xlink:href="#213" y="28.223"/><use xlink:href="#214" y="30.394"/><use xlink:href="#107" y="32.565"/><use xlink:href="#108" y="34.736"/><use xlink:href="#110" y="36.907"/><use xlink:href="#97" y="39.078"/><use xlink:href="#215" y="41.249"/><use xlink:href="#216" y="43.42"/><use xlink:href="#217" y="45.591"/><use xlink:href="#114" y="47.762"/><use xlink:href="#115" y="49.933"/><use xlink:href="#116" y="52.104"/><use xlink:href="#54" y="54.275"/><use xlink:href="#55" y="56.446"/><use xlink:href="#56" y="58.617"/><use xlink:href="#218" y="60.788"/><use xlink:href="#219" y="62.959"/><use xlink:href="#119" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;full_title&quot;</text><text x="18.036" y="68.971" class="c">:</text><text x="20.04" y="68.971" class="g">&quot;No</text><text x="24.048" y="68.971" class="g">discussion</text><text x="35.07" y="68.971" class="g">by Draxo</text></svg><svg x="13300"><use xlink:href="#a"/><use xlink:href="#b" x="8.996" y="67.276"/><use xlink:href="#211"/><use xlink:href="#97" y="2.171"/><use xlink:href="#212" y="4.342"/><use xlink:href="#213" y="6.513"/><use xlink:href="#214" y="8.684"/><use xlink:href="#107" y="10.855"/><use xlink:href="#108" y="13.026"/><use xlink:href="#110" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#215" y="19.539"/><use xlink:href="#216" y="21.71"/><use xlink:href="#217" y="23.881"/><use xlink:href="#114" y="26.052"/><use xlink:href="#115" y="28.223"/><use xlink:href="#116" y="30.394"/><use xlink:href="#54" y="32.565"/><use xlink:href="#55" y="34.736"/><use xlink:href="#56" y="36.907"/><use xlink:href="#218" y="39.078"/><use xlink:href="#219" y="41.249"/><use xlink:href="#119" y="43.42"/><use xlink:href="#220" y="45.591"/><use xlink:href="#221" y="47.762"/><use xlink:href="#222" y="49.933"/><use xlink:href="#223" y="52.104"/><use xlink:href="#224" y="54.275"/><use xlink:href="#85" y="56.446"/><use xlink:href="#225" y="58.617"/><use xlink:href="#87" y="60.788"/><use xlink:href="#226" y="62.959"/><use xlink:href="#179" y="65.13"/><use xlink:href="#227" y="67.301"/></svg><svg x="13440"><use xlink:href="#a"/><use xlink:href="#b" x="25.996" y="67.276"/><use xlink:href="#217"/><use xlink:href="#114" y="2.171"/><use xlink:href="#115" y="4.342"/><use xlink:href="#116" y="6.513"/><use xlink:href="#54" y="8.684"/><use xlink:href="#55" y="10.855"/><use xlink:href="#56" y="13.026"/><use xlink:href="#218" y="15.197"/><use xlink:href="#219" y="17.368"/><use xlink:href="#119" y="19.539"/><use xlink:href="#220" y="21.71"/><use xlink:href="#221" y="23.881"/><use xlink:href="#222" y="26.052"/><use xlink:href="#223" y="28.223"/><use xlink:href="#224" y="30.394"/><use xlink:href="#85" y="32.565"/><use xlink:href="#225" y="34.736"/><use xlink:href="#87" y="36.907"/><use xlink:href="#226" y="39.078"/><use xlink:href="#179" y="41.249"/><use xlink:href="#228" y="43.42"/><use xlink:href="#181" y="45.591"/><use xlink:href="#93" y="47.762"/><use xlink:href="#130" y="49.933"/><use xlink:href="#229" y="52.104"/><use xlink:href="#230" y="54.275"/><use xlink:href="#97" y="56.446"/><use xlink:href="#231" y="58.617"/><use xlink:href="#232" y="60.788"/><use xlink:href="#107" y="62.959"/><use xlink:href="#108" y="65.13"/><text x="8.016" y="68.971" class="x">&quot;unreviewed_annota</text></svg><svg x="13580"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="67.276"/><use xlink:href="#225"/><use xlink:href="#87" y="2.171"/><use xlink:href="#226" y="4.342"/><use xlink:href="#179" y="6.513"/><use xlink:href="#228" y="8.684"/><use xlink:href="#181" y="10.855"/><use xlink:href="#93" y="13.026"/><use xlink:href="#130" y="15.197"/><use xlink:href="#229" y="17.368"/><use xlink:href="#230" y="19.539"/><use xlink:href="#97" y="21.71"/><use xlink:href="#231" y="23.881"/><use xlink:href="#232" y="26.052"/><use xlink:href="#107" y="28.223"/><use xlink:href="#108" y="30.394"/><use xlink:href="#233" y="32.565"/><use xlink:href="#97" y="34.736"/><use xlink:href="#234" y="36.907"/><use xlink:href="#235" y="39.078"/><use xlink:href="#236" y="41.249"/><use xlink:href="#114" y="43.42"/><use xlink:href="#115" y="45.591"/><use xlink:href="#116" y="47.762"/><use xlink:href="#54" y="49.933"/><use xlink:href="#55" y="52.104"/><use xlink:href="#56" y="54.275"/><use xlink:href="#117" y="56.446"/><use xlink:href="#237" y="58.617"/><use xlink:href="#59" y="60.788"/><use xlink:href="#60" y="62.959"/><use xlink:href="#238" y="65.13"/><text x="10.02" y="68.971" class="x">&quot;header_image</text></svg><svg x="13720"><use xlink:href="#a"/><use xlink:href="#b" x="78.996" y="67.276"/><use xlink:href="#231"/><use xlink:href="#232" y="2.171"/><use xlink:href="#107" y="4.342"/><use xlink:href="#108" y="6.513"/><use xlink:href="#233" y="8.684"/><use xlink:href="#97" y="10.855"/><use xlink:href="#234" y="13.026"/><use xlink:href="#235" y="15.197"/><use xlink:href="#236" y="17.368"/><use xlink:href="#114" y="19.539"/><use xlink:href="#115" y="21.71"/><use xlink:href="#116" y="23.881"/><use xlink:href="#54" y="26.052"/><use xlink:href="#55" y="28.223"/><use xlink:href="#56" y="30.394"/><use xlink:href="#117" y="32.565"/><use xlink:href="#237" y="34.736"/><use xlink:href="#59" y="36.907"/><use xlink:href="#60" y="39.078"/><use xlink:href="#238" y="41.249"/><use xlink:href="#239" y="43.42"/><use xlink:href="#240" y="45.591"/><use xlink:href="#241" y="47.762"/><use xlink:href="#242" y="49.933"/><use xlink:href="#66" y="52.104"/><use xlink:href="#67" y="54.275"/><use xlink:href="#243" y="56.446"/><use xlink:href="#244" y="58.617"/><use xlink:href="#70" y="60.788"/><use xlink:href="#60" y="62.959"/><use xlink:href="#245" y="65.13"/><text x="10.02" y="68.971" class="x">&quot;header_image_url&quot;</text><text x="28.056" y="68.971" class="c">:</text><text x="30.06" y="68.971" class="g">&quot;https://images.genius.com/08df698891c71046d46dca</text></svg><svg x="13860"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="67.276"/><use xlink:href="#116"/><use xlink:href="#54" y="2.171"/><use xlink:href="#55" y="4.342"/><use xlink:href="#56" y="6.513"/><use xlink:href="#117" y="8.684"/><use xlink:href="#237" y="10.855"/><use xlink:href="#59" y="13.026"/><use xlink:href="#60" y="15.197"/><use xlink:href="#238" y="17.368"/><use xlink:href="#239" y="19.539"/><use xlink:href="#240" y="21.71"/><use xlink:href="#241" y="23.881"/><use xlink:href="#242" y="26.052"/><use xlink:href="#66" y="28.223"/><use xlink:href="#67" y="30.394"/><use xlink:href="#243" y="32.565"/><use xlink:href="#244" y="34.736"/><use xlink:href="#70" y="36.907"/><use xlink:href="#60" y="39.078"/><use xlink:href="#245" y="41.249"/><use xlink:href="#246" y="43.42"/><use xlink:href="#247" y="45.591"/><use xlink:href="#248" y="47.762"/><use xlink:href="#66" y="49.933"/><use xlink:href="#249" y="52.104"/><use xlink:href="#250" y="54.275"/><use xlink:href="#251" y="56.446"/><use xlink:href="#78" y="58.617"/><use xlink:href="#79" y="60.788"/><use xlink:href="#252" y="62.959"/><use xlink:href="#253" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;header_image_url</text></svg><svg x="14000"><use xlink:href="#a"/><use xlink:href="#b" x="8.996" y="67.276"/><use xlink:href="#240"/><use xlink:href="#241" y="2.171"/><use xlink:href="#242" y="4.342"/><use xlink:href="#66" y="6.513"/><use xlink:href="#67" y="8.684"/><use xlink:href="#243" y="10.855"/><use xlink:href="#244" y="13.026"/><use xlink:href="#70" y="15.197"/><use xlink:href="#60" y="17.368"/><use xlink:href="#245" y="19.539"/><use xlink:href="#246" y="21.71"/><use xlink:href="#247" y="23.881"/><use xlink:href="#248" y="26.052"/><use xlink:href="#66" y="28.223"/><use xlink:href="#249" y="30.394"/><use xlink:href="#250" y="32.565"/><use xlink:href="#251" y="34.736"/><use xlink:href="#78" y="36.907"/><use xlink:href="#79" y="39.078"/><use xlink:href="#252" y="41.249"/><use xlink:href="#253" y="43.42"/><use xlink:href="#254" y="45.591"/><use xlink:href="#255" y="47.762"/><use xlink:href="#256" y="49.933"/><use xlink:href="#85" y="52.104"/><use xlink:href="#257" y="54.275"/><use xlink:href="#87" y="56.446"/><use xlink:href="#258" y="58.617"/><use xlink:href="#259" y="60.788"/><use xlink:href="#260" y="62.959"/><use xlink:href="#261" y="65.13"/><use xlink:href="#227" y="67.301"/></svg><svg x="14140"><use xlink:href="#a"/><use xlink:href="#b" x="91.996" y="67.276"/><use xlink:href="#248"/><use xlink:href="#66" y="2.171"/><use xlink:href="#249" y="4.342"/><use xlink:href="#250" y="6.513"/><use xlink:href="#251" y="8.684"/><use xlink:href="#78" y="10.855"/><use xlink:href="#79" y="13.026"/><use xlink:href="#252" y="15.197"/><use xlink:href="#253" y="17.368"/><use xlink:href="#254" y="19.539"/><use xlink:href="#255" y="21.71"/><use xlink:href="#256" y="23.881"/><use xlink:href="#85" y="26.052"/><use xlink:href="#257" y="28.223"/><use xlink:href="#87" y="30.394"/><use xlink:href="#258" y="32.565"/><use xlink:href="#259" y="34.736"/><use xlink:href="#260" y="36.907"/><use xlink:href="#261" y="39.078"/><use xlink:href="#93" y="41.249"/><use xlink:href="#130" y="43.42"/><use xlink:href="#262" y="45.591"/><use xlink:href="#263" y="47.762"/><use xlink:href="#97" y="49.933"/><use xlink:href="#100" y="52.104"/><use xlink:href="#184" y="54.275"/><use xlink:href="#185" y="56.446"/><use xlink:href="#264" y="58.617"/><use xlink:href="#97" y="60.788"/><use xlink:href="#265" y="62.959"/><use xlink:href="#266" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;song_art_image_url&quot;</text><text x="26.052" y="68.971" class="c">:</text><text x="28.056" y="68.971" class="g">&quot;https://images.genius.com/13a0fba4ca583cb6d569118c15052db5.986x</text></svg><svg x="14280"><use xlink:href="#a"/><use xlink:href="#b" x="32.996" y="67.276"/><use xlink:href="#258"/><use xlink:href="#259" y="2.171"/><use xlink:href="#260" y="4.342"/><use xlink:href="#261" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#262" y="13.026"/><use xlink:href="#263" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#184" y="21.71"/><use xlink:href="#185" y="23.881"/><use xlink:href="#264" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#265" y="30.394"/><use xlink:href="#266" y="32.565"/><use xlink:href="#267" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#139" y="41.249"/><use xlink:href="#97" y="43.42"/><use xlink:href="#268" y="45.591"/><use xlink:href="#269" y="47.762"/><use xlink:href="#270" y="49.933"/><use xlink:href="#114" y="52.104"/><use xlink:href="#115" y="54.275"/><use xlink:href="#116" y="56.446"/><use xlink:href="#54" y="58.617"/><use xlink:href="#55" y="60.788"/><use xlink:href="#56" y="62.959"/><use xlink:href="#218" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;api_path&quot;</text><text x="16.032" y="68.971" class="c">:</text><text x="18.036" y="68.971" class="g">&quot;/songs/4050859</text></svg><svg x="14420"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="67.276"/><use xlink:href="#184"/><use xlink:href="#185" y="2.171"/><use xlink:href="#264" y="4.342"/><use xlink:href="#97" y="6.513"/><use xlink:href="#265" y="8.684"/><use xlink:href="#266" y="10.855"/><use xlink:href="#267" y="13.026"/><use xlink:href="#107" y="15.197"/><use xlink:href="#108" y="17.368"/><use xlink:href="#139" y="19.539"/><use xlink:href="#97" y="21.71"/><use xlink:href="#268" y="23.881"/><use xlink:href="#269" y="26.052"/><use xlink:href="#270" y="28.223"/><use xlink:href="#114" y="30.394"/><use xlink:href="#115" y="32.565"/><use xlink:href="#116" y="34.736"/><use xlink:href="#54" y="36.907"/><use xlink:href="#55" y="39.078"/><use xlink:href="#56" y="41.249"/><use xlink:href="#218" y="43.42"/><use xlink:href="#271" y="45.591"/><use xlink:href="#119" y="47.762"/><use xlink:href="#272" y="49.933"/><use xlink:href="#273" y="52.104"/><use xlink:href="#274" y="54.275"/><use xlink:href="#275" y="56.446"/><use xlink:href="#276" y="58.617"/><use xlink:href="#85" y="60.788"/><use xlink:href="#277" y="62.959"/><use xlink:href="#87" y="65.13"/><text x="8.016" y="68.971" class="x">&quot;api_path&quot;</text><text x="18.036" y="68.971" class="c">:</text><text x="20.04" y="68.971" class="g">&quot;/a</text></svg><svg x="14560"><use xlink:href="#a"/><use xlink:href="#b" x="13.996" y="67.276"/><use xlink:href="#269"/><use xlink:href="#270" y="2.171"/><use xlink:href="#114" y="4.342"/><use xlink:href="#115" y="6.513"/><use xlink:href="#116" y="8.684"/><use xlink:href="#54" y="10.855"/><use xlink:href="#55" y="13.026"/><use xlink:href="#56" y="15.197"/><use xlink:href="#218" y="17.368"/><use xlink:href="#271" y="19.539"/><use xlink:href="#119" y="21.71"/><use xlink:href="#272" y="23.881"/><use xlink:href="#273" y="26.052"/><use xlink:href="#274" y="28.223"/><use xlink:href="#275" y="30.394"/><use xlink:href="#276" y="32.565"/><use xlink:href="#85" y="34.736"/><use xlink:href="#277" y="36.907"/><use xlink:href="#87" y="39.078"/><use xlink:href="#278" y="41.249"/><use xlink:href="#279" y="43.42"/><use xlink:href="#280" y="45.591"/><use xlink:href="#281" y="47.762"/><use xlink:href="#93" y="49.933"/><use xlink:href="#130" y="52.104"/><use xlink:href="#282" y="54.275"/><use xlink:href="#283" y="56.446"/><use xlink:href="#97" y="58.617"/><use xlink:href="#100" y="60.788"/><use xlink:href="#284" y="62.959"/><use xlink:href="#285" y="65.13"/><text x="8.016" y="68.971" class="x">&quot;year&quot;</text></svg><svg x="14700"><use xlink:href="#a"/><use xlink:href="#b" x="35.996" y="67.276"/><use xlink:href="#273"/><use xlink:href="#274" y="2.171"/><use xlink:href="#275" y="4.342"/><use xlink:href="#276" y="6.513"/><use xlink:href="#85" y="8.684"/><use xlink:href="#277" y="10.855"/><use xlink:href="#87" y="13.026"/><use xlink:href="#278" y="15.197"/><use xlink:href="#279" y="17.368"/><use xlink:href="#280" y="19.539"/><use xlink:href="#281" y="21.71"/><use xlink:href="#93" y="23.881"/><use xlink:href="#130" y="26.052"/><use xlink:href="#282" y="28.223"/><use xlink:href="#283" y="30.394"/><use xlink:href="#97" y="32.565"/><use xlink:href="#100" y="34.736"/><use xlink:href="#284" y="36.907"/><use xlink:href="#285" y="39.078"/><use xlink:href="#186" y="41.249"/><use xlink:href="#97" y="43.42"/><use xlink:href="#286" y="45.591"/><use xlink:href="#287" y="47.762"/><use xlink:href="#288" y="49.933"/><use xlink:href="#107" y="52.104"/><use xlink:href="#108" y="54.275"/><use xlink:href="#289" y="56.446"/><use xlink:href="#233" y="58.617"/><use xlink:href="#97" y="60.788"/><use xlink:href="#290" y="62.959"/><use xlink:href="#291" y="65.13"/><text x="6.012" y="68.971" class="x">&quot;url&quot;</text><text x="11.022" y="68.971" class="c">:</text><text x="13.026" y="68.971" class="g">&quot;https://genius.com/Tay</text></svg><svg x="14840"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#277"/><use xlink:href="#87" y="2.171"/><use xlink:href="#278" y="4.342"/><use xlink:href="#279" y="6.513"/><use xlink:href="#280" y="8.684"/><use xlink:href="#281" y="10.855"/><use xlink:href="#93" y="13.026"/><use xlink:href="#130" y="15.197"/><use xlink:href="#282" y="17.368"/><use xlink:href="#283" y="19.539"/><use xlink:href="#97" y="21.71"/><use xlink:href="#100" y="23.881"/><use xlink:href="#284" y="26.052"/><use xlink:href="#285" y="28.223"/><use xlink:href="#186" y="30.394"/><use xlink:href="#97" y="32.565"/><use xlink:href="#286" y="34.736"/><use xlink:href="#287" y="36.907"/><use xlink:href="#288" y="39.078"/><use xlink:href="#107" y="41.249"/><use xlink:href="#108" y="43.42"/><use xlink:href="#289" y="45.591"/><use xlink:href="#233" y="47.762"/><use xlink:href="#97" y="49.933"/><use xlink:href="#290" y="52.104"/><use xlink:href="#291" y="54.275"/><use xlink:href="#292" y="56.446"/><use xlink:href="#114" y="58.617"/><use xlink:href="#115" y="60.788"/><use xlink:href="#293" y="62.959"/><use xlink:href="#294" y="65.13"/></svg><svg x="14980"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#277"/><use xlink:href="#87" y="2.171"/><use xlink:href="#278" y="4.342"/><use xlink:href="#279" y="6.513"/><use xlink:href="#280" y="8.684"/><use xlink:href="#281" y="10.855"/><use xlink:href="#93" y="13.026"/><use xlink:href="#130" y="15.197"/><use xlink:href="#282" y="17.368"/><use xlink:href="#283" y="19.539"/><use xlink:href="#97" y="21.71"/><use xlink:href="#100" y="23.881"/><use xlink:href="#284" y="26.052"/><use xlink:href="#285" y="28.223"/><use xlink:href="#186" y="30.394"/><use xlink:href="#97" y="32.565"/><use xlink:href="#286" y="34.736"/><use xlink:href="#287" y="36.907"/><use xlink:href="#288" y="39.078"/><use xlink:href="#107" y="41.249"/><use xlink:href="#108" y="43.42"/><use xlink:href="#289" y="45.591"/><use xlink:href="#233" y="47.762"/><use xlink:href="#97" y="49.933"/><use xlink:href="#290" y="52.104"/><use xlink:href="#291" y="54.275"/><use xlink:href="#292" y="56.446"/><use xlink:href="#114" y="58.617"/><use xlink:href="#115" y="60.788"/><use xlink:href="#293" y="62.959"/><use xlink:href="#294" y="65.13"/></svg><svg x="15120"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#277"/><use xlink:href="#87" y="2.171"/><use xlink:href="#278" y="4.342"/><use xlink:href="#279" y="6.513"/><use xlink:href="#280" y="8.684"/><use xlink:href="#281" y="10.855"/><use xlink:href="#93" y="13.026"/><use xlink:href="#130" y="15.197"/><use xlink:href="#282" y="17.368"/><use xlink:href="#283" y="19.539"/><use xlink:href="#97" y="21.71"/><use xlink:href="#100" y="23.881"/><use xlink:href="#284" y="26.052"/><use xlink:href="#285" y="28.223"/><use xlink:href="#186" y="30.394"/><use xlink:href="#97" y="32.565"/><use xlink:href="#286" y="34.736"/><use xlink:href="#287" y="36.907"/><use xlink:href="#288" y="39.078"/><use xlink:href="#107" y="41.249"/><use xlink:href="#108" y="43.42"/><use xlink:href="#289" y="45.591"/><use xlink:href="#233" y="47.762"/><use xlink:href="#97" y="49.933"/><use xlink:href="#290" y="52.104"/><use xlink:href="#291" y="54.275"/><use xlink:href="#292" y="56.446"/><use xlink:href="#114" y="58.617"/><use xlink:href="#115" y="60.788"/><use xlink:href="#293" y="62.959"/><use xlink:href="#294" y="65.13"/></svg><svg x="15260"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#277"/><use xlink:href="#87" y="2.171"/><use xlink:href="#278" y="4.342"/><use xlink:href="#279" y="6.513"/><use xlink:href="#280" y="8.684"/><use xlink:href="#281" y="10.855"/><use xlink:href="#93" y="13.026"/><use xlink:href="#130" y="15.197"/><use xlink:href="#282" y="17.368"/><use xlink:href="#283" y="19.539"/><use xlink:href="#97" y="21.71"/><use xlink:href="#100" y="23.881"/><use xlink:href="#284" y="26.052"/><use xlink:href="#285" y="28.223"/><use xlink:href="#186" y="30.394"/><use xlink:href="#97" y="32.565"/><use xlink:href="#286" y="34.736"/><use xlink:href="#287" y="36.907"/><use xlink:href="#288" y="39.078"/><use xlink:href="#107" y="41.249"/><use xlink:href="#108" y="43.42"/><use xlink:href="#289" y="45.591"/><use xlink:href="#233" y="47.762"/><use xlink:href="#97" y="49.933"/><use xlink:href="#290" y="52.104"/><use xlink:href="#291" y="54.275"/><use xlink:href="#292" y="56.446"/><use xlink:href="#114" y="58.617"/><use xlink:href="#115" y="60.788"/><use xlink:href="#293" y="62.959"/><use xlink:href="#294" y="65.13"/></svg><svg x="15400"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#277"/><use xlink:href="#87" y="2.171"/><use xlink:href="#278" y="4.342"/><use xlink:href="#279" y="6.513"/><use xlink:href="#280" y="8.684"/><use xlink:href="#281" y="10.855"/><use xlink:href="#93" y="13.026"/><use xlink:href="#130" y="15.197"/><use xlink:href="#282" y="17.368"/><use xlink:href="#283" y="19.539"/><use xlink:href="#97" y="21.71"/><use xlink:href="#100" y="23.881"/><use xlink:href="#284" y="26.052"/><use xlink:href="#285" y="28.223"/><use xlink:href="#186" y="30.394"/><use xlink:href="#97" y="32.565"/><use xlink:href="#286" y="34.736"/><use xlink:href="#287" y="36.907"/><use xlink:href="#288" y="39.078"/><use xlink:href="#107" y="41.249"/><use xlink:href="#108" y="43.42"/><use xlink:href="#289" y="45.591"/><use xlink:href="#233" y="47.762"/><use xlink:href="#97" y="49.933"/><use xlink:href="#290" y="52.104"/><use xlink:href="#291" y="54.275"/><use xlink:href="#292" y="56.446"/><use xlink:href="#114" y="58.617"/><use xlink:href="#115" y="60.788"/><use xlink:href="#293" y="62.959"/><use xlink:href="#294" y="65.13"/></svg><svg x="15540"><use xlink:href="#a"/><use xlink:href="#b" x="15.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#22" y="67.301"/></svg><svg x="15680"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#23" y="67.301"/></svg><svg x="15820"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="c">g</text><text x="17.034" y="68.971" class="r">enius</text><text x="23.046" y="68.971" class="r">search</text><text x="30.06" y="68.971" class="r">&apos;I</text><text x="33.066" y="68.971" class="r">Met</text><text x="37.074" y="68.971" class="r">Tay</text><text x="41.082" y="68.971" class="r">Keith</text><text x="47.094" y="68.971" class="r">First&apos;</text></svg><svg x="15960"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#24" y="67.301"/></svg><svg x="16100"><use xlink:href="#a"/><use xlink:href="#b" x="17.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#25" y="67.301"/></svg><svg x="16240"><use xlink:href="#a"/><use xlink:href="#b" x="18.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#26" y="67.301"/></svg><svg x="16380"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#27" y="67.301"/></svg><svg x="16520"><use xlink:href="#a"/><use xlink:href="#b" x="20.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#28" y="67.301"/></svg><svg x="16660"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#29" y="67.301"/></svg><svg x="16800"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#30" y="67.301"/></svg><svg x="16940"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#30" y="67.301"/></svg><svg x="17080"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#30" y="67.301"/></svg><svg x="17220"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="c">l</text></svg><svg x="17360"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="c">l</text><text x="24.048" y="68.971" class="r">yrics</text><text x="30.06" y="68.971" class="r">8333752</text></svg><svg x="17500"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="I">l</text><text x="24.048" y="68.971" class="r">yrics</text><text x="30.06" y="68.971" class="r">8333752</text></svg><svg x="17640"><use xlink:href="#a"/><use xlink:href="#b" x="36.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><path class="y" d="M16.032 67.301h6v2.171h-6z"/><text x="16.032" y="68.971" class="z">genius</text><path class="y" d="M22.044 67.301h1v2.171h-1z"/><text x="22.044" y="68.971" class="c"></text><path class="y" d="M23.046 67.301h1v2.171h-1z"/><text x="23.046" y="68.971" class="I">l</text><text x="24.048" y="68.971" class="I">yrics</text><text x="30.06" y="68.971" class="I">6110431</text></svg><svg x="17780"><use xlink:href="#a"/><use xlink:href="#b" x="36.996" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#296" y="67.301"/></svg><svg x="17920"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#295" y="65.13"/><use xlink:href="#296" y="67.301"/></svg><svg x="18060"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="65.105"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#297" y="62.959"/></svg><svg x="18200"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="65.105"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#297" y="62.959"/></svg><svg x="18340"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="65.105"/><use xlink:href="#278"/><use xlink:href="#279" y="2.171"/><use xlink:href="#280" y="4.342"/><use xlink:href="#281" y="6.513"/><use xlink:href="#93" y="8.684"/><use xlink:href="#130" y="10.855"/><use xlink:href="#282" y="13.026"/><use xlink:href="#283" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#284" y="21.71"/><use xlink:href="#285" y="23.881"/><use xlink:href="#186" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#286" y="30.394"/><use xlink:href="#287" y="32.565"/><use xlink:href="#288" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#289" y="41.249"/><use xlink:href="#233" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#290" y="47.762"/><use xlink:href="#291" y="49.933"/><use xlink:href="#292" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#293" y="58.617"/><use xlink:href="#294" y="60.788"/><use xlink:href="#297" y="62.959"/></svg><svg x="18480"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#281"/><use xlink:href="#93" y="2.171"/><use xlink:href="#130" y="4.342"/><use xlink:href="#282" y="6.513"/><use xlink:href="#283" y="8.684"/><use xlink:href="#97" y="10.855"/><use xlink:href="#100" y="13.026"/><use xlink:href="#284" y="15.197"/><use xlink:href="#285" y="17.368"/><use xlink:href="#186" y="19.539"/><use xlink:href="#97" y="21.71"/><use xlink:href="#286" y="23.881"/><use xlink:href="#287" y="26.052"/><use xlink:href="#288" y="28.223"/><use xlink:href="#107" y="30.394"/><use xlink:href="#108" y="32.565"/><use xlink:href="#289" y="34.736"/><use xlink:href="#233" y="36.907"/><use xlink:href="#97" y="39.078"/><use xlink:href="#290" y="41.249"/><use xlink:href="#291" y="43.42"/><use xlink:href="#292" y="45.591"/><use xlink:href="#114" y="47.762"/><use xlink:href="#115" y="49.933"/><use xlink:href="#293" y="52.104"/><use xlink:href="#294" y="54.275"/><use xlink:href="#297" y="56.446"/><use xlink:href="#298" y="60.788"/><use xlink:href="#299" y="62.959"/></svg><svg x="18620"><use xlink:href="#a"/><use xlink:href="#b" x="49.996" y="67.276"/><use xlink:href="#292"/><use xlink:href="#114" y="2.171"/><use xlink:href="#115" y="4.342"/><use xlink:href="#293" y="6.513"/><use xlink:href="#294" y="8.684"/><use xlink:href="#297" y="10.855"/><use xlink:href="#298" y="15.197"/><use xlink:href="#299" y="17.368"/><text y="23.38" class="c">[Intro:</text><text x="8.016" y="23.38" class="c">Blac</text><text x="13.026" y="23.38" class="c">Youngsta</text><text x="22.044" y="23.38" class="c">&amp;</text><text x="24.048" y="23.38" class="c">Lil</text><text x="28.056" y="23.38" class="c">Juice]</text><text x="1.002" y="25.551" class="c">(Tay</text><text x="6.012" y="25.551" class="c">Keith,</text><text x="13.026" y="25.551" class="c">fuck</text><text x="18.036" y="25.551" class="c">these</text><text x="24.048" y="25.551" class="c">niggas</text><text x="31.062" y="25.551" class="c">up)</text><text x="1.002" y="27.722" class="c">Gang,</text><text x="7.014" y="27.722" class="c">gang,</text><text x="13.026" y="27.722" class="c">Tay</text><text x="17.034" y="27.722" class="c">Keith,</text><text x="24.048" y="27.722" class="c">what</text><text x="29.058" y="27.722" class="c">the</text><text x="33.066" y="27.722" class="c">fuck</text><text x="38.076" y="27.722" class="c">up,</text><text x="42.084" y="27.722" class="c">nigga?</text><text x="1.002" y="29.893" class="c">Tay</text><text x="5.01" y="29.893" class="c">Keith</text><text x="11.022" y="29.893" class="c">shoot</text><text x="17.034" y="29.893" class="c">these</text><text x="23.046" y="29.893" class="c">niggas</text><text x="30.06" y="29.893" class="c">up</text><text x="1.002" y="32.064" class="c">901,</text><text x="6.012" y="32.064" class="c">M-Town</text><text x="13.026" y="32.064" class="c">shit,</text><text x="19.038" y="32.064" class="c">bitch</text><text x="1.002" y="34.235" class="c">You</text><text x="5.01" y="34.235" class="c">know</text><text x="10.02" y="34.235" class="c">I</text><text x="12.024" y="34.235" class="c">was</text><text x="16.032" y="34.235" class="c">the</text><text x="20.04" y="34.235" class="c">first</text><text x="26.052" y="34.235" class="c">nigga</text><text x="32.064" y="34.235" class="c">droppin&apos;</text><text x="41.082" y="34.235" class="c">on</text><text x="44.088" y="34.235" class="c">Tay</text><text x="48.096" y="34.235" class="c">Keith</text><text x="54.108" y="34.235" class="c">beats</text><text x="1.002" y="36.406" class="c">&apos;Fore</text><text x="7.014" y="36.406" class="c">you</text><text x="11.022" y="36.406" class="c">niggas</text><text x="18.036" y="36.406" class="c">ever</text><text x="23.046" y="36.406" class="c">knew</text><text x="28.056" y="36.406" class="c">about</text><text x="34.068" y="36.406" class="c">him,</text><text x="39.078" y="36.406" class="c">on</text><text x="42.084" y="36.406" class="c">God,</text><text x="47.094" y="36.406" class="c">yeah</text><text x="52.104" y="36.406" class="c">(Tay</text><text x="57.114" y="36.406" class="c">Keith</text><text x="63.126" y="36.406" class="c">produced</text><text x="72.144" y="36.406" class="c">it)</text><use xlink:href="#300" y="39.078"/><use xlink:href="#301" y="41.249"/><use xlink:href="#302" y="43.42"/><use xlink:href="#303" y="45.591"/><use xlink:href="#304" y="47.762"/><use xlink:href="#305" y="49.933"/><use xlink:href="#306" y="52.104"/><use xlink:href="#307" y="54.275"/><use xlink:href="#308" y="56.446"/><use xlink:href="#301" y="58.617"/><use xlink:href="#302" y="60.788"/><use xlink:href="#303" y="62.959"/><use xlink:href="#304" y="65.13"/><use xlink:href="#305" y="67.301"/></svg><svg x="18760"><use xlink:href="#a"/><use xlink:href="#b" x="41.996" y="67.276"/><use xlink:href="#303"/><use xlink:href="#304" y="2.171"/><use xlink:href="#305" y="4.342"/><use xlink:href="#306" y="6.513"/><use xlink:href="#307" y="8.684"/><use xlink:href="#308" y="10.855"/><use xlink:href="#301" y="13.026"/><use xlink:href="#302" y="15.197"/><use xlink:href="#303" y="17.368"/><use xlink:href="#304" y="19.539"/><use xlink:href="#305" y="21.71"/><use xlink:href="#306" y="23.881"/><use xlink:href="#307" y="26.052"/><use xlink:href="#309" y="28.223"/><text x="1.002" y="34.235" class="c">[Verse</text><text x="8.016" y="34.235" class="c">1:</text><text x="11.022" y="34.235" class="c">Blac</text><text x="16.032" y="34.235" class="c">Youngsta]</text><text x="1.002" y="36.406" class="c">I</text><text x="3.006" y="36.406" class="c">don&apos;t</text><text x="9.018" y="36.406" class="c">conversate</text><text x="20.04" y="36.406" class="c">&apos;cause</text><text x="27.054" y="36.406" class="c">you</text><text x="31.062" y="36.406" class="c">talk</text><text x="36.072" y="36.406" class="c">cheap</text><text x="42.084" y="36.406" class="c">(Bitch)</text><text x="1.002" y="38.577" class="c">Whine</text><text x="7.014" y="38.577" class="c">like</text><text x="12.024" y="38.577" class="c">a</text><text x="14.028" y="38.577" class="c">bitch,</text><text x="21.042" y="38.577" class="c">put</text><text x="25.05" y="38.577" class="c">him</text><text x="29.058" y="38.577" class="c">in</text><text x="32.064" y="38.577" class="c">a</text><text x="34.068" y="38.577" class="c">car</text><text x="38.076" y="38.577" class="c">seat</text><text x="43.086" y="38.577" class="c">(Yeah)</text><text x="1.002" y="40.748" class="c">I</text><text x="3.006" y="40.748" class="c">don&apos;t</text><text x="9.018" y="40.748" class="c">drink</text><text x="15.03" y="40.748" class="c">shit,</text><text x="21.042" y="40.748" class="c">but</text><text x="25.05" y="40.748" class="c">I&apos;m</text><text x="29.058" y="40.748" class="c">kinda</text><text x="35.07" y="40.748" class="c">toxic</text><text x="41.082" y="40.748" class="c">(Yeah)</text><text x="1.002" y="42.919" class="c">Shawty</text><text x="8.016" y="42.919" class="c">camel</text><text x="14.028" y="42.919" class="c">thick,</text><text x="21.042" y="42.919" class="c">but</text><text x="25.05" y="42.919" class="c">she</text><text x="29.058" y="42.919" class="c">take</text><text x="34.068" y="42.919" class="c">roxy</text><text x="39.078" y="42.919" class="c">(Gang)</text><text x="1.002" y="45.09" class="c">I</text><text x="3.006" y="45.09" class="c">was</text><text x="7.014" y="45.09" class="c">in</text><text x="10.02" y="45.09" class="c">the</text><text x="14.028" y="45.09" class="c">bricks</text><text x="21.042" y="45.09" class="c">when</text><text x="26.052" y="45.09" class="c">the</text><text x="30.06" y="45.09" class="c">narcs</text><text x="36.072" y="45.09" class="c">popped</text><text x="43.086" y="45.09" class="c">me</text><text x="46.092" y="45.09" class="c">(Yeah)</text><text x="1.002" y="47.261" class="c">Hate</text><text x="6.012" y="47.261" class="c">on</text><text x="9.018" y="47.261" class="c">my</text><text x="12.024" y="47.261" class="c">pimpin&apos;,</text><text x="21.042" y="47.261" class="c">they</text><text x="26.052" y="47.261" class="c">was</text><text x="30.06" y="47.261" class="c">tryna</text><text x="36.072" y="47.261" class="c">knock</text><text x="42.084" y="47.261" class="c">me</text><text x="45.09" y="47.261" class="c">(Yeah)</text><text x="1.002" y="49.432" class="c">Now</text><text x="5.01" y="49.432" class="c">I&apos;m</text><text x="9.018" y="49.432" class="c">an</text><text x="12.024" y="49.432" class="c">entertainer</text><text x="24.048" y="49.432" class="c">like</text><text x="29.058" y="49.432" class="c">Jamie</text><text x="35.07" y="49.432" class="c">Foxx,</text><text x="41.082" y="49.432" class="c">see</text><text x="45.09" y="49.432" class="c">(See</text><text x="50.1" y="49.432" class="c">me)</text><use xlink:href="#310" y="49.933"/><use xlink:href="#311" y="52.104"/><use xlink:href="#312" y="54.275"/><use xlink:href="#313" y="56.446"/><use xlink:href="#314" y="58.617"/><use xlink:href="#315" y="60.788"/><use xlink:href="#316" y="62.959"/><use xlink:href="#317" y="65.13"/><text x="1.002" y="68.971" class="c">Pull</text><text x="6.012" y="68.971" class="c">down</text><text x="11.022" y="68.971" class="c">with</text><text x="16.032" y="68.971" class="c">the</text><text x="20.04" y="68.971" class="c">Glock</text><text x="26.052" y="68.971" class="c">and</text><text x="30.06" y="68.971" class="c">soak</text><text x="35.07" y="68.971" class="c">you</text><text x="39.078" y="68.971" class="c">(Go</text></svg><svg x="18900"><use xlink:href="#a"/><use xlink:href="#b" x="27.996" y="67.276"/><use xlink:href="#310"/><use xlink:href="#311" y="2.171"/><use xlink:href="#312" y="4.342"/><use xlink:href="#313" y="6.513"/><use xlink:href="#314" y="8.684"/><use xlink:href="#315" y="10.855"/><use xlink:href="#316" y="13.026"/><use xlink:href="#317" y="15.197"/><text x="1.002" y="19.038" class="c">Pull</text><text x="6.012" y="19.038" class="c">down</text><text x="11.022" y="19.038" class="c">with</text><text x="16.032" y="19.038" class="c">the</text><text x="20.04" y="19.038" class="c">Glock</text><text x="26.052" y="19.038" class="c">and</text><text x="30.06" y="19.038" class="c">soak</text><text x="35.07" y="19.038" class="c">you</text><text x="39.078" y="19.038" class="c">(Go)</text><use xlink:href="#300" y="21.71"/><use xlink:href="#301" y="23.881"/><use xlink:href="#302" y="26.052"/><use xlink:href="#303" y="28.223"/><use xlink:href="#304" y="30.394"/><use xlink:href="#305" y="32.565"/><use xlink:href="#306" y="34.736"/><use xlink:href="#307" y="36.907"/><use xlink:href="#308" y="39.078"/><use xlink:href="#301" y="41.249"/><use xlink:href="#302" y="43.42"/><use xlink:href="#303" y="45.591"/><use xlink:href="#304" y="47.762"/><use xlink:href="#305" y="49.933"/><use xlink:href="#306" y="52.104"/><use xlink:href="#307" y="54.275"/><use xlink:href="#309" y="56.446"/><use xlink:href="#318" y="60.788"/><use xlink:href="#319" y="62.959"/><use xlink:href="#320" y="65.13"/><text x="1.002" y="68.971" class="c">Pop</text><text x="5.01" y="68.971" class="c">out</text><text x="9.018" y="68.971" class="c">on</text><text x="12.024" y="68.971" class="c">opps,</text><text x="18.036" y="68.971" class="c">spin</text><text x="23.046" y="68.971" class="c">they</text></svg><svg x="19040"><use xlink:href="#a"/><use xlink:href="#b" x="43.996" y="67.276"/><use xlink:href="#305"/><use xlink:href="#306" y="2.171"/><use xlink:href="#307" y="4.342"/><use xlink:href="#309" y="6.513"/><use xlink:href="#318" y="10.855"/><use xlink:href="#319" y="13.026"/><use xlink:href="#320" y="15.197"/><text x="1.002" y="19.038" class="c">Pop</text><text x="5.01" y="19.038" class="c">out</text><text x="9.018" y="19.038" class="c">on</text><text x="12.024" y="19.038" class="c">opps,</text><text x="18.036" y="19.038" class="c">spin</text><text x="23.046" y="19.038" class="c">they</text><text x="28.056" y="19.038" class="c">block</text><text x="34.068" y="19.038" class="c">in</text><text x="37.074" y="19.038" class="c">the</text><text x="41.082" y="19.038" class="c">lowkey</text><text x="1.002" y="21.209" class="c">Hit</text><text x="5.01" y="21.209" class="c">it,</text><text x="9.018" y="21.209" class="c">spit</text><text x="14.028" y="21.209" class="c">it,</text><text x="18.036" y="21.209" class="c">get</text><text x="22.044" y="21.209" class="c">acquitted</text><text x="1.002" y="23.38" class="c">My</text><text x="4.008" y="23.38" class="c">jacket</text><text x="11.022" y="23.38" class="c">cost</text><text x="16.032" y="23.38" class="c">four</text><text x="21.042" y="23.38" class="c">thousand,</text><text x="31.062" y="23.38" class="c">it&apos;s</text><text x="36.072" y="23.38" class="c">Givenchy</text><text x="1.002" y="25.551" class="c">A</text><text x="3.006" y="25.551" class="c">nigga</text><text x="9.018" y="25.551" class="c">gon&apos;</text><text x="14.028" y="25.551" class="c">go</text><text x="17.034" y="25.551" class="c">viral,</text><text x="24.048" y="25.551" class="c">they</text><text x="29.058" y="25.551" class="c">don&apos;t</text><text x="35.07" y="25.551" class="c">mention</text><text x="43.086" y="25.551" class="c">it</text><text x="1.002" y="27.722" class="c">Chasin&apos;</text><text x="9.018" y="27.722" class="c">this</text><text x="14.028" y="27.722" class="c">guala,</text><text x="21.042" y="27.722" class="c">fuck</text><text x="26.052" y="27.722" class="c">the</text><text x="30.06" y="27.722" class="c">penitentiary</text><text x="1.002" y="29.893" class="c">I</text><text x="3.006" y="29.893" class="c">ran</text><text x="7.014" y="29.893" class="c">it</text><text x="10.02" y="29.893" class="c">up</text><text x="13.026" y="29.893" class="c">inside</text><text x="20.04" y="29.893" class="c">a</text><text x="22.044" y="29.893" class="c">Buick</text><text x="28.056" y="29.893" class="c">Century</text><text x="1.002" y="32.064" class="c">They</text><text x="6.012" y="32.064" class="c">startin&apos;</text><text x="15.03" y="32.064" class="c">hittin&apos;,</text><text x="24.048" y="32.064" class="c">he</text><text x="27.054" y="32.064" class="c">ain&apos;t</text><text x="33.066" y="32.064" class="c">see</text><text x="37.074" y="32.064" class="c">it</text><text x="40.08" y="32.064" class="c">comin&apos;</text><text x="1.002" y="34.235" class="c">Them</text><text x="6.012" y="34.235" class="c">youngins</text><text x="15.03" y="34.235" class="c">gon&apos;</text><text x="20.04" y="34.235" class="c">Call</text><text x="25.05" y="34.235" class="c">of</text><text x="28.056" y="34.235" class="c">Duty</text><text x="33.066" y="34.235" class="c">for</text><text x="37.074" y="34.235" class="c">this</text><text x="42.084" y="34.235" class="c">money</text><text x="1.002" y="36.406" class="c">You</text><text x="5.01" y="36.406" class="c">want</text><text x="10.02" y="36.406" class="c">your</text><text x="15.03" y="36.406" class="c">issue?</text><text x="22.044" y="36.406" class="c">Fuck</text><text x="27.054" y="36.406" class="c">it,</text><text x="31.062" y="36.406" class="c">push</text><text x="36.072" y="36.406" class="c">up</text><text x="39.078" y="36.406" class="c">on</text><text x="42.084" y="36.406" class="c">me</text><text x="1.002" y="38.577" class="c">You</text><text x="5.01" y="38.577" class="c">ever</text><text x="10.02" y="38.577" class="c">seen</text><text x="15.03" y="38.577" class="c">me?</text><text x="19.038" y="38.577" class="c">Pistol,</text><text x="27.054" y="38.577" class="c">it</text><text x="30.06" y="38.577" class="c">was</text><text x="34.068" y="38.577" class="c">on</text><text x="37.074" y="38.577" class="c">me</text><text x="1.002" y="40.748" class="c">Ready</text><text x="7.014" y="40.748" class="c">to</text><text x="10.02" y="40.748" class="c">handle</text><text x="17.034" y="40.748" class="c">business</text><text x="26.052" y="40.748" class="c">by</text><text x="29.058" y="40.748" class="c">my</text><text x="32.064" y="40.748" class="c">lonely</text><text x="1.002" y="42.919" class="c">But</text><text x="5.01" y="42.919" class="c">I</text><text x="7.014" y="42.919" class="c">keep</text><text x="12.024" y="42.919" class="c">some</text><text x="17.034" y="42.919" class="c">hitters</text><text x="25.05" y="42.919" class="c">with</text><text x="30.06" y="42.919" class="c">me,</text><text x="34.068" y="42.919" class="c">they</text><text x="39.078" y="42.919" class="c">be</text><text x="42.084" y="42.919" class="c">on</text><text x="45.09" y="42.919" class="c">it</text><text x="1.002" y="45.09" class="c">Ain&apos;t</text><text x="7.014" y="45.09" class="c">fuckin&apos;</text><text x="15.03" y="45.09" class="c">with</text><text x="20.04" y="45.09" class="c">these</text><text x="26.052" y="45.09" class="c">niggas,</text><text x="34.068" y="45.09" class="c">they</text><text x="39.078" y="45.09" class="c">be</text><text x="42.084" y="45.09" class="c">phony</text><text x="1.002" y="47.261" class="c">Keep</text><text x="6.012" y="47.261" class="c">me</text><text x="9.018" y="47.261" class="c">a</text><text x="11.022" y="47.261" class="c">check</text><text x="17.034" y="47.261" class="c">ahead,</text><text x="24.048" y="47.261" class="c">I</text><text x="26.052" y="47.261" class="c">put</text><text x="30.06" y="47.261" class="c">it</text><text x="33.066" y="47.261" class="c">on</text><text x="36.072" y="47.261" class="c">ya</text><use xlink:href="#300" y="49.933"/><use xlink:href="#301" y="52.104"/><use xlink:href="#302" y="54.275"/><use xlink:href="#303" y="56.446"/><use xlink:href="#304" y="58.617"/><use xlink:href="#305" y="60.788"/><use xlink:href="#306" y="62.959"/><use xlink:href="#307" y="65.13"/><text x="1.002" y="68.971" class="c">And</text><text x="5.01" y="68.971" class="c">don&apos;t</text><text x="11.022" y="68.971" class="c">tryna</text><text x="17.034" y="68.971" class="c">fix</text><text x="21.042" y="68.971" class="c">what</text><text x="26.052" y="68.971" class="c">you</text><text x="30.06" y="68.971" class="c">said,</text><text x="36.072" y="68.971" class="c">nigga,</text><text x="43.086" y="68.971" class="c">y</text></svg><svg x="19180"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="67.276"/><use xlink:href="#300"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#308" y="17.368"/><use xlink:href="#301" y="19.539"/><use xlink:href="#302" y="21.71"/><use xlink:href="#303" y="23.881"/><use xlink:href="#304" y="26.052"/><use xlink:href="#305" y="28.223"/><use xlink:href="#306" y="30.394"/><use xlink:href="#307" y="32.565"/><use xlink:href="#309" y="34.736"/><use xlink:href="#321" y="39.078"/><use xlink:href="#322" y="41.249"/><use xlink:href="#323" y="43.42"/><use xlink:href="#324" y="45.591"/><use xlink:href="#325" y="47.762"/><use xlink:href="#326" y="49.933"/><use xlink:href="#327" y="52.104"/><use xlink:href="#328" y="54.275"/><use xlink:href="#329" y="56.446"/><use xlink:href="#330" y="58.617"/><use xlink:href="#331" y="60.788"/><use xlink:href="#332" y="62.959"/><use xlink:href="#333" y="65.13"/><text x="1.002" y="68.971" class="c">I&apos;m</text><text x="5.01" y="68.971" class="c">that</text><text x="10.02" y="68.971" class="c">nigga</text><text x="16.032" y="68.971" class="c">that</text></svg><svg x="19320"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#306"/><use xlink:href="#307" y="2.171"/><use xlink:href="#308" y="4.342"/><use xlink:href="#301" y="6.513"/><use xlink:href="#302" y="8.684"/><use xlink:href="#303" y="10.855"/><use xlink:href="#304" y="13.026"/><use xlink:href="#305" y="15.197"/><use xlink:href="#306" y="17.368"/><use xlink:href="#307" y="19.539"/><use xlink:href="#309" y="21.71"/><use xlink:href="#321" y="26.052"/><use xlink:href="#322" y="28.223"/><use xlink:href="#323" y="30.394"/><use xlink:href="#324" y="32.565"/><use xlink:href="#325" y="34.736"/><use xlink:href="#326" y="36.907"/><use xlink:href="#327" y="39.078"/><use xlink:href="#328" y="41.249"/><use xlink:href="#329" y="43.42"/><use xlink:href="#330" y="45.591"/><use xlink:href="#331" y="47.762"/><use xlink:href="#332" y="49.933"/><use xlink:href="#333" y="52.104"/><use xlink:href="#334" y="54.275"/><use xlink:href="#335" y="56.446"/><use xlink:href="#336" y="58.617"/><use xlink:href="#337" y="60.788"/></svg><svg x="19460"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#306"/><use xlink:href="#307" y="2.171"/><use xlink:href="#308" y="4.342"/><use xlink:href="#301" y="6.513"/><use xlink:href="#302" y="8.684"/><use xlink:href="#303" y="10.855"/><use xlink:href="#304" y="13.026"/><use xlink:href="#305" y="15.197"/><use xlink:href="#306" y="17.368"/><use xlink:href="#307" y="19.539"/><use xlink:href="#309" y="21.71"/><use xlink:href="#321" y="26.052"/><use xlink:href="#322" y="28.223"/><use xlink:href="#323" y="30.394"/><use xlink:href="#324" y="32.565"/><use xlink:href="#325" y="34.736"/><use xlink:href="#326" y="36.907"/><use xlink:href="#327" y="39.078"/><use xlink:href="#328" y="41.249"/><use xlink:href="#329" y="43.42"/><use xlink:href="#330" y="45.591"/><use xlink:href="#331" y="47.762"/><use xlink:href="#332" y="49.933"/><use xlink:href="#333" y="52.104"/><use xlink:href="#334" y="54.275"/><use xlink:href="#335" y="56.446"/><use xlink:href="#336" y="58.617"/><use xlink:href="#337" y="60.788"/></svg><svg x="19600"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#306"/><use xlink:href="#307" y="2.171"/><use xlink:href="#308" y="4.342"/><use xlink:href="#301" y="6.513"/><use xlink:href="#302" y="8.684"/><use xlink:href="#303" y="10.855"/><use xlink:href="#304" y="13.026"/><use xlink:href="#305" y="15.197"/><use xlink:href="#306" y="17.368"/><use xlink:href="#307" y="19.539"/><use xlink:href="#309" y="21.71"/><use xlink:href="#321" y="26.052"/><use xlink:href="#322" y="28.223"/><use xlink:href="#323" y="30.394"/><use xlink:href="#324" y="32.565"/><use xlink:href="#325" y="34.736"/><use xlink:href="#326" y="36.907"/><use xlink:href="#327" y="39.078"/><use xlink:href="#328" y="41.249"/><use xlink:href="#329" y="43.42"/><use xlink:href="#330" y="45.591"/><use xlink:href="#331" y="47.762"/><use xlink:href="#332" y="49.933"/><use xlink:href="#333" y="52.104"/><use xlink:href="#334" y="54.275"/><use xlink:href="#335" y="56.446"/><use xlink:href="#336" y="58.617"/><use xlink:href="#337" y="60.788"/></svg><svg x="19740"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#306"/><use xlink:href="#307" y="2.171"/><use xlink:href="#308" y="4.342"/><use xlink:href="#301" y="6.513"/><use xlink:href="#302" y="8.684"/><use xlink:href="#303" y="10.855"/><use xlink:href="#304" y="13.026"/><use xlink:href="#305" y="15.197"/><use xlink:href="#306" y="17.368"/><use xlink:href="#307" y="19.539"/><use xlink:href="#309" y="21.71"/><use xlink:href="#321" y="26.052"/><use xlink:href="#322" y="28.223"/><use xlink:href="#323" y="30.394"/><use xlink:href="#324" y="32.565"/><use xlink:href="#325" y="34.736"/><use xlink:href="#326" y="36.907"/><use xlink:href="#327" y="39.078"/><use xlink:href="#328" y="41.249"/><use xlink:href="#329" y="43.42"/><use xlink:href="#330" y="45.591"/><use xlink:href="#331" y="47.762"/><use xlink:href="#332" y="49.933"/><use xlink:href="#333" y="52.104"/><use xlink:href="#334" y="54.275"/><use xlink:href="#335" y="56.446"/><use xlink:href="#336" y="58.617"/><use xlink:href="#337" y="60.788"/></svg><svg x="19880"><use xlink:href="#a"/><use xlink:href="#b" x="15.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><use xlink:href="#22" y="67.301"/></svg><svg x="20020"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><use xlink:href="#23" y="67.301"/></svg><svg x="20160"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="c">g</text><text x="17.034" y="68.971" class="r">enius</text><text x="23.046" y="68.971" class="r">lyrics</text><text x="30.06" y="68.971" class="r">6110431</text></svg><svg x="20300"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">g</text><text x="17.034" y="68.971" class="r">enius</text><text x="23.046" y="68.971" class="r">lyrics</text><text x="30.06" y="68.971" class="r">6110431</text></svg><svg x="20440"><use xlink:href="#a"/><use xlink:href="#b" x="17.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">ge</text><text x="18.036" y="68.971" class="r">nius</text><text x="23.046" y="68.971" class="r">lyrics</text><text x="30.06" y="68.971" class="r">6110431</text></svg><svg x="20580"><use xlink:href="#a"/><use xlink:href="#b" x="18.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">gen</text><text x="19.038" y="68.971" class="r">ius</text><text x="23.046" y="68.971" class="r">lyrics</text><text x="30.06" y="68.971" class="r">6110431</text></svg><svg x="20720"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">geni</text><text x="20.04" y="68.971" class="r">us</text><text x="23.046" y="68.971" class="r">lyrics</text><text x="30.06" y="68.971" class="r">6110431</text></svg><svg x="20860"><use xlink:href="#a"/><use xlink:href="#b" x="20.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">geniu</text><text x="21.042" y="68.971" class="r">s</text><text x="23.046" y="68.971" class="r">lyrics</text><text x="30.06" y="68.971" class="r">6110431</text></svg><svg x="21000"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="q">genius</text><text x="23.046" y="68.971" class="r">lyrics</text><text x="30.06" y="68.971" class="r">6110431</text></svg><svg x="21140"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><use xlink:href="#339" y="67.301"/></svg><svg x="21280"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><use xlink:href="#339" y="67.301"/></svg><svg x="21420"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><use xlink:href="#339" y="67.301"/></svg><svg x="21560"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="c">l</text><text x="24.048" y="68.971" class="r">yrics</text><text x="30.06" y="68.971" class="r">6110431</text></svg><svg x="21700"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><text x="16.032" y="68.971" class="s">genius</text><text x="23.046" y="68.971" class="I">l</text><text x="24.048" y="68.971" class="r">yrics</text><text x="30.06" y="68.971" class="r">6110431</text></svg><svg x="21840"><use xlink:href="#a"/><use xlink:href="#b" x="36.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><text x="1.002" y="68.971" class="o"></text><text x="3.006" y="68.971" class="p">{</text><text x="5.01" y="68.971" class="p"></text><text x="7.014" y="68.971" class="p">home</text><text x="12.024" y="68.971" class="p">}</text><text x="14.028" y="68.971" class="l"></text><path class="y" d="M16.032 67.301h6v2.171h-6z"/><text x="16.032" y="68.971" class="z">genius</text><path class="y" d="M22.044 67.301h1v2.171h-1z"/><text x="22.044" y="68.971" class="c"></text><path class="y" d="M23.046 67.301h1v2.171h-1z"/><text x="23.046" y="68.971" class="I">l</text><text x="24.048" y="68.971" class="I">yrics</text><text x="30.06" y="68.971" class="I">8333752</text></svg><svg x="21980"><use xlink:href="#a"/><use xlink:href="#b" x="36.996" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><use xlink:href="#340" y="67.301"/></svg><svg x="22120"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#338" y="65.13"/><use xlink:href="#340" y="67.301"/></svg><svg x="22260"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="65.105"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#341" y="62.959"/></svg><svg x="22400"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="65.105"/><use xlink:href="#308"/><use xlink:href="#301" y="2.171"/><use xlink:href="#302" y="4.342"/><use xlink:href="#303" y="6.513"/><use xlink:href="#304" y="8.684"/><use xlink:href="#305" y="10.855"/><use xlink:href="#306" y="13.026"/><use xlink:href="#307" y="15.197"/><use xlink:href="#309" y="17.368"/><use xlink:href="#321" y="21.71"/><use xlink:href="#322" y="23.881"/><use xlink:href="#323" y="26.052"/><use xlink:href="#324" y="28.223"/><use xlink:href="#325" y="30.394"/><use xlink:href="#326" y="32.565"/><use xlink:href="#327" y="34.736"/><use xlink:href="#328" y="36.907"/><use xlink:href="#329" y="39.078"/><use xlink:href="#330" y="41.249"/><use xlink:href="#331" y="43.42"/><use xlink:href="#332" y="45.591"/><use xlink:href="#333" y="47.762"/><use xlink:href="#334" y="49.933"/><use xlink:href="#335" y="52.104"/><use xlink:href="#336" y="54.275"/><use xlink:href="#337" y="56.446"/><use xlink:href="#341" y="62.959"/></svg><svg x="22540"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#303"/><use xlink:href="#304" y="2.171"/><use xlink:href="#305" y="4.342"/><use xlink:href="#306" y="6.513"/><use xlink:href="#307" y="8.684"/><use xlink:href="#309" y="10.855"/><use xlink:href="#321" y="15.197"/><use xlink:href="#322" y="17.368"/><use xlink:href="#323" y="19.539"/><use xlink:href="#324" y="21.71"/><use xlink:href="#325" y="23.881"/><use xlink:href="#326" y="26.052"/><use xlink:href="#327" y="28.223"/><use xlink:href="#328" y="30.394"/><use xlink:href="#329" y="32.565"/><use xlink:href="#330" y="34.736"/><use xlink:href="#331" y="36.907"/><use xlink:href="#332" y="39.078"/><use xlink:href="#333" y="41.249"/><use xlink:href="#334" y="43.42"/><use xlink:href="#335" y="45.591"/><use xlink:href="#336" y="47.762"/><use xlink:href="#337" y="49.933"/><use xlink:href="#341" y="56.446"/><path fill="#66c2cd" d="M0 60.788h16v2.171H0z"/><text y="62.458" class="C">Niu Raza - Any E</text><text y="64.629" style="white-space:pre" fill="#66c2cd">https://genius.com/Niu-raza-any-e-lyrics</text></svg><svg x="22680"><use xlink:href="#a"/><use xlink:href="#b" x="12.996" y="67.276"/><text x="1.002" y="1.67" class="c">Noheverinao</text><text x="13.026" y="1.67" class="c">fa</text><text x="16.032" y="1.67" class="c">dia</text><text x="20.04" y="1.67" class="c">mba</text><text x="24.048" y="1.67" class="c">mety</text><text x="29.058" y="1.67" class="c">ve</text><text x="32.064" y="1.67" class="c">izany</text><text x="1.002" y="3.841" class="c">Ilay</text><text x="6.012" y="3.841" class="c">vaovao</text><text x="13.026" y="3.841" class="c">tampoka</text><text x="21.042" y="3.841" class="c">loatra</text><text x="1.002" y="6.012" class="c">Ny</text><text x="4.008" y="6.012" class="c">fotoana</text><text x="12.024" y="6.012" class="c">angamba</text><text x="20.04" y="6.012" class="c">no</text><text x="23.046" y="6.012" class="c">hampangina</text><text x="34.068" y="6.012" class="c">ahy</text><text x="1.002" y="10.354" class="c">Nanenina,</text><text x="11.022" y="10.354" class="c">raha</text><text x="16.032" y="10.354" class="c">nety</text><text x="21.042" y="10.354" class="c">natao</text><use xlink:href="#342" y="10.855"/><use xlink:href="#343" y="13.026"/><use xlink:href="#344" y="15.197"/><use xlink:href="#345" y="17.368"/><use xlink:href="#346" y="19.539"/><use xlink:href="#343" y="21.71"/><use xlink:href="#344" y="23.881"/><use xlink:href="#345" y="26.052"/><use xlink:href="#346" y="28.223"/><use xlink:href="#347" y="30.394"/><use xlink:href="#346" y="32.565"/><use xlink:href="#347" y="34.736"/><use xlink:href="#346" y="36.907"/><use xlink:href="#348" y="41.249"/><use xlink:href="#349" y="43.42"/><use xlink:href="#350" y="45.591"/><use xlink:href="#351" y="47.762"/><use xlink:href="#352" y="49.933"/><use xlink:href="#345" y="52.104"/><use xlink:href="#346" y="54.275"/><use xlink:href="#353" y="56.446"/><use xlink:href="#344" y="58.617"/><use xlink:href="#345" y="60.788"/><use xlink:href="#346" y="62.959"/><use xlink:href="#347" y="65.13"/><text x="1.002" y="68.971" class="c">Fa</text><text x="4.008" y="68.971" class="c">any</text><text x="8.016" y="68.971" class="c">indra</text></svg><svg x="22820"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#342"/><use xlink:href="#343" y="2.171"/><use xlink:href="#344" y="4.342"/><use xlink:href="#345" y="6.513"/><use xlink:href="#346" y="8.684"/><use xlink:href="#343" y="10.855"/><use xlink:href="#344" y="13.026"/><use xlink:href="#345" y="15.197"/><use xlink:href="#346" y="17.368"/><use xlink:href="#347" y="19.539"/><use xlink:href="#346" y="21.71"/><use xlink:href="#347" y="23.881"/><use xlink:href="#346" y="26.052"/><use xlink:href="#348" y="30.394"/><use xlink:href="#349" y="32.565"/><use xlink:href="#350" y="34.736"/><use xlink:href="#351" y="36.907"/><use xlink:href="#352" y="39.078"/><use xlink:href="#345" y="41.249"/><use xlink:href="#346" y="43.42"/><use xlink:href="#353" y="45.591"/><use xlink:href="#344" y="47.762"/><use xlink:href="#345" y="49.933"/><use xlink:href="#346" y="52.104"/><use xlink:href="#347" y="54.275"/><use xlink:href="#346" y="56.446"/><use xlink:href="#347" y="58.617"/><use xlink:href="#346" y="60.788"/></svg><svg x="22960"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#342"/><use xlink:href="#343" y="2.171"/><use xlink:href="#344" y="4.342"/><use xlink:href="#345" y="6.513"/><use xlink:href="#346" y="8.684"/><use xlink:href="#343" y="10.855"/><use xlink:href="#344" y="13.026"/><use xlink:href="#345" y="15.197"/><use xlink:href="#346" y="17.368"/><use xlink:href="#347" y="19.539"/><use xlink:href="#346" y="21.71"/><use xlink:href="#347" y="23.881"/><use xlink:href="#346" y="26.052"/><use xlink:href="#348" y="30.394"/><use xlink:href="#349" y="32.565"/><use xlink:href="#350" y="34.736"/><use xlink:href="#351" y="36.907"/><use xlink:href="#352" y="39.078"/><use xlink:href="#345" y="41.249"/><use xlink:href="#346" y="43.42"/><use xlink:href="#353" y="45.591"/><use xlink:href="#344" y="47.762"/><use xlink:href="#345" y="49.933"/><use xlink:href="#346" y="52.104"/><use xlink:href="#347" y="54.275"/><use xlink:href="#346" y="56.446"/><use xlink:href="#347" y="58.617"/><use xlink:href="#346" y="60.788"/></svg><svg x="23100"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#342"/><use xlink:href="#343" y="2.171"/><use xlink:href="#344" y="4.342"/><use xlink:href="#345" y="6.513"/><use xlink:href="#346" y="8.684"/><use xlink:href="#343" y="10.855"/><use xlink:href="#344" y="13.026"/><use xlink:href="#345" y="15.197"/><use xlink:href="#346" y="17.368"/><use xlink:href="#347" y="19.539"/><use xlink:href="#346" y="21.71"/><use xlink:href="#347" y="23.881"/><use xlink:href="#346" y="26.052"/><use xlink:href="#348" y="30.394"/><use xlink:href="#349" y="32.565"/><use xlink:href="#350" y="34.736"/><use xlink:href="#351" y="36.907"/><use xlink:href="#352" y="39.078"/><use xlink:href="#345" y="41.249"/><use xlink:href="#346" y="43.42"/><use xlink:href="#353" y="45.591"/><use xlink:href="#344" y="47.762"/><use xlink:href="#345" y="49.933"/><use xlink:href="#346" y="52.104"/><use xlink:href="#347" y="54.275"/><use xlink:href="#346" y="56.446"/><use xlink:href="#347" y="58.617"/><use xlink:href="#346" y="60.788"/></svg><svg x="23240"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#342"/><use xlink:href="#343" y="2.171"/><use xlink:href="#344" y="4.342"/><use xlink:href="#345" y="6.513"/><use xlink:href="#346" y="8.684"/><use xlink:href="#343" y="10.855"/><use xlink:href="#344" y="13.026"/><use xlink:href="#345" y="15.197"/><use xlink:href="#346" y="17.368"/><use xlink:href="#347" y="19.539"/><use xlink:href="#346" y="21.71"/><use xlink:href="#347" y="23.881"/><use xlink:href="#346" y="26.052"/><use xlink:href="#348" y="30.394"/><use xlink:href="#349" y="32.565"/><use xlink:href="#350" y="34.736"/><use xlink:href="#351" y="36.907"/><use xlink:href="#352" y="39.078"/><use xlink:href="#345" y="41.249"/><use xlink:href="#346" y="43.42"/><use xlink:href="#353" y="45.591"/><use xlink:href="#344" y="47.762"/><use xlink:href="#345" y="49.933"/><use xlink:href="#346" y="52.104"/><use xlink:href="#347" y="54.275"/><use xlink:href="#346" y="56.446"/><use xlink:href="#347" y="58.617"/><use xlink:href="#346" y="60.788"/></svg><svg x="23380"><use xlink:href="#a"/><use xlink:href="#b" x="15.996" y="67.276"/><use xlink:href="#344"/><use xlink:href="#345" y="2.171"/><use xlink:href="#346" y="4.342"/><use xlink:href="#343" y="6.513"/><use xlink:href="#344" y="8.684"/><use xlink:href="#345" y="10.855"/><use xlink:href="#346" y="13.026"/><use xlink:href="#347" y="15.197"/><use xlink:href="#346" y="17.368"/><use xlink:href="#347" y="19.539"/><use xlink:href="#346" y="21.71"/><use xlink:href="#348" y="26.052"/><use xlink:href="#349" y="28.223"/><use xlink:href="#350" y="30.394"/><use xlink:href="#351" y="32.565"/><use xlink:href="#352" y="34.736"/><use xlink:href="#345" y="36.907"/><use xlink:href="#346" y="39.078"/><use xlink:href="#353" y="41.249"/><use xlink:href="#344" y="43.42"/><use xlink:href="#345" y="45.591"/><use xlink:href="#346" y="47.762"/><use xlink:href="#347" y="49.933"/><use xlink:href="#346" y="52.104"/><use xlink:href="#347" y="54.275"/><use xlink:href="#346" y="56.446"/><use xlink:href="#354" y="65.13"/><use xlink:href="#22" y="67.301"/></svg><svg x="23520"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#345"/><use xlink:href="#346" y="2.171"/><use xlink:href="#343" y="4.342"/><use xlink:href="#344" y="6.513"/><use xlink:href="#345" y="8.684"/><use xlink:href="#346" y="10.855"/><use xlink:href="#347" y="13.026"/><use xlink:href="#346" y="15.197"/><use xlink:href="#347" y="17.368"/><use xlink:href="#346" y="19.539"/><use xlink:href="#348" y="23.881"/><use xlink:href="#349" y="26.052"/><use xlink:href="#350" y="28.223"/><use xlink:href="#351" y="30.394"/><use xlink:href="#352" y="32.565"/><use xlink:href="#345" y="34.736"/><use xlink:href="#346" y="36.907"/><use xlink:href="#353" y="39.078"/><use xlink:href="#344" y="41.249"/><use xlink:href="#345" y="43.42"/><use xlink:href="#346" y="45.591"/><use xlink:href="#347" y="47.762"/><use xlink:href="#346" y="49.933"/><use xlink:href="#347" y="52.104"/><use xlink:href="#346" y="54.275"/><use xlink:href="#354" y="62.959"/><use xlink:href="#22" y="65.13"/></svg><svg x="23660"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#345"/><use xlink:href="#346" y="2.171"/><use xlink:href="#343" y="4.342"/><use xlink:href="#344" y="6.513"/><use xlink:href="#345" y="8.684"/><use xlink:href="#346" y="10.855"/><use xlink:href="#347" y="13.026"/><use xlink:href="#346" y="15.197"/><use xlink:href="#347" y="17.368"/><use xlink:href="#346" y="19.539"/><use xlink:href="#348" y="23.881"/><use xlink:href="#349" y="26.052"/><use xlink:href="#350" y="28.223"/><use xlink:href="#351" y="30.394"/><use xlink:href="#352" y="32.565"/><use xlink:href="#345" y="34.736"/><use xlink:href="#346" y="36.907"/><use xlink:href="#353" y="39.078"/><use xlink:href="#344" y="41.249"/><use xlink:href="#345" y="43.42"/><use xlink:href="#346" y="45.591"/><use xlink:href="#347" y="47.762"/><use xlink:href="#346" y="49.933"/><use xlink:href="#347" y="52.104"/><use xlink:href="#346" y="54.275"/><use xlink:href="#354" y="62.959"/><use xlink:href="#22" y="65.13"/></svg><svg x="23800"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="67.276"/><use xlink:href="#345"/><use xlink:href="#346" y="2.171"/><use xlink:href="#343" y="4.342"/><use xlink:href="#344" y="6.513"/><use xlink:href="#345" y="8.684"/><use xlink:href="#346" y="10.855"/><use xlink:href="#347" y="13.026"/><use xlink:href="#346" y="15.197"/><use xlink:href="#347" y="17.368"/><use xlink:href="#346" y="19.539"/><use xlink:href="#348" y="23.881"/><use xlink:href="#349" y="26.052"/><use xlink:href="#350" y="28.223"/><use xlink:href="#351" y="30.394"/><use xlink:href="#352" y="32.565"/><use xlink:href="#345" y="34.736"/><use xlink:href="#346" y="36.907"/><use xlink:href="#353" y="39.078"/><use xlink:href="#344" y="41.249"/><use xlink:href="#345" y="43.42"/><use xlink:href="#346" y="45.591"/><use xlink:href="#347" y="47.762"/><use xlink:href="#346" y="49.933"/><use xlink:href="#347" y="52.104"/><use xlink:href="#346" y="54.275"/><use xlink:href="#354" y="62.959"/><use xlink:href="#22" y="65.13"/></svg></svg></g></g></svg></svg>
+76
src/colorizer.rs
··· 1 + use genius_rs::song::Song; 2 + use owo_colors::{ 3 + colors::{css::Orange, Black, BrightGreen, BrightYellow, Cyan, Magenta, Yellow}, 4 + OwoColorize, 5 + }; 6 + use rand::Rng; 7 + 8 + pub fn print_colorized(song: &Song) { 9 + let mut rng = rand::thread_rng(); 10 + match rng.gen_range(0..5) { 11 + 0 => { 12 + println!( 13 + "\n{}{}{}", 14 + song.primary_artist.name.fg::<Black>().bg::<Magenta>(), 15 + " - ".fg::<Black>().bg::<Magenta>(), 16 + song.title.fg::<Black>().bg::<Magenta>() 17 + ); 18 + println!("{}\n", song.url.fg::<Magenta>()); 19 + } 20 + 1 => { 21 + println!( 22 + "\n{}{}{}", 23 + song.primary_artist.name.fg::<Black>().bg::<Cyan>(), 24 + " - ".fg::<Black>().bg::<Cyan>(), 25 + song.title.fg::<Black>().bg::<Cyan>() 26 + ); 27 + println!("{}\n", song.url.fg::<Cyan>()); 28 + } 29 + 2 => { 30 + println!( 31 + "\n{}{}{}", 32 + song.primary_artist.name.fg::<Black>().bg::<Orange>(), 33 + " - ".fg::<Black>().bg::<Orange>(), 34 + song.title.fg::<Black>().bg::<Orange>() 35 + ); 36 + println!("{}\n", song.url.fg::<Orange>()); 37 + } 38 + 3 => { 39 + println!( 40 + "\n{}{}{}", 41 + song.primary_artist.name.fg::<Black>().bg::<BrightGreen>(), 42 + " - ".fg::<Black>().bg::<BrightGreen>(), 43 + song.title.fg::<Black>().bg::<BrightGreen>() 44 + ); 45 + println!("{}\n", song.url.fg::<BrightGreen>()); 46 + } 47 + 4 => { 48 + println!( 49 + "\n{}{}{}", 50 + song.primary_artist.name.fg::<Black>().bg::<Yellow>(), 51 + " - ".fg::<Black>().bg::<Yellow>(), 52 + song.title.fg::<Black>().bg::<Yellow>() 53 + ); 54 + println!("{}\n", song.url.fg::<Yellow>()); 55 + } 56 + 57 + 5 => { 58 + println!( 59 + "\n{}{}{}", 60 + song.primary_artist.name.fg::<Black>().bg::<BrightYellow>(), 61 + " - ".fg::<Black>().bg::<BrightYellow>(), 62 + song.title.fg::<Black>().bg::<BrightYellow>() 63 + ); 64 + println!("{}\n", song.url.fg::<BrightYellow>()); 65 + } 66 + _ => { 67 + println!( 68 + "\n{}{}{}", 69 + song.primary_artist.name.fg::<Black>().bg::<Magenta>(), 70 + " - ".fg::<Black>().bg::<Magenta>(), 71 + song.title.fg::<Black>().bg::<Magenta>() 72 + ); 73 + println!("{}\n", song.url.fg::<Magenta>()); 74 + } 75 + } 76 + }
+1
src/lib.rs
··· 1 + pub mod colorizer;
+106
src/main.rs
··· 1 + use std::env; 2 + 3 + use clap::{Arg, Command}; 4 + use colored_json::ToColoredJson; 5 + use genius_cli::colorizer::print_colorized; 6 + use genius_rs::Genius; 7 + 8 + fn cli() -> Command<'static> { 9 + const VERSION: &str = env!("CARGO_PKG_VERSION"); 10 + Command::new("genius") 11 + .version(VERSION) 12 + .author("Tsiry Sandratraina <tsiry.sndr@aol.com>") 13 + .about( 14 + r#" 15 + ______ _ ________ ____ 16 + / ____/__ ____ (_)_ _______ / ____/ / / _/ 17 + / / __/ _ \/ __ \/ / / / / ___/ / / / / / / 18 + / /_/ / __/ / / / / /_/ (__ ) / /___/ /____/ / 19 + \____/\___/_/ /_/_/\__,_/____/ \____/_____/___/ 20 + 21 + Genius CLI helps you search for lyrics or song informations from Genius.com. 22 + 23 + "#, 24 + ) 25 + .subcommand_required(true) 26 + .subcommand( 27 + Command::new("search").about("Search for a song").arg( 28 + Arg::with_name("query") 29 + .help("The query to search for, e.g. 'Niu Raza Any E'") 30 + .required(true) 31 + .index(1), 32 + ), 33 + ) 34 + .subcommand( 35 + Command::new("lyrics") 36 + .about("Get the lyrics of a song") 37 + .arg( 38 + Arg::with_name("id") 39 + .help("The id of the song, e.g. '8333752'") 40 + .required(true) 41 + .index(1), 42 + ), 43 + ) 44 + .subcommand( 45 + Command::new("song").about("Get song informations").arg( 46 + Arg::with_name("id") 47 + .help("The id of the song, e.g. '8333752'") 48 + .required(true) 49 + .index(1), 50 + ), 51 + ) 52 + } 53 + 54 + #[tokio::main] 55 + async fn main() { 56 + if env::var("GENIUS_TOKEN").unwrap().is_empty() { 57 + panic!("Please set the GENIUS_TOKEN environment variable"); 58 + } 59 + 60 + let genius = Genius::new(env::var("GENIUS_TOKEN").unwrap()); 61 + 62 + let matches = cli().get_matches(); 63 + match matches.subcommand() { 64 + Some(("search", sub_matches)) => { 65 + let query = sub_matches.get_one::<String>("query").unwrap(); 66 + let response = genius.search(query).await.unwrap(); 67 + println!( 68 + "{}", 69 + serde_json::to_string(&response) 70 + .unwrap() 71 + .to_colored_json_auto() 72 + .unwrap() 73 + ); 74 + } 75 + Some(("lyrics", sub_matches)) => { 76 + let id = sub_matches 77 + .get_one::<String>("id") 78 + .unwrap() 79 + .parse::<u32>() 80 + .unwrap(); 81 + let result = genius.get_song(id, "plain").await; 82 + let song = result.unwrap(); 83 + 84 + print_colorized(&song); 85 + 86 + let lyrics = genius.get_lyrics(id).await.unwrap(); 87 + println!("{}", lyrics.join("\n")); 88 + } 89 + Some(("song", sub_matches)) => { 90 + let id = sub_matches 91 + .get_one::<String>("id") 92 + .unwrap() 93 + .parse::<u32>() 94 + .unwrap(); 95 + let song = genius.get_song(id, "plain").await.unwrap(); 96 + println!( 97 + "{}", 98 + serde_json::to_string(&song) 99 + .unwrap() 100 + .to_colored_json_auto() 101 + .unwrap() 102 + ); 103 + } 104 + _ => unreachable!(), 105 + } 106 + }