[{"data":1,"prerenderedAt":14805},["ShallowReactive",2],{"lesson:\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":3,"course-wordcounts":8972,"ref-card-index":9883,"nav:algorithms":14565,"tikz:8e595551a14e03c69c03d4d4339c181e84e6aadaef3405cade90ff28e1857591":14796,"tikz:93221f95e9f5a8afb89576315cbc739fa88c4259988b916514768c9a7971ecce":14797,"tikz:ae0d599a285d5b3951a6ec0a04dacc6ce8383bc7fa2340183ef8085b794b31e5":14798,"tikz:4fba8491daa2a2728cf8cf4f942114511af5d5007ef3b9a1662a5d16f20c203e":14799,"tikz:577ab6422fcc36092fe44ec9cfe643eb36e23cd6e2f3c8167d492eb6c9007c18":14800,"tikz:0d814d7c6dc104ae8175d44d2c5af7d1139baa222ea800b68f2c8965cb9da5e4":14801,"tikz:44f6efae126f975dec3f59af6f3980eee1152b7c75724f2dfc2ddd894cb7652c":14802,"tikz:10da2713eed8026e3805841f3b8734c15414fd74cbb686411c9fb36965afeebe":14803,"tikz:dc4e0596762da8b9525c76921b5da5529fb71e02566e616649446f23ec510e00":14804},{"id":4,"title":5,"blurb":6,"body":7,"brief":8930,"category":8931,"description":8932,"draft":8933,"extension":8934,"meta":8935,"module":8937,"navigation":1253,"path":8938,"practice":8939,"rawbody":8951,"readingTime":8952,"seo":8957,"sources":8958,"status":8966,"stem":8967,"summary":8968,"topics":8969,"__hash__":8971},"course\u002F01.algorithms\u002F03.sorting\u002F04.external-sorting.md","External Sorting","",{"type":8,"value":9,"toc":8916},"minimark",[10,48,53,95,143,234,322,329,333,339,367,484,488,623,626,631,813,901,1125,1128,1131,1217,3104,3108,3187,3467,4071,4074,4133,4612,4885,4888,5117,5121,5286,5408,5608,5652,5772,5776,5952,6016,6100,6176,6179,6182,6185,7052,7056,7329,7420,7582,7684,7688,7723,7992,8107,8180,8196,8199,8203,8825,8912],[11,12,13,14,19,20,24,25,29,30,34,35,38,39,43,44,47],"p",{},"Every sort we have met so far, ",[15,16,18],"a",{"href":17},"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort","heapsort",",\n",[15,21,23],{"href":22},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort","mergesort",", the\n",[15,26,28],{"href":27},"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting","linear-time sorts",", shares a hidden\nassumption: the whole array fits in fast memory, and any element is as cheap to\ntouch as any other. When the data is larger than RAM, a database table of a\nhundred gigabytes on a machine with eight of them, that assumption collapses. The\narray lives on disk, and the cost of the sort is no longer how many times we\n",[31,32,33],"em",{},"compare"," but how many times we ",[31,36,37],{},"move a block between disk and memory",". This\nlesson is about sorting under that constraint: ",[40,41,42],"strong",{},"external",", or ",[40,45,46],{},"out-of-core",",\nsorting.",[49,50,52],"h2",{"id":51},"why-the-in-memory-cost-model-lies","Why the in-memory cost model lies",[11,54,55,56,59,60,63,64,90,91,94],{},"A disk does not behave like slower random-access memory. Reaching an arbitrary\nbyte costs a ",[40,57,58],{},"seek"," (moving the head, or, on flash, an erase-block penalty)\nthat is four to five orders of magnitude slower than a memory reference. To amortize\nthat latency, storage is read and written in fixed-size ",[40,61,62],{},"blocks"," of ",[65,66,69],"span",{"className":67},[68],"katex",[65,70,74],{"className":71,"ariaHidden":73},[72],"katex-html","true",[65,75,78,83],{"className":76},[77],"base",[65,79],{"className":80,"style":82},[81],"strut","height:0.6833em;",[65,84,89],{"className":85,"style":88},[86,87],"mord","mathnormal","margin-right:0.0502em;","B"," records\nat a time; once the head is positioned, the marginal cost of the rest of the block\nis small. The realistic accounting therefore counts ",[40,92,93],{},"block transfers",", not\ncomparisons.",[96,97,99],"callout",{"type":98},"definition",[11,100,101,104,105,122,123,138,139,142],{},[40,102,103],{},"Definition (External-memory model)."," Memory holds ",[65,106,108],{"className":107},[68],[65,109,111],{"className":110,"ariaHidden":73},[72],[65,112,114,117],{"className":113},[77],[65,115],{"className":116,"style":82},[81],[65,118,121],{"className":119,"style":120},[86,87],"margin-right:0.109em;","M"," records; disk is\nunbounded and is read and written in blocks of ",[65,124,126],{"className":125},[68],[65,127,129],{"className":128,"ariaHidden":73},[72],[65,130,132,135],{"className":131},[77],[65,133],{"className":134,"style":82},[81],[65,136,89],{"className":137,"style":88},[86,87]," records. An algorithm's cost\nis the number of block transfers (",[40,140,141],{},"I\u002FOs",") between disk and memory. CPU work on\ndata already in memory is treated as free.",[11,144,145,146,150,151,203,204,207,208,233],{},"This change of cost model reorders the algorithm rankings. Consider running ordinary\n",[15,147,149],{"href":148},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort","quicksort"," on data that does not fit\nin memory, with the array paged in and out by the operating system. Its partition\nstep sweeps the array with two pointers that jump unpredictably, and its\nrecursion touches scattered regions. Each stray access can force a fresh block\ntransfer, so an algorithm that is ",[65,152,154],{"className":153},[68],[65,155,157],{"className":156,"ariaHidden":73},[72],[65,158,160,164,168,173,177,182,192,195,198],{"className":159},[77],[65,161],{"className":162,"style":163},[81],"height:1em;vertical-align:-0.25em;",[65,165,167],{"className":166},[86],"Θ",[65,169,172],{"className":170},[171],"mopen","(",[65,174,176],{"className":175,"style":120},[86,87],"N",[65,178],{"className":179,"style":181},[180],"mspace","margin-right:0.1667em;",[65,183,186],{"className":184},[185],"mop",[65,187,191],{"className":188,"style":190},[86,189],"mathrm","margin-right:0.0139em;","log",[65,193],{"className":194,"style":181},[180],[65,196,176],{"className":197,"style":120},[86,87],[65,199,202],{"className":200},[201],"mclose",")"," in ",[31,205,206],{},"comparisons"," can degrade\ntoward one block transfer per comparison, thrashing the disk. The ",[65,209,211],{"className":210},[68],[65,212,214],{"className":213,"ariaHidden":73},[72],[65,215,217,221,227,230],{"className":216},[77],[65,218],{"className":219,"style":220},[81],"height:0.8889em;vertical-align:-0.1944em;",[65,222,224],{"className":223},[185],[65,225,191],{"className":226,"style":190},[86,189],[65,228],{"className":229,"style":181},[180],[65,231,176],{"className":232,"style":120},[86,87]," that\nlooked harmless is now multiplied by a constant measured in milliseconds.",[96,235,237],{"type":236},"remark",[11,238,239,242,243,258,259,289,290,305,306,321],{},[40,240,241],{},"Remark (The real enemy is the seek)."," In-memory we optimize the comparison\ncount because comparisons dominate. On disk a sequential scan of ",[65,244,246],{"className":245},[68],[65,247,249],{"className":248,"ariaHidden":73},[72],[65,250,252,255],{"className":251},[77],[65,253],{"className":254,"style":82},[81],[65,256,176],{"className":257,"style":120},[86,87]," records\ncosts only ",[65,260,262],{"className":261},[68],[65,263,265],{"className":264,"ariaHidden":73},[72],[65,266,268,271,275,278,282,285],{"className":267},[77],[65,269],{"className":270,"style":163},[81],[65,272,274],{"className":273},[171],"⌈",[65,276,176],{"className":277,"style":120},[86,87],[65,279,281],{"className":280},[86],"\u002F",[65,283,89],{"className":284,"style":88},[86,87],[65,286,288],{"className":287},[201],"⌉"," transfers, cheap, while ",[65,291,293],{"className":292},[68],[65,294,296],{"className":295,"ariaHidden":73},[72],[65,297,299,302],{"className":298},[77],[65,300],{"className":301,"style":82},[81],[65,303,176],{"className":304,"style":120},[86,87]," scattered accesses\ncost up to ",[65,307,309],{"className":308},[68],[65,310,312],{"className":311,"ariaHidden":73},[72],[65,313,315,318],{"className":314},[77],[65,316],{"className":317,"style":82},[81],[65,319,176],{"className":320,"style":120},[86,87]," transfers, ruinous. A good external algorithm is one that touches\nthe disk in long sequential streams and almost never seeks.",[11,323,324,325,328],{},"The design goal flips accordingly. We want an algorithm whose disk traffic is a\nhandful of ",[40,326,327],{},"linear sequential passes"," over the data, and we will measure it by\ncounting those passes.",[49,330,332],{"id":331},"external-merge-sort","External merge sort",[11,334,335,336,338],{},"The right strategy descends directly from ",[15,337,23],{"href":22},",\nwhose merge step is already a sequential streaming operation: it reads two sorted\ninputs front to back and writes one sorted output front to back, never seeking.\nThat is the access pattern disk handles cheaply. External merge sort is\nmergesort reorganized into two phases that respect the block model.",[96,340,341],{"type":98},[11,342,343,346,347,350,351,366],{},[40,344,345],{},"Definition (Run)."," A ",[40,348,349],{},"run"," is a maximal sorted contiguous stretch of\nrecords on disk. The sort's job is to produce one run of length ",[65,352,354],{"className":353},[68],[65,355,357],{"className":356,"ariaHidden":73},[72],[65,358,360,363],{"className":359},[77],[65,361],{"className":362,"style":82},[81],[65,364,176],{"className":365,"style":120},[86,87]," from an\nunsorted file.",[11,368,369,372,373,388,389,391,392,407,408,435,436,451,452,483],{},[40,370,371],{},"Phase 1 — run formation."," Read the file one memory-load at a time. Each load of\nup to ",[65,374,376],{"className":375},[68],[65,377,379],{"className":378,"ariaHidden":73},[72],[65,380,382,385],{"className":381},[77],[65,383],{"className":384,"style":82},[81],[65,386,121],{"className":387,"style":120},[86,87]," records is sorted in memory by any internal sort, ",[15,390,18],{"href":17},"\nor quicksort, then written back out as a sorted run. A file of ",[65,393,395],{"className":394},[68],[65,396,398],{"className":397,"ariaHidden":73},[72],[65,399,401,404],{"className":400},[77],[65,402],{"className":403,"style":82},[81],[65,405,176],{"className":406,"style":120},[86,87]," records yields\nabout ",[65,409,411],{"className":410},[68],[65,412,414],{"className":413,"ariaHidden":73},[72],[65,415,417,420,423,426,429,432],{"className":416},[77],[65,418],{"className":419,"style":163},[81],[65,421,274],{"className":422},[171],[65,424,176],{"className":425,"style":120},[86,87],[65,427,281],{"className":428},[86],[65,430,121],{"className":431,"style":120},[86,87],[65,433,288],{"className":434},[201]," initial runs, each of length ",[65,437,439],{"className":438},[68],[65,440,442],{"className":441,"ariaHidden":73},[72],[65,443,445,448],{"className":444},[77],[65,446],{"className":447,"style":82},[81],[65,449,121],{"className":450,"style":120},[86,87]," (the last possibly\nshorter). This phase reads the whole file once and writes it once: ",[65,453,455],{"className":454},[68],[65,456,458],{"className":457,"ariaHidden":73},[72],[65,459,461,464,468,471,474,477,480],{"className":460},[77],[65,462],{"className":463,"style":163},[81],[65,465,467],{"className":466},[86],"2",[65,469,274],{"className":470},[171],[65,472,176],{"className":473,"style":120},[86,87],[65,475,281],{"className":476},[86],[65,478,89],{"className":479,"style":88},[86,87],[65,481,288],{"className":482},[201],"\ntransfers, two sequential passes.",[485,486],"tikz-figure",{"hash":487},"8e595551a14e03c69c03d4d4339c181e84e6aadaef3405cade90ff28e1857591",[11,489,490,493,494,580,581,599,600,603,604,622],{},[40,491,492],{},"Phase 2 — merging."," We now have many sorted runs and must combine them into\none. Merging two runs at a time, as plain mergesort does, would take ",[65,495,497],{"className":496},[68],[65,498,500],{"className":499,"ariaHidden":73},[72],[65,501,503,506,565,568,571,574,577],{"className":502},[77],[65,504],{"className":505,"style":163},[81],[65,507,509,515],{"className":508},[185],[65,510,512],{"className":511},[185],[65,513,191],{"className":514,"style":190},[86,189],[65,516,519],{"className":517},[518],"msupsub",[65,520,524,556],{"className":521},[522,523],"vlist-t","vlist-t2",[65,525,528,551],{"className":526},[527],"vlist-r",[65,529,533],{"className":530,"style":532},[531],"vlist","height:0.207em;",[65,534,536,541],{"style":535},"top:-2.4559em;margin-right:0.05em;",[65,537],{"className":538,"style":540},[539],"pstrut","height:2.7em;",[65,542,548],{"className":543},[544,545,546,547],"sizing","reset-size6","size3","mtight",[65,549,467],{"className":550},[86,547],[65,552,555],{"className":553},[554],"vlist-s","​",[65,557,559],{"className":558},[527],[65,560,563],{"className":561,"style":562},[531],"height:0.2441em;",[65,564],{},[65,566,172],{"className":567},[171],[65,569,176],{"className":570,"style":120},[86,87],[65,572,281],{"className":573},[86],[65,575,121],{"className":576,"style":120},[86,87],[65,578,202],{"className":579},[201],"\npasses over the data. We do far better by merging ",[65,582,584],{"className":583},[68],[65,585,587],{"className":586,"ariaHidden":73},[72],[65,588,590,594],{"className":589},[77],[65,591],{"className":592,"style":593},[81],"height:0.6944em;",[65,595,598],{"className":596,"style":597},[86,87],"margin-right:0.0315em;","k"," runs ",[40,601,602],{},"at once"," in a single\npass, a ",[40,605,606,621],{},[65,607,609],{"className":608},[68],[65,610,612],{"className":611,"ariaHidden":73},[72],[65,613,615,618],{"className":614},[77],[65,616],{"className":617,"style":593},[81],[65,619,598],{"className":620,"style":597},[86,87],"-way merge",", repeating until one run remains.",[485,624],{"hash":625},"93221f95e9f5a8afb89576315cbc739fa88c4259988b916514768c9a7971ecce",[627,628,630],"h3",{"id":629},"the-k-way-merge","The k-way merge",[11,632,633,634,649,650,665,666,690,691,706,707,734,735,738,739,742,743,778,779,812],{},"The core step is selecting, repeatedly, the smallest record among\n",[65,635,637],{"className":636},[68],[65,638,640],{"className":639,"ariaHidden":73},[72],[65,641,643,646],{"className":642},[77],[65,644],{"className":645,"style":593},[81],[65,647,598],{"className":648,"style":597},[86,87]," sorted runs. Naively scanning all ",[65,651,653],{"className":652},[68],[65,654,656],{"className":655,"ariaHidden":73},[72],[65,657,659,662],{"className":658},[77],[65,660],{"className":661,"style":593},[81],[65,663,598],{"className":664,"style":597},[86,87]," run fronts on every step costs ",[65,667,669],{"className":668},[68],[65,670,672],{"className":671,"ariaHidden":73},[72],[65,673,675,678,681,684,687],{"className":674},[77],[65,676],{"className":677,"style":163},[81],[65,679,167],{"className":680},[86],[65,682,172],{"className":683},[171],[65,685,598],{"className":686,"style":597},[86,87],[65,688,202],{"className":689},[201],"\nper record; across ",[65,692,694],{"className":693},[68],[65,695,697],{"className":696,"ariaHidden":73},[72],[65,698,700,703],{"className":699},[77],[65,701],{"className":702,"style":82},[81],[65,704,176],{"className":705,"style":120},[86,87]," records that is ",[65,708,710],{"className":709},[68],[65,711,713],{"className":712,"ariaHidden":73},[72],[65,714,716,719,722,725,728,731],{"className":715},[77],[65,717],{"className":718,"style":163},[81],[65,720,167],{"className":721},[86],[65,723,172],{"className":724},[171],[65,726,176],{"className":727,"style":120},[86,87],[65,729,598],{"className":730,"style":597},[86,87],[65,732,202],{"className":733},[201]," comparisons, throwing away\nthe savings of a large fan-out. The fix is a structure we already own: a\n",[40,736,737],{},"min-heap",", the ",[15,740,741],{"href":17},"priority queue"," from\nthe heap lesson, holding one candidate, the current front record, from each run.\nIts root is the global minimum, extracted in ",[65,744,746],{"className":745},[68],[65,747,749],{"className":748,"ariaHidden":73},[72],[65,750,752,755,760,763,769,772,775],{"className":751},[77],[65,753],{"className":754,"style":163},[81],[65,756,759],{"className":757,"style":758},[86,87],"margin-right:0.0278em;","O",[65,761,172],{"className":762},[171],[65,764,766],{"className":765},[185],[65,767,191],{"className":768,"style":190},[86,189],[65,770],{"className":771,"style":181},[180],[65,773,598],{"className":774,"style":597},[86,87],[65,776,202],{"className":777},[201],", and when a run supplies\nits next record we sift that in for another ",[65,780,782],{"className":781},[68],[65,783,785],{"className":784,"ariaHidden":73},[72],[65,786,788,791,794,797,803,806,809],{"className":787},[77],[65,789],{"className":790,"style":163},[81],[65,792,759],{"className":793,"style":758},[86,87],[65,795,172],{"className":796},[171],[65,798,800],{"className":799},[185],[65,801,191],{"className":802,"style":190},[86,189],[65,804],{"className":805,"style":181},[180],[65,807,598],{"className":808,"style":597},[86,87],[65,810,202],{"className":811},[201],".",[814,815,819],"pre",{"className":816,"code":817,"language":818,"meta":6,"style":6},"language-algorithm shiki shiki-themes Vesper Light - Orange Boost (Quick Open Adjusted) vesper","caption: $\\textsc{k-Way-Merge}(R_1, \\dots, R_k)$ — merge $k$ sorted runs into one\nnumber: 1\nlet $H$ be an empty min-heap keyed on record value\nfor $i \\gets 1$ to $k$ do\n  if run $R_i$ is nonempty then\n    $x \\gets$ read first record of $R_i$\n    $\\textsc{Insert}(H, (x, i))$ \u002F\u002F tag each candidate with its run\nwhile $H$ is nonempty do\n  $(x, i) \\gets \\textsc{Extract-Min}(H)$ \u002F\u002F smallest across all run fronts\n  output $x$ \u002F\u002F append to the merged run\n  if run $R_i$ has a next record then\n    $y \\gets$ read next record of $R_i$\n    $\\textsc{Insert}(H, (y, i))$ \u002F\u002F refill from the run we drained\n","algorithm",[820,821,822,829,835,841,847,853,859,865,871,877,883,889,895],"code",{"__ignoreMap":6},[65,823,826],{"class":824,"line":825},"line",1,[65,827,828],{},"caption: $\\textsc{k-Way-Merge}(R_1, \\dots, R_k)$ — merge $k$ sorted runs into one\n",[65,830,832],{"class":824,"line":831},2,[65,833,834],{},"number: 1\n",[65,836,838],{"class":824,"line":837},3,[65,839,840],{},"let $H$ be an empty min-heap keyed on record value\n",[65,842,844],{"class":824,"line":843},4,[65,845,846],{},"for $i \\gets 1$ to $k$ do\n",[65,848,850],{"class":824,"line":849},5,[65,851,852],{},"  if run $R_i$ is nonempty then\n",[65,854,856],{"class":824,"line":855},6,[65,857,858],{},"    $x \\gets$ read first record of $R_i$\n",[65,860,862],{"class":824,"line":861},7,[65,863,864],{},"    $\\textsc{Insert}(H, (x, i))$ \u002F\u002F tag each candidate with its run\n",[65,866,868],{"class":824,"line":867},8,[65,869,870],{},"while $H$ is nonempty do\n",[65,872,874],{"class":824,"line":873},9,[65,875,876],{},"  $(x, i) \\gets \\textsc{Extract-Min}(H)$ \u002F\u002F smallest across all run fronts\n",[65,878,880],{"class":824,"line":879},10,[65,881,882],{},"  output $x$ \u002F\u002F append to the merged run\n",[65,884,886],{"class":824,"line":885},11,[65,887,888],{},"  if run $R_i$ has a next record then\n",[65,890,892],{"class":824,"line":891},12,[65,893,894],{},"    $y \\gets$ read next record of $R_i$\n",[65,896,898],{"class":824,"line":897},13,[65,899,900],{},"    $\\textsc{Insert}(H, (y, i))$ \u002F\u002F refill from the run we drained\n",[11,902,903,904,919,920,944,945,960,961,986,987,1009,1010,1025,1026,1065,1066,1090,1091,1124],{},"The heap never holds more than ",[65,905,907],{"className":906},[68],[65,908,910],{"className":909,"ariaHidden":73},[72],[65,911,913,916],{"className":912},[77],[65,914],{"className":915,"style":593},[81],[65,917,598],{"className":918,"style":597},[86,87]," records, one per run, so it occupies ",[65,921,923],{"className":922},[68],[65,924,926],{"className":925,"ariaHidden":73},[72],[65,927,929,932,935,938,941],{"className":928},[77],[65,930],{"className":931,"style":163},[81],[65,933,167],{"className":934},[86],[65,936,172],{"className":937},[171],[65,939,598],{"className":940,"style":597},[86,87],[65,942,202],{"className":943},[201],"\nmemory regardless of how long the runs are. Each of the ",[65,946,948],{"className":947},[68],[65,949,951],{"className":950,"ariaHidden":73},[72],[65,952,954,957],{"className":953},[77],[65,955],{"className":956,"style":82},[81],[65,958,176],{"className":959,"style":120},[86,87]," output records costs\none ",[65,962,964],{"className":963},[68],[65,965,967],{"className":966,"ariaHidden":73},[72],[65,968,970,973],{"className":969},[77],[65,971],{"className":972,"style":82},[81],[65,974,978],{"className":975},[976,977],"enclosing","textsc",[65,979,982],{"className":980},[86,981],"text",[65,983,985],{"className":984},[86],"Extract-Min"," and at most one ",[65,988,990],{"className":989},[68],[65,991,993],{"className":992,"ariaHidden":73},[72],[65,994,996,999],{"className":995},[77],[65,997],{"className":998,"style":82},[81],[65,1000,1002],{"className":1001},[976,977],[65,1003,1005],{"className":1004},[86,981],[65,1006,1008],{"className":1007},[86],"Insert",", so a ",[65,1011,1013],{"className":1012},[68],[65,1014,1016],{"className":1015,"ariaHidden":73},[72],[65,1017,1019,1022],{"className":1018},[77],[65,1020],{"className":1021,"style":593},[81],[65,1023,598],{"className":1024,"style":597},[86,87],"-way merge\nruns in ",[65,1027,1029],{"className":1028},[68],[65,1030,1032],{"className":1031,"ariaHidden":73},[72],[65,1033,1035,1038,1041,1044,1047,1050,1056,1059,1062],{"className":1034},[77],[65,1036],{"className":1037,"style":163},[81],[65,1039,167],{"className":1040},[86],[65,1042,172],{"className":1043},[171],[65,1045,176],{"className":1046,"style":120},[86,87],[65,1048],{"className":1049,"style":181},[180],[65,1051,1053],{"className":1052},[185],[65,1054,191],{"className":1055,"style":190},[86,189],[65,1057],{"className":1058,"style":181},[180],[65,1060,598],{"className":1061,"style":597},[86,87],[65,1063,202],{"className":1064},[201]," comparisons, improving the per-record cost from\n",[65,1067,1069],{"className":1068},[68],[65,1070,1072],{"className":1071,"ariaHidden":73},[72],[65,1073,1075,1078,1081,1084,1087],{"className":1074},[77],[65,1076],{"className":1077,"style":163},[81],[65,1079,167],{"className":1080},[86],[65,1082,172],{"className":1083},[171],[65,1085,598],{"className":1086,"style":597},[86,87],[65,1088,202],{"className":1089},[201]," to ",[65,1092,1094],{"className":1093},[68],[65,1095,1097],{"className":1096,"ariaHidden":73},[72],[65,1098,1100,1103,1106,1109,1115,1118,1121],{"className":1099},[77],[65,1101],{"className":1102,"style":163},[81],[65,1104,167],{"className":1105},[86],[65,1107,172],{"className":1108},[171],[65,1110,1112],{"className":1111},[185],[65,1113,191],{"className":1114,"style":190},[86,189],[65,1116],{"className":1117,"style":181},[180],[65,1119,598],{"className":1120,"style":597},[86,87],[65,1122,202],{"className":1123},[201]," over the naive scan.",[485,1126],{"hash":1127},"ae0d599a285d5b3951a6ec0a04dacc6ce8383bc7fa2340183ef8085b794b31e5",[485,1129],{"hash":1130},"4fba8491daa2a2728cf8cf4f942114511af5d5007ef3b9a1662a5d16f20c203e",[96,1132,1134],{"type":1133},"note",[11,1135,1136,346,1139,1155,1156,1158,1159,1195,1196,1200,1201,1216],{},[40,1137,1138],{},"Note (Merge sort connection).",[65,1140,1142],{"className":1141},[68],[65,1143,1145],{"className":1144,"ariaHidden":73},[72],[65,1146,1148,1152],{"className":1147},[77],[65,1149],{"className":1150,"style":1151},[81],"height:0.6444em;",[65,1153,467],{"className":1154},[86],"-way merge is the ordinary\n",[15,1157,23],{"href":22}," merge with ",[65,1160,1162],{"className":1161},[68],[65,1163,1165,1186],{"className":1164,"ariaHidden":73},[72],[65,1166,1168,1171,1174,1178,1183],{"className":1167},[77],[65,1169],{"className":1170,"style":593},[81],[65,1172,598],{"className":1173,"style":597},[86,87],[65,1175],{"className":1176,"style":1177},[180],"margin-right:0.2778em;",[65,1179,1182],{"className":1180},[1181],"mrel","=",[65,1184],{"className":1185,"style":1177},[180],[65,1187,1189,1192],{"className":1188},[77],[65,1190],{"className":1191,"style":1151},[81],[65,1193,467],{"className":1194},[86],"; there the\n",[1197,1198,1199],"q",{},"heap"," degenerates to a single comparison between two fronts. External merge sort\nis simply mergesort with two changes: the base-case runs are sorted in bulk to\nfill memory, and the merge fans in ",[65,1202,1204],{"className":1203},[68],[65,1205,1207],{"className":1206,"ariaHidden":73},[72],[65,1208,1210,1213],{"className":1209},[77],[65,1211],{"className":1212,"style":593},[81],[65,1214,598],{"className":1215,"style":597},[86,87]," runs at once instead of two, so the whole\nfile is swept far fewer times.",[1218,1219,1222],"impl-embed",{"dataImplLabel":1220,"id":1221},"k way merge implementations","impl-k-way-merge",[1223,1224,1225,2257,2971],"code-group",{},[814,1226,1231],{"className":1227,"code":1228,"filename":1229,"language":1230,"meta":6,"style":6},"language-python shiki shiki-themes Vesper Light - Orange Boost (Quick Open Adjusted) vesper","from __future__ import annotations\n\nimport heapq\nfrom collections.abc import Iterable, Iterator\nfrom typing import Generic, TypeVar\n\nfrom comparable import Comparable\n\nRecord = TypeVar(\"Record\", bound=Comparable)\n\ndef k_way_merge(runs: Iterable[Iterable[Record]]) -> Iterator[Record]:\n  \"\"\"\n    Lazily merge several already-sorted runs into one ascending stream.\\n\n    Each run must itself be sorted; the output is the sorted union (with\\n\n    duplicates kept). Streams the result, so a run never needs to live in\\n\n    memory all at once — only one record per run does.\\n\n  \"\"\"\n  iterators: list[Iterator[Record]] = [iter(run) for run in runs]\n\n  # each heap entry pairs a record with its run index so equal records break\n  # ties on the run they came from rather than ordering the iterators.\n  heap: list[HeapNode[Record]] = []\n  for run_index, iterator in enumerate(iterators):\n    first = next(iterator, _SENTINEL)\n    if not isinstance(first, _Sentinel):\n      heapq.heappush(heap, HeapNode(first, run_index))\n\n  while heap:\n    # emit the global minimum front record.\n    node = heapq.heappop(heap)\n    yield node.record\n\n    # refill the heap from exactly the run we just drained a record from.\n    following = next(iterators[node.run_index], _SENTINEL)\n    if not isinstance(following, _Sentinel):\n      heapq.heappush(heap, HeapNode(following, node.run_index))\n\nclass _Sentinel:\n  \"\"\"\n    A unique end-of-run marker distinct from any real record, including None.\\n\n  \"\"\"\n\n_SENTINEL: _Sentinel = _Sentinel()\n\nclass HeapNode(Generic[Record]):\n  \"\"\"\n    One heap slot in the explicit k-way merger: a run's current front record\\n\n    paired with the index of the run it belongs to. Ordered by record, so a\\n\n    min-heap of these surfaces the global minimum front.\\n\n  \"\"\"\n\n  def __init__(self, record: Record, run_index: int) -> None:\n    self.record: Record = record\n    self.run_index: int = run_index\n\n  def __lt__(self, other: HeapNode[Record], \u002F) -> bool:\n    if self.record \u003C other.record:\n      return True\n    if other.record \u003C self.record:\n      return False\n    return self.run_index \u003C other.run_index\n\n  def __repr__(self) -> str:\n    return f\"HeapNode({self.record!r}, run={self.run_index})\"\n\nclass KWayMerger(Generic[Record]):\n  \"\"\"\n    An explicit min-heap merger over k sorted runs.\\n\n    Mirrors the textbook k-Way-Merge: seed the heap with each run's head,\\n\n    then repeatedly extract the minimum and reload from its run. Useful when\\n\n    you want to inspect the heap (its size is the live fan-out) rather than\\n\n    just consume the merged stream.\\n\n  \"\"\"\n\n  def __init__(self, runs: Iterable[Iterable[Record]]) -> None:\n    self._iterators: list[Iterator[Record]] = [iter(run) for run in runs]\n\n    # seed the heap with the head record of each non-empty run.\n    self._heap: list[HeapNode[Record]] = []\n    for run_index, iterator in enumerate(self._iterators):\n      head = next(iterator, _SENTINEL)\n      if not isinstance(head, _Sentinel):\n        heapq.heappush(self._heap, HeapNode(head, run_index))\n\n  @property\n  def heap_size(self) -> int:\n    \"\"\"\n      The number of live run fronts currently buffered — the active fan-out.\\n\n    \"\"\"\n    return len(self._heap)\n\n  def __iter__(self) -> Iterator[Record]:\n    return self\n\n  def __next__(self) -> Record:\n    if not self._heap:\n      raise StopIteration\n\n    # pop the global minimum, then reload from the run it came from.\n    node = heapq.heappop(self._heap)\n    following = next(self._iterators[node.run_index], _SENTINEL)\n    if not isinstance(following, _Sentinel):\n      heapq.heappush(self._heap, HeapNode(following, node.run_index))\n    return node.record\n","k_way_merge.py","python",[820,1232,1233,1249,1255,1262,1274,1286,1290,1302,1306,1328,1332,1344,1349,1357,1365,1373,1381,1386,1415,1420,1427,1433,1444,1461,1475,1490,1496,1501,1510,1516,1527,1536,1541,1547,1560,1572,1578,1583,1595,1600,1608,1613,1618,1629,1634,1645,1650,1658,1666,1674,1679,1684,1702,1716,1732,1737,1758,1775,1784,1799,1807,1823,1828,1844,1885,1890,1900,1905,1913,1921,1929,1937,1945,1950,1955,1965,1989,1994,2000,2012,2031,2043,2056,2067,2072,2078,2092,2098,2106,2111,2126,2131,2142,2150,2155,2166,2178,2187,2192,2198,2212,2228,2239,2250],{"__ignoreMap":6},[65,1234,1235,1239,1243,1246],{"class":824,"line":825},[65,1236,1238],{"class":1237},"sdxpw","from",[65,1240,1242],{"class":1241},"s3i95"," __future__ ",[65,1244,1245],{"class":1237},"import",[65,1247,1248],{"class":1241}," annotations\n",[65,1250,1251],{"class":824,"line":831},[65,1252,1254],{"emptyLinePlaceholder":1253},true,"\n",[65,1256,1257,1259],{"class":824,"line":837},[65,1258,1245],{"class":1237},[65,1260,1261],{"class":1241}," heapq\n",[65,1263,1264,1266,1269,1271],{"class":824,"line":843},[65,1265,1238],{"class":1237},[65,1267,1268],{"class":1241}," collections.abc ",[65,1270,1245],{"class":1237},[65,1272,1273],{"class":1241}," Iterable, Iterator\n",[65,1275,1276,1278,1281,1283],{"class":824,"line":849},[65,1277,1238],{"class":1237},[65,1279,1280],{"class":1241}," typing ",[65,1282,1245],{"class":1237},[65,1284,1285],{"class":1241}," Generic, TypeVar\n",[65,1287,1288],{"class":824,"line":855},[65,1289,1254],{"emptyLinePlaceholder":1253},[65,1291,1292,1294,1297,1299],{"class":824,"line":861},[65,1293,1238],{"class":1237},[65,1295,1296],{"class":1241}," comparable ",[65,1298,1245],{"class":1237},[65,1300,1301],{"class":1241}," Comparable\n",[65,1303,1304],{"class":824,"line":867},[65,1305,1254],{"emptyLinePlaceholder":1253},[65,1307,1308,1311,1313,1316,1320,1323,1325],{"class":824,"line":873},[65,1309,1310],{"class":1241},"Record ",[65,1312,1182],{"class":1237},[65,1314,1315],{"class":1241}," TypeVar(",[65,1317,1319],{"class":1318},"sDYuN","\"Record\"",[65,1321,1322],{"class":1241},", bound",[65,1324,1182],{"class":1237},[65,1326,1327],{"class":1241},"Comparable)\n",[65,1329,1330],{"class":824,"line":879},[65,1331,1254],{"emptyLinePlaceholder":1253},[65,1333,1334,1337,1341],{"class":824,"line":885},[65,1335,1336],{"class":1237},"def",[65,1338,1340],{"class":1339},"sat3U"," k_way_merge",[65,1342,1343],{"class":1241},"(runs: Iterable[Iterable[Record]]) -> Iterator[Record]:\n",[65,1345,1346],{"class":824,"line":891},[65,1347,1348],{"class":1318},"  \"\"\"\n",[65,1350,1351,1354],{"class":824,"line":897},[65,1352,1353],{"class":1318},"    Lazily merge several already-sorted runs into one ascending stream.",[65,1355,1356],{"class":1237},"\\n\n",[65,1358,1360,1363],{"class":824,"line":1359},14,[65,1361,1362],{"class":1318},"    Each run must itself be sorted; the output is the sorted union (with",[65,1364,1356],{"class":1237},[65,1366,1368,1371],{"class":824,"line":1367},15,[65,1369,1370],{"class":1318},"    duplicates kept). Streams the result, so a run never needs to live in",[65,1372,1356],{"class":1237},[65,1374,1376,1379],{"class":824,"line":1375},16,[65,1377,1378],{"class":1318},"    memory all at once — only one record per run does.",[65,1380,1356],{"class":1237},[65,1382,1384],{"class":824,"line":1383},17,[65,1385,1348],{"class":1318},[65,1387,1389,1392,1394,1397,1400,1403,1406,1409,1412],{"class":824,"line":1388},18,[65,1390,1391],{"class":1241},"  iterators: list[Iterator[Record]] ",[65,1393,1182],{"class":1237},[65,1395,1396],{"class":1241}," [",[65,1398,1399],{"class":1339},"iter",[65,1401,1402],{"class":1241},"(run) ",[65,1404,1405],{"class":1237},"for",[65,1407,1408],{"class":1241}," run ",[65,1410,1411],{"class":1237},"in",[65,1413,1414],{"class":1241}," runs]\n",[65,1416,1418],{"class":824,"line":1417},19,[65,1419,1254],{"emptyLinePlaceholder":1253},[65,1421,1423],{"class":824,"line":1422},20,[65,1424,1426],{"class":1425},"sEX4i","  # each heap entry pairs a record with its run index so equal records break\n",[65,1428,1430],{"class":824,"line":1429},21,[65,1431,1432],{"class":1425},"  # ties on the run they came from rather than ordering the iterators.\n",[65,1434,1436,1439,1441],{"class":824,"line":1435},22,[65,1437,1438],{"class":1241},"  heap: list[HeapNode[Record]] ",[65,1440,1182],{"class":1237},[65,1442,1443],{"class":1241}," []\n",[65,1445,1447,1450,1453,1455,1458],{"class":824,"line":1446},23,[65,1448,1449],{"class":1237},"  for",[65,1451,1452],{"class":1241}," run_index, iterator ",[65,1454,1411],{"class":1237},[65,1456,1457],{"class":1339}," enumerate",[65,1459,1460],{"class":1241},"(iterators):\n",[65,1462,1464,1467,1469,1472],{"class":824,"line":1463},24,[65,1465,1466],{"class":1241},"    first ",[65,1468,1182],{"class":1237},[65,1470,1471],{"class":1339}," next",[65,1473,1474],{"class":1241},"(iterator, _SENTINEL)\n",[65,1476,1478,1481,1484,1487],{"class":824,"line":1477},25,[65,1479,1480],{"class":1237},"    if",[65,1482,1483],{"class":1237}," not",[65,1485,1486],{"class":1339}," isinstance",[65,1488,1489],{"class":1241},"(first, _Sentinel):\n",[65,1491,1493],{"class":824,"line":1492},26,[65,1494,1495],{"class":1241},"      heapq.heappush(heap, HeapNode(first, run_index))\n",[65,1497,1499],{"class":824,"line":1498},27,[65,1500,1254],{"emptyLinePlaceholder":1253},[65,1502,1504,1507],{"class":824,"line":1503},28,[65,1505,1506],{"class":1237},"  while",[65,1508,1509],{"class":1241}," heap:\n",[65,1511,1513],{"class":824,"line":1512},29,[65,1514,1515],{"class":1425},"    # emit the global minimum front record.\n",[65,1517,1519,1522,1524],{"class":824,"line":1518},30,[65,1520,1521],{"class":1241},"    node ",[65,1523,1182],{"class":1237},[65,1525,1526],{"class":1241}," heapq.heappop(heap)\n",[65,1528,1530,1533],{"class":824,"line":1529},31,[65,1531,1532],{"class":1237},"    yield",[65,1534,1535],{"class":1241}," node.record\n",[65,1537,1539],{"class":824,"line":1538},32,[65,1540,1254],{"emptyLinePlaceholder":1253},[65,1542,1544],{"class":824,"line":1543},33,[65,1545,1546],{"class":1425},"    # refill the heap from exactly the run we just drained a record from.\n",[65,1548,1550,1553,1555,1557],{"class":824,"line":1549},34,[65,1551,1552],{"class":1241},"    following ",[65,1554,1182],{"class":1237},[65,1556,1471],{"class":1339},[65,1558,1559],{"class":1241},"(iterators[node.run_index], _SENTINEL)\n",[65,1561,1563,1565,1567,1569],{"class":824,"line":1562},35,[65,1564,1480],{"class":1237},[65,1566,1483],{"class":1237},[65,1568,1486],{"class":1339},[65,1570,1571],{"class":1241},"(following, _Sentinel):\n",[65,1573,1575],{"class":824,"line":1574},36,[65,1576,1577],{"class":1241},"      heapq.heappush(heap, HeapNode(following, node.run_index))\n",[65,1579,1581],{"class":824,"line":1580},37,[65,1582,1254],{"emptyLinePlaceholder":1253},[65,1584,1586,1589,1592],{"class":824,"line":1585},38,[65,1587,1588],{"class":1237},"class",[65,1590,1591],{"class":1339}," _Sentinel",[65,1593,1594],{"class":1241},":\n",[65,1596,1598],{"class":824,"line":1597},39,[65,1599,1348],{"class":1318},[65,1601,1603,1606],{"class":824,"line":1602},40,[65,1604,1605],{"class":1318},"    A unique end-of-run marker distinct from any real record, including None.",[65,1607,1356],{"class":1237},[65,1609,1611],{"class":824,"line":1610},41,[65,1612,1348],{"class":1318},[65,1614,1616],{"class":824,"line":1615},42,[65,1617,1254],{"emptyLinePlaceholder":1253},[65,1619,1621,1624,1626],{"class":824,"line":1620},43,[65,1622,1623],{"class":1241},"_SENTINEL: _Sentinel ",[65,1625,1182],{"class":1237},[65,1627,1628],{"class":1241}," _Sentinel()\n",[65,1630,1632],{"class":824,"line":1631},44,[65,1633,1254],{"emptyLinePlaceholder":1253},[65,1635,1637,1639,1642],{"class":824,"line":1636},45,[65,1638,1588],{"class":1237},[65,1640,1641],{"class":1339}," HeapNode",[65,1643,1644],{"class":1241},"(Generic[Record]):\n",[65,1646,1648],{"class":824,"line":1647},46,[65,1649,1348],{"class":1318},[65,1651,1653,1656],{"class":824,"line":1652},47,[65,1654,1655],{"class":1318},"    One heap slot in the explicit k-way merger: a run's current front record",[65,1657,1356],{"class":1237},[65,1659,1661,1664],{"class":824,"line":1660},48,[65,1662,1663],{"class":1318},"    paired with the index of the run it belongs to. Ordered by record, so a",[65,1665,1356],{"class":1237},[65,1667,1669,1672],{"class":824,"line":1668},49,[65,1670,1671],{"class":1318},"    min-heap of these surfaces the global minimum front.",[65,1673,1356],{"class":1237},[65,1675,1677],{"class":824,"line":1676},50,[65,1678,1348],{"class":1318},[65,1680,1682],{"class":824,"line":1681},51,[65,1683,1254],{"emptyLinePlaceholder":1253},[65,1685,1687,1690,1693,1696,1699],{"class":824,"line":1686},52,[65,1688,1689],{"class":1237},"  def",[65,1691,1692],{"class":1339}," __init__",[65,1694,1695],{"class":1241},"(self, record: Record, run_index: ",[65,1697,1698],{"class":1339},"int",[65,1700,1701],{"class":1241},") -> None:\n",[65,1703,1705,1708,1711,1713],{"class":824,"line":1704},53,[65,1706,1707],{"class":1237},"    self",[65,1709,1710],{"class":1241},".record: Record ",[65,1712,1182],{"class":1237},[65,1714,1715],{"class":1241}," record\n",[65,1717,1719,1721,1724,1726,1729],{"class":824,"line":1718},54,[65,1720,1707],{"class":1237},[65,1722,1723],{"class":1241},".run_index: ",[65,1725,1698],{"class":1339},[65,1727,1728],{"class":1237}," =",[65,1730,1731],{"class":1241}," run_index\n",[65,1733,1735],{"class":824,"line":1734},55,[65,1736,1254],{"emptyLinePlaceholder":1253},[65,1738,1740,1742,1745,1748,1750,1753,1756],{"class":824,"line":1739},56,[65,1741,1689],{"class":1237},[65,1743,1744],{"class":1339}," __lt__",[65,1746,1747],{"class":1241},"(self, other: HeapNode[Record], ",[65,1749,281],{"class":1237},[65,1751,1752],{"class":1241},") -> ",[65,1754,1755],{"class":1339},"bool",[65,1757,1594],{"class":1241},[65,1759,1761,1763,1766,1769,1772],{"class":824,"line":1760},57,[65,1762,1480],{"class":1237},[65,1764,1765],{"class":1237}," self",[65,1767,1768],{"class":1241},".record ",[65,1770,1771],{"class":1237},"\u003C",[65,1773,1774],{"class":1241}," other.record:\n",[65,1776,1778,1781],{"class":824,"line":1777},58,[65,1779,1780],{"class":1237},"      return",[65,1782,1783],{"class":1241}," True\n",[65,1785,1787,1789,1792,1794,1796],{"class":824,"line":1786},59,[65,1788,1480],{"class":1237},[65,1790,1791],{"class":1241}," other.record ",[65,1793,1771],{"class":1237},[65,1795,1765],{"class":1237},[65,1797,1798],{"class":1241},".record:\n",[65,1800,1802,1804],{"class":824,"line":1801},60,[65,1803,1780],{"class":1237},[65,1805,1806],{"class":1241}," False\n",[65,1808,1810,1813,1815,1818,1820],{"class":824,"line":1809},61,[65,1811,1812],{"class":1237},"    return",[65,1814,1765],{"class":1237},[65,1816,1817],{"class":1241},".run_index ",[65,1819,1771],{"class":1237},[65,1821,1822],{"class":1241}," other.run_index\n",[65,1824,1826],{"class":824,"line":1825},62,[65,1827,1254],{"emptyLinePlaceholder":1253},[65,1829,1831,1833,1836,1839,1842],{"class":824,"line":1830},63,[65,1832,1689],{"class":1237},[65,1834,1835],{"class":1339}," __repr__",[65,1837,1838],{"class":1241},"(self) -> ",[65,1840,1841],{"class":1339},"str",[65,1843,1594],{"class":1241},[65,1845,1847,1849,1852,1855,1858,1861,1864,1867,1870,1873,1875,1877,1880,1882],{"class":824,"line":1846},64,[65,1848,1812],{"class":1237},[65,1850,1851],{"class":1237}," f",[65,1853,1854],{"class":1318},"\"HeapNode(",[65,1856,1857],{"class":1339},"{",[65,1859,1860],{"class":1237},"self",[65,1862,1863],{"class":1241},".record",[65,1865,1866],{"class":1237},"!r",[65,1868,1869],{"class":1339},"}",[65,1871,1872],{"class":1318},", run=",[65,1874,1857],{"class":1339},[65,1876,1860],{"class":1237},[65,1878,1879],{"class":1241},".run_index",[65,1881,1869],{"class":1339},[65,1883,1884],{"class":1318},")\"\n",[65,1886,1888],{"class":824,"line":1887},65,[65,1889,1254],{"emptyLinePlaceholder":1253},[65,1891,1893,1895,1898],{"class":824,"line":1892},66,[65,1894,1588],{"class":1237},[65,1896,1897],{"class":1339}," KWayMerger",[65,1899,1644],{"class":1241},[65,1901,1903],{"class":824,"line":1902},67,[65,1904,1348],{"class":1318},[65,1906,1908,1911],{"class":824,"line":1907},68,[65,1909,1910],{"class":1318},"    An explicit min-heap merger over k sorted runs.",[65,1912,1356],{"class":1237},[65,1914,1916,1919],{"class":824,"line":1915},69,[65,1917,1918],{"class":1318},"    Mirrors the textbook k-Way-Merge: seed the heap with each run's head,",[65,1920,1356],{"class":1237},[65,1922,1924,1927],{"class":824,"line":1923},70,[65,1925,1926],{"class":1318},"    then repeatedly extract the minimum and reload from its run. Useful when",[65,1928,1356],{"class":1237},[65,1930,1932,1935],{"class":824,"line":1931},71,[65,1933,1934],{"class":1318},"    you want to inspect the heap (its size is the live fan-out) rather than",[65,1936,1356],{"class":1237},[65,1938,1940,1943],{"class":824,"line":1939},72,[65,1941,1942],{"class":1318},"    just consume the merged stream.",[65,1944,1356],{"class":1237},[65,1946,1948],{"class":824,"line":1947},73,[65,1949,1348],{"class":1318},[65,1951,1953],{"class":824,"line":1952},74,[65,1954,1254],{"emptyLinePlaceholder":1253},[65,1956,1958,1960,1962],{"class":824,"line":1957},75,[65,1959,1689],{"class":1237},[65,1961,1692],{"class":1339},[65,1963,1964],{"class":1241},"(self, runs: Iterable[Iterable[Record]]) -> None:\n",[65,1966,1968,1970,1973,1975,1977,1979,1981,1983,1985,1987],{"class":824,"line":1967},76,[65,1969,1707],{"class":1237},[65,1971,1972],{"class":1241},"._iterators: list[Iterator[Record]] ",[65,1974,1182],{"class":1237},[65,1976,1396],{"class":1241},[65,1978,1399],{"class":1339},[65,1980,1402],{"class":1241},[65,1982,1405],{"class":1237},[65,1984,1408],{"class":1241},[65,1986,1411],{"class":1237},[65,1988,1414],{"class":1241},[65,1990,1992],{"class":824,"line":1991},77,[65,1993,1254],{"emptyLinePlaceholder":1253},[65,1995,1997],{"class":824,"line":1996},78,[65,1998,1999],{"class":1425},"    # seed the heap with the head record of each non-empty run.\n",[65,2001,2003,2005,2008,2010],{"class":824,"line":2002},79,[65,2004,1707],{"class":1237},[65,2006,2007],{"class":1241},"._heap: list[HeapNode[Record]] ",[65,2009,1182],{"class":1237},[65,2011,1443],{"class":1241},[65,2013,2015,2018,2020,2022,2024,2026,2028],{"class":824,"line":2014},80,[65,2016,2017],{"class":1237},"    for",[65,2019,1452],{"class":1241},[65,2021,1411],{"class":1237},[65,2023,1457],{"class":1339},[65,2025,172],{"class":1241},[65,2027,1860],{"class":1237},[65,2029,2030],{"class":1241},"._iterators):\n",[65,2032,2034,2037,2039,2041],{"class":824,"line":2033},81,[65,2035,2036],{"class":1241},"      head ",[65,2038,1182],{"class":1237},[65,2040,1471],{"class":1339},[65,2042,1474],{"class":1241},[65,2044,2046,2049,2051,2053],{"class":824,"line":2045},82,[65,2047,2048],{"class":1237},"      if",[65,2050,1483],{"class":1237},[65,2052,1486],{"class":1339},[65,2054,2055],{"class":1241},"(head, _Sentinel):\n",[65,2057,2059,2062,2064],{"class":824,"line":2058},83,[65,2060,2061],{"class":1241},"        heapq.heappush(",[65,2063,1860],{"class":1237},[65,2065,2066],{"class":1241},"._heap, HeapNode(head, run_index))\n",[65,2068,2070],{"class":824,"line":2069},84,[65,2071,1254],{"emptyLinePlaceholder":1253},[65,2073,2075],{"class":824,"line":2074},85,[65,2076,2077],{"class":1339},"  @property\n",[65,2079,2081,2083,2086,2088,2090],{"class":824,"line":2080},86,[65,2082,1689],{"class":1237},[65,2084,2085],{"class":1339}," heap_size",[65,2087,1838],{"class":1241},[65,2089,1698],{"class":1339},[65,2091,1594],{"class":1241},[65,2093,2095],{"class":824,"line":2094},87,[65,2096,2097],{"class":1318},"    \"\"\"\n",[65,2099,2101,2104],{"class":824,"line":2100},88,[65,2102,2103],{"class":1318},"      The number of live run fronts currently buffered — the active fan-out.",[65,2105,1356],{"class":1237},[65,2107,2109],{"class":824,"line":2108},89,[65,2110,2097],{"class":1318},[65,2112,2114,2116,2119,2121,2123],{"class":824,"line":2113},90,[65,2115,1812],{"class":1237},[65,2117,2118],{"class":1339}," len",[65,2120,172],{"class":1241},[65,2122,1860],{"class":1237},[65,2124,2125],{"class":1241},"._heap)\n",[65,2127,2129],{"class":824,"line":2128},91,[65,2130,1254],{"emptyLinePlaceholder":1253},[65,2132,2134,2136,2139],{"class":824,"line":2133},92,[65,2135,1689],{"class":1237},[65,2137,2138],{"class":1339}," __iter__",[65,2140,2141],{"class":1241},"(self) -> Iterator[Record]:\n",[65,2143,2145,2147],{"class":824,"line":2144},93,[65,2146,1812],{"class":1237},[65,2148,2149],{"class":1237}," self\n",[65,2151,2153],{"class":824,"line":2152},94,[65,2154,1254],{"emptyLinePlaceholder":1253},[65,2156,2158,2160,2163],{"class":824,"line":2157},95,[65,2159,1689],{"class":1237},[65,2161,2162],{"class":1339}," __next__",[65,2164,2165],{"class":1241},"(self) -> Record:\n",[65,2167,2169,2171,2173,2175],{"class":824,"line":2168},96,[65,2170,1480],{"class":1237},[65,2172,1483],{"class":1237},[65,2174,1765],{"class":1237},[65,2176,2177],{"class":1241},"._heap:\n",[65,2179,2181,2184],{"class":824,"line":2180},97,[65,2182,2183],{"class":1237},"      raise",[65,2185,2186],{"class":1339}," StopIteration\n",[65,2188,2190],{"class":824,"line":2189},98,[65,2191,1254],{"emptyLinePlaceholder":1253},[65,2193,2195],{"class":824,"line":2194},99,[65,2196,2197],{"class":1425},"    # pop the global minimum, then reload from the run it came from.\n",[65,2199,2201,2203,2205,2208,2210],{"class":824,"line":2200},100,[65,2202,1521],{"class":1241},[65,2204,1182],{"class":1237},[65,2206,2207],{"class":1241}," heapq.heappop(",[65,2209,1860],{"class":1237},[65,2211,2125],{"class":1241},[65,2213,2215,2217,2219,2221,2223,2225],{"class":824,"line":2214},101,[65,2216,1552],{"class":1241},[65,2218,1182],{"class":1237},[65,2220,1471],{"class":1339},[65,2222,172],{"class":1241},[65,2224,1860],{"class":1237},[65,2226,2227],{"class":1241},"._iterators[node.run_index], _SENTINEL)\n",[65,2229,2231,2233,2235,2237],{"class":824,"line":2230},102,[65,2232,1480],{"class":1237},[65,2234,1483],{"class":1237},[65,2236,1486],{"class":1339},[65,2238,1571],{"class":1241},[65,2240,2242,2245,2247],{"class":824,"line":2241},103,[65,2243,2244],{"class":1241},"      heapq.heappush(",[65,2246,1860],{"class":1237},[65,2248,2249],{"class":1241},"._heap, HeapNode(following, node.run_index))\n",[65,2251,2253,2255],{"class":824,"line":2252},104,[65,2254,1812],{"class":1237},[65,2256,1535],{"class":1241},[814,2258,2261],{"className":1227,"code":2259,"filename":2260,"language":1230,"meta":6,"style":6},"from collections.abc import Iterable, Iterator, Sequence\nfrom typing import TypeVar\nfrom comparable import Comparable\nfrom k_way_merge import k_way_merge\n\n\nRecord = TypeVar(\"Record\", bound=Comparable)\n\n\ndef form_runs(\n  records: Iterable[Record], memory_size: int\n) -> list[list[Record]]:\n  \"\"\"\n    Phase 1 — run formation. Read the input one memory-load of up to\\n\n    `memory_size` records at a time, sort each load internally, and emit it\\n\n    as one sorted run. Yields about ceil(N \u002F memory_size) runs.\\n\n  \"\"\"\n  if memory_size \u003C 1:\n    raise ValueError(\"memory_size must be at least 1\")\n\n  # fill a memory load, sort it into a run, then start the next load.\n  runs: list[list[Record]] = []\n  load: list[Record] = []\n  for record in records:\n    load.append(record)\n    if len(load) == memory_size:\n      runs.append(sorted(load))\n      load = []\n\n  # sort the trailing partial load, if any.\n  if load:\n    runs.append(sorted(load))\n  return runs\n\n\ndef merge_pass(\n  runs: Sequence[Sequence[Record]], fan_out: int\n) -> list[list[Record]]:\n  \"\"\"\n    One merge pass with fan-out `fan_out`. Group the runs into consecutive\\n\n    batches of at most `fan_out` and k-way merge each batch into a single\\n\n    run, dividing the run count by `fan_out`.\\n\n  \"\"\"\n  if fan_out \u003C 2:\n    raise ValueError(\"fan_out must be at least 2\")\n\n  # fold each consecutive batch of up to fan_out runs into one merged run.\n  merged: list[list[Record]] = []\n  for start in range(0, len(runs), fan_out):\n    batch: Sequence[Sequence[Record]] = runs[start : start + fan_out]\n    merged.append(list(k_way_merge(batch)))\n  return merged\n\n\ndef external_merge_sort(\n  records: Iterable[Record], memory_size: int, fan_out: int = 2\n) -> list[Record]:\n  \"\"\"\n    Sort `records` end to end with external merge sort: form memory-sized\\n\n    runs, then repeatedly `fan_out`-way merge until a single sorted run\\n\n    remains. Returns that run as a list.\\n\n  \"\"\"\n  # phase 1: form memory-sized sorted runs.\n  runs: list[list[Record]] = form_runs(records, memory_size)\n  if not runs:\n    return []\n\n  # phase 2: each pass replaces fan_out runs with one until just one survives.\n  while len(runs) > 1:\n    runs = merge_pass(runs, fan_out)\n  return runs[0]\n\n\ndef streaming_external_sort(\n  records: Iterable[Record], memory_size: int, fan_out: int = 2\n) -> Iterator[Record]:\n  \"\"\"\n    External merge sort that yields the final sorted stream lazily. The last\\n\n    merge pass is consumed on demand, so the fully merged output never needs\\n\n    to be materialized in memory all at once.\\n\n  \"\"\"\n  # phase 1: form memory-sized sorted runs.\n  runs: list[list[Record]] = form_runs(records, memory_size)\n  if not runs:\n    return iter(())\n\n  # merge down to at most `fan_out` runs eagerly, then stream the final fold.\n  while len(runs) > fan_out:\n    runs = merge_pass(runs, fan_out)\n  return k_way_merge(runs)\n","external_merge_sort.py",[820,2262,2263,2274,2285,2295,2307,2311,2315,2331,2335,2339,2349,2357,2362,2366,2373,2380,2387,2391,2406,2422,2426,2431,2440,2449,2461,2466,2481,2492,2501,2505,2510,2517,2526,2534,2538,2542,2551,2558,2562,2566,2573,2580,2587,2591,2605,2618,2622,2627,2636,2662,2678,2689,2696,2700,2704,2713,2729,2734,2738,2745,2752,2759,2763,2768,2777,2786,2792,2796,2801,2817,2827,2839,2843,2847,2856,2870,2875,2879,2886,2893,2900,2904,2908,2916,2924,2934,2938,2943,2956,2964],{"__ignoreMap":6},[65,2264,2265,2267,2269,2271],{"class":824,"line":825},[65,2266,1238],{"class":1237},[65,2268,1268],{"class":1241},[65,2270,1245],{"class":1237},[65,2272,2273],{"class":1241}," Iterable, Iterator, Sequence\n",[65,2275,2276,2278,2280,2282],{"class":824,"line":831},[65,2277,1238],{"class":1237},[65,2279,1280],{"class":1241},[65,2281,1245],{"class":1237},[65,2283,2284],{"class":1241}," TypeVar\n",[65,2286,2287,2289,2291,2293],{"class":824,"line":837},[65,2288,1238],{"class":1237},[65,2290,1296],{"class":1241},[65,2292,1245],{"class":1237},[65,2294,1301],{"class":1241},[65,2296,2297,2299,2302,2304],{"class":824,"line":843},[65,2298,1238],{"class":1237},[65,2300,2301],{"class":1241}," k_way_merge ",[65,2303,1245],{"class":1237},[65,2305,2306],{"class":1241}," k_way_merge\n",[65,2308,2309],{"class":824,"line":849},[65,2310,1254],{"emptyLinePlaceholder":1253},[65,2312,2313],{"class":824,"line":855},[65,2314,1254],{"emptyLinePlaceholder":1253},[65,2316,2317,2319,2321,2323,2325,2327,2329],{"class":824,"line":861},[65,2318,1310],{"class":1241},[65,2320,1182],{"class":1237},[65,2322,1315],{"class":1241},[65,2324,1319],{"class":1318},[65,2326,1322],{"class":1241},[65,2328,1182],{"class":1237},[65,2330,1327],{"class":1241},[65,2332,2333],{"class":824,"line":867},[65,2334,1254],{"emptyLinePlaceholder":1253},[65,2336,2337],{"class":824,"line":873},[65,2338,1254],{"emptyLinePlaceholder":1253},[65,2340,2341,2343,2346],{"class":824,"line":879},[65,2342,1336],{"class":1237},[65,2344,2345],{"class":1339}," form_runs",[65,2347,2348],{"class":1241},"(\n",[65,2350,2351,2354],{"class":824,"line":885},[65,2352,2353],{"class":1241},"  records: Iterable[Record], memory_size: ",[65,2355,2356],{"class":1339},"int\n",[65,2358,2359],{"class":824,"line":891},[65,2360,2361],{"class":1241},") -> list[list[Record]]:\n",[65,2363,2364],{"class":824,"line":897},[65,2365,1348],{"class":1318},[65,2367,2368,2371],{"class":824,"line":1359},[65,2369,2370],{"class":1318},"    Phase 1 — run formation. Read the input one memory-load of up to",[65,2372,1356],{"class":1237},[65,2374,2375,2378],{"class":824,"line":1367},[65,2376,2377],{"class":1318},"    `memory_size` records at a time, sort each load internally, and emit it",[65,2379,1356],{"class":1237},[65,2381,2382,2385],{"class":824,"line":1375},[65,2383,2384],{"class":1318},"    as one sorted run. Yields about ceil(N \u002F memory_size) runs.",[65,2386,1356],{"class":1237},[65,2388,2389],{"class":824,"line":1383},[65,2390,1348],{"class":1318},[65,2392,2393,2396,2399,2401,2404],{"class":824,"line":1388},[65,2394,2395],{"class":1237},"  if",[65,2397,2398],{"class":1241}," memory_size ",[65,2400,1771],{"class":1237},[65,2402,2403],{"class":1339}," 1",[65,2405,1594],{"class":1241},[65,2407,2408,2411,2414,2416,2419],{"class":824,"line":1417},[65,2409,2410],{"class":1237},"    raise",[65,2412,2413],{"class":1339}," ValueError",[65,2415,172],{"class":1241},[65,2417,2418],{"class":1318},"\"memory_size must be at least 1\"",[65,2420,2421],{"class":1241},")\n",[65,2423,2424],{"class":824,"line":1422},[65,2425,1254],{"emptyLinePlaceholder":1253},[65,2427,2428],{"class":824,"line":1429},[65,2429,2430],{"class":1425},"  # fill a memory load, sort it into a run, then start the next load.\n",[65,2432,2433,2436,2438],{"class":824,"line":1435},[65,2434,2435],{"class":1241},"  runs: list[list[Record]] ",[65,2437,1182],{"class":1237},[65,2439,1443],{"class":1241},[65,2441,2442,2445,2447],{"class":824,"line":1446},[65,2443,2444],{"class":1241},"  load: list[Record] ",[65,2446,1182],{"class":1237},[65,2448,1443],{"class":1241},[65,2450,2451,2453,2456,2458],{"class":824,"line":1463},[65,2452,1449],{"class":1237},[65,2454,2455],{"class":1241}," record ",[65,2457,1411],{"class":1237},[65,2459,2460],{"class":1241}," records:\n",[65,2462,2463],{"class":824,"line":1477},[65,2464,2465],{"class":1241},"    load.append(record)\n",[65,2467,2468,2470,2472,2475,2478],{"class":824,"line":1492},[65,2469,1480],{"class":1237},[65,2471,2118],{"class":1339},[65,2473,2474],{"class":1241},"(load) ",[65,2476,2477],{"class":1237},"==",[65,2479,2480],{"class":1241}," memory_size:\n",[65,2482,2483,2486,2489],{"class":824,"line":1498},[65,2484,2485],{"class":1241},"      runs.append(",[65,2487,2488],{"class":1339},"sorted",[65,2490,2491],{"class":1241},"(load))\n",[65,2493,2494,2497,2499],{"class":824,"line":1503},[65,2495,2496],{"class":1241},"      load ",[65,2498,1182],{"class":1237},[65,2500,1443],{"class":1241},[65,2502,2503],{"class":824,"line":1512},[65,2504,1254],{"emptyLinePlaceholder":1253},[65,2506,2507],{"class":824,"line":1518},[65,2508,2509],{"class":1425},"  # sort the trailing partial load, if any.\n",[65,2511,2512,2514],{"class":824,"line":1529},[65,2513,2395],{"class":1237},[65,2515,2516],{"class":1241}," load:\n",[65,2518,2519,2522,2524],{"class":824,"line":1538},[65,2520,2521],{"class":1241},"    runs.append(",[65,2523,2488],{"class":1339},[65,2525,2491],{"class":1241},[65,2527,2528,2531],{"class":824,"line":1543},[65,2529,2530],{"class":1237},"  return",[65,2532,2533],{"class":1241}," runs\n",[65,2535,2536],{"class":824,"line":1549},[65,2537,1254],{"emptyLinePlaceholder":1253},[65,2539,2540],{"class":824,"line":1562},[65,2541,1254],{"emptyLinePlaceholder":1253},[65,2543,2544,2546,2549],{"class":824,"line":1574},[65,2545,1336],{"class":1237},[65,2547,2548],{"class":1339}," merge_pass",[65,2550,2348],{"class":1241},[65,2552,2553,2556],{"class":824,"line":1580},[65,2554,2555],{"class":1241},"  runs: Sequence[Sequence[Record]], fan_out: ",[65,2557,2356],{"class":1339},[65,2559,2560],{"class":824,"line":1585},[65,2561,2361],{"class":1241},[65,2563,2564],{"class":824,"line":1597},[65,2565,1348],{"class":1318},[65,2567,2568,2571],{"class":824,"line":1602},[65,2569,2570],{"class":1318},"    One merge pass with fan-out `fan_out`. Group the runs into consecutive",[65,2572,1356],{"class":1237},[65,2574,2575,2578],{"class":824,"line":1610},[65,2576,2577],{"class":1318},"    batches of at most `fan_out` and k-way merge each batch into a single",[65,2579,1356],{"class":1237},[65,2581,2582,2585],{"class":824,"line":1615},[65,2583,2584],{"class":1318},"    run, dividing the run count by `fan_out`.",[65,2586,1356],{"class":1237},[65,2588,2589],{"class":824,"line":1620},[65,2590,1348],{"class":1318},[65,2592,2593,2595,2598,2600,2603],{"class":824,"line":1631},[65,2594,2395],{"class":1237},[65,2596,2597],{"class":1241}," fan_out ",[65,2599,1771],{"class":1237},[65,2601,2602],{"class":1339}," 2",[65,2604,1594],{"class":1241},[65,2606,2607,2609,2611,2613,2616],{"class":824,"line":1636},[65,2608,2410],{"class":1237},[65,2610,2413],{"class":1339},[65,2612,172],{"class":1241},[65,2614,2615],{"class":1318},"\"fan_out must be at least 2\"",[65,2617,2421],{"class":1241},[65,2619,2620],{"class":824,"line":1647},[65,2621,1254],{"emptyLinePlaceholder":1253},[65,2623,2624],{"class":824,"line":1652},[65,2625,2626],{"class":1425},"  # fold each consecutive batch of up to fan_out runs into one merged run.\n",[65,2628,2629,2632,2634],{"class":824,"line":1660},[65,2630,2631],{"class":1241},"  merged: list[list[Record]] ",[65,2633,1182],{"class":1237},[65,2635,1443],{"class":1241},[65,2637,2638,2640,2643,2645,2648,2650,2653,2656,2659],{"class":824,"line":1668},[65,2639,1449],{"class":1237},[65,2641,2642],{"class":1241}," start ",[65,2644,1411],{"class":1237},[65,2646,2647],{"class":1339}," range",[65,2649,172],{"class":1241},[65,2651,2652],{"class":1339},"0",[65,2654,2655],{"class":1241},", ",[65,2657,2658],{"class":1339},"len",[65,2660,2661],{"class":1241},"(runs), fan_out):\n",[65,2663,2664,2667,2669,2672,2675],{"class":824,"line":1676},[65,2665,2666],{"class":1241},"    batch: Sequence[Sequence[Record]] ",[65,2668,1182],{"class":1237},[65,2670,2671],{"class":1241}," runs[start : start ",[65,2673,2674],{"class":1237},"+",[65,2676,2677],{"class":1241}," fan_out]\n",[65,2679,2680,2683,2686],{"class":824,"line":1681},[65,2681,2682],{"class":1241},"    merged.append(",[65,2684,2685],{"class":1339},"list",[65,2687,2688],{"class":1241},"(k_way_merge(batch)))\n",[65,2690,2691,2693],{"class":824,"line":1686},[65,2692,2530],{"class":1237},[65,2694,2695],{"class":1241}," merged\n",[65,2697,2698],{"class":824,"line":1704},[65,2699,1254],{"emptyLinePlaceholder":1253},[65,2701,2702],{"class":824,"line":1718},[65,2703,1254],{"emptyLinePlaceholder":1253},[65,2705,2706,2708,2711],{"class":824,"line":1734},[65,2707,1336],{"class":1237},[65,2709,2710],{"class":1339}," external_merge_sort",[65,2712,2348],{"class":1241},[65,2714,2715,2717,2719,2722,2724,2726],{"class":824,"line":1739},[65,2716,2353],{"class":1241},[65,2718,1698],{"class":1339},[65,2720,2721],{"class":1241},", fan_out: ",[65,2723,1698],{"class":1339},[65,2725,1728],{"class":1237},[65,2727,2728],{"class":1339}," 2\n",[65,2730,2731],{"class":824,"line":1760},[65,2732,2733],{"class":1241},") -> list[Record]:\n",[65,2735,2736],{"class":824,"line":1777},[65,2737,1348],{"class":1318},[65,2739,2740,2743],{"class":824,"line":1786},[65,2741,2742],{"class":1318},"    Sort `records` end to end with external merge sort: form memory-sized",[65,2744,1356],{"class":1237},[65,2746,2747,2750],{"class":824,"line":1801},[65,2748,2749],{"class":1318},"    runs, then repeatedly `fan_out`-way merge until a single sorted run",[65,2751,1356],{"class":1237},[65,2753,2754,2757],{"class":824,"line":1809},[65,2755,2756],{"class":1318},"    remains. Returns that run as a list.",[65,2758,1356],{"class":1237},[65,2760,2761],{"class":824,"line":1825},[65,2762,1348],{"class":1318},[65,2764,2765],{"class":824,"line":1830},[65,2766,2767],{"class":1425},"  # phase 1: form memory-sized sorted runs.\n",[65,2769,2770,2772,2774],{"class":824,"line":1846},[65,2771,2435],{"class":1241},[65,2773,1182],{"class":1237},[65,2775,2776],{"class":1241}," form_runs(records, memory_size)\n",[65,2778,2779,2781,2783],{"class":824,"line":1887},[65,2780,2395],{"class":1237},[65,2782,1483],{"class":1237},[65,2784,2785],{"class":1241}," runs:\n",[65,2787,2788,2790],{"class":824,"line":1892},[65,2789,1812],{"class":1237},[65,2791,1443],{"class":1241},[65,2793,2794],{"class":824,"line":1902},[65,2795,1254],{"emptyLinePlaceholder":1253},[65,2797,2798],{"class":824,"line":1907},[65,2799,2800],{"class":1425},"  # phase 2: each pass replaces fan_out runs with one until just one survives.\n",[65,2802,2803,2805,2807,2810,2813,2815],{"class":824,"line":1915},[65,2804,1506],{"class":1237},[65,2806,2118],{"class":1339},[65,2808,2809],{"class":1241},"(runs) ",[65,2811,2812],{"class":1237},">",[65,2814,2403],{"class":1339},[65,2816,1594],{"class":1241},[65,2818,2819,2822,2824],{"class":824,"line":1923},[65,2820,2821],{"class":1241},"    runs ",[65,2823,1182],{"class":1237},[65,2825,2826],{"class":1241}," merge_pass(runs, fan_out)\n",[65,2828,2829,2831,2834,2836],{"class":824,"line":1931},[65,2830,2530],{"class":1237},[65,2832,2833],{"class":1241}," runs[",[65,2835,2652],{"class":1339},[65,2837,2838],{"class":1241},"]\n",[65,2840,2841],{"class":824,"line":1939},[65,2842,1254],{"emptyLinePlaceholder":1253},[65,2844,2845],{"class":824,"line":1947},[65,2846,1254],{"emptyLinePlaceholder":1253},[65,2848,2849,2851,2854],{"class":824,"line":1952},[65,2850,1336],{"class":1237},[65,2852,2853],{"class":1339}," streaming_external_sort",[65,2855,2348],{"class":1241},[65,2857,2858,2860,2862,2864,2866,2868],{"class":824,"line":1957},[65,2859,2353],{"class":1241},[65,2861,1698],{"class":1339},[65,2863,2721],{"class":1241},[65,2865,1698],{"class":1339},[65,2867,1728],{"class":1237},[65,2869,2728],{"class":1339},[65,2871,2872],{"class":824,"line":1967},[65,2873,2874],{"class":1241},") -> Iterator[Record]:\n",[65,2876,2877],{"class":824,"line":1991},[65,2878,1348],{"class":1318},[65,2880,2881,2884],{"class":824,"line":1996},[65,2882,2883],{"class":1318},"    External merge sort that yields the final sorted stream lazily. The last",[65,2885,1356],{"class":1237},[65,2887,2888,2891],{"class":824,"line":2002},[65,2889,2890],{"class":1318},"    merge pass is consumed on demand, so the fully merged output never needs",[65,2892,1356],{"class":1237},[65,2894,2895,2898],{"class":824,"line":2014},[65,2896,2897],{"class":1318},"    to be materialized in memory all at once.",[65,2899,1356],{"class":1237},[65,2901,2902],{"class":824,"line":2033},[65,2903,1348],{"class":1318},[65,2905,2906],{"class":824,"line":2045},[65,2907,2767],{"class":1425},[65,2909,2910,2912,2914],{"class":824,"line":2058},[65,2911,2435],{"class":1241},[65,2913,1182],{"class":1237},[65,2915,2776],{"class":1241},[65,2917,2918,2920,2922],{"class":824,"line":2069},[65,2919,2395],{"class":1237},[65,2921,1483],{"class":1237},[65,2923,2785],{"class":1241},[65,2925,2926,2928,2931],{"class":824,"line":2074},[65,2927,1812],{"class":1237},[65,2929,2930],{"class":1339}," iter",[65,2932,2933],{"class":1241},"(())\n",[65,2935,2936],{"class":824,"line":2080},[65,2937,1254],{"emptyLinePlaceholder":1253},[65,2939,2940],{"class":824,"line":2094},[65,2941,2942],{"class":1425},"  # merge down to at most `fan_out` runs eagerly, then stream the final fold.\n",[65,2944,2945,2947,2949,2951,2953],{"class":824,"line":2100},[65,2946,1506],{"class":1237},[65,2948,2118],{"class":1339},[65,2950,2809],{"class":1241},[65,2952,2812],{"class":1237},[65,2954,2955],{"class":1241}," fan_out:\n",[65,2957,2958,2960,2962],{"class":824,"line":2108},[65,2959,2821],{"class":1241},[65,2961,1182],{"class":1237},[65,2963,2826],{"class":1241},[65,2965,2966,2968],{"class":824,"line":2113},[65,2967,2530],{"class":1237},[65,2969,2970],{"class":1241}," k_way_merge(runs)\n",[814,2972,2975],{"className":1227,"code":2973,"filename":2974,"language":1230,"meta":6,"style":6},"from typing import Any, Protocol, TypeVar\n\n\nclass Comparable(Protocol):\n  \"\"\"\n    Anything orderable with `\u003C` (int, float, str, tuple, date, …).\\n\n  \"\"\"\n\n  # `other` is position-only so built-ins (int, str, …), whose dunder\n  # operands are position-only, structurally satisfy the protocol.\n  def __lt__(self, other: Any, \u002F) -> bool: ...\n  def __gt__(self, other: Any, \u002F) -> bool: ...\n  def __le__(self, other: Any, \u002F) -> bool: ...\n  def __ge__(self, other: Any, \u002F) -> bool: ...\n","comparable.py",[820,2976,2977,2988,2992,2996,3006,3010,3017,3021,3025,3030,3035,3053,3070,3087],{"__ignoreMap":6},[65,2978,2979,2981,2983,2985],{"class":824,"line":825},[65,2980,1238],{"class":1237},[65,2982,1280],{"class":1241},[65,2984,1245],{"class":1237},[65,2986,2987],{"class":1241}," Any, Protocol, TypeVar\n",[65,2989,2990],{"class":824,"line":831},[65,2991,1254],{"emptyLinePlaceholder":1253},[65,2993,2994],{"class":824,"line":837},[65,2995,1254],{"emptyLinePlaceholder":1253},[65,2997,2998,3000,3003],{"class":824,"line":843},[65,2999,1588],{"class":1237},[65,3001,3002],{"class":1339}," Comparable",[65,3004,3005],{"class":1241},"(Protocol):\n",[65,3007,3008],{"class":824,"line":849},[65,3009,1348],{"class":1318},[65,3011,3012,3015],{"class":824,"line":855},[65,3013,3014],{"class":1318},"    Anything orderable with `\u003C` (int, float, str, tuple, date, …).",[65,3016,1356],{"class":1237},[65,3018,3019],{"class":824,"line":861},[65,3020,1348],{"class":1318},[65,3022,3023],{"class":824,"line":867},[65,3024,1254],{"emptyLinePlaceholder":1253},[65,3026,3027],{"class":824,"line":873},[65,3028,3029],{"class":1425},"  # `other` is position-only so built-ins (int, str, …), whose dunder\n",[65,3031,3032],{"class":824,"line":879},[65,3033,3034],{"class":1425},"  # operands are position-only, structurally satisfy the protocol.\n",[65,3036,3037,3039,3041,3044,3046,3048,3050],{"class":824,"line":885},[65,3038,1689],{"class":1237},[65,3040,1744],{"class":1339},[65,3042,3043],{"class":1241},"(self, other: Any, ",[65,3045,281],{"class":1237},[65,3047,1752],{"class":1241},[65,3049,1755],{"class":1339},[65,3051,3052],{"class":1241},": ...\n",[65,3054,3055,3057,3060,3062,3064,3066,3068],{"class":824,"line":891},[65,3056,1689],{"class":1237},[65,3058,3059],{"class":1339}," __gt__",[65,3061,3043],{"class":1241},[65,3063,281],{"class":1237},[65,3065,1752],{"class":1241},[65,3067,1755],{"class":1339},[65,3069,3052],{"class":1241},[65,3071,3072,3074,3077,3079,3081,3083,3085],{"class":824,"line":897},[65,3073,1689],{"class":1237},[65,3075,3076],{"class":1339}," __le__",[65,3078,3043],{"class":1241},[65,3080,281],{"class":1237},[65,3082,1752],{"class":1241},[65,3084,1755],{"class":1339},[65,3086,3052],{"class":1241},[65,3088,3089,3091,3094,3096,3098,3100,3102],{"class":824,"line":1359},[65,3090,1689],{"class":1237},[65,3092,3093],{"class":1339}," __ge__",[65,3095,3043],{"class":1241},[65,3097,281],{"class":1237},[65,3099,1752],{"class":1241},[65,3101,1755],{"class":1339},[65,3103,3052],{"class":1241},[49,3105,3107],{"id":3106},"how-many-passes","How many passes?",[11,3109,3110,3111,3138,3139,3154,3155,3170,3171,812],{},"This is the figure of merit. Phase 1 produces ",[65,3112,3114],{"className":3113},[68],[65,3115,3117],{"className":3116,"ariaHidden":73},[72],[65,3118,3120,3123,3126,3129,3132,3135],{"className":3119},[77],[65,3121],{"className":3122,"style":163},[81],[65,3124,274],{"className":3125},[171],[65,3127,176],{"className":3128,"style":120},[86,87],[65,3130,281],{"className":3131},[86],[65,3133,121],{"className":3134,"style":120},[86,87],[65,3136,288],{"className":3137},[201]," runs. Each\nmerging pass reads every run once and writes the merged output once, a full\nsequential sweep of the data, and replaces ",[65,3140,3142],{"className":3141},[68],[65,3143,3145],{"className":3144,"ariaHidden":73},[72],[65,3146,3148,3151],{"className":3147},[77],[65,3149],{"className":3150,"style":593},[81],[65,3152,598],{"className":3153,"style":597},[86,87]," runs with one, dividing the run\ncount by ",[65,3156,3158],{"className":3157},[68],[65,3159,3161],{"className":3160,"ariaHidden":73},[72],[65,3162,3164,3167],{"className":3163},[77],[65,3165],{"className":3166,"style":593},[81],[65,3168,598],{"className":3169,"style":597},[86,87],". We are done when the count reaches ",[65,3172,3174],{"className":3173},[68],[65,3175,3177],{"className":3176,"ariaHidden":73},[72],[65,3178,3180,3183],{"className":3179},[77],[65,3181],{"className":3182,"style":1151},[81],[65,3184,3186],{"className":3185},[86],"1",[96,3188,3190,3212,3389],{"type":3189},"theorem",[11,3191,3192,3195,3196,3211],{},[40,3193,3194],{},"Theorem (Pass count)."," External merge sort with fan-out ",[65,3197,3199],{"className":3198},[68],[65,3200,3202],{"className":3201,"ariaHidden":73},[72],[65,3203,3205,3208],{"className":3204},[77],[65,3206],{"className":3207,"style":593},[81],[65,3209,598],{"className":3210,"style":597},[86,87]," performs",[65,3213,3216],{"className":3214},[3215],"katex-display",[65,3217,3219],{"className":3218},[68],[65,3220,3222,3243],{"className":3221,"ariaHidden":73},[72],[65,3223,3225,3229,3232,3236,3240],{"className":3224},[77],[65,3226],{"className":3227,"style":3228},[81],"height:0.7278em;vertical-align:-0.0833em;",[65,3230,3186],{"className":3231},[86],[65,3233],{"className":3234,"style":3235},[180],"margin-right:0.2222em;",[65,3237,2674],{"className":3238},[3239],"mbin",[65,3241],{"className":3242,"style":3235},[180],[65,3244,3246,3250,3258,3302,3305,3383],{"className":3245},[77],[65,3247],{"className":3248,"style":3249},[81],"height:1.8em;vertical-align:-0.65em;",[65,3251,3253],{"className":3252},[171],[65,3254,274],{"className":3255},[3256,3257],"delimsizing","size2",[65,3259,3261,3267],{"className":3260},[185],[65,3262,3264],{"className":3263},[185],[65,3265,191],{"className":3266,"style":190},[86,189],[65,3268,3270],{"className":3269},[518],[65,3271,3273,3294],{"className":3272},[522,523],[65,3274,3276,3291],{"className":3275},[527],[65,3277,3280],{"className":3278,"style":3279},[531],"height:0.242em;",[65,3281,3282,3285],{"style":535},[65,3283],{"className":3284,"style":540},[539],[65,3286,3288],{"className":3287},[544,545,546,547],[65,3289,598],{"className":3290,"style":597},[86,87,547],[65,3292,555],{"className":3293},[554],[65,3295,3297],{"className":3296},[527],[65,3298,3300],{"className":3299,"style":562},[531],[65,3301],{},[65,3303],{"className":3304,"style":181},[180],[65,3306,3308,3312,3380],{"className":3307},[86],[65,3309],{"className":3310},[171,3311],"nulldelimiter",[65,3313,3316],{"className":3314},[3315],"mfrac",[65,3317,3319,3371],{"className":3318},[522,523],[65,3320,3322,3368],{"className":3321},[527],[65,3323,3326,3342,3353],{"className":3324,"style":3325},[531],"height:0.8723em;",[65,3327,3329,3333],{"style":3328},"top:-2.655em;",[65,3330],{"className":3331,"style":3332},[539],"height:3em;",[65,3334,3336],{"className":3335},[544,545,546,547],[65,3337,3339],{"className":3338},[86,547],[65,3340,121],{"className":3341,"style":120},[86,87,547],[65,3343,3345,3348],{"style":3344},"top:-3.23em;",[65,3346],{"className":3347,"style":3332},[539],[65,3349],{"className":3350,"style":3352},[3351],"frac-line","border-bottom-width:0.04em;",[65,3354,3356,3359],{"style":3355},"top:-3.394em;",[65,3357],{"className":3358,"style":3332},[539],[65,3360,3362],{"className":3361},[544,545,546,547],[65,3363,3365],{"className":3364},[86,547],[65,3366,176],{"className":3367,"style":120},[86,87,547],[65,3369,555],{"className":3370},[554],[65,3372,3374],{"className":3373},[527],[65,3375,3378],{"className":3376,"style":3377},[531],"height:0.345em;",[65,3379],{},[65,3381],{"className":3382},[201,3311],[65,3384,3386],{"className":3385},[201],[65,3387,288],{"className":3388},[3256,3257],[11,3390,3391,3392,3466],{},"sequential passes over the data: one run-formation pass plus\n",[65,3393,3395],{"className":3394},[68],[65,3396,3398],{"className":3397,"ariaHidden":73},[72],[65,3399,3401,3404,3407,3450,3453,3456,3459,3462],{"className":3400},[77],[65,3402],{"className":3403,"style":163},[81],[65,3405,274],{"className":3406},[171],[65,3408,3410,3416],{"className":3409},[185],[65,3411,3413],{"className":3412},[185],[65,3414,191],{"className":3415,"style":190},[86,189],[65,3417,3419],{"className":3418},[518],[65,3420,3422,3442],{"className":3421},[522,523],[65,3423,3425,3439],{"className":3424},[527],[65,3426,3428],{"className":3427,"style":3279},[531],[65,3429,3430,3433],{"style":535},[65,3431],{"className":3432,"style":540},[539],[65,3434,3436],{"className":3435},[544,545,546,547],[65,3437,598],{"className":3438,"style":597},[86,87,547],[65,3440,555],{"className":3441},[554],[65,3443,3445],{"className":3444},[527],[65,3446,3448],{"className":3447,"style":562},[531],[65,3449],{},[65,3451,172],{"className":3452},[171],[65,3454,176],{"className":3455,"style":120},[86,87],[65,3457,281],{"className":3458},[86],[65,3460,121],{"className":3461,"style":120},[86,87],[65,3463,3465],{"className":3464},[201],")⌉"," merge passes.",[96,3468,3470],{"type":3469},"proof",[11,3471,3472,3475,3476,3563,3564,3579,3580,3596,3597,3624,3625,3641,3642,3734,3735,3750,3751,3849,3850,4048,4049],{},[40,3473,3474],{},"Proof."," After phase 1 there are ",[65,3477,3479],{"className":3478},[68],[65,3480,3482,3542],{"className":3481,"ariaHidden":73},[72],[65,3483,3485,3489,3533,3536,3539],{"className":3484},[77],[65,3486],{"className":3487,"style":3488},[81],"height:0.5806em;vertical-align:-0.15em;",[65,3490,3492,3496],{"className":3491},[86],[65,3493,3495],{"className":3494,"style":758},[86,87],"r",[65,3497,3499],{"className":3498},[518],[65,3500,3502,3524],{"className":3501},[522,523],[65,3503,3505,3521],{"className":3504},[527],[65,3506,3509],{"className":3507,"style":3508},[531],"height:0.3011em;",[65,3510,3512,3515],{"style":3511},"top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;",[65,3513],{"className":3514,"style":540},[539],[65,3516,3518],{"className":3517},[544,545,546,547],[65,3519,2652],{"className":3520},[86,547],[65,3522,555],{"className":3523},[554],[65,3525,3527],{"className":3526},[527],[65,3528,3531],{"className":3529,"style":3530},[531],"height:0.15em;",[65,3532],{},[65,3534],{"className":3535,"style":1177},[180],[65,3537,1182],{"className":3538},[1181],[65,3540],{"className":3541,"style":1177},[180],[65,3543,3545,3548,3551,3554,3557,3560],{"className":3544},[77],[65,3546],{"className":3547,"style":163},[81],[65,3549,274],{"className":3550},[171],[65,3552,176],{"className":3553,"style":120},[86,87],[65,3555,281],{"className":3556},[86],[65,3558,121],{"className":3559,"style":120},[86,87],[65,3561,288],{"className":3562},[201]," runs. A ",[65,3565,3567],{"className":3566},[68],[65,3568,3570],{"className":3569,"ariaHidden":73},[72],[65,3571,3573,3576],{"className":3572},[77],[65,3574],{"className":3575,"style":593},[81],[65,3577,598],{"className":3578,"style":597},[86,87],"-way merge\npass maps ",[65,3581,3583],{"className":3582},[68],[65,3584,3586],{"className":3585,"ariaHidden":73},[72],[65,3587,3589,3593],{"className":3588},[77],[65,3590],{"className":3591,"style":3592},[81],"height:0.4306em;",[65,3594,3495],{"className":3595,"style":758},[86,87]," runs to ",[65,3598,3600],{"className":3599},[68],[65,3601,3603],{"className":3602,"ariaHidden":73},[72],[65,3604,3606,3609,3612,3615,3618,3621],{"className":3605},[77],[65,3607],{"className":3608,"style":163},[81],[65,3610,274],{"className":3611},[171],[65,3613,3495],{"className":3614,"style":758},[86,87],[65,3616,281],{"className":3617},[86],[65,3619,598],{"className":3620,"style":597},[86,87],[65,3622,288],{"className":3623},[201]," runs, so after ",[65,3626,3628],{"className":3627},[68],[65,3629,3631],{"className":3630,"ariaHidden":73},[72],[65,3632,3634,3638],{"className":3633},[77],[65,3635],{"className":3636,"style":3637},[81],"height:0.625em;vertical-align:-0.1944em;",[65,3639,11],{"className":3640},[86,87]," merge passes the run\ncount is at most ",[65,3643,3645],{"className":3644},[68],[65,3646,3648],{"className":3647,"ariaHidden":73},[72],[65,3649,3651,3654,3657,3697,3700,3731],{"className":3650},[77],[65,3652],{"className":3653,"style":163},[81],[65,3655,274],{"className":3656},[171],[65,3658,3660,3663],{"className":3659},[86],[65,3661,3495],{"className":3662,"style":758},[86,87],[65,3664,3666],{"className":3665},[518],[65,3667,3669,3689],{"className":3668},[522,523],[65,3670,3672,3686],{"className":3671},[527],[65,3673,3675],{"className":3674,"style":3508},[531],[65,3676,3677,3680],{"style":3511},[65,3678],{"className":3679,"style":540},[539],[65,3681,3683],{"className":3682},[544,545,546,547],[65,3684,2652],{"className":3685},[86,547],[65,3687,555],{"className":3688},[554],[65,3690,3692],{"className":3691},[527],[65,3693,3695],{"className":3694,"style":3530},[531],[65,3696],{},[65,3698,281],{"className":3699},[86],[65,3701,3703,3706],{"className":3702},[86],[65,3704,598],{"className":3705,"style":597},[86,87],[65,3707,3709],{"className":3708},[518],[65,3710,3712],{"className":3711},[522],[65,3713,3715],{"className":3714},[527],[65,3716,3719],{"className":3717,"style":3718},[531],"height:0.6644em;",[65,3720,3722,3725],{"style":3721},"top:-3.063em;margin-right:0.05em;",[65,3723],{"className":3724,"style":540},[539],[65,3726,3728],{"className":3727},[544,545,546,547],[65,3729,11],{"className":3730},[86,87,547],[65,3732,288],{"className":3733},[201],". This reaches ",[65,3736,3738],{"className":3737},[68],[65,3739,3741],{"className":3740,"ariaHidden":73},[72],[65,3742,3744,3747],{"className":3743},[77],[65,3745],{"className":3746,"style":1151},[81],[65,3748,3186],{"className":3749},[86]," once ",[65,3752,3754],{"className":3753},[68],[65,3755,3757,3803],{"className":3756,"ariaHidden":73},[72],[65,3758,3760,3764,3793,3796,3800],{"className":3759},[77],[65,3761],{"className":3762,"style":3763},[81],"height:0.8304em;vertical-align:-0.136em;",[65,3765,3767,3770],{"className":3766},[86],[65,3768,598],{"className":3769,"style":597},[86,87],[65,3771,3773],{"className":3772},[518],[65,3774,3776],{"className":3775},[522],[65,3777,3779],{"className":3778},[527],[65,3780,3782],{"className":3781,"style":3718},[531],[65,3783,3784,3787],{"style":3721},[65,3785],{"className":3786,"style":540},[539],[65,3788,3790],{"className":3789},[544,545,546,547],[65,3791,11],{"className":3792},[86,87,547],[65,3794],{"className":3795,"style":1177},[180],[65,3797,3799],{"className":3798},[1181],"≥",[65,3801],{"className":3802,"style":1177},[180],[65,3804,3806,3809],{"className":3805},[77],[65,3807],{"className":3808,"style":3488},[81],[65,3810,3812,3815],{"className":3811},[86],[65,3813,3495],{"className":3814,"style":758},[86,87],[65,3816,3818],{"className":3817},[518],[65,3819,3821,3841],{"className":3820},[522,523],[65,3822,3824,3838],{"className":3823},[527],[65,3825,3827],{"className":3826,"style":3508},[531],[65,3828,3829,3832],{"style":3511},[65,3830],{"className":3831,"style":540},[539],[65,3833,3835],{"className":3834},[544,545,546,547],[65,3836,2652],{"className":3837},[86,547],[65,3839,555],{"className":3840},[554],[65,3842,3844],{"className":3843},[527],[65,3845,3847],{"className":3846,"style":3530},[531],[65,3848],{},", that\nis at ",[65,3851,3853],{"className":3852},[68],[65,3854,3856,3874,3981],{"className":3855,"ariaHidden":73},[72],[65,3857,3859,3862,3865,3868,3871],{"className":3858},[77],[65,3860],{"className":3861,"style":3637},[81],[65,3863,11],{"className":3864},[86,87],[65,3866],{"className":3867,"style":1177},[180],[65,3869,1182],{"className":3870},[1181],[65,3872],{"className":3873,"style":1177},[180],[65,3875,3877,3880,3883,3926,3929,3969,3972,3975,3978],{"className":3876},[77],[65,3878],{"className":3879,"style":163},[81],[65,3881,274],{"className":3882},[171],[65,3884,3886,3892],{"className":3885},[185],[65,3887,3889],{"className":3888},[185],[65,3890,191],{"className":3891,"style":190},[86,189],[65,3893,3895],{"className":3894},[518],[65,3896,3898,3918],{"className":3897},[522,523],[65,3899,3901,3915],{"className":3900},[527],[65,3902,3904],{"className":3903,"style":3279},[531],[65,3905,3906,3909],{"style":535},[65,3907],{"className":3908,"style":540},[539],[65,3910,3912],{"className":3911},[544,545,546,547],[65,3913,598],{"className":3914,"style":597},[86,87,547],[65,3916,555],{"className":3917},[554],[65,3919,3921],{"className":3920},[527],[65,3922,3924],{"className":3923,"style":562},[531],[65,3925],{},[65,3927],{"className":3928,"style":181},[180],[65,3930,3932,3935],{"className":3931},[86],[65,3933,3495],{"className":3934,"style":758},[86,87],[65,3936,3938],{"className":3937},[518],[65,3939,3941,3961],{"className":3940},[522,523],[65,3942,3944,3958],{"className":3943},[527],[65,3945,3947],{"className":3946,"style":3508},[531],[65,3948,3949,3952],{"style":3511},[65,3950],{"className":3951,"style":540},[539],[65,3953,3955],{"className":3954},[544,545,546,547],[65,3956,2652],{"className":3957},[86,547],[65,3959,555],{"className":3960},[554],[65,3962,3964],{"className":3963},[527],[65,3965,3967],{"className":3966,"style":3530},[531],[65,3968],{},[65,3970,288],{"className":3971},[201],[65,3973],{"className":3974,"style":1177},[180],[65,3976,1182],{"className":3977},[1181],[65,3979],{"className":3980,"style":1177},[180],[65,3982,3984,3987,3990,4033,4036,4039,4042,4045],{"className":3983},[77],[65,3985],{"className":3986,"style":163},[81],[65,3988,274],{"className":3989},[171],[65,3991,3993,3999],{"className":3992},[185],[65,3994,3996],{"className":3995},[185],[65,3997,191],{"className":3998,"style":190},[86,189],[65,4000,4002],{"className":4001},[518],[65,4003,4005,4025],{"className":4004},[522,523],[65,4006,4008,4022],{"className":4007},[527],[65,4009,4011],{"className":4010,"style":3279},[531],[65,4012,4013,4016],{"style":535},[65,4014],{"className":4015,"style":540},[539],[65,4017,4019],{"className":4018},[544,545,546,547],[65,4020,598],{"className":4021,"style":597},[86,87,547],[65,4023,555],{"className":4024},[554],[65,4026,4028],{"className":4027},[527],[65,4029,4031],{"className":4030,"style":562},[531],[65,4032],{},[65,4034,172],{"className":4035},[171],[65,4037,176],{"className":4038,"style":120},[86,87],[65,4040,281],{"className":4041},[86],[65,4043,121],{"className":4044,"style":120},[86,87],[65,4046,3465],{"className":4047},[201],". Adding the single\nrun-formation pass gives the stated total. ",[65,4050,4052],{"className":4051},[68],[65,4053,4055],{"className":4054,"ariaHidden":73},[72],[65,4056,4058,4062],{"className":4057},[77],[65,4059],{"className":4060,"style":4061},[81],"height:0.675em;",[65,4063,4066],{"className":4064},[976,4065],"qed",[65,4067,4070],{"className":4068},[86,4069],"amsrm","□",[485,4072],{"hash":4073},"577ab6422fcc36092fe44ec9cfe643eb36e23cd6e2f3c8167d492eb6c9007c18",[11,4075,4076,4077,4104,4105,4132],{},"Each pass moves the entire file, ",[65,4078,4080],{"className":4079},[68],[65,4081,4083],{"className":4082,"ariaHidden":73},[72],[65,4084,4086,4089,4092,4095,4098,4101],{"className":4085},[77],[65,4087],{"className":4088,"style":163},[81],[65,4090,274],{"className":4091},[171],[65,4093,176],{"className":4094,"style":120},[86,87],[65,4096,281],{"className":4097},[86],[65,4099,89],{"className":4100,"style":88},[86,87],[65,4102,288],{"className":4103},[201]," reads and ",[65,4106,4108],{"className":4107},[68],[65,4109,4111],{"className":4110,"ariaHidden":73},[72],[65,4112,4114,4117,4120,4123,4126,4129],{"className":4113},[77],[65,4115],{"className":4116,"style":163},[81],[65,4118,274],{"className":4119},[171],[65,4121,176],{"className":4122,"style":120},[86,87],[65,4124,281],{"className":4125},[86],[65,4127,89],{"className":4128,"style":88},[86,87],[65,4130,288],{"className":4131},[201],"\nwrites, so the total I\u002FO cost is",[65,4134,4136],{"className":4135},[3215],[65,4137,4139],{"className":4138},[68],[65,4140,4142,4396],{"className":4141,"ariaHidden":73},[72],[65,4143,4145,4149,4152,4156,4159,4381,4384,4387,4390,4393],{"className":4144},[77],[65,4146],{"className":4147,"style":4148},[81],"height:2.4em;vertical-align:-0.95em;",[65,4150,167],{"className":4151},[86],[65,4153],{"className":4154,"style":4155},[180],"margin-right:-0.1667em;",[65,4157],{"className":4158,"style":181},[180],[65,4160,4163,4171,4237,4240,4375],{"className":4161},[4162],"minner",[65,4164,4168],{"className":4165,"style":4167},[171,4166],"delimcenter","top:0em;",[65,4169,172],{"className":4170},[3256,546],[65,4172,4174,4177,4234],{"className":4173},[86],[65,4175],{"className":4176},[171,3311],[65,4178,4180],{"className":4179},[3315],[65,4181,4183,4225],{"className":4182},[522,523],[65,4184,4186,4222],{"className":4185},[527],[65,4187,4190,4202,4210],{"className":4188,"style":4189},[531],"height:1.3603em;",[65,4191,4193,4196],{"style":4192},"top:-2.314em;",[65,4194],{"className":4195,"style":3332},[539],[65,4197,4199],{"className":4198},[86],[65,4200,89],{"className":4201,"style":88},[86,87],[65,4203,4204,4207],{"style":3344},[65,4205],{"className":4206,"style":3332},[539],[65,4208],{"className":4209,"style":3352},[3351],[65,4211,4213,4216],{"style":4212},"top:-3.677em;",[65,4214],{"className":4215,"style":3332},[539],[65,4217,4219],{"className":4218},[86],[65,4220,176],{"className":4221,"style":120},[86,87],[65,4223,555],{"className":4224},[554],[65,4226,4228],{"className":4227},[527],[65,4229,4232],{"className":4230,"style":4231},[531],"height:0.686em;",[65,4233],{},[65,4235],{"className":4236},[201,3311],[65,4238],{"className":4239,"style":181},[180],[65,4241,4243,4249,4252,4255,4258,4261,4304,4307,4369],{"className":4242},[4162],[65,4244,4246],{"className":4245,"style":4167},[171,4166],[65,4247,172],{"className":4248},[3256,546],[65,4250,3186],{"className":4251},[86],[65,4253],{"className":4254,"style":3235},[180],[65,4256,2674],{"className":4257},[3239],[65,4259],{"className":4260,"style":3235},[180],[65,4262,4264,4270],{"className":4263},[185],[65,4265,4267],{"className":4266},[185],[65,4268,191],{"className":4269,"style":190},[86,189],[65,4271,4273],{"className":4272},[518],[65,4274,4276,4296],{"className":4275},[522,523],[65,4277,4279,4293],{"className":4278},[527],[65,4280,4282],{"className":4281,"style":3279},[531],[65,4283,4284,4287],{"style":535},[65,4285],{"className":4286,"style":540},[539],[65,4288,4290],{"className":4289},[544,545,546,547],[65,4291,598],{"className":4292,"style":597},[86,87,547],[65,4294,555],{"className":4295},[554],[65,4297,4299],{"className":4298},[527],[65,4300,4302],{"className":4301,"style":562},[531],[65,4303],{},[65,4305],{"className":4306,"style":181},[180],[65,4308,4310,4313,4366],{"className":4309},[86],[65,4311],{"className":4312},[171,3311],[65,4314,4316],{"className":4315},[3315],[65,4317,4319,4358],{"className":4318},[522,523],[65,4320,4322,4355],{"className":4321},[527],[65,4323,4325,4336,4344],{"className":4324,"style":4189},[531],[65,4326,4327,4330],{"style":4192},[65,4328],{"className":4329,"style":3332},[539],[65,4331,4333],{"className":4332},[86],[65,4334,121],{"className":4335,"style":120},[86,87],[65,4337,4338,4341],{"style":3344},[65,4339],{"className":4340,"style":3332},[539],[65,4342],{"className":4343,"style":3352},[3351],[65,4345,4346,4349],{"style":4212},[65,4347],{"className":4348,"style":3332},[539],[65,4350,4352],{"className":4351},[86],[65,4353,176],{"className":4354,"style":120},[86,87],[65,4356,555],{"className":4357},[554],[65,4359,4361],{"className":4360},[527],[65,4362,4364],{"className":4363,"style":4231},[531],[65,4365],{},[65,4367],{"className":4368},[201,3311],[65,4370,4372],{"className":4371,"style":4167},[201,4166],[65,4373,202],{"className":4374},[3256,546],[65,4376,4378],{"className":4377,"style":4167},[201,4166],[65,4379,202],{"className":4380},[3256,546],[65,4382],{"className":4383,"style":1177},[180],[65,4385],{"className":4386,"style":1177},[180],[65,4388,1182],{"className":4389},[1181],[65,4391],{"className":4392,"style":1177},[180],[65,4394],{"className":4395,"style":1177},[180],[65,4397,4399,4402,4405,4408,4411,4602,4605],{"className":4398},[77],[65,4400],{"className":4401,"style":4148},[81],[65,4403,167],{"className":4404},[86],[65,4406],{"className":4407,"style":4155},[180],[65,4409],{"className":4410,"style":181},[180],[65,4412,4414,4420,4482,4485,4488,4531,4534,4596],{"className":4413},[4162],[65,4415,4417],{"className":4416,"style":4167},[171,4166],[65,4418,172],{"className":4419},[3256,546],[65,4421,4423,4426,4479],{"className":4422},[86],[65,4424],{"className":4425},[171,3311],[65,4427,4429],{"className":4428},[3315],[65,4430,4432,4471],{"className":4431},[522,523],[65,4433,4435,4468],{"className":4434},[527],[65,4436,4438,4449,4457],{"className":4437,"style":4189},[531],[65,4439,4440,4443],{"style":4192},[65,4441],{"className":4442,"style":3332},[539],[65,4444,4446],{"className":4445},[86],[65,4447,89],{"className":4448,"style":88},[86,87],[65,4450,4451,4454],{"style":3344},[65,4452],{"className":4453,"style":3332},[539],[65,4455],{"className":4456,"style":3352},[3351],[65,4458,4459,4462],{"style":4212},[65,4460],{"className":4461,"style":3332},[539],[65,4463,4465],{"className":4464},[86],[65,4466,176],{"className":4467,"style":120},[86,87],[65,4469,555],{"className":4470},[554],[65,4472,4474],{"className":4473},[527],[65,4475,4477],{"className":4476,"style":4231},[531],[65,4478],{},[65,4480],{"className":4481},[201,3311],[65,4483],{"className":4484,"style":181},[180],[65,4486],{"className":4487,"style":181},[180],[65,4489,4491,4497],{"className":4490},[185],[65,4492,4494],{"className":4493},[185],[65,4495,191],{"className":4496,"style":190},[86,189],[65,4498,4500],{"className":4499},[518],[65,4501,4503,4523],{"className":4502},[522,523],[65,4504,4506,4520],{"className":4505},[527],[65,4507,4509],{"className":4508,"style":3279},[531],[65,4510,4511,4514],{"style":535},[65,4512],{"className":4513,"style":540},[539],[65,4515,4517],{"className":4516},[544,545,546,547],[65,4518,598],{"className":4519,"style":597},[86,87,547],[65,4521,555],{"className":4522},[554],[65,4524,4526],{"className":4525},[527],[65,4527,4529],{"className":4528,"style":562},[531],[65,4530],{},[65,4532],{"className":4533,"style":181},[180],[65,4535,4537,4540,4593],{"className":4536},[86],[65,4538],{"className":4539},[171,3311],[65,4541,4543],{"className":4542},[3315],[65,4544,4546,4585],{"className":4545},[522,523],[65,4547,4549,4582],{"className":4548},[527],[65,4550,4552,4563,4571],{"className":4551,"style":4189},[531],[65,4553,4554,4557],{"style":4192},[65,4555],{"className":4556,"style":3332},[539],[65,4558,4560],{"className":4559},[86],[65,4561,121],{"className":4562,"style":120},[86,87],[65,4564,4565,4568],{"style":3344},[65,4566],{"className":4567,"style":3332},[539],[65,4569],{"className":4570,"style":3352},[3351],[65,4572,4573,4576],{"style":4212},[65,4574],{"className":4575,"style":3332},[539],[65,4577,4579],{"className":4578},[86],[65,4580,176],{"className":4581,"style":120},[86,87],[65,4583,555],{"className":4584},[554],[65,4586,4588],{"className":4587},[527],[65,4589,4591],{"className":4590,"style":4231},[531],[65,4592],{},[65,4594],{"className":4595},[201,3311],[65,4597,4599],{"className":4598,"style":4167},[201,4166],[65,4600,202],{"className":4601},[3256,546],[65,4603],{"className":4604,"style":181},[180],[65,4606,4608],{"className":4607},[86,981],[65,4609,4611],{"className":4610},[86]," block transfers.",[11,4613,4614,4615,4648,4649,4683,4684,4884],{},"The base of the logarithm is what matters. Doubling the fan-out from ",[65,4616,4618],{"className":4617},[68],[65,4619,4621,4639],{"className":4620,"ariaHidden":73},[72],[65,4622,4624,4627,4630,4633,4636],{"className":4623},[77],[65,4625],{"className":4626,"style":593},[81],[65,4628,598],{"className":4629,"style":597},[86,87],[65,4631],{"className":4632,"style":1177},[180],[65,4634,1182],{"className":4635},[1181],[65,4637],{"className":4638,"style":1177},[180],[65,4640,4642,4645],{"className":4641},[77],[65,4643],{"className":4644,"style":1151},[81],[65,4646,467],{"className":4647},[86]," to\n",[65,4650,4652],{"className":4651},[68],[65,4653,4655,4673],{"className":4654,"ariaHidden":73},[72],[65,4656,4658,4661,4664,4667,4670],{"className":4657},[77],[65,4659],{"className":4660,"style":593},[81],[65,4662,598],{"className":4663,"style":597},[86,87],[65,4665],{"className":4666,"style":1177},[180],[65,4668,1182],{"className":4669},[1181],[65,4671],{"className":4672,"style":1177},[180],[65,4674,4676,4679],{"className":4675},[77],[65,4677],{"className":4678,"style":1151},[81],[65,4680,4682],{"className":4681},[86],"4"," halves the number of merge passes, because ",[65,4685,4687],{"className":4686},[68],[65,4688,4690,4756],{"className":4689,"ariaHidden":73},[72],[65,4691,4693,4697,4740,4743,4747,4750,4753],{"className":4692},[77],[65,4694],{"className":4695,"style":4696},[81],"height:0.9386em;vertical-align:-0.2441em;",[65,4698,4700,4706],{"className":4699},[185],[65,4701,4703],{"className":4702},[185],[65,4704,191],{"className":4705,"style":190},[86,189],[65,4707,4709],{"className":4708},[518],[65,4710,4712,4732],{"className":4711},[522,523],[65,4713,4715,4729],{"className":4714},[527],[65,4716,4718],{"className":4717,"style":532},[531],[65,4719,4720,4723],{"style":535},[65,4721],{"className":4722,"style":540},[539],[65,4724,4726],{"className":4725},[544,545,546,547],[65,4727,4682],{"className":4728},[86,547],[65,4730,555],{"className":4731},[554],[65,4733,4735],{"className":4734},[527],[65,4736,4738],{"className":4737,"style":562},[531],[65,4739],{},[65,4741],{"className":4742,"style":181},[180],[65,4744,4746],{"className":4745},[86,87],"x",[65,4748],{"className":4749,"style":1177},[180],[65,4751,1182],{"className":4752},[1181],[65,4754],{"className":4755,"style":1177},[180],[65,4757,4759,4763,4832,4835,4878,4881],{"className":4758},[77],[65,4760],{"className":4761,"style":4762},[81],"height:1.1901em;vertical-align:-0.345em;",[65,4764,4766,4769,4829],{"className":4765},[86],[65,4767],{"className":4768},[171,3311],[65,4770,4772],{"className":4771},[3315],[65,4773,4775,4821],{"className":4774},[522,523],[65,4776,4778,4818],{"className":4777},[527],[65,4779,4782,4796,4804],{"className":4780,"style":4781},[531],"height:0.8451em;",[65,4783,4784,4787],{"style":3328},[65,4785],{"className":4786,"style":3332},[539],[65,4788,4790],{"className":4789},[544,545,546,547],[65,4791,4793],{"className":4792},[86,547],[65,4794,467],{"className":4795},[86,547],[65,4797,4798,4801],{"style":3344},[65,4799],{"className":4800,"style":3332},[539],[65,4802],{"className":4803,"style":3352},[3351],[65,4805,4806,4809],{"style":3355},[65,4807],{"className":4808,"style":3332},[539],[65,4810,4812],{"className":4811},[544,545,546,547],[65,4813,4815],{"className":4814},[86,547],[65,4816,3186],{"className":4817},[86,547],[65,4819,555],{"className":4820},[554],[65,4822,4824],{"className":4823},[527],[65,4825,4827],{"className":4826,"style":3377},[531],[65,4828],{},[65,4830],{"className":4831},[201,3311],[65,4833],{"className":4834,"style":181},[180],[65,4836,4838,4844],{"className":4837},[185],[65,4839,4841],{"className":4840},[185],[65,4842,191],{"className":4843,"style":190},[86,189],[65,4845,4847],{"className":4846},[518],[65,4848,4850,4870],{"className":4849},[522,523],[65,4851,4853,4867],{"className":4852},[527],[65,4854,4856],{"className":4855,"style":532},[531],[65,4857,4858,4861],{"style":535},[65,4859],{"className":4860,"style":540},[539],[65,4862,4864],{"className":4863},[544,545,546,547],[65,4865,467],{"className":4866},[86,547],[65,4868,555],{"className":4869},[554],[65,4871,4873],{"className":4872},[527],[65,4874,4876],{"className":4875,"style":562},[531],[65,4877],{},[65,4879],{"className":4880,"style":181},[180],[65,4882,4746],{"className":4883},[86,87],". On\na terabyte file with gigabytes of memory the difference between a binary merge and\na wide one is the difference between dozens of passes and two or three.",[485,4886],{"hash":4887},"0d814d7c6dc104ae8175d44d2c5af7d1139baa222ea800b68f2c8965cb9da5e4",[1218,4889,4892],{"dataImplLabel":4890,"id":4891},"pass count implementation","impl-external-merge-sort-pass-count",[814,4893,4895],{"className":1227,"code":4894,"filename":2260,"language":1230,"meta":6,"style":6},"import math\n\n\ndef pass_count(record_count: int, memory_size: int, fan_out: int) -> int:\n  \"\"\"\n    The number of sequential passes external merge sort makes over the data:\\n\n    one run-formation pass plus ceil(log_fan_out(N\u002FM)) merge passes. Returns\\n\n    1 when everything fits in a single memory load (no merge needed).\\n\n  \"\"\"\n  if memory_size \u003C 1:\n    raise ValueError(\"memory_size must be at least 1\")\n  if fan_out \u003C 2:\n    raise ValueError(\"fan_out must be at least 2\")\n  if record_count \u003C= 0:\n    return 0\n\n  # one memory load needs only the single run-formation pass.\n  initial_runs: int = math.ceil(record_count \u002F memory_size)\n  if initial_runs \u003C= 1:\n    return 1\n\n  # plus ceil(log_fan_out(initial_runs)) merge passes to fold down to one.\n  merge_passes: int = math.ceil(math.log(initial_runs, fan_out))\n  return 1 + merge_passes\n",[820,4896,4897,4904,4908,4912,4939,4943,4950,4957,4964,4968,4980,4992,5004,5016,5031,5038,5042,5047,5064,5077,5084,5088,5093,5105],{"__ignoreMap":6},[65,4898,4899,4901],{"class":824,"line":825},[65,4900,1245],{"class":1237},[65,4902,4903],{"class":1241}," math\n",[65,4905,4906],{"class":824,"line":831},[65,4907,1254],{"emptyLinePlaceholder":1253},[65,4909,4910],{"class":824,"line":837},[65,4911,1254],{"emptyLinePlaceholder":1253},[65,4913,4914,4916,4919,4922,4924,4927,4929,4931,4933,4935,4937],{"class":824,"line":843},[65,4915,1336],{"class":1237},[65,4917,4918],{"class":1339}," pass_count",[65,4920,4921],{"class":1241},"(record_count: ",[65,4923,1698],{"class":1339},[65,4925,4926],{"class":1241},", memory_size: ",[65,4928,1698],{"class":1339},[65,4930,2721],{"class":1241},[65,4932,1698],{"class":1339},[65,4934,1752],{"class":1241},[65,4936,1698],{"class":1339},[65,4938,1594],{"class":1241},[65,4940,4941],{"class":824,"line":849},[65,4942,1348],{"class":1318},[65,4944,4945,4948],{"class":824,"line":855},[65,4946,4947],{"class":1318},"    The number of sequential passes external merge sort makes over the data:",[65,4949,1356],{"class":1237},[65,4951,4952,4955],{"class":824,"line":861},[65,4953,4954],{"class":1318},"    one run-formation pass plus ceil(log_fan_out(N\u002FM)) merge passes. Returns",[65,4956,1356],{"class":1237},[65,4958,4959,4962],{"class":824,"line":867},[65,4960,4961],{"class":1318},"    1 when everything fits in a single memory load (no merge needed).",[65,4963,1356],{"class":1237},[65,4965,4966],{"class":824,"line":873},[65,4967,1348],{"class":1318},[65,4969,4970,4972,4974,4976,4978],{"class":824,"line":879},[65,4971,2395],{"class":1237},[65,4973,2398],{"class":1241},[65,4975,1771],{"class":1237},[65,4977,2403],{"class":1339},[65,4979,1594],{"class":1241},[65,4981,4982,4984,4986,4988,4990],{"class":824,"line":885},[65,4983,2410],{"class":1237},[65,4985,2413],{"class":1339},[65,4987,172],{"class":1241},[65,4989,2418],{"class":1318},[65,4991,2421],{"class":1241},[65,4993,4994,4996,4998,5000,5002],{"class":824,"line":891},[65,4995,2395],{"class":1237},[65,4997,2597],{"class":1241},[65,4999,1771],{"class":1237},[65,5001,2602],{"class":1339},[65,5003,1594],{"class":1241},[65,5005,5006,5008,5010,5012,5014],{"class":824,"line":897},[65,5007,2410],{"class":1237},[65,5009,2413],{"class":1339},[65,5011,172],{"class":1241},[65,5013,2615],{"class":1318},[65,5015,2421],{"class":1241},[65,5017,5018,5020,5023,5026,5029],{"class":824,"line":1359},[65,5019,2395],{"class":1237},[65,5021,5022],{"class":1241}," record_count ",[65,5024,5025],{"class":1237},"\u003C=",[65,5027,5028],{"class":1339}," 0",[65,5030,1594],{"class":1241},[65,5032,5033,5035],{"class":824,"line":1367},[65,5034,1812],{"class":1237},[65,5036,5037],{"class":1339}," 0\n",[65,5039,5040],{"class":824,"line":1375},[65,5041,1254],{"emptyLinePlaceholder":1253},[65,5043,5044],{"class":824,"line":1383},[65,5045,5046],{"class":1425},"  # one memory load needs only the single run-formation pass.\n",[65,5048,5049,5052,5054,5056,5059,5061],{"class":824,"line":1388},[65,5050,5051],{"class":1241},"  initial_runs: ",[65,5053,1698],{"class":1339},[65,5055,1728],{"class":1237},[65,5057,5058],{"class":1241}," math.ceil(record_count ",[65,5060,281],{"class":1237},[65,5062,5063],{"class":1241}," memory_size)\n",[65,5065,5066,5068,5071,5073,5075],{"class":824,"line":1417},[65,5067,2395],{"class":1237},[65,5069,5070],{"class":1241}," initial_runs ",[65,5072,5025],{"class":1237},[65,5074,2403],{"class":1339},[65,5076,1594],{"class":1241},[65,5078,5079,5081],{"class":824,"line":1422},[65,5080,1812],{"class":1237},[65,5082,5083],{"class":1339}," 1\n",[65,5085,5086],{"class":824,"line":1429},[65,5087,1254],{"emptyLinePlaceholder":1253},[65,5089,5090],{"class":824,"line":1435},[65,5091,5092],{"class":1425},"  # plus ceil(log_fan_out(initial_runs)) merge passes to fold down to one.\n",[65,5094,5095,5098,5100,5102],{"class":824,"line":1446},[65,5096,5097],{"class":1241},"  merge_passes: ",[65,5099,1698],{"class":1339},[65,5101,1728],{"class":1237},[65,5103,5104],{"class":1241}," math.ceil(math.log(initial_runs, fan_out))\n",[65,5106,5107,5109,5111,5114],{"class":824,"line":1463},[65,5108,2530],{"class":1237},[65,5110,2403],{"class":1339},[65,5112,5113],{"class":1237}," +",[65,5115,5116],{"class":1241}," merge_passes\n",[627,5118,5120],{"id":5119},"why-not-make-k-enormous","Why not make k enormous?",[11,5122,5123,5124,5139,5140,5167,5168,5171,5172,5187,5188,5191,5192,5207,5208,5223,5224,5285],{},"If a bigger ",[65,5125,5127],{"className":5126},[68],[65,5128,5130],{"className":5129,"ariaHidden":73},[72],[65,5131,5133,5136],{"className":5132},[77],[65,5134],{"className":5135,"style":593},[81],[65,5137,598],{"className":5138,"style":597},[86,87]," always helps, why not merge all ",[65,5141,5143],{"className":5142},[68],[65,5144,5146],{"className":5145,"ariaHidden":73},[72],[65,5147,5149,5152,5155,5158,5161,5164],{"className":5148},[77],[65,5150],{"className":5151,"style":163},[81],[65,5153,274],{"className":5154},[171],[65,5156,176],{"className":5157,"style":120},[86,87],[65,5159,281],{"className":5160},[86],[65,5162,121],{"className":5163,"style":120},[86,87],[65,5165,288],{"className":5166},[201]," runs in one\npass? Because fan-out is bounded by ",[40,5169,5170],{},"memory",". During a merge the ",[65,5173,5175],{"className":5174},[68],[65,5176,5178],{"className":5177,"ariaHidden":73},[72],[65,5179,5181,5184],{"className":5180},[77],[65,5182],{"className":5183,"style":82},[81],[65,5185,121],{"className":5186,"style":120},[86,87]," records of\nmemory are divided into one ",[40,5189,5190],{},"input buffer"," per run plus an output buffer; each\nbuffer must hold at least one block of ",[65,5193,5195],{"className":5194},[68],[65,5196,5198],{"className":5197,"ariaHidden":73},[72],[65,5199,5201,5204],{"className":5200},[77],[65,5202],{"className":5203,"style":82},[81],[65,5205,89],{"className":5206,"style":88},[86,87]," records to keep the disk traffic\nsequential. With ",[65,5209,5211],{"className":5210},[68],[65,5212,5214],{"className":5213,"ariaHidden":73},[72],[65,5215,5217,5220],{"className":5216},[77],[65,5218],{"className":5219,"style":593},[81],[65,5221,598],{"className":5222,"style":597},[86,87]," input buffers and an output buffer we need roughly\n",[65,5225,5227],{"className":5226},[68],[65,5228,5230,5251,5276],{"className":5229,"ariaHidden":73},[72],[65,5231,5233,5236,5239,5242,5245,5248],{"className":5232},[77],[65,5234],{"className":5235,"style":163},[81],[65,5237,172],{"className":5238},[171],[65,5240,598],{"className":5241,"style":597},[86,87],[65,5243],{"className":5244,"style":3235},[180],[65,5246,2674],{"className":5247},[3239],[65,5249],{"className":5250,"style":3235},[180],[65,5252,5254,5257,5260,5263,5266,5269,5273],{"className":5253},[77],[65,5255],{"className":5256,"style":163},[81],[65,5258,3186],{"className":5259},[86],[65,5261,202],{"className":5262},[201],[65,5264,89],{"className":5265,"style":88},[86,87],[65,5267],{"className":5268,"style":1177},[180],[65,5270,5272],{"className":5271},[1181],"≤",[65,5274],{"className":5275,"style":1177},[180],[65,5277,5279,5282],{"className":5278},[77],[65,5280],{"className":5281,"style":82},[81],[65,5283,121],{"className":5284,"style":120},[86,87],", so",[65,5287,5289],{"className":5288},[3215],[65,5290,5292],{"className":5291},[68],[65,5293,5295,5319,5398],{"className":5294,"ariaHidden":73},[72],[65,5296,5298,5301,5304,5307,5310,5313,5316],{"className":5297},[77],[65,5299],{"className":5300,"style":3763},[81],[65,5302,598],{"className":5303,"style":597},[86,87],[65,5305],{"className":5306,"style":1177},[180],[65,5308],{"className":5309,"style":1177},[180],[65,5311,5272],{"className":5312},[1181],[65,5314],{"className":5315,"style":1177},[180],[65,5317],{"className":5318,"style":1177},[180],[65,5320,5322,5326,5388,5391,5395],{"className":5321},[77],[65,5323],{"className":5324,"style":5325},[81],"height:2.0463em;vertical-align:-0.686em;",[65,5327,5329,5332,5385],{"className":5328},[86],[65,5330],{"className":5331},[171,3311],[65,5333,5335],{"className":5334},[3315],[65,5336,5338,5377],{"className":5337},[522,523],[65,5339,5341,5374],{"className":5340},[527],[65,5342,5344,5355,5363],{"className":5343,"style":4189},[531],[65,5345,5346,5349],{"style":4192},[65,5347],{"className":5348,"style":3332},[539],[65,5350,5352],{"className":5351},[86],[65,5353,89],{"className":5354,"style":88},[86,87],[65,5356,5357,5360],{"style":3344},[65,5358],{"className":5359,"style":3332},[539],[65,5361],{"className":5362,"style":3352},[3351],[65,5364,5365,5368],{"style":4212},[65,5366],{"className":5367,"style":3332},[539],[65,5369,5371],{"className":5370},[86],[65,5372,121],{"className":5373,"style":120},[86,87],[65,5375,555],{"className":5376},[554],[65,5378,5380],{"className":5379},[527],[65,5381,5383],{"className":5382,"style":4231},[531],[65,5384],{},[65,5386],{"className":5387},[201,3311],[65,5389],{"className":5390,"style":3235},[180],[65,5392,5394],{"className":5393},[3239],"−",[65,5396],{"className":5397,"style":3235},[180],[65,5399,5401,5404],{"className":5400},[77],[65,5402],{"className":5403,"style":1151},[81],[65,5405,5407],{"className":5406},[86],"1.",[11,5409,5410,5411,5426,5427,5442,5443,5464,5465,5535,5536,5551,5552,5567,5568,5607],{},"Push ",[65,5412,5414],{"className":5413},[68],[65,5415,5417],{"className":5416,"ariaHidden":73},[72],[65,5418,5420,5423],{"className":5419},[77],[65,5421],{"className":5422,"style":593},[81],[65,5424,598],{"className":5425,"style":597},[86,87]," past this and the buffers shrink below a block, the merge starts seeking\nwithin each run, and the per-record I\u002FO cost explodes, exactly the thrashing we\nset out to avoid. So ",[65,5428,5430],{"className":5429},[68],[65,5431,5433],{"className":5432,"ariaHidden":73},[72],[65,5434,5436,5439],{"className":5435},[77],[65,5437],{"className":5438,"style":593},[81],[65,5440,598],{"className":5441,"style":597},[86,87]," is chosen near ",[65,5444,5446],{"className":5445},[68],[65,5447,5449],{"className":5448,"ariaHidden":73},[72],[65,5450,5452,5455,5458,5461],{"className":5451},[77],[65,5453],{"className":5454,"style":163},[81],[65,5456,121],{"className":5457,"style":120},[86,87],[65,5459,281],{"className":5460},[86],[65,5462,89],{"className":5463,"style":88},[86,87],": large enough that ",[65,5466,5468],{"className":5467},[68],[65,5469,5471],{"className":5470,"ariaHidden":73},[72],[65,5472,5474,5477,5520,5523,5526,5529,5532],{"className":5473},[77],[65,5475],{"className":5476,"style":163},[81],[65,5478,5480,5486],{"className":5479},[185],[65,5481,5483],{"className":5482},[185],[65,5484,191],{"className":5485,"style":190},[86,189],[65,5487,5489],{"className":5488},[518],[65,5490,5492,5512],{"className":5491},[522,523],[65,5493,5495,5509],{"className":5494},[527],[65,5496,5498],{"className":5497,"style":3279},[531],[65,5499,5500,5503],{"style":535},[65,5501],{"className":5502,"style":540},[539],[65,5504,5506],{"className":5505},[544,545,546,547],[65,5507,598],{"className":5508,"style":597},[86,87,547],[65,5510,555],{"className":5511},[554],[65,5513,5515],{"className":5514},[527],[65,5516,5518],{"className":5517,"style":562},[531],[65,5519],{},[65,5521,172],{"className":5522},[171],[65,5524,176],{"className":5525,"style":120},[86,87],[65,5527,281],{"className":5528},[86],[65,5530,121],{"className":5531,"style":120},[86,87],[65,5533,202],{"className":5534},[201]," is\ntypically ",[65,5537,5539],{"className":5538},[68],[65,5540,5542],{"className":5541,"ariaHidden":73},[72],[65,5543,5545,5548],{"className":5544},[77],[65,5546],{"className":5547,"style":1151},[81],[65,5549,3186],{"className":5550},[86]," or ",[65,5553,5555],{"className":5554},[68],[65,5556,5558],{"className":5557,"ariaHidden":73},[72],[65,5559,5561,5564],{"className":5560},[77],[65,5562],{"className":5563,"style":1151},[81],[65,5565,467],{"className":5566},[86],", small enough that every buffer is at least one block. There\nis also a CPU-side tension, the heap costs ",[65,5569,5571],{"className":5570},[68],[65,5572,5574],{"className":5573,"ariaHidden":73},[72],[65,5575,5577,5580,5583,5586,5589,5592,5598,5601,5604],{"className":5576},[77],[65,5578],{"className":5579,"style":163},[81],[65,5581,167],{"className":5582},[86],[65,5584,172],{"className":5585},[171],[65,5587,176],{"className":5588,"style":120},[86,87],[65,5590],{"className":5591,"style":181},[180],[65,5593,5595],{"className":5594},[185],[65,5596,191],{"className":5597,"style":190},[86,189],[65,5599],{"className":5600,"style":181},[180],[65,5602,598],{"className":5603,"style":597},[86,87],[65,5605,202],{"className":5606},[201]," comparisons, but on\ndisk-bound sorts the I\u002FO term dominates and the comparison cost is secondary.",[96,5609,5610],{"type":1133},[11,5611,5612,5615,5616,5651],{},[40,5613,5614],{},"Intuition (The buffer budget)."," Memory is split among the runs you are\nmerging. More runs means more passes saved but thinner buffers; thinner buffers\nthan a block means seeking, which is catastrophic. The sweet spot fills memory\nwith one block-sized buffer per run, fanning in ",[65,5617,5619],{"className":5618},[68],[65,5620,5622,5636],{"className":5621,"ariaHidden":73},[72],[65,5623,5625,5629,5633],{"className":5624},[77],[65,5626],{"className":5627,"style":5628},[81],"height:0.4831em;",[65,5630,5632],{"className":5631},[1181],"≈",[65,5634],{"className":5635,"style":1177},[180],[65,5637,5639,5642,5645,5648],{"className":5638},[77],[65,5640],{"className":5641,"style":163},[81],[65,5643,121],{"className":5644,"style":120},[86,87],[65,5646,281],{"className":5647},[86],[65,5649,89],{"className":5650,"style":88},[86,87]," runs at a time.",[1218,5653,5656],{"dataImplLabel":5654,"id":5655},"max fan out implementation","impl-external-merge-sort-max-fan-out",[814,5657,5659],{"className":1227,"code":5658,"filename":2260,"language":1230,"meta":6,"style":6},"def max_fan_out(memory_size: int, block_size: int) -> int:\n  \"\"\"\n    The largest safe fan-out for a merge with `memory_size` records of memory\\n\n    and `block_size` records per block: k \u003C= memory_size\u002Fblock_size - 1, one\\n\n    block-sized input buffer per run plus one output buffer. Pushing past\\n\n    this shrinks the buffers below a block and the merge starts seeking.\\n\n  \"\"\"\n  if block_size \u003C 1:\n    raise ValueError(\"block_size must be at least 1\")\n  return max(2, memory_size \u002F\u002F block_size - 1)\n",[820,5660,5661,5684,5688,5695,5702,5709,5716,5720,5733,5746],{"__ignoreMap":6},[65,5662,5663,5665,5668,5671,5673,5676,5678,5680,5682],{"class":824,"line":825},[65,5664,1336],{"class":1237},[65,5666,5667],{"class":1339}," max_fan_out",[65,5669,5670],{"class":1241},"(memory_size: ",[65,5672,1698],{"class":1339},[65,5674,5675],{"class":1241},", block_size: ",[65,5677,1698],{"class":1339},[65,5679,1752],{"class":1241},[65,5681,1698],{"class":1339},[65,5683,1594],{"class":1241},[65,5685,5686],{"class":824,"line":831},[65,5687,1348],{"class":1318},[65,5689,5690,5693],{"class":824,"line":837},[65,5691,5692],{"class":1318},"    The largest safe fan-out for a merge with `memory_size` records of memory",[65,5694,1356],{"class":1237},[65,5696,5697,5700],{"class":824,"line":843},[65,5698,5699],{"class":1318},"    and `block_size` records per block: k \u003C= memory_size\u002Fblock_size - 1, one",[65,5701,1356],{"class":1237},[65,5703,5704,5707],{"class":824,"line":849},[65,5705,5706],{"class":1318},"    block-sized input buffer per run plus one output buffer. Pushing past",[65,5708,1356],{"class":1237},[65,5710,5711,5714],{"class":824,"line":855},[65,5712,5713],{"class":1318},"    this shrinks the buffers below a block and the merge starts seeking.",[65,5715,1356],{"class":1237},[65,5717,5718],{"class":824,"line":861},[65,5719,1348],{"class":1318},[65,5721,5722,5724,5727,5729,5731],{"class":824,"line":867},[65,5723,2395],{"class":1237},[65,5725,5726],{"class":1241}," block_size ",[65,5728,1771],{"class":1237},[65,5730,2403],{"class":1339},[65,5732,1594],{"class":1241},[65,5734,5735,5737,5739,5741,5744],{"class":824,"line":873},[65,5736,2410],{"class":1237},[65,5738,2413],{"class":1339},[65,5740,172],{"class":1241},[65,5742,5743],{"class":1318},"\"block_size must be at least 1\"",[65,5745,2421],{"class":1241},[65,5747,5748,5750,5753,5755,5757,5760,5763,5765,5768,5770],{"class":824,"line":879},[65,5749,2530],{"class":1237},[65,5751,5752],{"class":1339}," max",[65,5754,172],{"class":1241},[65,5756,467],{"class":1339},[65,5758,5759],{"class":1241},", memory_size ",[65,5761,5762],{"class":1237},"\u002F\u002F",[65,5764,5726],{"class":1241},[65,5766,5767],{"class":1237},"-",[65,5769,2403],{"class":1339},[65,5771,2421],{"class":1241},[49,5773,5775],{"id":5774},"replacement-selection-longer-initial-runs","Replacement selection: longer initial runs",[11,5777,5778,5779,5852,5853,5856,5857,5878,5879,5882,5883,5904,5905,5920,5921,5924,5925,812,5943],{},"The pass count is ",[65,5780,5782],{"className":5781},[68],[65,5783,5785],{"className":5784,"ariaHidden":73},[72],[65,5786,5788,5791,5794,5837,5840,5843,5846,5849],{"className":5787},[77],[65,5789],{"className":5790,"style":163},[81],[65,5792,274],{"className":5793},[171],[65,5795,5797,5803],{"className":5796},[185],[65,5798,5800],{"className":5799},[185],[65,5801,191],{"className":5802,"style":190},[86,189],[65,5804,5806],{"className":5805},[518],[65,5807,5809,5829],{"className":5808},[522,523],[65,5810,5812,5826],{"className":5811},[527],[65,5813,5815],{"className":5814,"style":3279},[531],[65,5816,5817,5820],{"style":535},[65,5818],{"className":5819,"style":540},[539],[65,5821,5823],{"className":5822},[544,545,546,547],[65,5824,598],{"className":5825,"style":597},[86,87,547],[65,5827,555],{"className":5828},[554],[65,5830,5832],{"className":5831},[527],[65,5833,5835],{"className":5834,"style":562},[531],[65,5836],{},[65,5838,172],{"className":5839},[171],[65,5841,176],{"className":5842,"style":120},[86,87],[65,5844,281],{"className":5845},[86],[65,5847,121],{"className":5848,"style":120},[86,87],[65,5850,3465],{"className":5851},[201],", driven by the ",[31,5854,5855],{},"number"," of initial\nruns, ",[65,5858,5860],{"className":5859},[68],[65,5861,5863],{"className":5862,"ariaHidden":73},[72],[65,5864,5866,5869,5872,5875],{"className":5865},[77],[65,5867],{"className":5868,"style":163},[81],[65,5870,176],{"className":5871,"style":120},[86,87],[65,5873,281],{"className":5874},[86],[65,5876,121],{"className":5877,"style":120},[86,87],". Anything that makes the initial runs ",[40,5880,5881],{},"longer"," shrinks ",[65,5884,5886],{"className":5885},[68],[65,5887,5889],{"className":5888,"ariaHidden":73},[72],[65,5890,5892,5895,5898,5901],{"className":5891},[77],[65,5893],{"className":5894,"style":163},[81],[65,5896,176],{"className":5897,"style":120},[86,87],[65,5899,281],{"className":5900},[86],[65,5902,121],{"className":5903,"style":120},[86,87]," and can\nremove a whole pass. Phase 1 as described caps each run at ",[65,5906,5908],{"className":5907},[68],[65,5909,5911],{"className":5910,"ariaHidden":73},[72],[65,5912,5914,5917],{"className":5913},[77],[65,5915],{"className":5916,"style":82},[81],[65,5918,121],{"className":5919,"style":120},[86,87],", the memory size.\n",[40,5922,5923],{},"Replacement selection"," beats that bound, producing runs of average length\n",[65,5926,5928],{"className":5927},[68],[65,5929,5931],{"className":5930,"ariaHidden":73},[72],[65,5932,5934,5937,5940],{"className":5933},[77],[65,5935],{"className":5936,"style":82},[81],[65,5938,467],{"className":5939},[86],[65,5941,121],{"className":5942,"style":120},[86,87],[5944,5945,5946],"sup",{},[15,5947,3186],{"href":5948,"ariaDescribedBy":5949,"dataFootnoteRef":6,"id":5951},"#user-content-fn-skiena-ext",[5950],"footnote-label","user-content-fnref-skiena-ext",[11,5953,5954,5955,5970,5971,5986,5987,6003,6004,6007,6008,6011,6012,6015],{},"The idea treats memory as a min-heap of ",[65,5956,5958],{"className":5957},[68],[65,5959,5961],{"className":5960,"ariaHidden":73},[72],[65,5962,5964,5967],{"className":5963},[77],[65,5965],{"className":5966,"style":82},[81],[65,5968,121],{"className":5969,"style":120},[86,87]," records that continuously consumes\ninput and emits output, rather than sorting in fixed batches. Fill the heap with\n",[65,5972,5974],{"className":5973},[68],[65,5975,5977],{"className":5976,"ariaHidden":73},[72],[65,5978,5980,5983],{"className":5979},[77],[65,5981],{"className":5982,"style":82},[81],[65,5984,121],{"className":5985,"style":120},[86,87]," records. Repeatedly extract the minimum and append it to the current run; then\nread the next input record and decide where it goes. If it is ",[65,5988,5990],{"className":5989},[68],[65,5991,5993],{"className":5992,"ariaHidden":73},[72],[65,5994,5996,6000],{"className":5995},[77],[65,5997],{"className":5998,"style":5999},[81],"height:0.7719em;vertical-align:-0.136em;",[65,6001,3799],{"className":6002},[1181]," the record\njust emitted, it can still belong to the current run, so insert it into the heap.\nIf it is ",[31,6005,6006],{},"smaller",", it cannot, so set it aside (mark it ",[1197,6009,6010],{},"frozen",") to seed the\n",[40,6013,6014],{},"next"," run. The current run grows as long as incoming records keep up with the\noutput; only when the heap is entirely frozen records do we close the run and\nstart fresh.",[814,6017,6019],{"className":816,"code":6018,"language":818,"meta":6,"style":6},"caption: $\\textsc{Replacement-Selection}$ — form long runs with an $M$-record heap\nnumber: 2\nfill min-heap $H$ with the first $M$ input records\n$last \\gets -\\infty$ \u002F\u002F last value written to the current run\nwhile $H$ is nonempty do\n  $x \\gets \\textsc{Extract-Min}(H)$ \u002F\u002F smallest unfrozen record\n  output $x$ to the current run\n  $last \\gets x$\n  if more input remains then\n    $y \\gets$ read next input record\n    if $y \\ge last$ then\n      $\\textsc{Insert}(H, y)$ \u002F\u002F still fits this run\n    else\n      freeze $y$ for the next run \u002F\u002F mark, keep in memory\n  if $H$ has only frozen records then\n    close current run; unfreeze all; start a new run\n",[820,6020,6021,6026,6031,6036,6041,6045,6050,6055,6060,6065,6070,6075,6080,6085,6090,6095],{"__ignoreMap":6},[65,6022,6023],{"class":824,"line":825},[65,6024,6025],{},"caption: $\\textsc{Replacement-Selection}$ — form long runs with an $M$-record heap\n",[65,6027,6028],{"class":824,"line":831},[65,6029,6030],{},"number: 2\n",[65,6032,6033],{"class":824,"line":837},[65,6034,6035],{},"fill min-heap $H$ with the first $M$ input records\n",[65,6037,6038],{"class":824,"line":843},[65,6039,6040],{},"$last \\gets -\\infty$ \u002F\u002F last value written to the current run\n",[65,6042,6043],{"class":824,"line":849},[65,6044,870],{},[65,6046,6047],{"class":824,"line":855},[65,6048,6049],{},"  $x \\gets \\textsc{Extract-Min}(H)$ \u002F\u002F smallest unfrozen record\n",[65,6051,6052],{"class":824,"line":861},[65,6053,6054],{},"  output $x$ to the current run\n",[65,6056,6057],{"class":824,"line":867},[65,6058,6059],{},"  $last \\gets x$\n",[65,6061,6062],{"class":824,"line":873},[65,6063,6064],{},"  if more input remains then\n",[65,6066,6067],{"class":824,"line":879},[65,6068,6069],{},"    $y \\gets$ read next input record\n",[65,6071,6072],{"class":824,"line":885},[65,6073,6074],{},"    if $y \\ge last$ then\n",[65,6076,6077],{"class":824,"line":891},[65,6078,6079],{},"      $\\textsc{Insert}(H, y)$ \u002F\u002F still fits this run\n",[65,6081,6082],{"class":824,"line":897},[65,6083,6084],{},"    else\n",[65,6086,6087],{"class":824,"line":1359},[65,6088,6089],{},"      freeze $y$ for the next run \u002F\u002F mark, keep in memory\n",[65,6091,6092],{"class":824,"line":1367},[65,6093,6094],{},"  if $H$ has only frozen records then\n",[65,6096,6097],{"class":824,"line":1375},[65,6098,6099],{},"    close current run; unfreeze all; start a new run\n",[11,6101,6102,6103,6121,6122,6137,6138,6141,6142,6145,6146,6164,6165,6168,6169],{},"Why ",[65,6104,6106],{"className":6105},[68],[65,6107,6109],{"className":6108,"ariaHidden":73},[72],[65,6110,6112,6115,6118],{"className":6111},[77],[65,6113],{"className":6114,"style":82},[81],[65,6116,467],{"className":6117},[86],[65,6119,121],{"className":6120,"style":120},[86,87]," on average? Picture the input as a stream and the heap as a window of\n",[65,6123,6125],{"className":6124},[68],[65,6126,6128],{"className":6127,"ariaHidden":73},[72],[65,6129,6131,6134],{"className":6130},[77],[65,6132],{"className":6133,"style":82},[81],[65,6135,121],{"className":6136,"style":120},[86,87]," records sliding along it. A new record extends the current run whenever it is\nno smaller than the last output, which for random data happens about half the time\nat any moment, but the records that ",[31,6139,6140],{},"do"," extend the run push the window forward\nand let still more records qualify. The classic ",[1197,6143,6144],{},"snowplow"," argument makes it\nprecise: a plow clears snow on a circular road while snow keeps falling uniformly;\nin steady state the plow always has about twice its own length of snow ahead of it.\nThe same balance yields runs of expected length ",[65,6147,6149],{"className":6148},[68],[65,6150,6152],{"className":6151,"ariaHidden":73},[72],[65,6153,6155,6158,6161],{"className":6154},[77],[65,6156],{"className":6157,"style":82},[81],[65,6159,467],{"className":6160},[86],[65,6162,121],{"className":6163,"style":120},[86,87],", and on already-sorted or\nnearly-sorted input a ",[31,6166,6167],{},"single"," run covering the entire file.",[5944,6170,6171],{},[15,6172,467],{"href":6173,"ariaDescribedBy":6174,"dataFootnoteRef":6,"id":6175},"#user-content-fn-clrs-ext",[5950],"user-content-fnref-clrs-ext",[485,6177],{"hash":6178},"44f6efae126f975dec3f59af6f3980eee1152b7c75724f2dfc2ddd894cb7652c",[485,6180],{"hash":6181},"10da2713eed8026e3805841f3b8734c15414fd74cbb686411c9fb36965afeebe",[11,6183,6184],{},"Roughly halving the run count this way often saves exactly one merge pass, a\nsizable fraction of the disk traffic. Modern external sorts combine wide\nfan-out merging with replacement-selection run formation, and on real workloads\nthe whole sort finishes in a small constant number of passes over the data.",[1218,6186,6189],{"dataImplLabel":6187,"id":6188},"replacement selection implementation","impl-replacement-selection",[1223,6190,6191,6932],{},[814,6192,6195],{"className":1227,"code":6193,"filename":6194,"language":1230,"meta":6,"style":6},"from __future__ import annotations\n\nimport heapq\nfrom collections.abc import Iterable, Iterator\nfrom typing import Generic, TypeVar\n\nfrom comparable import Comparable\n\nRecord = TypeVar(\"Record\", bound=Comparable)\n\nclass _FrozenEntry(Generic[Record]):\n  \"\"\"\n    A heap entry tagged with the run generation it belongs to. Entries of the\\n\n    current generation order ahead of frozen (next-generation) ones, and\\n\n    within a generation they order by record value — so the heap surfaces the\\n\n    smallest record still eligible for the current run.\\n\n  \"\"\"\n\n  def __init__(self, generation: int, record: Record) -> None:\n    self.generation: int = generation\n    self.record: Record = record\n\n  def __lt__(self, other: _FrozenEntry[Record], \u002F) -> bool:\n    # current generation outranks frozen; ties break on record value.\n    if self.generation != other.generation:\n      return self.generation \u003C other.generation\n    return self.record \u003C other.record\n\ndef replacement_selection(\n  records: Iterable[Record], memory_size: int\n) -> Iterator[list[Record]]:\n  \"\"\"\n    Yield the sorted runs produced by replacement selection over `records`\\n\n    with an `memory_size`-record heap. Each yielded run is itself sorted;\\n\n    runs average about twice `memory_size` on random data and may be a single\\n\n    long run on nearly-sorted input.\\n\n  \"\"\"\n  if memory_size \u003C 1:\n    raise ValueError(\"memory_size must be at least 1\")\n\n  source: Iterator[Record] = iter(records)\n\n  # fill the heap with the first memory_size records, all in generation 0.\n  current_generation: int = 0\n  heap: list[_FrozenEntry[Record]] = []\n  for record in _take(source, memory_size):\n    heapq.heappush(heap, _FrozenEntry(current_generation, record))\n\n  if not heap:\n    return\n\n  current_run: list[Record] = []\n  while heap:\n    entry = heapq.heappop(heap)\n\n    # a generation bump at the heap root means every remaining record is\n    # frozen: close the current run and reopen on the next generation.\n    if entry.generation != current_generation:\n      yield current_run\n      current_run = []\n      current_generation = entry.generation\n\n    # emit the smallest eligible record and remember it as the run's tail.\n    current_run.append(entry.record)\n    last_emitted: Record = entry.record\n\n    # pull the next input record; nothing left means just drain the heap.\n    incoming = next(source, _NO_MORE)\n    if isinstance(incoming, _EndOfInput):\n      continue\n\n    # >= the tail can still join this run; smaller must seed the next one.\n    record = incoming\n    if record >= last_emitted:\n      heapq.heappush(heap, _FrozenEntry(current_generation, record))\n    else:\n      heapq.heappush(heap, _FrozenEntry(current_generation + 1, record))\n\n  # flush the run still open when the heap empties.\n  if current_run:\n    yield current_run\n\ndef _take(source: Iterator[Record], count: int) -> Iterator[Record]:\n  \"\"\"\n    Yield up to `count` records from `source`, stopping early if it drains.\\n\n  \"\"\"\n  # yield records until the count is met or the source runs dry.\n  for _ in range(count):\n    record = next(source, _NO_MORE)\n    if isinstance(record, _EndOfInput):\n      return\n    yield record\n\nclass _EndOfInput:\n  \"\"\"\n    A unique end-of-input marker distinct from any real record, incl. None.\\n\n  \"\"\"\n\n_NO_MORE: _EndOfInput = _EndOfInput()\n","replacement_selection.py",[820,6196,6197,6207,6211,6217,6227,6237,6241,6251,6255,6271,6275,6284,6288,6295,6302,6309,6316,6320,6324,6338,6352,6362,6366,6383,6388,6403,6416,6429,6433,6442,6448,6453,6457,6464,6471,6478,6485,6489,6501,6513,6517,6529,6533,6538,6549,6558,6569,6574,6578,6586,6591,6595,6604,6610,6619,6623,6628,6633,6645,6653,6662,6672,6676,6681,6686,6696,6700,6705,6717,6726,6731,6735,6740,6750,6762,6767,6774,6786,6790,6795,6802,6808,6812,6826,6830,6837,6841,6846,6860,6870,6879,6884,6890,6894,6903,6907,6914,6918,6922],{"__ignoreMap":6},[65,6198,6199,6201,6203,6205],{"class":824,"line":825},[65,6200,1238],{"class":1237},[65,6202,1242],{"class":1241},[65,6204,1245],{"class":1237},[65,6206,1248],{"class":1241},[65,6208,6209],{"class":824,"line":831},[65,6210,1254],{"emptyLinePlaceholder":1253},[65,6212,6213,6215],{"class":824,"line":837},[65,6214,1245],{"class":1237},[65,6216,1261],{"class":1241},[65,6218,6219,6221,6223,6225],{"class":824,"line":843},[65,6220,1238],{"class":1237},[65,6222,1268],{"class":1241},[65,6224,1245],{"class":1237},[65,6226,1273],{"class":1241},[65,6228,6229,6231,6233,6235],{"class":824,"line":849},[65,6230,1238],{"class":1237},[65,6232,1280],{"class":1241},[65,6234,1245],{"class":1237},[65,6236,1285],{"class":1241},[65,6238,6239],{"class":824,"line":855},[65,6240,1254],{"emptyLinePlaceholder":1253},[65,6242,6243,6245,6247,6249],{"class":824,"line":861},[65,6244,1238],{"class":1237},[65,6246,1296],{"class":1241},[65,6248,1245],{"class":1237},[65,6250,1301],{"class":1241},[65,6252,6253],{"class":824,"line":867},[65,6254,1254],{"emptyLinePlaceholder":1253},[65,6256,6257,6259,6261,6263,6265,6267,6269],{"class":824,"line":873},[65,6258,1310],{"class":1241},[65,6260,1182],{"class":1237},[65,6262,1315],{"class":1241},[65,6264,1319],{"class":1318},[65,6266,1322],{"class":1241},[65,6268,1182],{"class":1237},[65,6270,1327],{"class":1241},[65,6272,6273],{"class":824,"line":879},[65,6274,1254],{"emptyLinePlaceholder":1253},[65,6276,6277,6279,6282],{"class":824,"line":885},[65,6278,1588],{"class":1237},[65,6280,6281],{"class":1339}," _FrozenEntry",[65,6283,1644],{"class":1241},[65,6285,6286],{"class":824,"line":891},[65,6287,1348],{"class":1318},[65,6289,6290,6293],{"class":824,"line":897},[65,6291,6292],{"class":1318},"    A heap entry tagged with the run generation it belongs to. Entries of the",[65,6294,1356],{"class":1237},[65,6296,6297,6300],{"class":824,"line":1359},[65,6298,6299],{"class":1318},"    current generation order ahead of frozen (next-generation) ones, and",[65,6301,1356],{"class":1237},[65,6303,6304,6307],{"class":824,"line":1367},[65,6305,6306],{"class":1318},"    within a generation they order by record value — so the heap surfaces the",[65,6308,1356],{"class":1237},[65,6310,6311,6314],{"class":824,"line":1375},[65,6312,6313],{"class":1318},"    smallest record still eligible for the current run.",[65,6315,1356],{"class":1237},[65,6317,6318],{"class":824,"line":1383},[65,6319,1348],{"class":1318},[65,6321,6322],{"class":824,"line":1388},[65,6323,1254],{"emptyLinePlaceholder":1253},[65,6325,6326,6328,6330,6333,6335],{"class":824,"line":1417},[65,6327,1689],{"class":1237},[65,6329,1692],{"class":1339},[65,6331,6332],{"class":1241},"(self, generation: ",[65,6334,1698],{"class":1339},[65,6336,6337],{"class":1241},", record: Record) -> None:\n",[65,6339,6340,6342,6345,6347,6349],{"class":824,"line":1422},[65,6341,1707],{"class":1237},[65,6343,6344],{"class":1241},".generation: ",[65,6346,1698],{"class":1339},[65,6348,1728],{"class":1237},[65,6350,6351],{"class":1241}," generation\n",[65,6353,6354,6356,6358,6360],{"class":824,"line":1429},[65,6355,1707],{"class":1237},[65,6357,1710],{"class":1241},[65,6359,1182],{"class":1237},[65,6361,1715],{"class":1241},[65,6363,6364],{"class":824,"line":1435},[65,6365,1254],{"emptyLinePlaceholder":1253},[65,6367,6368,6370,6372,6375,6377,6379,6381],{"class":824,"line":1446},[65,6369,1689],{"class":1237},[65,6371,1744],{"class":1339},[65,6373,6374],{"class":1241},"(self, other: _FrozenEntry[Record], ",[65,6376,281],{"class":1237},[65,6378,1752],{"class":1241},[65,6380,1755],{"class":1339},[65,6382,1594],{"class":1241},[65,6384,6385],{"class":824,"line":1463},[65,6386,6387],{"class":1425},"    # current generation outranks frozen; ties break on record value.\n",[65,6389,6390,6392,6394,6397,6400],{"class":824,"line":1477},[65,6391,1480],{"class":1237},[65,6393,1765],{"class":1237},[65,6395,6396],{"class":1241},".generation ",[65,6398,6399],{"class":1237},"!=",[65,6401,6402],{"class":1241}," other.generation:\n",[65,6404,6405,6407,6409,6411,6413],{"class":824,"line":1492},[65,6406,1780],{"class":1237},[65,6408,1765],{"class":1237},[65,6410,6396],{"class":1241},[65,6412,1771],{"class":1237},[65,6414,6415],{"class":1241}," other.generation\n",[65,6417,6418,6420,6422,6424,6426],{"class":824,"line":1498},[65,6419,1812],{"class":1237},[65,6421,1765],{"class":1237},[65,6423,1768],{"class":1241},[65,6425,1771],{"class":1237},[65,6427,6428],{"class":1241}," other.record\n",[65,6430,6431],{"class":824,"line":1503},[65,6432,1254],{"emptyLinePlaceholder":1253},[65,6434,6435,6437,6440],{"class":824,"line":1512},[65,6436,1336],{"class":1237},[65,6438,6439],{"class":1339}," replacement_selection",[65,6441,2348],{"class":1241},[65,6443,6444,6446],{"class":824,"line":1518},[65,6445,2353],{"class":1241},[65,6447,2356],{"class":1339},[65,6449,6450],{"class":824,"line":1529},[65,6451,6452],{"class":1241},") -> Iterator[list[Record]]:\n",[65,6454,6455],{"class":824,"line":1538},[65,6456,1348],{"class":1318},[65,6458,6459,6462],{"class":824,"line":1543},[65,6460,6461],{"class":1318},"    Yield the sorted runs produced by replacement selection over `records`",[65,6463,1356],{"class":1237},[65,6465,6466,6469],{"class":824,"line":1549},[65,6467,6468],{"class":1318},"    with an `memory_size`-record heap. Each yielded run is itself sorted;",[65,6470,1356],{"class":1237},[65,6472,6473,6476],{"class":824,"line":1562},[65,6474,6475],{"class":1318},"    runs average about twice `memory_size` on random data and may be a single",[65,6477,1356],{"class":1237},[65,6479,6480,6483],{"class":824,"line":1574},[65,6481,6482],{"class":1318},"    long run on nearly-sorted input.",[65,6484,1356],{"class":1237},[65,6486,6487],{"class":824,"line":1580},[65,6488,1348],{"class":1318},[65,6490,6491,6493,6495,6497,6499],{"class":824,"line":1585},[65,6492,2395],{"class":1237},[65,6494,2398],{"class":1241},[65,6496,1771],{"class":1237},[65,6498,2403],{"class":1339},[65,6500,1594],{"class":1241},[65,6502,6503,6505,6507,6509,6511],{"class":824,"line":1597},[65,6504,2410],{"class":1237},[65,6506,2413],{"class":1339},[65,6508,172],{"class":1241},[65,6510,2418],{"class":1318},[65,6512,2421],{"class":1241},[65,6514,6515],{"class":824,"line":1602},[65,6516,1254],{"emptyLinePlaceholder":1253},[65,6518,6519,6522,6524,6526],{"class":824,"line":1610},[65,6520,6521],{"class":1241},"  source: Iterator[Record] ",[65,6523,1182],{"class":1237},[65,6525,2930],{"class":1339},[65,6527,6528],{"class":1241},"(records)\n",[65,6530,6531],{"class":824,"line":1615},[65,6532,1254],{"emptyLinePlaceholder":1253},[65,6534,6535],{"class":824,"line":1620},[65,6536,6537],{"class":1425},"  # fill the heap with the first memory_size records, all in generation 0.\n",[65,6539,6540,6543,6545,6547],{"class":824,"line":1631},[65,6541,6542],{"class":1241},"  current_generation: ",[65,6544,1698],{"class":1339},[65,6546,1728],{"class":1237},[65,6548,5037],{"class":1339},[65,6550,6551,6554,6556],{"class":824,"line":1636},[65,6552,6553],{"class":1241},"  heap: list[_FrozenEntry[Record]] ",[65,6555,1182],{"class":1237},[65,6557,1443],{"class":1241},[65,6559,6560,6562,6564,6566],{"class":824,"line":1647},[65,6561,1449],{"class":1237},[65,6563,2455],{"class":1241},[65,6565,1411],{"class":1237},[65,6567,6568],{"class":1241}," _take(source, memory_size):\n",[65,6570,6571],{"class":824,"line":1652},[65,6572,6573],{"class":1241},"    heapq.heappush(heap, _FrozenEntry(current_generation, record))\n",[65,6575,6576],{"class":824,"line":1660},[65,6577,1254],{"emptyLinePlaceholder":1253},[65,6579,6580,6582,6584],{"class":824,"line":1668},[65,6581,2395],{"class":1237},[65,6583,1483],{"class":1237},[65,6585,1509],{"class":1241},[65,6587,6588],{"class":824,"line":1676},[65,6589,6590],{"class":1237},"    return\n",[65,6592,6593],{"class":824,"line":1681},[65,6594,1254],{"emptyLinePlaceholder":1253},[65,6596,6597,6600,6602],{"class":824,"line":1686},[65,6598,6599],{"class":1241},"  current_run: list[Record] ",[65,6601,1182],{"class":1237},[65,6603,1443],{"class":1241},[65,6605,6606,6608],{"class":824,"line":1704},[65,6607,1506],{"class":1237},[65,6609,1509],{"class":1241},[65,6611,6612,6615,6617],{"class":824,"line":1718},[65,6613,6614],{"class":1241},"    entry ",[65,6616,1182],{"class":1237},[65,6618,1526],{"class":1241},[65,6620,6621],{"class":824,"line":1734},[65,6622,1254],{"emptyLinePlaceholder":1253},[65,6624,6625],{"class":824,"line":1739},[65,6626,6627],{"class":1425},"    # a generation bump at the heap root means every remaining record is\n",[65,6629,6630],{"class":824,"line":1760},[65,6631,6632],{"class":1425},"    # frozen: close the current run and reopen on the next generation.\n",[65,6634,6635,6637,6640,6642],{"class":824,"line":1777},[65,6636,1480],{"class":1237},[65,6638,6639],{"class":1241}," entry.generation ",[65,6641,6399],{"class":1237},[65,6643,6644],{"class":1241}," current_generation:\n",[65,6646,6647,6650],{"class":824,"line":1786},[65,6648,6649],{"class":1237},"      yield",[65,6651,6652],{"class":1241}," current_run\n",[65,6654,6655,6658,6660],{"class":824,"line":1801},[65,6656,6657],{"class":1241},"      current_run ",[65,6659,1182],{"class":1237},[65,6661,1443],{"class":1241},[65,6663,6664,6667,6669],{"class":824,"line":1809},[65,6665,6666],{"class":1241},"      current_generation ",[65,6668,1182],{"class":1237},[65,6670,6671],{"class":1241}," entry.generation\n",[65,6673,6674],{"class":824,"line":1825},[65,6675,1254],{"emptyLinePlaceholder":1253},[65,6677,6678],{"class":824,"line":1830},[65,6679,6680],{"class":1425},"    # emit the smallest eligible record and remember it as the run's tail.\n",[65,6682,6683],{"class":824,"line":1846},[65,6684,6685],{"class":1241},"    current_run.append(entry.record)\n",[65,6687,6688,6691,6693],{"class":824,"line":1887},[65,6689,6690],{"class":1241},"    last_emitted: Record ",[65,6692,1182],{"class":1237},[65,6694,6695],{"class":1241}," entry.record\n",[65,6697,6698],{"class":824,"line":1892},[65,6699,1254],{"emptyLinePlaceholder":1253},[65,6701,6702],{"class":824,"line":1902},[65,6703,6704],{"class":1425},"    # pull the next input record; nothing left means just drain the heap.\n",[65,6706,6707,6710,6712,6714],{"class":824,"line":1907},[65,6708,6709],{"class":1241},"    incoming ",[65,6711,1182],{"class":1237},[65,6713,1471],{"class":1339},[65,6715,6716],{"class":1241},"(source, _NO_MORE)\n",[65,6718,6719,6721,6723],{"class":824,"line":1915},[65,6720,1480],{"class":1237},[65,6722,1486],{"class":1339},[65,6724,6725],{"class":1241},"(incoming, _EndOfInput):\n",[65,6727,6728],{"class":824,"line":1923},[65,6729,6730],{"class":1237},"      continue\n",[65,6732,6733],{"class":824,"line":1931},[65,6734,1254],{"emptyLinePlaceholder":1253},[65,6736,6737],{"class":824,"line":1939},[65,6738,6739],{"class":1425},"    # >= the tail can still join this run; smaller must seed the next one.\n",[65,6741,6742,6745,6747],{"class":824,"line":1947},[65,6743,6744],{"class":1241},"    record ",[65,6746,1182],{"class":1237},[65,6748,6749],{"class":1241}," incoming\n",[65,6751,6752,6754,6756,6759],{"class":824,"line":1952},[65,6753,1480],{"class":1237},[65,6755,2455],{"class":1241},[65,6757,6758],{"class":1237},">=",[65,6760,6761],{"class":1241}," last_emitted:\n",[65,6763,6764],{"class":824,"line":1957},[65,6765,6766],{"class":1241},"      heapq.heappush(heap, _FrozenEntry(current_generation, record))\n",[65,6768,6769,6772],{"class":824,"line":1967},[65,6770,6771],{"class":1237},"    else",[65,6773,1594],{"class":1241},[65,6775,6776,6779,6781,6783],{"class":824,"line":1991},[65,6777,6778],{"class":1241},"      heapq.heappush(heap, _FrozenEntry(current_generation ",[65,6780,2674],{"class":1237},[65,6782,2403],{"class":1339},[65,6784,6785],{"class":1241},", record))\n",[65,6787,6788],{"class":824,"line":1996},[65,6789,1254],{"emptyLinePlaceholder":1253},[65,6791,6792],{"class":824,"line":2002},[65,6793,6794],{"class":1425},"  # flush the run still open when the heap empties.\n",[65,6796,6797,6799],{"class":824,"line":2014},[65,6798,2395],{"class":1237},[65,6800,6801],{"class":1241}," current_run:\n",[65,6803,6804,6806],{"class":824,"line":2033},[65,6805,1532],{"class":1237},[65,6807,6652],{"class":1241},[65,6809,6810],{"class":824,"line":2045},[65,6811,1254],{"emptyLinePlaceholder":1253},[65,6813,6814,6816,6819,6822,6824],{"class":824,"line":2058},[65,6815,1336],{"class":1237},[65,6817,6818],{"class":1339}," _take",[65,6820,6821],{"class":1241},"(source: Iterator[Record], count: ",[65,6823,1698],{"class":1339},[65,6825,2874],{"class":1241},[65,6827,6828],{"class":824,"line":2069},[65,6829,1348],{"class":1318},[65,6831,6832,6835],{"class":824,"line":2074},[65,6833,6834],{"class":1318},"    Yield up to `count` records from `source`, stopping early if it drains.",[65,6836,1356],{"class":1237},[65,6838,6839],{"class":824,"line":2080},[65,6840,1348],{"class":1318},[65,6842,6843],{"class":824,"line":2094},[65,6844,6845],{"class":1425},"  # yield records until the count is met or the source runs dry.\n",[65,6847,6848,6850,6853,6855,6857],{"class":824,"line":2100},[65,6849,1449],{"class":1237},[65,6851,6852],{"class":1241}," _ ",[65,6854,1411],{"class":1237},[65,6856,2647],{"class":1339},[65,6858,6859],{"class":1241},"(count):\n",[65,6861,6862,6864,6866,6868],{"class":824,"line":2108},[65,6863,6744],{"class":1241},[65,6865,1182],{"class":1237},[65,6867,1471],{"class":1339},[65,6869,6716],{"class":1241},[65,6871,6872,6874,6876],{"class":824,"line":2113},[65,6873,1480],{"class":1237},[65,6875,1486],{"class":1339},[65,6877,6878],{"class":1241},"(record, _EndOfInput):\n",[65,6880,6881],{"class":824,"line":2128},[65,6882,6883],{"class":1237},"      return\n",[65,6885,6886,6888],{"class":824,"line":2133},[65,6887,1532],{"class":1237},[65,6889,1715],{"class":1241},[65,6891,6892],{"class":824,"line":2144},[65,6893,1254],{"emptyLinePlaceholder":1253},[65,6895,6896,6898,6901],{"class":824,"line":2152},[65,6897,1588],{"class":1237},[65,6899,6900],{"class":1339}," _EndOfInput",[65,6902,1594],{"class":1241},[65,6904,6905],{"class":824,"line":2157},[65,6906,1348],{"class":1318},[65,6908,6909,6912],{"class":824,"line":2168},[65,6910,6911],{"class":1318},"    A unique end-of-input marker distinct from any real record, incl. None.",[65,6913,1356],{"class":1237},[65,6915,6916],{"class":824,"line":2180},[65,6917,1348],{"class":1318},[65,6919,6920],{"class":824,"line":2189},[65,6921,1254],{"emptyLinePlaceholder":1253},[65,6923,6924,6927,6929],{"class":824,"line":2194},[65,6925,6926],{"class":1241},"_NO_MORE: _EndOfInput ",[65,6928,1182],{"class":1237},[65,6930,6931],{"class":1241}," _EndOfInput()\n",[814,6933,6934],{"className":1227,"code":2973,"filename":2974,"language":1230,"meta":6,"style":6},[820,6935,6936,6946,6950,6954,6962,6966,6972,6976,6980,6984,6988,7004,7020,7036],{"__ignoreMap":6},[65,6937,6938,6940,6942,6944],{"class":824,"line":825},[65,6939,1238],{"class":1237},[65,6941,1280],{"class":1241},[65,6943,1245],{"class":1237},[65,6945,2987],{"class":1241},[65,6947,6948],{"class":824,"line":831},[65,6949,1254],{"emptyLinePlaceholder":1253},[65,6951,6952],{"class":824,"line":837},[65,6953,1254],{"emptyLinePlaceholder":1253},[65,6955,6956,6958,6960],{"class":824,"line":843},[65,6957,1588],{"class":1237},[65,6959,3002],{"class":1339},[65,6961,3005],{"class":1241},[65,6963,6964],{"class":824,"line":849},[65,6965,1348],{"class":1318},[65,6967,6968,6970],{"class":824,"line":855},[65,6969,3014],{"class":1318},[65,6971,1356],{"class":1237},[65,6973,6974],{"class":824,"line":861},[65,6975,1348],{"class":1318},[65,6977,6978],{"class":824,"line":867},[65,6979,1254],{"emptyLinePlaceholder":1253},[65,6981,6982],{"class":824,"line":873},[65,6983,3029],{"class":1425},[65,6985,6986],{"class":824,"line":879},[65,6987,3034],{"class":1425},[65,6989,6990,6992,6994,6996,6998,7000,7002],{"class":824,"line":885},[65,6991,1689],{"class":1237},[65,6993,1744],{"class":1339},[65,6995,3043],{"class":1241},[65,6997,281],{"class":1237},[65,6999,1752],{"class":1241},[65,7001,1755],{"class":1339},[65,7003,3052],{"class":1241},[65,7005,7006,7008,7010,7012,7014,7016,7018],{"class":824,"line":891},[65,7007,1689],{"class":1237},[65,7009,3059],{"class":1339},[65,7011,3043],{"class":1241},[65,7013,281],{"class":1237},[65,7015,1752],{"class":1241},[65,7017,1755],{"class":1339},[65,7019,3052],{"class":1241},[65,7021,7022,7024,7026,7028,7030,7032,7034],{"class":824,"line":897},[65,7023,1689],{"class":1237},[65,7025,3076],{"class":1339},[65,7027,3043],{"class":1241},[65,7029,281],{"class":1237},[65,7031,1752],{"class":1241},[65,7033,1755],{"class":1339},[65,7035,3052],{"class":1241},[65,7037,7038,7040,7042,7044,7046,7048,7050],{"class":824,"line":1359},[65,7039,1689],{"class":1237},[65,7041,3093],{"class":1339},[65,7043,3043],{"class":1241},[65,7045,281],{"class":1237},[65,7047,1752],{"class":1241},[65,7049,1755],{"class":1339},[65,7051,3052],{"class":1241},[49,7053,7055],{"id":7054},"the-disk-block-connection-b-trees","The disk-block connection: B-trees",[11,7057,7058,7059,7062,7063,7124,7125,7195,7196,7200,7201,7225,7226,7250,7251,7266,7267,7328],{},"The same accounting that shapes external sorting shapes external ",[31,7060,7061],{},"search",". When a\nsorted index is too big for memory, a balanced binary search tree is a poor fit:\nits height is ",[65,7064,7066],{"className":7065},[68],[65,7067,7069],{"className":7068,"ariaHidden":73},[72],[65,7070,7072,7075,7118,7121],{"className":7071},[77],[65,7073],{"className":7074,"style":4696},[81],[65,7076,7078,7084],{"className":7077},[185],[65,7079,7081],{"className":7080},[185],[65,7082,191],{"className":7083,"style":190},[86,189],[65,7085,7087],{"className":7086},[518],[65,7088,7090,7110],{"className":7089},[522,523],[65,7091,7093,7107],{"className":7092},[527],[65,7094,7096],{"className":7095,"style":532},[531],[65,7097,7098,7101],{"style":535},[65,7099],{"className":7100,"style":540},[539],[65,7102,7104],{"className":7103},[544,545,546,547],[65,7105,467],{"className":7106},[86,547],[65,7108,555],{"className":7109},[554],[65,7111,7113],{"className":7112},[527],[65,7114,7116],{"className":7115,"style":562},[531],[65,7117],{},[65,7119],{"className":7120,"style":181},[180],[65,7122,176],{"className":7123,"style":120},[86,87],", and following each child pointer can cost a fresh block\ntransfer, so a lookup costs ",[65,7126,7128],{"className":7127},[68],[65,7129,7131],{"className":7130,"ariaHidden":73},[72],[65,7132,7134,7137,7140,7143,7186,7189,7192],{"className":7133},[77],[65,7135],{"className":7136,"style":163},[81],[65,7138,167],{"className":7139},[86],[65,7141,172],{"className":7142},[171],[65,7144,7146,7152],{"className":7145},[185],[65,7147,7149],{"className":7148},[185],[65,7150,191],{"className":7151,"style":190},[86,189],[65,7153,7155],{"className":7154},[518],[65,7156,7158,7178],{"className":7157},[522,523],[65,7159,7161,7175],{"className":7160},[527],[65,7162,7164],{"className":7163,"style":532},[531],[65,7165,7166,7169],{"style":535},[65,7167],{"className":7168,"style":540},[539],[65,7170,7172],{"className":7171},[544,545,546,547],[65,7173,467],{"className":7174},[86,547],[65,7176,555],{"className":7177},[554],[65,7179,7181],{"className":7180},[527],[65,7182,7184],{"className":7183,"style":562},[531],[65,7185],{},[65,7187],{"className":7188,"style":181},[180],[65,7190,176],{"className":7191,"style":120},[86,87],[65,7193,202],{"className":7194},[201]," seeks. A ",[15,7197,7199],{"href":7198},"\u002Falgorithms\u002Fdata-structures\u002Fb-trees","B-tree","\nfixes this with the same fan-out idea external merge sort uses. Pack\neach node with as many keys as fill one block, ",[65,7202,7204],{"className":7203},[68],[65,7205,7207],{"className":7206,"ariaHidden":73},[72],[65,7208,7210,7213,7216,7219,7222],{"className":7209},[77],[65,7211],{"className":7212,"style":163},[81],[65,7214,167],{"className":7215},[86],[65,7217,172],{"className":7218},[171],[65,7220,89],{"className":7221,"style":88},[86,87],[65,7223,202],{"className":7224},[201]," of them, so each node\nhas ",[65,7227,7229],{"className":7228},[68],[65,7230,7232],{"className":7231,"ariaHidden":73},[72],[65,7233,7235,7238,7241,7244,7247],{"className":7234},[77],[65,7236],{"className":7237,"style":163},[81],[65,7239,167],{"className":7240},[86],[65,7242,172],{"className":7243},[171],[65,7245,89],{"className":7246,"style":88},[86,87],[65,7248,202],{"className":7249},[201]," children instead of ",[65,7252,7254],{"className":7253},[68],[65,7255,7257],{"className":7256,"ariaHidden":73},[72],[65,7258,7260,7263],{"className":7259},[77],[65,7261],{"className":7262,"style":1151},[81],[65,7264,467],{"className":7265},[86],". The tree's height collapses from\n",[65,7268,7270],{"className":7269},[68],[65,7271,7273],{"className":7272,"ariaHidden":73},[72],[65,7274,7276,7279,7322,7325],{"className":7275},[77],[65,7277],{"className":7278,"style":4696},[81],[65,7280,7282,7288],{"className":7281},[185],[65,7283,7285],{"className":7284},[185],[65,7286,191],{"className":7287,"style":190},[86,189],[65,7289,7291],{"className":7290},[518],[65,7292,7294,7314],{"className":7293},[522,523],[65,7295,7297,7311],{"className":7296},[527],[65,7298,7300],{"className":7299,"style":532},[531],[65,7301,7302,7305],{"style":535},[65,7303],{"className":7304,"style":540},[539],[65,7306,7308],{"className":7307},[544,545,546,547],[65,7309,467],{"className":7310},[86,547],[65,7312,555],{"className":7313},[554],[65,7315,7317],{"className":7316},[527],[65,7318,7320],{"className":7319,"style":562},[531],[65,7321],{},[65,7323],{"className":7324,"style":181},[180],[65,7326,176],{"className":7327,"style":120},[86,87]," to",[65,7330,7332],{"className":7331},[3215],[65,7333,7335],{"className":7334},[68],[65,7336,7338],{"className":7337,"ariaHidden":73},[72],[65,7339,7341,7344,7347,7350,7353,7412,7415],{"className":7340},[77],[65,7342],{"className":7343,"style":163},[81],[65,7345,167],{"className":7346},[86],[65,7348],{"className":7349,"style":4155},[180],[65,7351],{"className":7352,"style":181},[180],[65,7354,7356,7359,7403,7406,7409],{"className":7355},[4162],[65,7357,172],{"className":7358,"style":4167},[171,4166],[65,7360,7362,7368],{"className":7361},[185],[65,7363,7365],{"className":7364},[185],[65,7366,191],{"className":7367,"style":190},[86,189],[65,7369,7371],{"className":7370},[518],[65,7372,7374,7395],{"className":7373},[522,523],[65,7375,7377,7392],{"className":7376},[527],[65,7378,7381],{"className":7379,"style":7380},[531],"height:0.2342em;",[65,7382,7383,7386],{"style":535},[65,7384],{"className":7385,"style":540},[539],[65,7387,7389],{"className":7388},[544,545,546,547],[65,7390,89],{"className":7391,"style":88},[86,87,547],[65,7393,555],{"className":7394},[554],[65,7396,7398],{"className":7397},[527],[65,7399,7401],{"className":7400,"style":562},[531],[65,7402],{},[65,7404],{"className":7405,"style":181},[180],[65,7407,176],{"className":7408,"style":120},[86,87],[65,7410,202],{"className":7411,"style":4167},[201,4166],[65,7413],{"className":7414,"style":181},[180],[65,7416,7419],{"className":7417},[7418],"mpunct",",",[11,7421,7422,7423,7493,7494,7549,7550,7565,7566,7581],{},"and a search touches only ",[65,7424,7426],{"className":7425},[68],[65,7427,7429],{"className":7428,"ariaHidden":73},[72],[65,7430,7432,7435,7438,7441,7484,7487,7490],{"className":7431},[77],[65,7433],{"className":7434,"style":163},[81],[65,7436,167],{"className":7437},[86],[65,7439,172],{"className":7440},[171],[65,7442,7444,7450],{"className":7443},[185],[65,7445,7447],{"className":7446},[185],[65,7448,191],{"className":7449,"style":190},[86,189],[65,7451,7453],{"className":7452},[518],[65,7454,7456,7476],{"className":7455},[522,523],[65,7457,7459,7473],{"className":7458},[527],[65,7460,7462],{"className":7461,"style":7380},[531],[65,7463,7464,7467],{"style":535},[65,7465],{"className":7466,"style":540},[539],[65,7468,7470],{"className":7469},[544,545,546,547],[65,7471,89],{"className":7472,"style":88},[86,87,547],[65,7474,555],{"className":7475},[554],[65,7477,7479],{"className":7478},[527],[65,7480,7482],{"className":7481,"style":562},[531],[65,7483],{},[65,7485],{"className":7486,"style":181},[180],[65,7488,176],{"className":7489,"style":120},[86,87],[65,7491,202],{"className":7492},[201]," blocks — the same ",[65,7495,7497],{"className":7496},[68],[65,7498,7500],{"className":7499,"ariaHidden":73},[72],[65,7501,7503,7506],{"className":7502},[77],[65,7504],{"className":7505,"style":4696},[81],[65,7507,7509,7515],{"className":7508},[185],[65,7510,7512],{"className":7511},[185],[65,7513,191],{"className":7514,"style":190},[86,189],[65,7516,7518],{"className":7517},[518],[65,7519,7521,7541],{"className":7520},[522,523],[65,7522,7524,7538],{"className":7523},[527],[65,7525,7527],{"className":7526,"style":3279},[531],[65,7528,7529,7532],{"style":535},[65,7530],{"className":7531,"style":540},[539],[65,7533,7535],{"className":7534},[544,545,546,547],[65,7536,598],{"className":7537,"style":597},[86,87,547],[65,7539,555],{"className":7540},[554],[65,7542,7544],{"className":7543},[527],[65,7545,7547],{"className":7546,"style":562},[531],[65,7548],{}," savings,\nwith the block size ",[65,7551,7553],{"className":7552},[68],[65,7554,7556],{"className":7555,"ariaHidden":73},[72],[65,7557,7559,7562],{"className":7558},[77],[65,7560],{"className":7561,"style":82},[81],[65,7563,89],{"className":7564,"style":88},[86,87]," playing the fan-out ",[65,7567,7569],{"className":7568},[68],[65,7570,7572],{"className":7571,"ariaHidden":73},[72],[65,7573,7575,7578],{"className":7574},[77],[65,7576],{"className":7577,"style":593},[81],[65,7579,598],{"className":7580,"style":597},[86,87],". A wide node is to search what a\nwide merge is to sorting.",[96,7583,7584],{"type":1133},[11,7585,7586,7589,7590,7623,7624,7651,7652,7667,7668,7683],{},[40,7587,7588],{},"Takeaway."," Both structures solve the same problem, keeping a large\nordered collection on disk while touching as few blocks as possible, and both\nsolve it the same way: make the branching factor as wide as a block allows. External merge\nsort fans in ",[65,7591,7593],{"className":7592},[68],[65,7594,7596,7608],{"className":7595,"ariaHidden":73},[72],[65,7597,7599,7602,7605],{"className":7598},[77],[65,7600],{"className":7601,"style":5628},[81],[65,7603,5632],{"className":7604},[1181],[65,7606],{"className":7607,"style":1177},[180],[65,7609,7611,7614,7617,7620],{"className":7610},[77],[65,7612],{"className":7613,"style":163},[81],[65,7615,121],{"className":7616,"style":120},[86,87],[65,7618,281],{"className":7619},[86],[65,7621,89],{"className":7622,"style":88},[86,87]," runs per pass; a B-tree fans out ",[65,7625,7627],{"className":7626},[68],[65,7628,7630,7642],{"className":7629,"ariaHidden":73},[72],[65,7631,7633,7636,7639],{"className":7632},[77],[65,7634],{"className":7635,"style":5628},[81],[65,7637,5632],{"className":7638},[1181],[65,7640],{"className":7641,"style":1177},[180],[65,7643,7645,7648],{"className":7644},[77],[65,7646],{"className":7647,"style":82},[81],[65,7649,89],{"className":7650,"style":88},[86,87]," children\nper node. Each turns a base-",[65,7653,7655],{"className":7654},[68],[65,7656,7658],{"className":7657,"ariaHidden":73},[72],[65,7659,7661,7664],{"className":7660},[77],[65,7662],{"className":7663,"style":1151},[81],[65,7665,467],{"className":7666},[86]," logarithm into a base-",[65,7669,7671],{"className":7670},[68],[65,7672,7674],{"className":7673,"ariaHidden":73},[72],[65,7675,7677,7680],{"className":7676},[77],[65,7678],{"className":7679,"style":82},[81],[65,7681,89],{"className":7682,"style":88},[86,87]," one.",[49,7685,7687],{"id":7686},"past-the-two-parameter-model","Past the two-parameter model",[11,7689,7690,7691,7706,7707,7722],{},"External merge sort is tuned to two parameters, memory size ",[65,7692,7694],{"className":7693},[68],[65,7695,7697],{"className":7696,"ariaHidden":73},[72],[65,7698,7700,7703],{"className":7699},[77],[65,7701],{"className":7702,"style":82},[81],[65,7704,121],{"className":7705,"style":120},[86,87]," and block size\n",[65,7708,7710],{"className":7709},[68],[65,7711,7713],{"className":7712,"ariaHidden":73},[72],[65,7714,7716,7719],{"className":7715},[77],[65,7717],{"className":7718,"style":82},[81],[65,7720,89],{"className":7721,"style":88},[86,87],", that it must be told. Two developments push past that dependence, and one\nscales the idea across an entire datacenter.",[11,7724,7725,7728,7729,7947,7948,7987,7988,7991],{},[40,7726,7727],{},"The optimal I\u002FO bound."," The pass-count analysis gives\n",[65,7730,7732],{"className":7731},[68],[65,7733,7735],{"className":7734,"ariaHidden":73},[72],[65,7736,7738,7742,7745,7748,7816,7819,7873,7876,7944],{"className":7737},[77],[65,7739],{"className":7740,"style":7741},[81],"height:1.2915em;vertical-align:-0.4191em;",[65,7743,167],{"className":7744},[86],[65,7746,172],{"className":7747},[171],[65,7749,7751,7754,7813],{"className":7750},[86],[65,7752],{"className":7753},[171,3311],[65,7755,7757],{"className":7756},[3315],[65,7758,7760,7805],{"className":7759},[522,523],[65,7761,7763,7802],{"className":7762},[527],[65,7764,7766,7780,7788],{"className":7765,"style":3325},[531],[65,7767,7768,7771],{"style":3328},[65,7769],{"className":7770,"style":3332},[539],[65,7772,7774],{"className":7773},[544,545,546,547],[65,7775,7777],{"className":7776},[86,547],[65,7778,89],{"className":7779,"style":88},[86,87,547],[65,7781,7782,7785],{"style":3344},[65,7783],{"className":7784,"style":3332},[539],[65,7786],{"className":7787,"style":3352},[3351],[65,7789,7790,7793],{"style":3355},[65,7791],{"className":7792,"style":3332},[539],[65,7794,7796],{"className":7795},[544,545,546,547],[65,7797,7799],{"className":7798},[86,547],[65,7800,176],{"className":7801,"style":120},[86,87,547],[65,7803,555],{"className":7804},[554],[65,7806,7808],{"className":7807},[527],[65,7809,7811],{"className":7810,"style":3377},[531],[65,7812],{},[65,7814],{"className":7815},[201,3311],[65,7817],{"className":7818,"style":181},[180],[65,7820,7822,7828],{"className":7821},[185],[65,7823,7825],{"className":7824},[185],[65,7826,191],{"className":7827,"style":190},[86,189],[65,7829,7831],{"className":7830},[518],[65,7832,7834,7864],{"className":7833},[522,523],[65,7835,7837,7861],{"className":7836},[527],[65,7838,7841],{"className":7839,"style":7840},[531],"height:0.2809em;",[65,7842,7843,7846],{"style":535},[65,7844],{"className":7845,"style":540},[539],[65,7847,7849],{"className":7848},[544,545,546,547],[65,7850,7852,7855,7858],{"className":7851},[86,547],[65,7853,121],{"className":7854,"style":120},[86,87,547],[65,7856,281],{"className":7857},[86,547],[65,7859,89],{"className":7860,"style":88},[86,87,547],[65,7862,555],{"className":7863},[554],[65,7865,7867],{"className":7866},[527],[65,7868,7871],{"className":7869,"style":7870},[531],"height:0.4191em;",[65,7872],{},[65,7874],{"className":7875,"style":181},[180],[65,7877,7879,7882,7941],{"className":7878},[86],[65,7880],{"className":7881},[171,3311],[65,7883,7885],{"className":7884},[3315],[65,7886,7888,7933],{"className":7887},[522,523],[65,7889,7891,7930],{"className":7890},[527],[65,7892,7894,7908,7916],{"className":7893,"style":3325},[531],[65,7895,7896,7899],{"style":3328},[65,7897],{"className":7898,"style":3332},[539],[65,7900,7902],{"className":7901},[544,545,546,547],[65,7903,7905],{"className":7904},[86,547],[65,7906,89],{"className":7907,"style":88},[86,87,547],[65,7909,7910,7913],{"style":3344},[65,7911],{"className":7912,"style":3332},[539],[65,7914],{"className":7915,"style":3352},[3351],[65,7917,7918,7921],{"style":3355},[65,7919],{"className":7920,"style":3332},[539],[65,7922,7924],{"className":7923},[544,545,546,547],[65,7925,7927],{"className":7926},[86,547],[65,7928,176],{"className":7929,"style":120},[86,87,547],[65,7931,555],{"className":7932},[554],[65,7934,7936],{"className":7935},[527],[65,7937,7939],{"className":7938,"style":3377},[531],[65,7940],{},[65,7942],{"className":7943},[201,3311],[65,7945,202],{"className":7946},[201]," block transfers with fan-out\n",[65,7949,7951],{"className":7950},[68],[65,7952,7954,7972],{"className":7953,"ariaHidden":73},[72],[65,7955,7957,7960,7963,7966,7969],{"className":7956},[77],[65,7958],{"className":7959,"style":593},[81],[65,7961,598],{"className":7962,"style":597},[86,87],[65,7964],{"className":7965,"style":1177},[180],[65,7967,5632],{"className":7968},[1181],[65,7970],{"className":7971,"style":1177},[180],[65,7973,7975,7978,7981,7984],{"className":7974},[77],[65,7976],{"className":7977,"style":163},[81],[65,7979,121],{"className":7980,"style":120},[86,87],[65,7982,281],{"className":7983},[86],[65,7985,89],{"className":7986,"style":88},[86,87],". Aggarwal and Vitter (1988) proved this is ",[40,7989,7990],{},"optimal",": no\nexternal sorting algorithm, comparison-based, can do asymptotically fewer I\u002FOs.\nSo external merge sort is to the block model what mergesort is to the comparison\nmodel — provably the best possible up to constants.",[11,7993,7994,7997,7998,8013,8014,8029,8030,8033,8034,8067,8068,8071,8072,8090,8091,8106],{},[40,7995,7996],{},"Cache-oblivious sorting."," External merge sort needs ",[65,7999,8001],{"className":8000},[68],[65,8002,8004],{"className":8003,"ariaHidden":73},[72],[65,8005,8007,8010],{"className":8006},[77],[65,8008],{"className":8009,"style":82},[81],[65,8011,121],{"className":8012,"style":120},[86,87]," and ",[65,8015,8017],{"className":8016},[68],[65,8018,8020],{"className":8019,"ariaHidden":73},[72],[65,8021,8023,8026],{"className":8022},[77],[65,8024],{"className":8025,"style":82},[81],[65,8027,89],{"className":8028,"style":88},[86,87]," hard-coded to\nsize its buffers. A ",[40,8031,8032],{},"cache-oblivious"," algorithm hits the same optimal I\u002FO bound\n",[31,8035,8036,8037,5551,8052],{},"without knowing ",[65,8038,8040],{"className":8039},[68],[65,8041,8043],{"className":8042,"ariaHidden":73},[72],[65,8044,8046,8049],{"className":8045},[77],[65,8047],{"className":8048,"style":82},[81],[65,8050,121],{"className":8051,"style":120},[86,87],[65,8053,8055],{"className":8054},[68],[65,8056,8058],{"className":8057,"ariaHidden":73},[72],[65,8059,8061,8064],{"className":8060},[77],[65,8062],{"className":8063,"style":82},[81],[65,8065,89],{"className":8066,"style":88},[86,87],", so a single binary runs optimally across every level\nof the memory hierarchy at once — registers, L1, L2, RAM, disk — each with its own\nunknown block size. ",[40,8069,8070],{},"Funnelsort"," (Frigo, Leiserson, Prokop, and Ramachandran,\n1999) achieves this by merging through recursively-built ",[1197,8073,8074,8089],{},[65,8075,8077],{"className":8076},[68],[65,8078,8080],{"className":8079,"ariaHidden":73},[72],[65,8081,8083,8086],{"className":8082},[77],[65,8084],{"className":8085,"style":593},[81],[65,8087,598],{"className":8088,"style":597},[86,87],"-funnels"," whose\nsizes form a geometric ladder; the recursion automatically arranges that whatever\nthe true block size turns out to be, the data movement near that scale is\nsequential. It is the same ",[65,8092,8094],{"className":8093},[68],[65,8095,8097],{"className":8096,"ariaHidden":73},[72],[65,8098,8100,8103],{"className":8099},[77],[65,8101],{"className":8102,"style":593},[81],[65,8104,598],{"className":8105,"style":597},[86,87],"-way-merge idea, made self-tuning.",[11,8108,8109,8112,8113,8116,8117,8120,8121,8155,8156,8159,8160,8175,8176,8179],{},[40,8110,8111],{},"Sorting a datacenter: TeraSort."," When the data outgrows one machine's disks, the\nmerge fans out across a cluster. The ",[40,8114,8115],{},"MapReduce"," sort (and the ",[40,8118,8119],{},"TeraSort","\nbenchmark built on it) is external merge sort's distributed cousin: a sampling pass\npicks ",[65,8122,8124],{"className":8123},[68],[65,8125,8127,8146],{"className":8126,"ariaHidden":73},[72],[65,8128,8130,8134,8137,8140,8143],{"className":8129},[77],[65,8131],{"className":8132,"style":8133},[81],"height:0.7778em;vertical-align:-0.0833em;",[65,8135,598],{"className":8136,"style":597},[86,87],[65,8138],{"className":8139,"style":3235},[180],[65,8141,5394],{"className":8142},[3239],[65,8144],{"className":8145,"style":3235},[180],[65,8147,8149,8152],{"className":8148},[77],[65,8150],{"className":8151,"style":1151},[81],[65,8153,3186],{"className":8154},[86]," ",[40,8157,8158],{},"splitter"," keys that partition the key range into ",[65,8161,8163],{"className":8162},[68],[65,8164,8166],{"className":8165,"ariaHidden":73},[72],[65,8167,8169,8172],{"className":8168},[77],[65,8170],{"className":8171,"style":593},[81],[65,8173,598],{"className":8174,"style":597},[86,87]," roughly equal\nbands, each node range-partitions its shard by shipping records to the node owning\ntheir band (the ",[1197,8177,8178],{},"shuffle","), and each node sorts its band locally. Concatenating the\nbands in order yields a globally sorted file — a distributed bucket sort whose\nsplitters play the role of bucket boundaries, and whose per-node local sort is\nitself an external merge sort. Sorting a petabyte this way is a standard\nindustry benchmark.",[11,8181,8182,8185,8186,8189,8190],{},[40,8183,8184],{},"Solid-state storage."," The model here charges a flat cost per block transfer, which\nsuited spinning disks where the seek dominated. Flash storage changes the constants:\nrandom reads are nearly as cheap as sequential, but writes are expensive, must\nhappen in large erase blocks, and wear the device out. Modern external sorts on SSDs\ntherefore optimize for ",[40,8187,8188],{},"write minimization"," and large sequential writes rather\nthan seek avoidance — the accounting shifts, but the core strategy, few sequential\npasses with wide fan-out, carries over.",[5944,8191,8192],{},[15,8193,3186],{"href":5948,"ariaDescribedBy":8194,"dataFootnoteRef":6,"id":8195},[5950],"user-content-fnref-skiena-ext-2",[485,8197],{"hash":8198},"dc4e0596762da8b9525c76921b5da5529fb71e02566e616649446f23ec510e00",[49,8200,8202],{"id":8201},"takeaways","Takeaways",[8204,8205,8206,8216,8271,8385,8538,8596],"ul",{},[8207,8208,8209,8210,8212,8213,812],"li",{},"On data larger than memory the cost model changes: we count ",[40,8211,93],{},"\n(I\u002FOs), not comparisons, and seeks dwarf everything, so good algorithms move the\ndisk in long ",[40,8214,8215],{},"sequential passes",[8207,8217,8218,8220,8221,8248,8249,8252,8253,8270],{},[40,8219,332],{}," has two phases: form ",[65,8222,8224],{"className":8223},[68],[65,8225,8227],{"className":8226,"ariaHidden":73},[72],[65,8228,8230,8233,8236,8239,8242,8245],{"className":8229},[77],[65,8231],{"className":8232,"style":163},[81],[65,8234,274],{"className":8235},[171],[65,8237,176],{"className":8238,"style":120},[86,87],[65,8240,281],{"className":8241},[86],[65,8243,121],{"className":8244,"style":120},[86,87],[65,8246,288],{"className":8247},[201]," sorted ",[40,8250,8251],{},"runs","\nof memory size, then repeatedly ",[40,8254,8255,621],{},[65,8256,8258],{"className":8257},[68],[65,8259,8261],{"className":8260,"ariaHidden":73},[72],[65,8262,8264,8267],{"className":8263},[77],[65,8265],{"className":8266,"style":593},[81],[65,8268,598],{"className":8269,"style":597},[86,87]," them until one run remains.",[8207,8272,8273,8274,8291,8292,8294,8295,8310,8311,8344,8345,8384],{},"The ",[40,8275,8276,621],{},[65,8277,8279],{"className":8278},[68],[65,8280,8282],{"className":8281,"ariaHidden":73},[72],[65,8283,8285,8288],{"className":8284},[77],[65,8286],{"className":8287,"style":593},[81],[65,8289,598],{"className":8290,"style":597},[86,87]," uses a ",[40,8293,737],{}," of the ",[65,8296,8298],{"className":8297},[68],[65,8299,8301],{"className":8300,"ariaHidden":73},[72],[65,8302,8304,8307],{"className":8303},[77],[65,8305],{"className":8306,"style":593},[81],[65,8308,598],{"className":8309,"style":597},[86,87]," run fronts to emit the next\nsmallest record in ",[65,8312,8314],{"className":8313},[68],[65,8315,8317],{"className":8316,"ariaHidden":73},[72],[65,8318,8320,8323,8326,8329,8335,8338,8341],{"className":8319},[77],[65,8321],{"className":8322,"style":163},[81],[65,8324,759],{"className":8325,"style":758},[86,87],[65,8327,172],{"className":8328},[171],[65,8330,8332],{"className":8331},[185],[65,8333,191],{"className":8334,"style":190},[86,189],[65,8336],{"className":8337,"style":181},[180],[65,8339,598],{"className":8340,"style":597},[86,87],[65,8342,202],{"className":8343},[201],", giving ",[65,8346,8348],{"className":8347},[68],[65,8349,8351],{"className":8350,"ariaHidden":73},[72],[65,8352,8354,8357,8360,8363,8366,8369,8375,8378,8381],{"className":8353},[77],[65,8355],{"className":8356,"style":163},[81],[65,8358,167],{"className":8359},[86],[65,8361,172],{"className":8362},[171],[65,8364,176],{"className":8365,"style":120},[86,87],[65,8367],{"className":8368,"style":181},[180],[65,8370,8372],{"className":8371},[185],[65,8373,191],{"className":8374,"style":190},[86,189],[65,8376],{"className":8377,"style":181},[180],[65,8379,598],{"className":8380,"style":597},[86,87],[65,8382,202],{"className":8383},[201]," comparisons and a single\nsequential pass per merge.",[8207,8386,8387,8388,8479,8480,8495,8496,8537],{},"The number of passes is ",[65,8389,8391],{"className":8390},[68],[65,8392,8394,8412],{"className":8393,"ariaHidden":73},[72],[65,8395,8397,8400,8403,8406,8409],{"className":8396},[77],[65,8398],{"className":8399,"style":3228},[81],[65,8401,3186],{"className":8402},[86],[65,8404],{"className":8405,"style":3235},[180],[65,8407,2674],{"className":8408},[3239],[65,8410],{"className":8411,"style":3235},[180],[65,8413,8415,8418,8421,8464,8467,8470,8473,8476],{"className":8414},[77],[65,8416],{"className":8417,"style":163},[81],[65,8419,274],{"className":8420},[171],[65,8422,8424,8430],{"className":8423},[185],[65,8425,8427],{"className":8426},[185],[65,8428,191],{"className":8429,"style":190},[86,189],[65,8431,8433],{"className":8432},[518],[65,8434,8436,8456],{"className":8435},[522,523],[65,8437,8439,8453],{"className":8438},[527],[65,8440,8442],{"className":8441,"style":3279},[531],[65,8443,8444,8447],{"style":535},[65,8445],{"className":8446,"style":540},[539],[65,8448,8450],{"className":8449},[544,545,546,547],[65,8451,598],{"className":8452,"style":597},[86,87,547],[65,8454,555],{"className":8455},[554],[65,8457,8459],{"className":8458},[527],[65,8460,8462],{"className":8461,"style":562},[531],[65,8463],{},[65,8465,172],{"className":8466},[171],[65,8468,176],{"className":8469,"style":120},[86,87],[65,8471,281],{"className":8472},[86],[65,8474,121],{"className":8475,"style":120},[86,87],[65,8477,3465],{"className":8478},[201],"; larger fan-out ",[65,8481,8483],{"className":8482},[68],[65,8484,8486],{"className":8485,"ariaHidden":73},[72],[65,8487,8489,8492],{"className":8488},[77],[65,8490],{"className":8491,"style":593},[81],[65,8493,598],{"className":8494,"style":597},[86,87]," cuts\npasses, but ",[65,8497,8499],{"className":8498},[68],[65,8500,8502,8522],{"className":8501,"ariaHidden":73},[72],[65,8503,8505,8509,8512,8515,8519],{"className":8504},[77],[65,8506],{"className":8507,"style":8508},[81],"height:0.9592em;vertical-align:-0.2296em;",[65,8510,598],{"className":8511,"style":597},[86,87],[65,8513],{"className":8514,"style":1177},[180],[65,8516,8518],{"className":8517},[1181,4069],"≲",[65,8520],{"className":8521,"style":1177},[180],[65,8523,8525,8528,8531,8534],{"className":8524},[77],[65,8526],{"className":8527,"style":163},[81],[65,8529,121],{"className":8530,"style":120},[86,87],[65,8532,281],{"className":8533},[86],[65,8535,89],{"className":8536,"style":88},[86,87]," because every run needs a block-sized buffer in\nmemory, else the merge starts seeking.",[8207,8539,8540,8542,8543,8573,8574,8595],{},[40,8541,5923],{}," forms initial runs of average length ",[65,8544,8546],{"className":8545},[68],[65,8547,8549,8561],{"className":8548,"ariaHidden":73},[72],[65,8550,8552,8555,8558],{"className":8551},[77],[65,8553],{"className":8554,"style":5628},[81],[65,8556,5632],{"className":8557},[1181],[65,8559],{"className":8560,"style":1177},[180],[65,8562,8564,8567,8570],{"className":8563},[77],[65,8565],{"className":8566,"style":82},[81],[65,8568,467],{"className":8569},[86],[65,8571,121],{"className":8572,"style":120},[86,87],"\n(double the naive bound), shrinking ",[65,8575,8577],{"className":8576},[68],[65,8578,8580],{"className":8579,"ariaHidden":73},[72],[65,8581,8583,8586,8589,8592],{"className":8582},[77],[65,8584],{"className":8585,"style":163},[81],[65,8587,176],{"className":8588,"style":120},[86,87],[65,8590,281],{"className":8591},[86],[65,8593,121],{"className":8594,"style":120},[86,87]," and often removing a whole pass.",[8207,8597,8598,8599,8601,8602,8626,8627,8697,8698,8768,8769,8824],{},"The same block-fan-out idea powers the ",[15,8600,7199],{"href":7198},":\npacking ",[65,8603,8605],{"className":8604},[68],[65,8606,8608],{"className":8607,"ariaHidden":73},[72],[65,8609,8611,8614,8617,8620,8623],{"className":8610},[77],[65,8612],{"className":8613,"style":163},[81],[65,8615,167],{"className":8616},[86],[65,8618,172],{"className":8619},[171],[65,8621,89],{"className":8622,"style":88},[86,87],[65,8624,202],{"className":8625},[201]," keys per node makes search ",[65,8628,8630],{"className":8629},[68],[65,8631,8633],{"className":8632,"ariaHidden":73},[72],[65,8634,8636,8639,8642,8645,8688,8691,8694],{"className":8635},[77],[65,8637],{"className":8638,"style":163},[81],[65,8640,167],{"className":8641},[86],[65,8643,172],{"className":8644},[171],[65,8646,8648,8654],{"className":8647},[185],[65,8649,8651],{"className":8650},[185],[65,8652,191],{"className":8653,"style":190},[86,189],[65,8655,8657],{"className":8656},[518],[65,8658,8660,8680],{"className":8659},[522,523],[65,8661,8663,8677],{"className":8662},[527],[65,8664,8666],{"className":8665,"style":7380},[531],[65,8667,8668,8671],{"style":535},[65,8669],{"className":8670,"style":540},[539],[65,8672,8674],{"className":8673},[544,545,546,547],[65,8675,89],{"className":8676,"style":88},[86,87,547],[65,8678,555],{"className":8679},[554],[65,8681,8683],{"className":8682},[527],[65,8684,8686],{"className":8685,"style":562},[531],[65,8687],{},[65,8689],{"className":8690,"style":181},[180],[65,8692,176],{"className":8693,"style":120},[86,87],[65,8695,202],{"className":8696},[201]," seeks instead\nof ",[65,8699,8701],{"className":8700},[68],[65,8702,8704],{"className":8703,"ariaHidden":73},[72],[65,8705,8707,8710,8713,8716,8759,8762,8765],{"className":8706},[77],[65,8708],{"className":8709,"style":163},[81],[65,8711,167],{"className":8712},[86],[65,8714,172],{"className":8715},[171],[65,8717,8719,8725],{"className":8718},[185],[65,8720,8722],{"className":8721},[185],[65,8723,191],{"className":8724,"style":190},[86,189],[65,8726,8728],{"className":8727},[518],[65,8729,8731,8751],{"className":8730},[522,523],[65,8732,8734,8748],{"className":8733},[527],[65,8735,8737],{"className":8736,"style":532},[531],[65,8738,8739,8742],{"style":535},[65,8740],{"className":8741,"style":540},[539],[65,8743,8745],{"className":8744},[544,545,546,547],[65,8746,467],{"className":8747},[86,547],[65,8749,555],{"className":8750},[554],[65,8752,8754],{"className":8753},[527],[65,8755,8757],{"className":8756,"style":562},[531],[65,8758],{},[65,8760],{"className":8761,"style":181},[180],[65,8763,176],{"className":8764,"style":120},[86,87],[65,8766,202],{"className":8767},[201]," — the same ",[65,8770,8772],{"className":8771},[68],[65,8773,8775],{"className":8774,"ariaHidden":73},[72],[65,8776,8778,8781],{"className":8777},[77],[65,8779],{"className":8780,"style":4696},[81],[65,8782,8784,8790],{"className":8783},[185],[65,8785,8787],{"className":8786},[185],[65,8788,191],{"className":8789,"style":190},[86,189],[65,8791,8793],{"className":8792},[518],[65,8794,8796,8816],{"className":8795},[522,523],[65,8797,8799,8813],{"className":8798},[527],[65,8800,8802],{"className":8801,"style":3279},[531],[65,8803,8804,8807],{"style":535},[65,8805],{"className":8806,"style":540},[539],[65,8808,8810],{"className":8809},[544,545,546,547],[65,8811,598],{"className":8812,"style":597},[86,87,547],[65,8814,555],{"className":8815},[554],[65,8817,8819],{"className":8818},[527],[65,8820,8822],{"className":8821,"style":562},[531],[65,8823],{}," savings applied to search.",[8826,8827,8830,8835],"section",{"className":8828,"dataFootnotes":6},[8829],"footnotes",[49,8831,8834],{"className":8832,"id":5950},[8833],"sr-only","Footnotes",[8836,8837,8838,8862],"ol",{},[8207,8839,8841,2655,8844,8847,8848,8155,8855],{"id":8840},"user-content-fn-skiena-ext",[40,8842,8843],{},"Skiena",[31,8845,8846],{},"The Algorithm Design Manual",", §4.6 — External Sorting. Merge sort adapts to disk by sorting memory-sized runs and merging them; replacement selection builds runs averaging twice the memory size. ",[15,8849,8854],{"href":8850,"ariaLabel":8851,"className":8852,"dataFootnoteBackref":6},"#user-content-fnref-skiena-ext","Back to reference 1",[8853],"data-footnote-backref","↩",[15,8856,8854,8860],{"href":8857,"ariaLabel":8858,"className":8859,"dataFootnoteBackref":6},"#user-content-fnref-skiena-ext-2","Back to reference 1-2",[8853],[5944,8861,467],{},[8207,8863,8865,8868,8869,8884,8885,8887,8888,8906,8907],{"id":8864},"user-content-fn-clrs-ext",[40,8866,8867],{},"CLRS",", Problem 6-3 and Ch. 11 — heaps for ",[65,8870,8872],{"className":8871},[68],[65,8873,8875],{"className":8874,"ariaHidden":73},[72],[65,8876,8878,8881],{"className":8877},[77],[65,8879],{"className":8880,"style":593},[81],[65,8882,598],{"className":8883,"style":597},[86,87],"-way merging and the external-memory accounting in block transfers. The replacement-selection ",[1197,8886,6144],{}," analysis gives expected run length ",[65,8889,8891],{"className":8890},[68],[65,8892,8894],{"className":8893,"ariaHidden":73},[72],[65,8895,8897,8900,8903],{"className":8896},[77],[65,8898],{"className":8899,"style":82},[81],[65,8901,467],{"className":8902},[86],[65,8904,121],{"className":8905,"style":120},[86,87],". ",[15,8908,8854],{"href":8909,"ariaLabel":8910,"className":8911,"dataFootnoteBackref":6},"#user-content-fnref-clrs-ext","Back to reference 2",[8853],[8913,8914,8915],"style",{},"html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark-mode .shiki span {color: var(--shiki-dark-mode);background: var(--shiki-dark-mode-bg);font-style: var(--shiki-dark-mode-font-style);font-weight: var(--shiki-dark-mode-font-weight);text-decoration: var(--shiki-dark-mode-text-decoration);}html.dark-mode .shiki span {color: var(--shiki-dark-mode);background: var(--shiki-dark-mode-bg);font-style: var(--shiki-dark-mode-font-style);font-weight: var(--shiki-dark-mode-font-weight);text-decoration: var(--shiki-dark-mode-text-decoration);}html pre.shiki code .sdxpw, html code.shiki .sdxpw{--shiki-default:#505050;--shiki-dark-mode:#A0A0A0}html pre.shiki code .s3i95, html code.shiki .s3i95{--shiki-default:#000000;--shiki-dark-mode:#FFF}html pre.shiki code .sDYuN, html code.shiki .sDYuN{--shiki-default:#008080;--shiki-dark-mode:#99FFE4}html pre.shiki code .sat3U, html code.shiki .sat3U{--shiki-default:#FF8C00;--shiki-dark-mode:#FFC799}html pre.shiki code .sEX4i, html code.shiki .sEX4i{--shiki-default:#8B8B8B;--shiki-dark-mode:#8B8B8B94}",{"title":6,"searchDepth":831,"depth":831,"links":8917},[8918,8919,8922,8925,8926,8927,8928,8929],{"id":51,"depth":831,"text":52},{"id":331,"depth":831,"text":332,"children":8920},[8921],{"id":629,"depth":837,"text":630},{"id":3106,"depth":831,"text":3107,"children":8923},[8924],{"id":5119,"depth":837,"text":5120},{"id":5774,"depth":831,"text":5775},{"id":7054,"depth":831,"text":7055},{"id":7686,"depth":831,"text":7687},{"id":8201,"depth":831,"text":8202},{"id":5950,"depth":831,"text":8834},[],"computer-science","Every sort we have met so far, heapsort,\nmergesort, the\nlinear-time sorts, shares a hidden\nassumption: the whole array fits in fast memory, and any element is as cheap to\ntouch as any other. When the data is larger than RAM, a database table of a\nhundred gigabytes on a machine with eight of them, that assumption collapses. The\narray lives on disk, and the cost of the sort is no longer how many times we\ncompare but how many times we move a block between disk and memory. This\nlesson is about sorting under that constraint: external, or out-of-core,\nsorting.",false,"md",{"moduleNumber":837,"lessonNumber":843,"order":8936},304,"Sorting & Order Statistics","\u002Falgorithms\u002Fsorting\u002Fexternal-sorting",[8940,8944,8948],{"title":8941,"slug":8942,"difficulty":8943},"Merge k Sorted Lists","merge-k-sorted-lists","Hard",{"title":8945,"slug":8946,"difficulty":8947},"Find K Pairs with Smallest Sums","find-k-pairs-with-smallest-sums","Medium",{"title":8949,"slug":8950,"difficulty":8947},"Kth Smallest Element in a Sorted Matrix","kth-smallest-element-in-a-sorted-matrix","---\ntitle: External Sorting\nmodule: Sorting & Order Statistics\nmoduleNumber: 3\nlessonNumber: 4\norder: 304\nsummary: |\n  When the data dwarfs main memory, the cost that matters is no longer\n  comparisons but block transfers to and from disk. External merge sort sorts\n  memory-sized runs, then folds them together with a heap-driven $k$-way merge in\n  $\\Theta(\\log_k(N\u002FM))$ passes. Larger fan-out cuts passes; replacement selection\n  builds longer runs to cut them further.\ntopics: [External Sorting, Comparison Sorting]\nsources:\n  - book: CLRS\n    ref: \"Problem 6-3, Ch. 11 — external storage and merging\"\n  - book: Skiena\n    ref: \"§4.6 — External Sorting\"\n  - book: Erickson\n    ref: \"Ch. — Sorting\"\npractice:\n  - title: 'Merge k Sorted Lists'\n    slug: merge-k-sorted-lists\n    difficulty: Hard\n  - title: 'Find K Pairs with Smallest Sums'\n    slug: find-k-pairs-with-smallest-sums\n    difficulty: Medium\n  - title: 'Kth Smallest Element in a Sorted Matrix'\n    slug: kth-smallest-element-in-a-sorted-matrix\n    difficulty: Medium\n---\n\nEvery sort we have met so far, [heapsort](\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort),\n[mergesort](\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort), the\n[linear-time sorts](\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting), shares a hidden\nassumption: the whole array fits in fast memory, and any element is as cheap to\ntouch as any other. When the data is larger than RAM, a database table of a\nhundred gigabytes on a machine with eight of them, that assumption collapses. The\narray lives on disk, and the cost of the sort is no longer how many times we\n_compare_ but how many times we _move a block between disk and memory_. This\nlesson is about sorting under that constraint: **external**, or **out-of-core**,\nsorting.\n\n## Why the in-memory cost model lies\n\nA disk does not behave like slower random-access memory. Reaching an arbitrary\nbyte costs a **seek** (moving the head, or, on flash, an erase-block penalty)\nthat is four to five orders of magnitude slower than a memory reference. To amortize\nthat latency, storage is read and written in fixed-size **blocks** of $B$ records\nat a time; once the head is positioned, the marginal cost of the rest of the block\nis small. The realistic accounting therefore counts **block transfers**, not\ncomparisons.\n\n> **Definition (External-memory model).** Memory holds $M$ records; disk is\n> unbounded and is read and written in blocks of $B$ records. An algorithm's cost\n> is the number of block transfers (**I\u002FOs**) between disk and memory. CPU work on\n> data already in memory is treated as free.\n\nThis change of cost model reorders the algorithm rankings. Consider running ordinary\n[quicksort](\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort) on data that does not fit\nin memory, with the array paged in and out by the operating system. Its partition\nstep sweeps the array with two pointers that jump unpredictably, and its\nrecursion touches scattered regions. Each stray access can force a fresh block\ntransfer, so an algorithm that is $\\Theta(N\\log N)$ in _comparisons_ can degrade\ntoward one block transfer per comparison, thrashing the disk. The $\\log N$ that\nlooked harmless is now multiplied by a constant measured in milliseconds.\n\n> **Remark (The real enemy is the seek).** In-memory we optimize the comparison\n> count because comparisons dominate. On disk a sequential scan of $N$ records\n> costs only $\\lceil N\u002FB \\rceil$ transfers, cheap, while $N$ scattered accesses\n> cost up to $N$ transfers, ruinous. A good external algorithm is one that touches\n> the disk in long sequential streams and almost never seeks.\n\nThe design goal flips accordingly. We want an algorithm whose disk traffic is a\nhandful of **linear sequential passes** over the data, and we will measure it by\ncounting those passes.\n\n## External merge sort\n\nThe right strategy descends directly from [mergesort](\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort),\nwhose merge step is already a sequential streaming operation: it reads two sorted\ninputs front to back and writes one sorted output front to back, never seeking.\nThat is the access pattern disk handles cheaply. External merge sort is\nmergesort reorganized into two phases that respect the block model.\n\n> **Definition (Run).** A **run** is a maximal sorted contiguous stretch of\n> records on disk. The sort's job is to produce one run of length $N$ from an\n> unsorted file.\n\n**Phase 1 — run formation.** Read the file one memory-load at a time. Each load of\nup to $M$ records is sorted in memory by any internal sort, [heapsort](\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort)\nor quicksort, then written back out as a sorted run. A file of $N$ records yields\nabout $\\lceil N\u002FM \\rceil$ initial runs, each of length $M$ (the last possibly\nshorter). This phase reads the whole file once and writes it once: $2\\lceil N\u002FB \\rceil$\ntransfers, two sequential passes.\n\n$$\n% caption: Run formation (phase 1). The unsorted file streams past in memory-sized loads of\n%          $M$ records; each load is sorted internally and flushed back as one sorted run.\n%          A file of $N$ records becomes $\\lceil N\u002FM\\rceil$ runs.\n\\begin{tikzpicture}[\n  cell\u002F.style={draw, minimum width=6mm, minimum height=6mm, font=\\scriptsize, inner sep=0pt},\n  lbl\u002F.style={font=\\scriptsize, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % unsorted file, three loads delimited by the memory window\n  \\node[lbl, anchor=east] at (-0.3,3.0) {input};\n  \\foreach \\v\u002F\\i in {52\u002F0,31\u002F1,40\u002F2}   \\node[cell, fill=black!7] at (\\i*0.62,3.0) {\\v};\n  \\foreach \\v\u002F\\i in {19\u002F3,77\u002F4,28\u002F5}   \\node[cell, fill=black!7] at (\\i*0.62,3.0) {\\v};\n  \\foreach \\v\u002F\\i in {63\u002F6,11\u002F7,45\u002F8}   \\node[cell, fill=black!7] at (\\i*0.62,3.0) {\\v};\n  % the memory window brackets one load\n  \\draw[draw=acc, thick] (-0.32,2.62) rectangle (1.55,3.38);\n  \\node[lbl, anchor=south, text=acc] at (0.61,3.42) {load of $M$};\n  % internal sort\n  \\node[lbl, anchor=east] at (-0.3,1.5) {sort in memory};\n  \\node[cell, fill=acc!18, draw=acc] at (0,1.5) {31};\n  \\node[cell, fill=acc!18, draw=acc] at (0.62,1.5) {40};\n  \\node[cell, fill=acc!18, draw=acc] at (1.24,1.5) {52};\n  \\draw[->, >=Stealth, acc] (0.61,2.55) -- (0.61,1.85);\n  % flushed sorted runs\n  \\node[lbl, anchor=east] at (-0.3,0.0) {sorted runs};\n  \\foreach \\v\u002F\\i in {31\u002F0,40\u002F1,52\u002F2} \\node[cell, fill=acc!18, draw=acc] at (\\i*0.62,0.0) {\\v};\n  \\foreach \\v\u002F\\i in {19\u002F4,28\u002F5,77\u002F6} \\node[cell, fill=acc!18, draw=acc] at (\\i*0.62,0.0) {\\v};\n  \\foreach \\v\u002F\\i in {11\u002F8,45\u002F9,63\u002F10} \\node[cell, fill=acc!18, draw=acc] at (\\i*0.62,0.0) {\\v};\n  \\draw[->, >=Stealth, acc] (0.61,1.15) -- (0.61,0.4);\n  \\node[lbl, anchor=south] at (0.61,-0.62) {run 1};\n  \\node[lbl, anchor=south] at (2.78,-0.62) {run 2};\n  \\node[lbl, anchor=south] at (5.27,-0.62) {run 3};\n  \\node[lbl, anchor=west] at (6.4,1.5) {repeat per load};\n\\end{tikzpicture}\n$$\n\n**Phase 2 — merging.** We now have many sorted runs and must combine them into\none. Merging two runs at a time, as plain mergesort does, would take $\\log_2(N\u002FM)$\npasses over the data. We do far better by merging $k$ runs **at once** in a single\npass, a **$k$-way merge**, repeating until one run remains.\n\n$$\n% caption: External merge sort. Phase 1 sorts memory-sized loads into\n%          $\\lceil N\u002FM\\rceil$ runs; phase 2 folds them $k$ at a time, each pass a\n%          full sequential sweep, until a single sorted run of length $N$ remains.\n\\begin{tikzpicture}[\n  run\u002F.style={draw, minimum width=15mm, minimum height=6mm, font=\\scriptsize, inner sep=1pt},\n  lbl\u002F.style={font=\\scriptsize, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{grn}{HTML}{1A8A3B}\n  % unsorted file\n  \\node[run, fill=black!8] (u) at (0,2.4) {unsorted};\n  \\node[lbl, anchor=south] at (0,2.85) {input ($N$)};\n  % phase 1 runs\n  \\foreach \\i\u002F\\y in {1\u002F1.2,2\u002F0.4,3\u002F-0.4,4\u002F-1.2}\n    \\node[run, fill=acc!12] (r\\i) at (2.6,\\y) {run \\i};\n  \\draw[->, >=Stealth] (u.south) to[out=-90,in=180] (r1.west);\n  \\draw[->, >=Stealth] (u.south) to[out=-90,in=180] (r2.west);\n  \\draw[->, >=Stealth] (u.south) to[out=-90,in=180] (r3.west);\n  \\draw[->, >=Stealth] (u.south) to[out=-90,in=180] (r4.west);\n  \\node[lbl, anchor=south] at (2.6,1.65) {sorted runs};\n  % intermediate after one k=2 pass\n  \\node[run, fill=acc!20] (m1) at (5.6,0.8) {merged A};\n  \\node[run, fill=acc!20] (m2) at (5.6,-0.8) {merged B};\n  \\draw[->, >=Stealth] (r1.east) to[out=0,in=180] (m1.west);\n  \\draw[->, >=Stealth] (r2.east) to[out=0,in=180] (m1.west);\n  \\draw[->, >=Stealth] (r3.east) to[out=0,in=180] (m2.west);\n  \\draw[->, >=Stealth] (r4.east) to[out=0,in=180] (m2.west);\n  % final run\n  \\node[run, fill=grn!20, draw=grn] (f) at (8.4,0) {sorted ($N$)};\n  \\draw[->, >=Stealth] (m1.east) to[out=0,in=180] (f.west);\n  \\draw[->, >=Stealth] (m2.east) to[out=0,in=180] (f.west);\n  \\node[lbl, anchor=north] at (4.1,-1.7) {each arrow layer is one sequential pass};\n\\end{tikzpicture}\n$$\n\n### The k-way merge\n\nThe core step is selecting, repeatedly, the smallest record among\n$k$ sorted runs. Naively scanning all $k$ run fronts on every step costs $\\Theta(k)$\nper record; across $N$ records that is $\\Theta(Nk)$ comparisons, throwing away\nthe savings of a large fan-out. The fix is a structure we already own: a\n**min-heap**, the [priority queue](\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort) from\nthe heap lesson, holding one candidate, the current front record, from each run.\nIts root is the global minimum, extracted in $O(\\log k)$, and when a run supplies\nits next record we sift that in for another $O(\\log k)$.\n\n```algorithm\ncaption: $\\textsc{k-Way-Merge}(R_1, \\dots, R_k)$ — merge $k$ sorted runs into one\nnumber: 1\nlet $H$ be an empty min-heap keyed on record value\nfor $i \\gets 1$ to $k$ do\n  if run $R_i$ is nonempty then\n    $x \\gets$ read first record of $R_i$\n    $\\textsc{Insert}(H, (x, i))$ \u002F\u002F tag each candidate with its run\nwhile $H$ is nonempty do\n  $(x, i) \\gets \\textsc{Extract-Min}(H)$ \u002F\u002F smallest across all run fronts\n  output $x$ \u002F\u002F append to the merged run\n  if run $R_i$ has a next record then\n    $y \\gets$ read next record of $R_i$\n    $\\textsc{Insert}(H, (y, i))$ \u002F\u002F refill from the run we drained\n```\n\nThe heap never holds more than $k$ records, one per run, so it occupies $\\Theta(k)$\nmemory regardless of how long the runs are. Each of the $N$ output records costs\none $\\textsc{Extract-Min}$ and at most one $\\textsc{Insert}$, so a $k$-way merge\nruns in $\\Theta(N\\log k)$ comparisons, improving the per-record cost from\n$\\Theta(k)$ to $\\Theta(\\log k)$ over the naive scan.\n\n$$\n% caption: The reload step. The root $14$ (the run-3 head) is extracted and emitted; run~3\n%          advances, supplying $19$, which is sifted down into the now-empty root and settles,\n%          restoring the heap in $O(\\log k)$. The green root is the correct minimum being taken.\n\\begin{tikzpicture}[\n  n\u002F.style={circle, draw, minimum size=8mm, font=\\small, inner sep=0pt},\n  lbl\u002F.style={font=\\scriptsize, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{grn}{HTML}{1A8A3B}\n  % before\n  \\node[lbl] at (1.0,3.0) {before};\n  \\node[n, fill=grn!22, draw=grn] (a1) at (1.0,2.3) {14};\n  \\node[n, fill=acc!12] (a2) at (0.2,1.2) {22};\n  \\node[n, fill=acc!12] (a3) at (1.8,1.2) {18};\n  \\node[n, fill=acc!12] (a4) at (0.2,0.1) {31};\n  \\draw (a1)--(a2); \\draw (a1)--(a3); \\draw (a2)--(a4);\n  % extract + emit\n  \\node[lbl, text=grn] at (3.6,2.3) {emit 14};\n  \\draw[->, >=Stealth, grn, thick] (1.95,2.3) -- (2.95,2.3);\n  \\node[lbl] at (3.6,1.5) {run 3 gives 19};\n  % after\n  \\node[lbl] at (6.2,3.0) {after};\n  \\node[n, fill=grn!22, draw=grn] (b1) at (6.2,2.3) {18};\n  \\node[n, fill=acc!12] (b2) at (5.4,1.2) {22};\n  \\node[n, fill=acc!12] (b3) at (7.0,1.2) {19};\n  \\node[n, fill=acc!12] (b4) at (5.4,0.1) {31};\n  \\draw (b1)--(b2); \\draw (b1)--(b3); \\draw (b2)--(b4);\n  \\draw[->, >=Stealth, acc] (4.4,1.5) -- (5.3,1.5);\n  \\node[lbl, anchor=west, text=grn] at (7.05,2.3) {new min};\n\\end{tikzpicture}\n$$\n\n$$\n% caption: A $4$-way merge. The min-heap holds the head record of each of the four\n%          input runs; its root ($14$) is the next output. After emitting it, the run it\n%          came from advances and the new head is sifted in.\n\\begin{tikzpicture}[\n  buf\u002F.style={draw, minimum width=7mm, minimum height=6mm, font=\\scriptsize, inner sep=0pt},\n  n\u002F.style={circle, draw, minimum size=8mm, font=\\small, inner sep=0pt},\n  lbl\u002F.style={font=\\scriptsize, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{grn}{HTML}{1A8A3B}\n  % four input buffers on the left, fronts highlighted\n  \\foreach \\r\u002F\\y\u002F\\a\u002F\\b\u002F\\c in {1\u002F3.0\u002F14\u002F27\u002F40, 2\u002F2.0\u002F22\u002F35\u002F51, 3\u002F1.0\u002F19\u002F30\u002F46, 4\u002F0.0\u002F31\u002F38\u002F55} {\n    \\node[lbl, anchor=east] at (-0.2,\\y) {run \\r};\n    \\node[buf, fill=acc!15, draw=acc, thick] (f\\r) at (0.4,\\y) {\\a};\n    \\node[buf] at (1.1,\\y) {\\b};\n    \\node[buf] at (1.8,\\y) {\\c};\n  }\n  \\node[lbl, anchor=south] at (1.1,3.6) {input runs (heads shaded)};\n  % min-heap in the middle\n  \\node[n, fill=grn!22, draw=grn] (h1) at (4.3,3.0) {14};\n  \\node[n] (h2) at (3.6,1.9) {19};\n  \\node[n] (h3) at (5.0,1.9) {22};\n  \\node[n] (h4) at (3.6,0.8) {31};\n  \\draw (h1)--(h2); \\draw (h1)--(h3); \\draw (h2)--(h4);\n  \\node[lbl, anchor=south] at (4.3,3.7) {min-heap of heads};\n  \\node[lbl, text=grn, anchor=east] at (2.55,3.35) {top = next out};\n  % each head drops to a clear channel at $y=-0.7$, runs right, then rises into\n  % the heap from below, so no arrow crosses a buffer cell\n  \\draw[->, >=Stealth, acc!70] (f1.south) to[out=-90,in=180] (2.7,-0.7) to[out=0,in=-110] (h1.south west);\n  \\draw[->, >=Stealth, acc!40] (f2.south) to[out=-90,in=180] (2.9,-0.7) to[out=0,in=-120] (h3.south);\n  \\draw[->, >=Stealth, acc!40] (f3.south) to[out=-90,in=180] (2.5,-0.7) to[out=0,in=-90] (h2.south);\n  \\draw[->, >=Stealth, acc!40] (f4.south) to[out=-90,in=180] (2.3,-0.7) to[out=0,in=-90] (h4.south);\n  % output stream\n  \\node[buf, fill=acc!22, draw=acc, thick] (o) at (7.6,1.4) {14};\n  \\node[lbl, anchor=south, text=acc] at (7.6,1.95) {output run};\n  \\draw[->, >=Stealth, grn, thick] (h1.east) to[out=0,in=110] (o.north);\n  \\node[lbl, anchor=west] at (5.9,3.4) {extract min,};\n  \\node[lbl, anchor=west] at (5.9,3.05) {then reload};\n\\end{tikzpicture}\n$$\n\n> **Note (Merge sort connection).** A $2$-way merge is the ordinary\n> [mergesort](\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort) merge with $k=2$; there the\n> \"heap\" degenerates to a single comparison between two fronts. External merge sort\n> is simply mergesort with two changes: the base-case runs are sorted in bulk to\n> fill memory, and the merge fans in $k$ runs at once instead of two, so the whole\n> file is swept far fewer times.\n\n::impl{algo=\"k_way_merge,external_merge_sort#external_merge_sort+form_runs+merge_pass+streaming_external_sort\"}\n\n## How many passes?\n\nThis is the figure of merit. Phase 1 produces $\\lceil N\u002FM \\rceil$ runs. Each\nmerging pass reads every run once and writes the merged output once, a full\nsequential sweep of the data, and replaces $k$ runs with one, dividing the run\ncount by $k$. We are done when the count reaches $1$.\n\n> **Theorem (Pass count).** External merge sort with fan-out $k$ performs\n> $$\n> 1 + \\Bigl\\lceil \\log_k \\tfrac{N}{M} \\Bigr\\rceil\n> $$\n> sequential passes over the data: one run-formation pass plus\n> $\\lceil \\log_k(N\u002FM)\\rceil$ merge passes.\n\n> **Proof.** After phase 1 there are $r_0 = \\lceil N\u002FM\\rceil$ runs. A $k$-way merge\n> pass maps $r$ runs to $\\lceil r\u002Fk\\rceil$ runs, so after $p$ merge passes the run\n> count is at most $\\lceil r_0\u002Fk^p\\rceil$. This reaches $1$ once $k^p \\ge r_0$, that\n> is at $p = \\lceil \\log_k r_0\\rceil = \\lceil \\log_k(N\u002FM)\\rceil$. Adding the single\n> run-formation pass gives the stated total. $\\qed$\n\n$$\n% caption: Pass cascade with fan-out $k=4$ on $r_0=64$ initial runs. Each merge pass divides\n%          the run count by $k$, so $64$ to $16$ to $4$ to $1$ takes three merge passes,\n%          matching $\\lceil\\log_4 64\\rceil=3$, plus the one run-formation pass.\n\\begin{tikzpicture}[\n  box\u002F.style={draw, minimum width=20mm, minimum height=7mm, font=\\scriptsize, inner sep=1pt, fill=acc!14, draw=acc},\n  grnbox\u002F.style={draw, minimum width=20mm, minimum height=7mm, font=\\scriptsize, inner sep=1pt, fill=grn!20, draw=grn},\n  lbl\u002F.style={font=\\scriptsize, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{grn}{HTML}{1A8A3B}\n  \\node[box] (a) at (0,3.2) {64 runs};\n  \\node[box] (b) at (0,2.0) {16 runs};\n  \\node[box] (c) at (0,0.8) {4 runs};\n  \\node[grnbox] (d) at (0,-0.4) {1 run (sorted)};\n  \\draw[->, >=Stealth, acc] (a.south) -- node[right, lbl] {merge pass 1 (divide by 4)} (b.north);\n  \\draw[->, >=Stealth, acc] (b.south) -- node[right, lbl] {merge pass 2 (divide by 4)} (c.north);\n  \\draw[->, >=Stealth, grn] (c.south) -- node[right, lbl] {merge pass 3 (divide by 4)} (d.north);\n  \\node[lbl, anchor=east] at (-1.3,3.2) {phase 1 output};\n  \\node[lbl, anchor=east, text=grn] at (-1.3,-0.4) {done};\n\\end{tikzpicture}\n$$\n\nEach pass moves the entire file, $\\lceil N\u002FB\\rceil$ reads and $\\lceil N\u002FB\\rceil$\nwrites, so the total I\u002FO cost is\n\n$$\n\\Theta\\!\\parens{ \\frac{N}{B}\\parens{1 + \\log_k \\frac{N}{M}} }\n\\;=\\; \\Theta\\!\\parens{ \\frac{N}{B}\\,\\log_k \\frac{N}{M} }\n\\text{ block transfers.}\n$$\n\nThe base of the logarithm is what matters. Doubling the fan-out from $k=2$ to\n$k=4$ halves the number of merge passes, because $\\log_4 x = \\tfrac12\\log_2 x$. On\na terabyte file with gigabytes of memory the difference between a binary merge and\na wide one is the difference between dozens of passes and two or three.\n\n$$\n% caption: Merge passes versus fan-out for a fixed $N\u002FM$. Passes fall as\n%          $\\lceil\\log_k(N\u002FM)\\rceil$, so a wider merge flattens the file in far fewer\n%          sequential sweeps; the gain shrinks as $k$ grows.\n\\begin{tikzpicture}\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{grn}{HTML}{1A8A3B}\n  % axes\n  \\draw[->, >=Stealth] (0,0) -- (6.6,0) node[right, font=\\scriptsize] {fan-out $k$};\n  \\draw[->, >=Stealth] (0,0) -- (0,4.2) node[above, font=\\scriptsize] {merge passes};\n  \\foreach \\k\u002F\\x in {2\u002F0.7,4\u002F1.7,8\u002F2.7,16\u002F3.7,64\u002F4.7,256\u002F5.7}\n    \\node[font=\\scriptsize, anchor=north] at (\\x,0) {\\k};\n  \\foreach \\p in {2,4,6,8} \\node[font=\\scriptsize, anchor=east] at (-0.1,\\p*0.45) {\\p};\n  % passes for N\u002FM = 2^16: log_k(2^16) = 16\u002Flog2(k)\n  % k=2 ->16(cap 8), 4->8, 8->5.33, 16->4, 64->2.67, 256->2\n  \\draw[acc, very thick]\n    (0.7,3.6) -- (1.7,3.6) -- (2.7,2.4) -- (3.7,1.8) -- (4.7,1.2) -- (5.7,0.9);\n  \\foreach \\x\u002F\\y in {0.7\u002F3.6,1.7\u002F3.6,2.7\u002F2.4,3.7\u002F1.8,4.7\u002F1.2,5.7\u002F0.9}\n    \\fill[acc] (\\x,\\y) circle (2pt);\n  \\node[font=\\scriptsize, text=acc, anchor=west] at (1.9,3.7) {fewer passes as $k$ grows};\n\\end{tikzpicture}\n$$\n\n::impl{algo=\"external_merge_sort#pass_count\"}\n\n### Why not make k enormous?\n\nIf a bigger $k$ always helps, why not merge all $\\lceil N\u002FM\\rceil$ runs in one\npass? Because fan-out is bounded by **memory**. During a merge the $M$ records of\nmemory are divided into one **input buffer** per run plus an output buffer; each\nbuffer must hold at least one block of $B$ records to keep the disk traffic\nsequential. With $k$ input buffers and an output buffer we need roughly\n$(k+1)B \\le M$, so\n\n$$\nk \\;\\le\\; \\frac{M}{B} - 1.\n$$\n\nPush $k$ past this and the buffers shrink below a block, the merge starts seeking\nwithin each run, and the per-record I\u002FO cost explodes, exactly the thrashing we\nset out to avoid. So $k$ is chosen near $M\u002FB$: large enough that $\\log_k(N\u002FM)$ is\ntypically $1$ or $2$, small enough that every buffer is at least one block. There\nis also a CPU-side tension, the heap costs $\\Theta(N\\log k)$ comparisons, but on\ndisk-bound sorts the I\u002FO term dominates and the comparison cost is secondary.\n\n> **Intuition (The buffer budget).** Memory is split among the runs you are\n> merging. More runs means more passes saved but thinner buffers; thinner buffers\n> than a block means seeking, which is catastrophic. The sweet spot fills memory\n> with one block-sized buffer per run, fanning in $\\approx M\u002FB$ runs at a time.\n\n::impl{algo=\"external_merge_sort#max_fan_out\"}\n\n## Replacement selection: longer initial runs\n\nThe pass count is $\\lceil \\log_k(N\u002FM)\\rceil$, driven by the _number_ of initial\nruns, $N\u002FM$. Anything that makes the initial runs **longer** shrinks $N\u002FM$ and can\nremove a whole pass. Phase 1 as described caps each run at $M$, the memory size.\n**Replacement selection** beats that bound, producing runs of average length\n$2M$.[^skiena-ext]\n\nThe idea treats memory as a min-heap of $M$ records that continuously consumes\ninput and emits output, rather than sorting in fixed batches. Fill the heap with\n$M$ records. Repeatedly extract the minimum and append it to the current run; then\nread the next input record and decide where it goes. If it is $\\ge$ the record\njust emitted, it can still belong to the current run, so insert it into the heap.\nIf it is _smaller_, it cannot, so set it aside (mark it \"frozen\") to seed the\n**next** run. The current run grows as long as incoming records keep up with the\noutput; only when the heap is entirely frozen records do we close the run and\nstart fresh.\n\n```algorithm\ncaption: $\\textsc{Replacement-Selection}$ — form long runs with an $M$-record heap\nnumber: 2\nfill min-heap $H$ with the first $M$ input records\n$last \\gets -\\infty$ \u002F\u002F last value written to the current run\nwhile $H$ is nonempty do\n  $x \\gets \\textsc{Extract-Min}(H)$ \u002F\u002F smallest unfrozen record\n  output $x$ to the current run\n  $last \\gets x$\n  if more input remains then\n    $y \\gets$ read next input record\n    if $y \\ge last$ then\n      $\\textsc{Insert}(H, y)$ \u002F\u002F still fits this run\n    else\n      freeze $y$ for the next run \u002F\u002F mark, keep in memory\n  if $H$ has only frozen records then\n    close current run; unfreeze all; start a new run\n```\n\nWhy $2M$ on average? Picture the input as a stream and the heap as a window of\n$M$ records sliding along it. A new record extends the current run whenever it is\nno smaller than the last output, which for random data happens about half the time\nat any moment, but the records that _do_ extend the run push the window forward\nand let still more records qualify. The classic \"snowplow\" argument makes it\nprecise: a plow clears snow on a circular road while snow keeps falling uniformly;\nin steady state the plow always has about twice its own length of snow ahead of it.\nThe same balance yields runs of expected length $2M$, and on already-sorted or\nnearly-sorted input a _single_ run covering the entire file.[^clrs-ext]\n\n$$\n% caption: Replacement selection. Records arriving $\\ge$ the last output (green) extend the\n%          current run through the heap; smaller arrivals (blue outline) are frozen in memory to\n%          seed the next run. Average run length $\\approx 2M$, double a fixed-batch sort.\n\\begin{tikzpicture}[\n  rec\u002F.style={draw, minimum width=6.5mm, minimum height=6mm, font=\\scriptsize, inner sep=0pt},\n  lbl\u002F.style={font=\\scriptsize, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{grn}{HTML}{1A8A3B}\n  % incoming stream: green = extends run, blue outline = frozen\n  \\node[lbl, anchor=east] at (-0.2,2.8) {input};\n  \\node[rec, fill=grn!18, draw=grn] at (0,2.8) {17};\n  \\node[rec, fill=grn!18, draw=grn] at (0.85,2.8) {25};\n  \\node[rec, fill=white, draw=acc, thick] at (1.7,2.8) {9};\n  \\node[rec, fill=grn!18, draw=grn] at (2.55,2.8) {30};\n  \\node[rec, fill=white, draw=acc, thick] at (3.4,2.8) {12};\n  \\node[rec, fill=grn!18, draw=grn] at (4.25,2.8) {41};\n  \\node[lbl, anchor=west] at (5.0,2.8) {arriving records};\n  % heap box\n  \\draw[draw=acc, thick] (0.7,1.0) rectangle (4.1,2.0);\n  \\node[lbl, anchor=south, text=acc] at (2.4,2.05) {min-heap (size $M$)};\n  \\node[rec, fill=acc!12] at (1.2,1.5) {17};\n  \\node[rec, fill=acc!12] at (1.9,1.5) {25};\n  \\node[rec, fill=acc!12] at (2.6,1.5) {30};\n  \\node[rec, fill=acc!12] at (3.3,1.5) {41};\n  % frozen pile\n  \\node[lbl, anchor=west, text=acc] at (4.4,1.5) {frozen 9, 12 seed next run};\n  % output run, well below the heap box and its label\n  \\node[lbl, anchor=east] at (-0.2,-0.4) {current run};\n  \\foreach \\v\u002F\\i in {5\u002F0,8\u002F1,11\u002F2,14\u002F3} \\node[rec, fill=grn!18, draw=grn] at (\\i*0.85,-0.4) {\\v};\n  \\node[lbl, anchor=west] at (3.2,-0.4) {sorted output, about twice memory long};\n  \\draw[->, >=Stealth, grn, thick] (2.4,0.95) to[out=-90,in=90] (1.7,-0.04);\n\\end{tikzpicture}\n$$\n\n$$\n% caption: The snowplow argument. On a circular road snow falls uniformly while one plow\n%          clears it; in steady state the plow always faces about twice its own length of\n%          snow. The heap is the plow, the cleared length is one run, hence runs $\\approx 2M$.\n\\begin{tikzpicture}[\n  lbl\u002F.style={font=\\scriptsize, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % circular road\n  \\draw[black, line width=5pt] (0,0) circle (1.5);\n  % snow ahead of the plow: the acc arc spanning the upcoming, uncleared stretch\n  \\draw[acc, line width=5pt] (1.5,0) arc (0:230:1.5);\n  % the plow\n  \\fill[acc] (1.5,0) circle (3pt);\n  \\node[lbl, anchor=west, text=acc] at (1.75,0) {plow (heap)};\n  \\node[lbl, anchor=east, text=acc] at (-1.15,1.25) {snow ahead};\n  \\node[lbl, anchor=east, text=black] at (-0.2,-1.4) {cleared};\n  % the relation\n  \\node[lbl, anchor=west] at (3.4,0.6) {snow ahead is about twice plow length};\n  \\node[lbl, anchor=west] at (3.4,0.0) {cleared per cycle is about double};\n  \\node[lbl, anchor=west] at (3.4,-0.6) {so each run averages two memory loads};\n\\end{tikzpicture}\n$$\n\nRoughly halving the run count this way often saves exactly one merge pass, a\nsizable fraction of the disk traffic. Modern external sorts combine wide\nfan-out merging with replacement-selection run formation, and on real workloads\nthe whole sort finishes in a small constant number of passes over the data.\n\n::impl{algo=\"replacement_selection\"}\n\n## The disk-block connection: B-trees\n\nThe same accounting that shapes external sorting shapes external _search_. When a\nsorted index is too big for memory, a balanced binary search tree is a poor fit:\nits height is $\\log_2 N$, and following each child pointer can cost a fresh block\ntransfer, so a lookup costs $\\Theta(\\log_2 N)$ seeks. A [B-tree](\u002Falgorithms\u002Fdata-structures\u002Fb-trees)\nfixes this with the same fan-out idea external merge sort uses. Pack\neach node with as many keys as fill one block, $\\Theta(B)$ of them, so each node\nhas $\\Theta(B)$ children instead of $2$. The tree's height collapses from\n$\\log_2 N$ to\n\n$$\n\\Theta\\!\\parens{\\log_B N},\n$$\n\nand a search touches only $\\Theta(\\log_B N)$ blocks — the same $\\log_k$ savings,\nwith the block size $B$ playing the fan-out $k$. A wide node is to search what a\nwide merge is to sorting.\n\n> **Takeaway.** Both structures solve the same problem, keeping a large\n> ordered collection on disk while touching as few blocks as possible, and both\n> solve it the same way: make the branching factor as wide as a block allows. External merge\n> sort fans in $\\approx M\u002FB$ runs per pass; a B-tree fans out $\\approx B$ children\n> per node. Each turns a base-$2$ logarithm into a base-$B$ one.\n\n## Past the two-parameter model\n\nExternal merge sort is tuned to two parameters, memory size $M$ and block size\n$B$, that it must be told. Two developments push past that dependence, and one\nscales the idea across an entire datacenter.\n\n**The optimal I\u002FO bound.** The pass-count analysis gives\n$\\Theta(\\tfrac{N}{B}\\log_{M\u002FB}\\tfrac{N}{B})$ block transfers with fan-out\n$k \\approx M\u002FB$. Aggarwal and Vitter (1988) proved this is **optimal**: no\nexternal sorting algorithm, comparison-based, can do asymptotically fewer I\u002FOs.\nSo external merge sort is to the block model what mergesort is to the comparison\nmodel — provably the best possible up to constants.\n\n**Cache-oblivious sorting.** External merge sort needs $M$ and $B$ hard-coded to\nsize its buffers. A **cache-oblivious** algorithm hits the same optimal I\u002FO bound\n_without knowing $M$ or $B$_, so a single binary runs optimally across every level\nof the memory hierarchy at once — registers, L1, L2, RAM, disk — each with its own\nunknown block size. **Funnelsort** (Frigo, Leiserson, Prokop, and Ramachandran,\n1999) achieves this by merging through recursively-built \"$k$-funnels\" whose\nsizes form a geometric ladder; the recursion automatically arranges that whatever\nthe true block size turns out to be, the data movement near that scale is\nsequential. It is the same $k$-way-merge idea, made self-tuning.\n\n**Sorting a datacenter: TeraSort.** When the data outgrows one machine's disks, the\nmerge fans out across a cluster. The **MapReduce** sort (and the **TeraSort**\nbenchmark built on it) is external merge sort's distributed cousin: a sampling pass\npicks $k-1$ **splitter** keys that partition the key range into $k$ roughly equal\nbands, each node range-partitions its shard by shipping records to the node owning\ntheir band (the \"shuffle\"), and each node sorts its band locally. Concatenating the\nbands in order yields a globally sorted file — a distributed bucket sort whose\nsplitters play the role of bucket boundaries, and whose per-node local sort is\nitself an external merge sort. Sorting a petabyte this way is a standard\nindustry benchmark.\n\n**Solid-state storage.** The model here charges a flat cost per block transfer, which\nsuited spinning disks where the seek dominated. Flash storage changes the constants:\nrandom reads are nearly as cheap as sequential, but writes are expensive, must\nhappen in large erase blocks, and wear the device out. Modern external sorts on SSDs\ntherefore optimize for **write minimization** and large sequential writes rather\nthan seek avoidance — the accounting shifts, but the core strategy, few sequential\npasses with wide fan-out, carries over.[^skiena-ext]\n\n$$\n% caption: Fan-out shrinks the depth. A binary structure over $N$ items is $\\log_2 N$ deep;\n%          a block-wide one is $\\log_B N$ deep. The same idea drives $k$-way merge (fewer\n%          passes) and the B-tree (fewer seeks per search).\n\\begin{tikzpicture}[font=\\footnotesize, >=Stealth, x=1cm, y=1cm,\n  n\u002F.style={draw, circle, minimum size=4mm, inner sep=0},\n  wide\u002F.style={draw, minimum width=30mm, minimum height=5mm, inner sep=1pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % binary tree: tall\n  \\node[n, fill=acc!12] (r) at (0,2.6) {};\n  \\node[n, fill=acc!12] (a) at (-0.8,1.7) {}; \\node[n, fill=acc!12] (b) at (0.8,1.7) {};\n  \\node[n, fill=acc!12] (c) at (-1.2,0.8) {}; \\node[n, fill=acc!12] (d) at (-0.4,0.8) {};\n  \\node[n, fill=acc!12] (e) at (0.4,0.8) {}; \\node[n, fill=acc!12] (f) at (1.2,0.8) {};\n  \\draw (r)--(a); \\draw (r)--(b); \\draw (a)--(c); \\draw (a)--(d); \\draw (b)--(e); \\draw (b)--(f);\n  \\node[font=\\footnotesize, anchor=north] at (0,0.4) {\\texttt{binary: depth log2 N}};\n  % B-tree: shallow, wide nodes\n  \\node[wide, fill=acc!14, draw=acc] (br) at (6,2.5) {};\n  \\node[wide, minimum width=13mm, fill=acc!14, draw=acc] (bl1) at (4.7,1.4) {};\n  \\node[wide, minimum width=13mm, fill=acc!14, draw=acc] (bl2) at (7.3,1.4) {};\n  \\draw[acc] (br.south) -- (bl1.north); \\draw[acc] (br.south) -- (bl2.north);\n  \\node[font=\\footnotesize, anchor=north] at (6,0.9) {\\texttt{block-wide: depth logB N}};\n\\end{tikzpicture}\n$$\n\n## Takeaways\n\n- On data larger than memory the cost model changes: we count **block transfers**\n  (I\u002FOs), not comparisons, and seeks dwarf everything, so good algorithms move the\n  disk in long **sequential passes**.\n- **External merge sort** has two phases: form $\\lceil N\u002FM\\rceil$ sorted **runs**\n  of memory size, then repeatedly **$k$-way merge** them until one run remains.\n- The **$k$-way merge** uses a **min-heap** of the $k$ run fronts to emit the next\n  smallest record in $O(\\log k)$, giving $\\Theta(N\\log k)$ comparisons and a single\n  sequential pass per merge.\n- The number of passes is $1 + \\lceil \\log_k(N\u002FM)\\rceil$; larger fan-out $k$ cuts\n  passes, but $k \\lesssim M\u002FB$ because every run needs a block-sized buffer in\n  memory, else the merge starts seeking.\n- **Replacement selection** forms initial runs of average length $\\approx 2M$\n  (double the naive bound), shrinking $N\u002FM$ and often removing a whole pass.\n- The same block-fan-out idea powers the [B-tree](\u002Falgorithms\u002Fdata-structures\u002Fb-trees):\n  packing $\\Theta(B)$ keys per node makes search $\\Theta(\\log_B N)$ seeks instead\n  of $\\Theta(\\log_2 N)$ — the same $\\log_k$ savings applied to search.\n\n[^skiena-ext]: **Skiena**, _The Algorithm Design Manual_, §4.6 — External Sorting. Merge sort adapts to disk by sorting memory-sized runs and merging them; replacement selection builds runs averaging twice the memory size.\n[^clrs-ext]: **CLRS**, Problem 6-3 and Ch. 11 — heaps for $k$-way merging and the external-memory accounting in block transfers. The replacement-selection \"snowplow\" analysis gives expected run length $2M$.\n",{"text":8953,"minutes":8954,"time":8955,"words":8956},"21 min read",20.21,1212600,4042,{"title":5,"description":8932},[8959,8961,8963],{"book":8867,"ref":8960},"Problem 6-3, Ch. 11 — external storage and merging",{"book":8843,"ref":8962},"§4.6 — External Sorting",{"book":8964,"ref":8965},"Erickson","Ch. — Sorting","available","01.algorithms\u002F03.sorting\u002F04.external-sorting","When the data dwarfs main memory, the cost that matters is no longer\ncomparisons but block transfers to and from disk. External merge sort sorts\nmemory-sized runs, then folds them together with a heap-driven $k$-way merge in\n$\\Theta(\\log_k(N\u002FM))$ passes. Larger fan-out cuts passes; replacement selection\nbuilds longer runs to cut them further.\n",[5,8970],"Comparison Sorting","0UEjLtPMREq-ouMFuBa7ZqLnN-9G5ObsVs-IsVJ9Y84",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":8973,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":8974,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":8975,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":8976,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":8977,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":8978,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":8979,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":8980,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":8981,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":8982,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":8983,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":8984,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":8985,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":8956,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":8986,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":8987,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":8988,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":8989,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":8990,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":8991,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":8992,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":8993,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":8994,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":8995,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":8996,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":8997,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":8998,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":8999,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":9000,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":9001,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":9002,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":9003,"\u002Falgorithms\u002Fsequences\u002Ftries":9004,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":9005,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":9006,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":9007,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":9008,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":9009,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":9010,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":9011,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":9012,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":9013,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":9014,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":9015,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":9016,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":9017,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":9018,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":9019,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":9020,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":9021,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":9022,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":9023,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":9024,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":9025,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":9026,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":9027,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":9028,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":9029,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":9030,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":9031,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":9032,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":9033,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":9034,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":9035,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":9036,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":9037,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":9038,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":9039,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":9040,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":9041,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":9042,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":9043,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":9044,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":9045,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":9046,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":9047,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":9048,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":9049,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":9050,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":9051,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":9052,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":9053,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":9054,"\u002Falgorithms":9055,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":9056,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":9057,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":9058,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":9059,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":9060,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":9061,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":9062,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":9063,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":9064,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":9065,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":9066,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":9067,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":9068,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":9069,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":9070,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":9071,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":9072,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":9073,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":9074,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":9075,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":9076,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":9077,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":9078,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":9079,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":9080,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":9081,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":9082,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":9083,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":9084,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":9085,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":9086,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":9087,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":9088,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":9089,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":9070,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":9090,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":9091,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":9092,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":9060,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":9093,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":9094,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":9095,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":9096,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":9097,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":9098,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":9099,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":9100,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":9101,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":9102,"\u002Fcalculus":9103,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":9104,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":9105,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":9106,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":9107,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":9108,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":9109,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":9110,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":9111,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":9112,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":9113,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":9114,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":9115,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":9116,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":9117,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":9118,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":9119,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":9120,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":9121,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":9122,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":9123,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":9124,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":9125,"\u002Fmechanics\u002Frotation\u002Frolling-motion":9126,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":9127,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":9128,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":9129,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":9130,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":9131,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":9132,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":9133,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":9134,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":9135,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":9136,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":9137,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":9138,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":9139,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":9140,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":9141,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":9142,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":9143,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":9144,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":9145,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":9146,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":9147,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":9148,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":9149,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":9150,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":9151,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":9152,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":9153,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":9154,"\u002Fmechanics":9155,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":9156,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":9157,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":9158,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":9159,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":9160,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":9161,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":9162,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":9163,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":9164,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":9165,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":9166,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":9167,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":9144,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":9168,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":9169,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":9170,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":9140,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":9005,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":9171,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":9131,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":9172,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":9173,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":9174,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":9175,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":9176,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":9177,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":9178,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":9179,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":9180,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":9105,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":9181,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":9182,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":9183,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":9184,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":9185,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":9186,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":9187,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":9188,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":9123,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":9122,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":9189,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":9190,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":9191,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":9192,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":9193,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":9194,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":9195,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":9196,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":9197,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":9149,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":9147,"\u002Felectricity-and-magnetism":9198,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":9199,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":9200,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":9201,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":9202,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":9203,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":9204,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":9205,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":9206,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":9207,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":9057,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":9208,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":9209,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":9061,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":9210,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":9211,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":9212,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":9213,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":9214,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":9215,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":9216,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":9217,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":9218,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":9219,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":9220,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":9221,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":9222,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":9223,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":9224,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":9225,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":9226,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":9227,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":9228,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":9229,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":9096,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":9230,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":9231,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":9232,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":9233,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":9234,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":9235,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":9236,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":9237,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":9238,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":9239,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":9240,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":9241,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":9242,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":9243,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":9244,"\u002Flinear-algebra":9245,"\u002Ftheory-of-computation":9246,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":9247,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":9248,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":9249,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":9250,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":9251,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":9252,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":9253,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":9254,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":9255,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":9256,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":9257,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":9258,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":9259,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":9260,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":9261,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":9262,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":9263,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":9264,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":9265,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":9266,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":9267,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":9268,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":9269,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":9270,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":9271,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":9272,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":9273,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":9274,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":9275,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":9276,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":9277,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":9278,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":9279,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":9280,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":9281,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":9282,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":9283,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":9284,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":9285,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":9286,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":9287,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":9288,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":9289,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":9290,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":9291,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":9292,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":9293,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":9294,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":9295,"\u002Fcomputer-architecture":9246,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":9296,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":9297,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":9298,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":9061,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":9299,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":9060,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":9067,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":9300,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":9301,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":9101,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":9302,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":9303,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":9304,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":9305,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":9306,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":9307,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":9308,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":9309,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":9310,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":9311,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":9312,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":9313,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":9308,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":9314,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":9315,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":9316,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":9317,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":9318,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":9319,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":9320,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":9321,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":9322,"\u002Fdifferential-equations":9323,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":9324,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":9325,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":9326,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":9327,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":9206,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":9328,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":9329,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":9330,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":9331,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":9332,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":9333,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":9076,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":9334,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":9335,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":9336,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":9337,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":9338,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":9339,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":9340,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":9341,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":9342,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":9343,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":9298,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":9344,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":9345,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":9346,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":9347,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":9348,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":9227,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":9349,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":9350,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":9237,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":9351,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":9352,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":9353,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":9354,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":9355,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":9356,"\u002Frelativity":9357,"\u002Fphysical-computing":9246,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":9358,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":9337,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":9359,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":9360,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":9361,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":9362,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":9363,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":9364,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":9365,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":9313,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":9237,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":9366,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":9367,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":9368,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":9369,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":9365,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":9370,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":9345,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":9098,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":9371,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":9372,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":9078,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":9373,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":9374,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":9375,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":9376,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":9377,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":9378,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":9379,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":9380,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":9381,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":9337,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":9382,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":9383,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":9384,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":9371,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":9059,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":9385,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":9386,"\u002Fquantum-mechanics":9387,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":9321,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":9388,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":9389,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":9210,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":9390,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":9096,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":9391,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":9392,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":9233,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":9343,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":9393,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":9394,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":9395,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":9396,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":9397,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":9370,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":9398,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":9203,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":9399,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":9400,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":9057,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":9401,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":9402,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":9359,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":9086,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":9237,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":9403,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":9404,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":9222,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":9347,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":9405,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":9406,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":9407,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":9242,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":9408,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":9409,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":9410,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":9410,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":9411,"\u002Freal-analysis":9412,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":9413,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":9414,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":9415,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":9416,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":9417,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":9418,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":9419,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":9420,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":9421,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":9422,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":9386,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":9423,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":9415,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":9332,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":9424,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":9425,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":9426,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":9427,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":9428,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":9429,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":9430,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":9431,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":9425,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":9432,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":9401,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":9433,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":9434,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":9435,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":9436,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":9437,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":9438,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":9439,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":9440,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":9441,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":9442,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":9075,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":9443,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":9444,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":9317,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":9445,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":9446,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":9374,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":9446,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":9447,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":9448,"\u002Fabstract-algebra":9449,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":9450,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":9451,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":9452,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":9453,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":9454,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":9366,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":9455,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":9456,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":9457,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":9458,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":9459,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":9460,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":9461,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":9200,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":9329,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":9075,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":9462,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":9059,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":9463,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":9464,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":9097,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":9391,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":9465,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":9466,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":9467,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":9468,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":9469,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":9470,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":9471,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":9472,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":9473,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":9474,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":9475,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":9476,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":9477,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":9478,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":9422,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":9479,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":9480,"\u002Fatomic-physics":9481,"\u002Fdatabases":9246,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":9482,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":9483,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":9484,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":9413,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":9485,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":9486,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":9487,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":9488,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":9489,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":9490,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":9491,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":9492,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":9493,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":9494,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":9495,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":9496,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":9497,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":9498,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":9499,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":9500,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":9501,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":9502,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":9503,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":9504,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":9495,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":9505,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":9506,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":9507,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":9508,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":9509,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":9454,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":9510,"\u002Fcategory-theory":9511,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":9512,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":9513,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":9514,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":9515,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":9516,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":9517,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":9476,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":9518,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":9519,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":9520,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":9521,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":9522,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":9523,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":9524,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":9525,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":9526,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":9527,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":9528,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":9529,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":9530,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":9531,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":9532,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":9533,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":9534,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":9535,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":9536,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":9537,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":9538,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":9539,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":9540,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":9541,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":9542,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":9543,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":9544,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":9488,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":9545,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":9546,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":9547,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":9548,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":9549,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":9550,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":9551,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":9040,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":9552,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":9553,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":9276,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":9554,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":9555,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":9556,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":9557,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":9558,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":9559,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":9560,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":9561,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":9562,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":9563,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":9564,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":9565,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":9249,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":9566,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":9567,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":9568,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":9569,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":9286,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":9570,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":9571,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":9572,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":9573,"\u002Fdeep-learning":9246,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":9574,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":9371,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":9575,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":9576,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":9577,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":9578,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":9579,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":9580,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":9581,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":9582,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":9418,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":9583,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":9584,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":9585,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":9305,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":9098,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":9586,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":9587,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":9588,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":9232,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":9589,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":9590,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":9310,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":9237,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":9591,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":9206,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":9076,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":9092,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":9592,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":9593,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":9594,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":9224,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":9595,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":9086,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":9596,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":9597,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":9598,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":9599,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":9420,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":9600,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":9601,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":9602,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":9603,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":9366,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":9604,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":9344,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":9605,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":9205,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":9606,"\u002Fstatistical-mechanics":9607,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":9608,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":9071,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":9331,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":9609,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":9610,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":9611,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":9612,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":9613,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":9614,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":9204,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":9615,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":9616,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":9617,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":9618,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":9347,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":9619,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":9620,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":9621,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":9622,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":9623,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":9402,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":9346,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":9624,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":9625,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":9626,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":9627,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":9337,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":9628,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":9629,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":9574,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":9474,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":9201,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":9630,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":9067,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":9631,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":9632,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":9212,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":9633,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":9467,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":9634,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":9059,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":9635,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":9070,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":9636,"\u002Fcondensed-matter":9387,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":9637,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":9638,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":9639,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":9640,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":9084,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":9641,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":9642,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":9084,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":9643,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":9497,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":9644,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":9645,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":9646,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":9644,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":9647,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":9648,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":9649,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":9650,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":9651,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":9652,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":9653,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":9654,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":9575,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":9655,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":9648,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":9656,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":9657,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":9290,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":9658,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":9475,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":9659,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":9660,"\u002Flogic":9661,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":9662,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":9663,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":9276,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":9664,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":9665,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":9666,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":9667,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":9657,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":9668,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":9669,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":9670,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":9568,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":9671,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":9672,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":9673,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":9674,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":9675,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":9293,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":9676,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":9677,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":9678,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":9679,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":9484,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":9680,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":9656,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":9681,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":9682,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":9683,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":9304,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":9684,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":9434,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":9685,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":9686,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":9266,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":9687,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":9688,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":9689,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":9690,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":9691,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":9544,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":9692,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":9693,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":9694,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":9579,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":9695,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":9696,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":9697,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":9293,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":9360,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":9698,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":9699,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":9700,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":9701,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":9702,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":9703,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":9704,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":9705,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":9706,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":9707,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":9708,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":9709,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":9710,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":9711,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":9712,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":9713,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":9714,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":9715,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":9716,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":9717,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":9718,"\u002Freinforcement-learning":9246,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":9719,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":9720,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":9721,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":9722,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":9723,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":9724,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":9725,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":9726,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":9727,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":9728,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":9729,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":9730,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":9731,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":9573,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":9428,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":9732,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":9733,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":9734,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":9735,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":9736,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":9737,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":9555,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":9738,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":9739,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":9740,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":9741,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":9742,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":9743,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":9744,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":9745,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":9746,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":9747,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":9748,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":9749,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":9487,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":9739,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":9750,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":9027,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":9751,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":9752,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":9753,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":9754,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":9755,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":9536,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":9756,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":9757,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":9758,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":9759,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":9760,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":9761,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":9762,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":9763,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":9764,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":9765,"\u002Fartificial-intelligence":9246,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":9503,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":9766,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":9063,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":9061,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":9597,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":9767,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":9089,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":9399,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":9768,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":9769,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":9770,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":9459,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":9771,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":9772,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":9773,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":9658,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":9774,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":9775,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":9073,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":9302,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":9776,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":9403,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":9777,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":9778,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":9298,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":9386,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":9779,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":9780,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":9781,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":9068,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":9443,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":9305,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":9782,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":9353,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":9417,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":9783,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":9784,"\u002Fnuclear-physics":9785,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":9786,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":9787,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":9424,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":9788,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":9789,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":9790,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":9272,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":9791,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":9792,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":9569,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":9793,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":9738,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":9794,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":9795,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":9796,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":9797,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":9798,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":9799,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":9800,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":9250,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":9801,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":9802,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":9744,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":9803,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":9804,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":9805,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":9806,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":9807,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":9808,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":9809,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":9810,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":9668,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":9811,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":9812,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":9813,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":9814,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":9815,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":9816,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":9817,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":9818,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":9819,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":9820,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":9821,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":9822,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":9522,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":9689,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":9278,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":9823,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":9824,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":9825,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":9826,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":9536,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":9827,"\u002Fnatural-language-processing":9246,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":9828,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":9444,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":9829,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":9589,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":9830,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":9831,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":9779,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":9832,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":9833,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":9394,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":9096,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":9834,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":9348,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":9835,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":9381,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":9836,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":9635,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":9837,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":9838,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":9604,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":9839,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":9067,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":9840,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":9841,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":9842,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":9385,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":9601,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":9843,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":9844,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":9460,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":9845,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":9505,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":9846,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":9847,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":9394,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":9427,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":9848,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":9849,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":9850,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":9483,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":9851,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":9224,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":9852,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":9327,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":9853,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":9854,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":9651,"\u002Fparticle-physics":9855,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":9445,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":9599,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":9856,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":9384,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":9857,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":9444,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":9356,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":9858,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":9859,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":9860,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":9861,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":9862,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":9650,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":9581,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":9863,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":9864,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":9865,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":9866,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":9778,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":9867,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":9340,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":9403,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":9385,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":9868,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":9469,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":9085,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":9869,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":9870,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":9600,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":9871,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":9872,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":9873,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":9874,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":9066,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":9875,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":9876,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":9327,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":9877,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":9878,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":9593,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":9248,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":9879,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":9880,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":9505,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":9491,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":9503,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":9600,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":9881,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":9065,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":9257,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":9882,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":9344,"\u002Fastrophysics-cosmology":9449,"\u002Fcolophon":2014,"\u002F":9246},4250,4808,3626,2682,4109,4786,3878,3875,3751,3415,4067,3153,3000,5461,5808,3961,3749,4327,5067,4246,4655,4154,5436,2640,4003,3601,2158,4331,4189,2273,3252,4633,4964,4172,3131,5524,3160,4031,2309,4207,3226,2648,4842,5340,3307,5701,4977,4039,2615,3472,4460,3848,4075,4400,3382,3010,3602,3737,3740,3707,3922,5191,4043,3804,4542,4214,5062,2850,4361,3443,3627,4044,3766,4140,3860,4006,5199,4334,5234,3651,5509,5680,153,1375,1073,1093,1125,1146,1014,1132,876,1541,1189,1173,984,1402,1301,950,1268,1063,1107,1408,1161,925,1012,866,964,1090,1142,1085,1020,1207,973,980,728,764,1225,1329,796,929,801,878,774,1044,1488,1175,1130,890,814,870,154,4073,5140,4961,5127,4870,5382,5195,4955,5369,4501,5576,3824,4132,4289,4307,4570,3403,5084,5105,5201,5116,5341,5175,5368,5188,5211,5499,5155,4981,5125,5415,5255,5304,5130,5167,5552,5164,5094,5239,5036,5190,5004,5099,5035,5159,5088,5026,4937,5023,5264,5244,133,5114,5078,5043,5312,5170,5342,5139,5151,5049,5212,5013,5068,5079,5102,5121,5081,5029,5379,5854,5110,2139,3798,5055,5364,4984,4935,4895,4972,5289,5112,5156,4987,5031,5025,5149,5302,5042,5002,4979,4922,4960,5279,126,1877,1180,1129,907,958,1112,1300,1053,1250,1181,1241,1234,966,1050,734,1190,484,1082,926,733,761,571,607,798,804,952,977,731,784,645,771,1017,742,1004,1000,1562,1254,1288,1101,1011,1486,1061,856,992,1169,988,137,0,2037,1782,2384,2254,2123,2332,1643,1714,2089,1751,1367,1660,2511,1998,1892,1854,1791,2438,2487,1917,2375,2525,2266,1845,2275,1810,1631,2310,2166,2233,2113,2505,2347,2672,2112,2473,2592,2380,3013,2513,3256,3218,2194,2173,2205,2326,2081,3342,3152,1799,1670,1027,960,1095,1291,986,897,1209,1055,1817,1801,1593,1465,1196,1464,1201,1230,1435,1684,1461,1926,1500,1409,1284,1774,1869,162,1487,1122,1188,1001,1351,982,1005,979,1325,1046,943,1279,824,1008,989,1798,1277,1025,987,1043,1211,1074,981,939,1002,739,1139,1108,1013,1070,978,1458,1317,157,1357,1077,2355,1116,1037,1178,1637,1314,1109,1056,1702,1474,1071,1158,832,993,1404,1024,1068,1339,1106,1264,1248,913,1848,1328,1633,1224,1143,135,1378,959,1028,998,911,1527,1203,1266,1483,1165,990,938,965,1257,1418,1099,942,1352,956,1035,1398,1003,1094,1292,138,1721,1827,1449,1354,1148,1184,1285,1281,1213,1290,1271,1252,1274,1778,1591,1503,1437,1571,1584,1957,1117,1781,1648,1342,1667,1510,1965,1607,1365,1849,1259,1303,1356,1238,2208,1564,173,1671,1286,1227,1638,1529,668,1078,918,709,865,880,940,1534,1015,874,922,841,794,1194,822,1105,1658,1359,1296,1438,1921,1844,1570,1429,1324,1400,140,1787,1558,1654,1492,1747,2224,2002,2009,1323,1349,1785,1573,1722,1829,1353,1548,1552,1583,1624,1585,1245,1364,1514,1343,1397,1355,2211,1481,1770,160,2388,2293,2256,2552,2569,2478,2039,2496,2578,2814,2519,2461,2587,2492,2714,3278,2654,3050,2447,2849,2238,2369,2061,2214,2602,2563,2186,2985,2749,3364,2038,2282,2409,2126,2573,2206,2176,2268,2182,2402,2705,2633,2414,2213,2801,3313,3410,3195,1952,2017,1509,2537,2645,2027,2415,2838,2356,1906,3184,2950,2807,2954,1683,1316,1034,1138,1763,1822,1705,1246,1701,1097,1104,1187,1032,1083,1228,916,1489,1033,1652,997,692,837,1023,888,864,1089,1231,1214,1675,1156,1075,1520,1309,139,1205,1051,735,1123,1072,915,567,768,825,1253,983,1007,762,1058,861,862,971,1208,1149,1145,1029,1084,927,810,838,857,807,936,949,2321,1622,1069,1113,1057,854,1958,1528,1618,2049,1432,1679,1796,1685,1346,1275,1476,1505,1610,2018,1599,1215,1838,1909,132,3902,2215,2240,3266,3208,3073,2454,2969,2451,1875,2728,1884,2371,2516,2842,1690,1904,2346,3146,1386,2607,1966,2668,1665,2885,1606,2577,3074,2869,2403,2433,2082,1939,1587,2460,2747,2032,2642,1619,3123,1993,2090,2339,3829,1737,2622,2340,2322,3828,4409,2305,3411,2510,4527,3030,3569,3043,2457,1946,2277,2044,2909,1693,1945,2093,2399,2115,2898,2742,2242,3895,3378,3376,2769,2223,3062,3262,2651,2949,2768,3128,2423,1977,2087,2866,3388,2830,2210,2489,2884,3945,2099,2713,3402,1692,2931,4195,3989,3206,4391,3004,3704,3494,2902,999,881,901,919,748,869,1018,1045,1049,1333,954,1092,1019,976,1771,1480,1396,953,1026,161,3533,2495,1818,3007,2595,3427,3537,2216,1895,2304,3396,1739,2073,1962,2203,1767,2666,2264,2276,2852,1807,3735,1560,4144,1669,1676,1972,2418,3291,1525,2040,2766,2337,2220,2800,3001,2078,1759,2836,1896,2026,1758,1543,1047,896,946,1060,1384,1482,815,1414,1322,1440,1240,1468,1098,1133,847,1009,1381,1052,1191,1258,1370,1712,1441,1199,957,1079,150,1262,1417,1368,1219,1136,1064,1463,1636,1059,931,1115,1736,1174,1376,1363,1411,1247,1746,1313,1299,1617,1102,1076,1495,1265,1193,1263,{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":9884,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":9889,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":9893,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":9897,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":9901,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":9905,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":9909,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":9913,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":9916,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":9920,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":9924,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":9927,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":9931,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":9934,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":9935,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":9940,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":9944,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":9948,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":9952,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":9956,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":9960,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":9964,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":9968,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":9972,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":9975,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":9979,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":9983,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":9988,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":9992,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":9996,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":10000,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":10004,"\u002Falgorithms\u002Fsequences\u002Ftries":10008,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":10012,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":10016,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":10021,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":10025,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":10029,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":10033,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":10037,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":10041,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":10045,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":10049,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":10053,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":10057,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":10061,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":10065,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":10069,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":10073,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":10078,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":10082,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":10086,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":10090,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":10094,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":10099,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":10103,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":10107,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":10111,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":10115,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":10119,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":10123,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":10127,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":10131,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":10135,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":10139,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":10144,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":10148,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":10152,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":10156,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":10161,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":10165,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":10169,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":10173,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":10177,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":10181,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":10185,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":10190,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":10194,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":10198,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":10202,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":10207,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":10211,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":10215,"\u002Falgorithms":10219,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":10222,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":10227,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":10231,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":10235,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":10239,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":10244,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":10248,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":10252,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":10256,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":10261,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":10265,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":10269,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":10273,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":10278,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":10282,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":10286,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":10291,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":10295,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":10299,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":10304,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":10308,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":10312,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":10317,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":10321,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":10325,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":10329,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":10334,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":10338,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":10342,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":10347,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":10351,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":10355,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":10359,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":10363,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":10368,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":10372,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":10376,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":10380,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":10384,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":10389,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":10392,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":10396,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":10400,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":10404,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":10409,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":10413,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":10417,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":10421,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":10425,"\u002Fcalculus":10429,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":10432,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":10436,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":10440,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":10445,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":10449,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":10453,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":10457,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":10461,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":10466,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":10470,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":10474,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":10478,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":10482,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":10487,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":10491,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":10495,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":10499,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":10503,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":10508,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":10512,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":10516,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":10521,"\u002Fmechanics\u002Frotation\u002Frolling-motion":10525,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":10529,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":10533,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":10537,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":10541,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":10546,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":10550,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":10554,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":10558,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":10562,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":10566,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":10570,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":10575,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":10579,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":10583,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":10587,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":10591,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":10595,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":10599,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":10603,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":10607,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":10611,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":10615,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":10619,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":10624,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":10628,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":10632,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":10636,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":10640,"\u002Fmechanics":10644,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":10647,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":10652,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":10656,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":10660,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":10664,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":10668,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":10673,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":10677,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":10682,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":10686,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":10690,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":10694,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":10698,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":10703,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":10707,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":10711,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":10715,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":10720,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":10724,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":10728,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":10733,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":10737,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":10741,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":10745,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":10749,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":10754,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":10758,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":10762,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":10766,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":10770,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":10774,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":10779,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":10783,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":10787,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":10791,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":10795,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":10799,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":10803,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":10807,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":10812,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":10816,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":10820,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":10824,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":10828,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":10833,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":10837,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":10841,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":10845,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":10849,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":10854,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":10858,"\u002Felectricity-and-magnetism":10862,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":10865,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":10870,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":10874,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":10878,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":10882,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":10886,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":10891,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":10895,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":10899,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":10903,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":10907,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":10912,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":10916,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":10920,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":10925,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":10929,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":10933,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":10937,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":10941,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":10945,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":10949,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":10954,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":10958,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":10962,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":10966,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":10970,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":10974,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":10978,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":10983,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":10987,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":10991,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":10995,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":10999,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":11003,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":11008,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":11012,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":11016,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":11020,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":11024,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":11029,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":11033,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":11037,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":11041,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":11045,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":11049,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":11054,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":11058,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":11062,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":11066,"\u002Flinear-algebra":11070,"\u002Ftheory-of-computation":11073,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":11076,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":11080,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":11084,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":11088,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":11092,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":11096,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":11101,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":11105,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":11109,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":11113,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":11117,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":11121,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":11125,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":11130,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":11134,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":11138,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":11142,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":11146,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":11151,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":11155,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":11159,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":11163,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":11167,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":11172,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":11176,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":11180,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":11184,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":11188,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":11193,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":11197,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":11201,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":11205,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":11209,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":11214,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":11218,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":11222,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":11226,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":11230,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":11235,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":11239,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":11243,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":11248,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":11252,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":11257,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":11261,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":11265,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":11269,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":11273,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":11278,"\u002Fcomputer-architecture":11282,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":11285,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":11289,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":11293,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":11298,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":11302,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":11306,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":11310,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":11314,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":11318,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":11323,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":11327,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":11331,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":11335,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":11339,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":11343,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":11348,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":11352,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":11356,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":11361,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":11365,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":11370,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":11374,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":11378,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":11383,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":11387,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":11392,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":11396,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":11400,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":11405,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":11409,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":11413,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":11418,"\u002Fdifferential-equations":11422,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":11425,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":11430,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":11434,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":11438,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":11442,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":11446,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":11451,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":11455,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":11459,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":11463,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":11468,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":11472,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":11476,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":11480,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":11485,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":11489,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":11493,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":11497,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":11502,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":11506,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":11510,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":11514,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":11518,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":11522,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":11527,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":11531,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":11535,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":11540,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":11544,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":11548,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":11552,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":11557,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":11561,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":11565,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":11570,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":11574,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":11578,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":11583,"\u002Frelativity":11587,"\u002Fphysical-computing":11590,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":11593,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":11598,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":11602,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":11606,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":11610,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":11615,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":11619,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":11623,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":11628,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":11632,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":11636,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":11640,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":11644,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":11648,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":11653,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":11657,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":11661,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":11665,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":11669,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":11673,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":11678,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":11682,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":11686,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":11690,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":11694,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":11698,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":11702,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":11707,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":11711,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":11715,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":11720,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":11724,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":11728,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":11733,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":11737,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":11742,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":11746,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":11750,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":11754,"\u002Fquantum-mechanics":11758,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":11761,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":11766,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":11770,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":11774,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":11778,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":11783,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":11787,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":11791,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":11795,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":11799,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":11803,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":11808,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":11812,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":11816,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":11820,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":11824,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":11828,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":11832,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":11836,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":11840,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":11844,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":11848,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":11853,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":11857,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":11861,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":11865,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":11870,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":11874,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":11878,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":11881,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":11885,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":11890,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":11894,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":11898,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":11902,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":11907,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":11911,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":11915,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":11919,"\u002Freal-analysis":11923,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":11926,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":11930,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":11934,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":11939,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":11943,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":11947,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":11951,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":11956,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":11960,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":11964,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":11968,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":11972,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":11976,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":11981,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":11985,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":11989,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":11993,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":11998,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":12002,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":12006,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":12010,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":12015,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":12019,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":12023,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":12028,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":12032,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":12036,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":12040,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":12045,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":12049,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":12053,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":12057,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":12062,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":12066,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":12070,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":12075,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":12079,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":12083,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":12087,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":12092,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":12096,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":12100,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":12104,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":12108,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":12113,"\u002Fabstract-algebra":12117,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":12120,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":12125,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":12129,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":12133,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":12137,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":12141,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":12146,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":12150,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":12154,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":12158,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":12162,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":12166,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":12170,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":12175,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":12179,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":12183,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":12187,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":12192,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":12196,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":12200,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":12205,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":12209,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":12213,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":12217,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":12221,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":12225,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":12230,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":12234,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":12238,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":12243,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":12247,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":12251,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":12255,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":12260,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":12264,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":12268,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":12273,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":12277,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":12281,"\u002Fatomic-physics":12285,"\u002Fdatabases":12288,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":12291,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":12295,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":12299,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":12303,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":12307,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":12311,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":12315,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":12320,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":12324,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":12328,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":12333,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":12337,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":12341,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":12346,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":12350,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":12354,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":12358,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":12362,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":12367,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":12371,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":12375,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":12379,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":12384,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":12388,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":12392,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":12396,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":12401,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":12405,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":12409,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":12413,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":12418,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":12422,"\u002Fcategory-theory":12426,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":12429,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":12433,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":12437,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":12441,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":12444,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":12448,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":12452,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":12456,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":12461,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":12465,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":12469,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":12473,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":12477,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":12482,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":12486,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":12490,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":12494,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":12498,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":12503,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":12507,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":12511,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":12515,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":12520,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":12524,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":12528,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":12532,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":12536,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":12540,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":12544,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":12548,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":12552,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":12557,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":12561,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":12565,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":12569,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":12573,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":12578,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":12582,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":12586,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":12590,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":12594,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":12598,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":12602,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":12607,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":12611,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":12615,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":12620,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":12624,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":12628,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":12632,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":12636,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":12640,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":12644,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":12649,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":12653,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":12657,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":12661,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":12665,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":12669,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":12673,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":12677,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":12681,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":12685,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":12689,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":12694,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":12698,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":12702,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":12706,"\u002Fdeep-learning":12710,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":12713,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":12717,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":12721,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":12725,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":12729,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":12733,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":12738,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":12742,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":12746,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":12750,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":12755,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":12759,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":12763,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":12767,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":12772,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":12776,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":12780,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":12784,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":12788,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":12793,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":12797,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":12801,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":12806,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":12810,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":12814,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":12819,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":12823,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":12827,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":12831,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":12836,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":12840,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":12844,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":12848,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":12852,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":12856,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":12861,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":12865,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":12869,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":12873,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":12878,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":12882,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":12886,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":12891,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":12895,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":12899,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":12903,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":12907,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":12912,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":12916,"\u002Fstatistical-mechanics":12920,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":12923,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":12928,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":12932,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":12936,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":12940,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":12945,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":12949,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":12953,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":12957,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":12962,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":12966,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":12970,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":12974,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":12979,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":12983,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":12987,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":12991,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":12996,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":13000,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":13004,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":13008,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":13013,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":13017,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":13021,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":13025,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":13030,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":13034,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":13038,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":13042,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":13046,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":13051,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":13055,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":13060,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":13064,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":13068,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":13072,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":13077,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":13081,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":13085,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":13089,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":13093,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":13098,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":13102,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":13106,"\u002Fcondensed-matter":13110,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":13113,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":13117,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":13122,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":13126,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":13130,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":13134,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":13138,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":13142,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":13146,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":13151,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":13155,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":13159,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":13163,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":13168,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":13172,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":13176,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":13180,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":13185,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":13189,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":13193,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":13197,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":13202,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":13206,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":13210,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":13214,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":13219,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":13223,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":13227,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":13232,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":13236,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":13241,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":13245,"\u002Flogic":13249,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":13252,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":13256,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":13260,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":13264,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":13268,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":13272,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":13276,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":13280,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":13284,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":13288,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":13292,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":13296,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":13300,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":13304,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":13308,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":13312,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":13316,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":13320,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":13324,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":13329,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":13333,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":13337,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":13341,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":13345,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":13349,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":13353,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":13357,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":13361,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":13365,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":13369,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":13373,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":13377,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":13381,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":13385,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":13389,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":13393,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":13397,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":13401,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":13405,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":13409,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":13413,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":13418,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":13422,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":13426,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":13430,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":13434,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":13438,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":13442,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":13446,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":13450,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":13454,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":13458,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":13462,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":13466,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":13470,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":13474,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":13478,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":13482,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":13486,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":13490,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":13494,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":13498,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":13502,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":13507,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":13511,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":13515,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":13519,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":13523,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":13527,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":13531,"\u002Freinforcement-learning":13535,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":13537,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":13541,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":13545,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":13549,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":13553,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":13558,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":13562,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":13566,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":13570,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":13574,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":13578,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":13582,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":13586,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":13590,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":13594,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":13598,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":13602,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":13607,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":13611,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":13615,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":13619,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":13623,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":13627,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":13631,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":13635,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":13639,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":13643,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":13647,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":13651,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":13656,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":13660,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":13664,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":13668,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":13672,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":13676,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":13680,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":13683,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":13687,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":13691,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":13696,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":13700,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":13704,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":13708,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":13711,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":13715,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":13719,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":13723,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":13728,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":13732,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":13736,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":13740,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":13744,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":13748,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":13752,"\u002Fartificial-intelligence":13756,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":13759,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":13764,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":13768,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":13772,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":13776,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":13780,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":13785,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":13789,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":13793,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":13797,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":13802,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":13806,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":13810,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":13814,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":13819,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":13823,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":13828,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":13832,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":13837,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":13841,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":13845,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":13849,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":13854,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":13858,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":13862,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":13867,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":13871,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":13875,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":13880,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":13884,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":13889,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":13893,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":13897,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":13902,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":13906,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":13910,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":13914,"\u002Fnuclear-physics":13918,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":13921,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":13925,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":13929,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":13933,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":13937,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":13941,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":13946,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":13950,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":13954,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":13958,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":13963,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":13967,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":13971,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":13975,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":13979,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":13983,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":13987,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":13990,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":13993,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":13997,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":14001,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":14005,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":14010,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":14014,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":14018,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":14022,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":14026,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":14030,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":14034,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":14038,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":14042,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":14046,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":14050,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":14054,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":14058,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":14062,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":14066,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":14070,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":14074,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":14078,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":14082,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":14086,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":14090,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":14094,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":14098,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":14102,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":14106,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":14110,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":14114,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":14118,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":14123,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":14127,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":14131,"\u002Fnatural-language-processing":14135,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":14138,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":14142,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":14146,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":14150,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":14155,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":14159,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":14163,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":14167,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":14172,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":14176,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":14180,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":14184,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":14189,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":14193,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":14197,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":14201,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":14206,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":14210,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":14214,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":14219,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":14223,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":14227,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":14231,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":14236,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":14240,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":14244,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":14248,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":14253,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":14257,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":14261,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":14265,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":14270,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":14274,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":14278,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":14282,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":14286,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":14291,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":14295,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":14299,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":14304,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":14308,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":14312,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":14316,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":14320,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":14324,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":14328,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":14332,"\u002Fparticle-physics":14336,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":14339,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":14344,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":14348,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":14352,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":14357,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":14361,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":14365,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":14369,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":14374,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":14378,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":14382,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":14386,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":14391,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":14395,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":14399,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":14403,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":14408,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":14412,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":14416,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":14420,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":14425,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":14429,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":14433,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":14438,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":14442,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":14446,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":14450,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":14454,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":14458,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":14462,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":14466,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":14470,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":14475,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":14479,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":14483,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":14487,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":14492,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":14496,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":14500,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":14504,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":14508,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":14513,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":14517,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":14520,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":14524,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":14528,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":14533,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":14537,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":14541,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":14545,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":14549,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":14553,"\u002Fastrophysics-cosmology":14557,"\u002Fcolophon":14560,"\u002F":14563},{"path":9885,"title":9886,"module":9887,"summary":9888},"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm","What Is an Algorithm?","Foundations","An algorithm is a finite, mechanical recipe that transforms inputs into outputs. We define what counts as an algorithm, how we write one down, and the three things we always ask of it: is it correct, is it fast, and can we prove it.\n",{"path":9890,"title":9891,"module":9887,"summary":9892},"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques","Proof Techniques","An algorithm without a proof is a conjecture. This lesson collects the handful\nof arguments that certify the algorithms in this course — direct proof,\ncontrapositive, contradiction, ordinary and strong induction, construction, and\ndisproof by counterexample — each with a small worked\nexample and a picture. Loop invariants are a form of induction,\nrecursive correctness falls to strong induction, and the classic broken proofs\n(all horses are the same color) show where inductions go wrong.\n",{"path":9894,"title":9895,"module":9887,"summary":9896},"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis","Asymptotic Analysis","We measure an algorithm's running time as a function of its input size, then strip away machine-specific constants and lower-order terms to compare algorithms cleanly. This lesson defines the RAM model and the $O$, $\\Omega$, $\\Theta$, $o$, and $\\omega$ notations, proves the polynomial theorem, and shows how to rank growth rates with the limit test, L'Hôpital, base substitution, and the logarithm identities the arguments lean on.\n",{"path":9898,"title":9899,"module":9887,"summary":9900},"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis","Growth Rates and Loop Analysis","With the asymptotic notations in hand, we rank the functions that actually arise in running times — from constant to factorial — proving the orderings between rungs, then read the running time of a loop nest straight off the page. Sequential blocks add, nested loops multiply, index scaling gives logarithms; a worked trace and a tour of cache-aware and galactic algorithms close the lesson.\n",{"path":9902,"title":9903,"module":9887,"summary":9904},"\u002Falgorithms\u002Ffoundations\u002Frecurrences","Recurrences and the Master Theorem","Recursive and divide-and-conquer algorithms describe their own running time with a recurrence: $T(n)$ in terms of $T$ on smaller inputs. We solve recurrences three ways — drawing the recursion tree, guessing-and-verifying by induction, and applying the Master Theorem — using merge sort as the running example, then handle unequal splits with Akra–Bazzi.\n",{"path":9906,"title":9907,"module":9887,"summary":9908},"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis","Amortized Analysis","Some operations are occasionally expensive but cheap on average across any\nsequence. Amortized analysis bounds the average cost per operation over a\nworst-case sequence — not an expectation — so a rare costly step is paid for by\nthe many cheap ones around it. This lesson develops the aggregate, accounting,\nand potential methods on dynamic-array doubling, the binary counter, and a\nstack with multipop.\n",{"path":22,"title":9910,"module":9911,"summary":9912},"Divide and Conquer & Mergesort","Divide & Conquer","Divide and conquer breaks a problem into smaller copies of itself, solves\nthem recursively, and stitches the answers together. We meet the paradigm\nthrough mergesort — its merge step, its loop-invariant proof, and the\nrecursion tree that pins its cost at $\\Theta(n\\log n)$ — then count inversions\nwith the same machinery and distill the whole pattern into the master theorem.\n",{"path":148,"title":9914,"module":9911,"summary":9915},"Quicksort","Quicksort sorts in place by partitioning around a pivot and recursing on\neach side. We give Lomuto and Hoare partitioning with a correctness\ninvariant, see why a bad pivot costs $\\Theta(n^2)$ while a balanced one gives\n$\\Theta(n\\log n)$, and prove that randomizing the pivot makes the expected\ncost $\\Theta(n\\log n)$ on every input.\n",{"path":9917,"title":9918,"module":9911,"summary":9919},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection","Linear-Time Selection","Finding the $k$-th smallest element looks like it should require sorting, but\nit does not. Quickselect adapts quicksort's partition to recurse on just one\nside, achieving expected $O(n)$. The median-of-medians algorithm guarantees a\ngood pivot with the groups-of-five trick, pushing the worst case down to a\nprovable $O(n)$.\n",{"path":9921,"title":9922,"module":9911,"summary":9923},"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication","Fast Multiplication","Grade-school multiplication is $\\Theta(n^2)$, yet divide and conquer beats it.\nKaratsuba multiplies $n$-bit integers with three half-size products instead of\nfour, giving $\\Theta(n^{\\log_2 3})$, and Strassen multiplies matrices with\nseven block products instead of eight, giving $\\Theta(n^{\\log_2 7})$. Both\nspend cheap additions to save an expensive multiplication, and the master\ntheorem quantifies the savings.\n",{"path":17,"title":9925,"module":8937,"summary":9926},"Heaps and Heapsort","A binary heap is a tree we store flat in an array, with index arithmetic\nstanding in for pointers. We build the max-heap property bottom-up in $O(n)$\ntime, sort in place in $\\Theta(n\\log n)$ by repeatedly extracting the maximum,\nand reuse the same structure to implement a priority queue.\n",{"path":9928,"title":9929,"module":8937,"summary":9930},"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds","Lower Bounds for Comparison Sorting","Every sort we have seen runs in $\\Omega(n\\log n)$, and that is no accident.\nModeling a sort as a decision tree of comparisons, we show any such tree must\nhave $n!$ leaves, forcing height $\\ge \\log_2(n!) = \\Omega(n\\log n)$ — a bound\nno comparison sort beats in the worst case, on average, or with randomness.\n",{"path":27,"title":9932,"module":8937,"summary":9933},"Sorting in Linear Time","The $\\Omega(n\\log n)$ barrier only binds algorithms that compare. By instead\nusing keys as array indices we slip past it: counting sort runs in\n$\\Theta(n+k)$ and is stable, radix sort layers it digit by digit, and bucket\nsort averages $\\Theta(n)$ on uniform data. We see exactly when each applies.\n",{"path":8938,"title":5,"module":8937,"summary":8968},{"path":9936,"title":9937,"module":9938,"summary":9939},"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures","Elementary Data Structures","Data Structures","Every container is built one of two ways: **contiguous** in an array, or\n**linked** through pointers. We trade cache-friendly random access against\n$O(1)$ splicing, derive the **amortized $O(1)$** append of a doubling dynamic\narray, and assemble the two ordered access disciplines — the LIFO **stack** and\nthe FIFO **queue** (with its generalization, the **deque**) — on top of both.\n",{"path":9941,"title":9942,"module":9938,"summary":9943},"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables","Hash Tables","A hash table implements the dictionary — insert, search, delete — in expected\n$O(1)$ time by scattering keys across an array with a hash function. We build\nup from direct addressing, handle collisions by chaining and by open\naddressing, analyze the load factor $\\alpha$, and see how universal hashing\nachieves its expected-time guarantee against every input.\n",{"path":9945,"title":9946,"module":9938,"summary":9947},"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees","Binary Search Trees","A binary search tree keeps keys ordered so that every operation follows a\nsingle root-to-leaf path. We state the BST property, trace search, insert,\nsuccessor, and all three delete cases on concrete trees, prove the inorder\nwalk sorts, and note the drawback — every operation costs $O(h)$, and a\ncarelessly built tree degrades to height $h = \\Theta(n)$, motivating balance.\n",{"path":9949,"title":9950,"module":9938,"summary":9951},"\u002Falgorithms\u002Fdata-structures\u002Favl-trees","AVL Trees","An AVL tree is the first balanced BST: at every node the two subtrees' heights\ndiffer by at most $1$. A Fibonacci-style minimal-node argument forces height\n$h \\le 1.44\\log_2 n = O(\\log n)$, so search, insert, and delete are all\n$O(\\log n)$. Insertion rebalances with at most one of four rotation cases\n(LL, RR, LR, RL); deletion may rotate all the way to the root.\n",{"path":9953,"title":9954,"module":9938,"summary":9955},"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees","Balanced Search Trees","An ordinary BST can degrade to height $\\Theta(n)$; balanced search trees\nguarantee $h = O(\\log n)$ by maintaining invariants and repairing them after\nevery update. We meet rotations, the local restructuring primitive, then\nred-black trees, whose color invariants force logarithmic height, and finally\nB-trees, which trade tall-and-thin for short-and-wide to win on disk.\n",{"path":9957,"title":9958,"module":9938,"summary":9959},"\u002Falgorithms\u002Fdata-structures\u002Funion-find","Disjoint Sets (Union-Find)","The disjoint-set data structure tracks a partition of elements into groups,\nanswering \"are these two in the same group?\" and merging groups on demand. A\nforest of parent pointers, sped up by union by rank and path compression,\ndrives every operation to near-constant $O(\\alpha(n))$ amortized time — the\nstructure behind connectivity queries and Kruskal's minimum spanning tree.\n",{"path":9961,"title":9962,"module":9938,"summary":9963},"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees","Fenwick & Segment Trees","A prefix-sum array answers a range sum in $O(1)$ but pays $O(n)$ per update;\na plain array updates in $O(1)$ but pays $O(n)$ per range sum. Fenwick and\nsegment trees give us _both_ in $O(\\log n)$. The Fenwick (binary indexed) tree\nis a tiny array keyed by the low bit; the segment tree is a general balanced\ntree over canonical ranges that handles any associative aggregate and, with\nlazy propagation, range updates too.\n",{"path":9965,"title":9966,"module":9938,"summary":9967},"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures","Spatial Data Structures","A balanced BST orders keys on a line, but points in the plane have no single\nnatural order. Quadtrees subdivide space recursively into quadrants; k-d trees\nsplit on alternating coordinates at the median. Both make range and\nnearest-neighbour queries fast by carving the plane into boxes a query can\nprune away. Range trees nest a y-tree in an x-tree for fast orthogonal range\nreporting; interval trees index intervals to answer stabbing queries.\n",{"path":9969,"title":9970,"module":9938,"summary":9971},"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures","Skip Lists & Probabilistic Structures","Balanced trees achieve $O(\\log n)$ with rotations and invariants; randomization\ngives the same bound far more simply. A skip list is a layered linked list whose\nexpress lanes are chosen by coin flips, giving expected $O(\\log n)$ search and\ninsert with no rebalancing. A Bloom filter trades exactness for space: a bit\narray and a few hashes answer set membership with no false negatives and a\ntunable false-positive rate, but cannot delete.\n",{"path":7198,"title":9973,"module":9938,"summary":9974},"B-Trees","When data lives on disk, the cost that dominates is block transfers, not\ncomparisons — and a binary tree of a billion keys is thirty reads deep. A\nB-tree of minimum degree $t$ is short and wide: $t-1$ to $2t-1$ keys per node,\nall leaves at one depth, height $O(\\log_t n)$. Insertion splits a full node on\nthe way down and pushes its median up; deletion borrows or merges to keep nodes\nfull enough. High fan-out is what minimizes disk I\u002FO.\n",{"path":9976,"title":9977,"module":9938,"summary":9978},"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms","Data-Stream Algorithms","Most of this course assumes data sits in fast memory, addressable at will.\nExternal sorting relaxed that to a re-readable disk. The streaming model goes\nfurther: items arrive one at a time, are seen once, and must be discarded, with\nonly sublinear, often polylogarithmic, memory. In exchange, the answers are\napproximate and probabilistic. We set up the model, then meet reservoir\nsampling for a uniform sample of an unknown-length stream and Morris counting\nfor an approximate tally in doubly-logarithmic space.\n",{"path":9980,"title":9981,"module":9938,"summary":9982},"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches","Streaming Sketches","Sampling and counting kept a random subset or a single approximate tally.\nSketches go further: fixed, tiny summaries that answer questions about a\nstream's frequencies. We meet the Count–Min sketch for point frequency\nestimation, Misra–Gries for heavy hitters, and HyperLogLog for distinct\ncounts, each trading a controlled error for space that never grows with the\nstream.\n",{"path":9984,"title":9985,"module":9986,"summary":9987},"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows","Two Pointers & Sliding Windows","Sequences & Strings","A family of array idioms that collapse an obvious $O(n^2)$ scan into a single\n$O(n)$ pass by maintaining an invariant as indices move. We meet two pointers\n(converging on a sorted array, and a fast\u002Fslow pair for in-place rewriting)\nand the sliding window (fixed and variable size, amortized $O(n)$). The\ncompanion lesson on prefix sums picks up where the window's positivity\nassumption fails.\n",{"path":9989,"title":9990,"module":9986,"summary":9991},"\u002Falgorithms\u002Fsequences\u002Fprefix-sums","Prefix Sums & Difference Arrays","Prefix sums precompute the running total once so that any range-sum query is a\nsingle subtraction, $P[r{+}1]-P[l]$, in $O(1)$. A hash map of prefix\nfrequencies then counts subarrays summing to $k$ in $O(n)$ — even with negative\nentries, where the sliding window fails. The difference-array dual turns $m$\nrange-adds into $O(m+n)$, and the whole idea lifts to 2-D rectangle sums by\ninclusion–exclusion.\n",{"path":9993,"title":9994,"module":9986,"summary":9995},"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks","Monotonic Stacks & Queues","A **monotonic stack** keeps its contents sorted by popping every element that\nwould break the order before each push — turning a family of \"previous\u002Fnext\ngreater (or smaller) element\" questions into a single $O(n)$ scan. We trace\nthe next-greater-element routine push by push and prove its amortized bound,\nfuse two such scans to measure the **largest rectangle in a histogram** in\nlinear time, extend the idea to a **monotonic deque** that streams the\n**sliding-window maximum** in $O(n)$, and use asymmetric tie-breaking to\ncount **subarray minimums** without double-counting duplicates.\n",{"path":9997,"title":9998,"module":9986,"summary":9999},"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer","Binary Search on the Answer","Binary search locates the boundary of a **monotone predicate** $p(x)$ in\n$O(\\log(\\text{range}))$ probes; sorted arrays are only one instance. We first\nestablish the half-open `while (lo \u003C hi)` template for $\\textsc{lower\\_bound}$\nand $\\textsc{upper\\_bound}$, then generalize to \"binary search on the answer\":\nwhenever feasibility is monotone in a numeric parameter, we binary search the\nparameter itself, calling a feasibility check at each step.\n",{"path":10001,"title":10002,"module":9986,"summary":10003},"\u002Falgorithms\u002Fsequences\u002Fstring-matching","String Matching: Naive & Rabin–Karp","Given a text $T$ of length $n$ and a pattern $P$ of length $m$, find every\noccurrence of $P$ in $T$. The naive scan costs $O(nm)$ and re-reads text it has\nalready seen. Rabin–Karp fixes the first inefficiency with a **rolling hash**:\neach length-$m$ window is summarized by one number, updated in $O(1)$ per slide,\nverified on a hash match to kill collisions, for expected $O(n+m)$. A companion\nlesson removes the re-reading entirely with KMP and the Z-function.\n",{"path":10005,"title":10006,"module":9986,"summary":10007},"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function","String Matching: KMP & the Z-Function","Two linear-time matchers that beat Rabin–Karp's expected bound with a\nworst-case guarantee and no randomness. KMP precomputes a **failure function**\n$\\pi$ so a mismatch slides the pattern by $q-\\pi[q-1]$ and the text pointer\nnever backs up, for $O(n+m)$. The **Z-function** computes the longest\nprefix-match at every position via the Z-box, giving the same bound from a\ndifferent angle; the two encodings of a string's self-overlap convert freely.\n",{"path":10009,"title":10010,"module":9986,"summary":10011},"\u002Falgorithms\u002Fsequences\u002Ftries","Tries & Prefix Trees","A **trie** stores a set of strings in a tree keyed by _characters_, so that\ninsert, search, delete, and prefix-test all run in $O(L)$ time — the length\nof the key, _independent of how many keys are stored_. Shared prefixes are\nstored once, which makes tries the natural structure for autocomplete,\nwildcard dictionaries, board word-search, and — over the alphabet $\\{0,1\\}$\n— the maximum-XOR-pair problem. Radix (Patricia) trees compress the chains.\n",{"path":10013,"title":10014,"module":9986,"summary":10015},"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick","Suffix Arrays, LCP & Aho–Corasick","A **suffix array** sorts all $n$ suffixes of a string, indexing every substring\nat once; built in $O(n\\log n)$, it locates a pattern by binary search in\n$O(m\\log n)$. Its companion **LCP array** (Kasai's $O(n)$ algorithm) counts\ndistinct substrings and finds the longest repeated substring. **Aho–Corasick**\ngeneralises KMP to a whole dictionary: a trie of patterns plus failure links\nscans the text once in $O(\\text{text} + \\text{matches})$ to report every\noccurrence of every pattern. Manacher's algorithm finds all palindromic\nsubstrings in $O(n)$.\n",{"path":10017,"title":10018,"module":10019,"summary":10020},"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal","Graph Representations and Traversal","Graphs","A graph captures _relationships_ — who connects to whom. We fix the\nvocabulary, weigh the two standard representations (adjacency list versus\nmatrix), then meet the single search skeleton behind everything that follows:\nWhatever-First-Search, and its breadth-first reading, which finds shortest\npaths by number of edges in $O(V + E)$.\n",{"path":10022,"title":10023,"module":10019,"summary":10024},"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search","Depth-First Search","Swap BFS's queue for a stack and the search plunges instead of fanning out.\nDepth-first search stamps every vertex with discovery and finish times that\nnest like parentheses, classifies each edge as tree, back, forward, or cross,\nand — through the back edge — decides in one pass whether a graph has a cycle.\nThese timestamps underpin topological sort, strong\nconnectivity, and the rest of this module.\n",{"path":10026,"title":10027,"module":10019,"summary":10028},"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc","Topological Sort and Strong Connectivity","Directed acyclic graphs model dependencies: tasks that must precede other\ntasks. A _topological order_ lays such a graph out in a line so every edge\npoints forward, and depth-first finish times yield one almost for free.\nWe then ask the harder question for graphs _with_ cycles: which vertices can\nreach each other? The answer is the strongly connected components, found by a\ntwo-pass DFS.\n",{"path":10030,"title":10031,"module":10019,"summary":10032},"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees","Minimum Spanning Trees","Given a weighted network, how do we connect everything as cheaply as possible?\nThe answer is a minimum spanning tree, and one lemma — the cut property —\njustifies _every_ correct MST algorithm. We prove the cut and cycle\nproperties by exchange arguments, use them to settle uniqueness, and meet the\noldest MST algorithm, Borůvka's, whose parallel component-merging rounds fall\nstraight out of the cut rule.\n",{"path":10034,"title":10035,"module":10019,"summary":10036},"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim","Kruskal and Prim","The two minimum-spanning-tree algorithms you will actually implement.\nKruskal grows a forest edge by edge, cheapest first, using a union-find\nstructure to reject cycle-closing edges; Prim grows one tree outward from a\nroot with a priority queue, exactly Dijkstra rekeyed by attachment cost. Both\ntraced in full on a nine-town graph, with the edge cases, the bottleneck\nproperty, and where each one wins.\n",{"path":10038,"title":10039,"module":10019,"summary":10040},"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths","Shortest Paths","Finding the cheapest route through a weighted network is one of the most-used\nalgorithms in computing, and a single operation — _relaxation_ — underlies\nevery method. We build the primitive, prove the triangle inequality and\noptimal substructure that make it work, then meet Dijkstra's algorithm: the\ngreedy solution for non-negative weights, traced vertex by vertex, with the\ncut argument that proves each extraction is final.\n",{"path":10042,"title":10043,"module":10019,"summary":10044},"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights","All-Pairs and Negative Weights","Dijkstra's greedy schedule breaks the moment an edge goes negative. We give it\nup for dynamic programming: Bellman-Ford derived as a DP over edge budgets,\nwith its negative-cycle detector, and Floyd-Warshall computing the distance\nbetween _every_ pair of vertices via a DP over which vertices a path may pass\nthrough. We close with Johnson's algorithm and the arbitrage problems that\nnegative cycles encode.\n",{"path":10046,"title":10047,"module":10019,"summary":10048},"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow","Network Flow","How much can flow through a network from source to sink? We build flow\nnetworks with capacity and conservation constraints, increase a flow by\npushing along augmenting paths in the residual graph, and see how reverse\nedges let the algorithm undo earlier routing. Ford-Fulkerson and its BFS refinement\nEdmonds-Karp find a maximum flow, traced end to end on a worked network.\n",{"path":10050,"title":10051,"module":10019,"summary":10052},"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut","Max-Flow Min-Cut and Applications","Why is the flow found when no augmenting path remains actually optimal? The\nanswer is a duality theorem: the maximum flow equals the minimum cut. We prove\nit, read the minimum cut off the final residual graph, then derive bipartite\nmatching and a catalog of modeling reductions from the flow\nabstraction — before touching the modern algorithms that supersede\nEdmonds-Karp.\n",{"path":10054,"title":10055,"module":10019,"summary":10056},"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points","Bridges & Articulation Points","A **bridge** is an edge whose removal disconnects the graph; an **articulation\npoint** is a vertex whose removal does. Both are single points of failure in a\nnetwork. A single depth-first search computes discovery times and **low-links**,\nand two local criteria — $low[v] > disc[u]$ for bridges, $low[v] \\ge disc[u]$\nfor cut vertices — find them all in $O(V+E)$.\n",{"path":10058,"title":10059,"module":10019,"summary":10060},"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor","Lowest Common Ancestor & Binary Lifting","Given a rooted tree, the lowest common ancestor of $u$ and $v$ is the deepest\nnode that is an ancestor of both. A naive walk answers one query in $O(h)$;\n**binary lifting** precomputes the $2^k$-th ancestor of every node in\n$O(n\\log n)$, then answers $k$-th-ancestor and LCA queries in $O(\\log n)$ each.\nWe derive both jumps, apply them to tree distance, and compare against the\nEuler-tour + RMQ and Tarjan offline alternatives.\n",{"path":10062,"title":10063,"module":10019,"summary":10064},"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat","2-SAT via Implication Graphs","A boolean formula whose every clause has exactly two literals can be solved in\n_linear_ time — even though its three-literal cousin is NP-complete. The idea\nis to read each clause as a pair of implications, build a directed graph on the\n$2n$ literals, and ask a question we already know how to answer: which literals\nshare a strongly connected component? The formula is satisfiable iff no variable\nlands in the same SCC as its own negation, and the SCCs' topological order\nyields a satisfying assignment for free.\n",{"path":10066,"title":10067,"module":10019,"summary":10068},"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours","Eulerian Tours","An **Eulerian tour** uses every _edge_ of a graph exactly once. We give the\nexact parity and balance conditions under which one exists (even degree\nfor undirected graphs, in-degree equal to out-degree for directed) and Hierholzer's\n$O(E)$ algorithm that constructs one by splicing closed sub-tours. We contrast\nthis sharply with the **Hamiltonian** problem (visit every _vertex_ once),\nwhich is NP-complete: visiting edges is easy, visiting vertices is hard.\n",{"path":10070,"title":10071,"module":10019,"summary":10072},"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching","Bipartite Matching","Pairing applicants to jobs, students to slots, files to disks: all are\n**maximum bipartite matching**. We solve it combinatorially with **augmenting\npaths** (Kuhn's algorithm, $O(VE)$), speed it up to $O(E\\sqrt V)$ with\n**Hopcroft–Karp**, and uncover the structure behind it — **König's theorem**\n(max matching equals min vertex cover) and **Hall's marriage theorem** (a\nperfect matching exists iff every set has enough neighbors).\n",{"path":10074,"title":10075,"module":10076,"summary":10077},"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method","The Greedy Method","Greedy Algorithms","A greedy algorithm builds a solution one locally-best choice at a time and\nnever looks back. We isolate the two properties that make this work — the\ngreedy-choice property and optimal substructure — prove the canonical\nactivity-selection algorithm correct with an exchange argument, watch greedy\nfail on the 0\u002F1 knapsack, and glimpse matroids as the theory\nthat says exactly when the greedy method is optimal.\n",{"path":10079,"title":10080,"module":10076,"summary":10081},"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals","Scheduling & Interval Partitioning","Three classic scheduling problems all yield to greedy algorithms — and all\nthree turn on a single design decision: which key to sort by. Interval\nscheduling sorts by **finish** time to pack the most compatible jobs;\ninterval partitioning sorts by **start** time and proves the rooms needed\nequal the maximum overlap **depth**; minimizing maximum lateness sorts by\n**deadline** and is justified by an adjacent-swap exchange argument.\n",{"path":10083,"title":10084,"module":10076,"summary":10085},"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes","Huffman Codes","Huffman coding builds a\nprovably optimal prefix-free binary code by repeatedly merging the two least\nfrequent symbols. We develop prefix-free codes as binary trees, give the\nalgorithm with a priority queue, build a Huffman tree from example\nfrequencies, prove optimality with the same greedy-choice-plus-substructure\nargument, and pin the running time at $O(n\\log n)$.\n",{"path":10087,"title":10088,"module":10076,"summary":10089},"\u002Falgorithms\u002Fgreedy\u002Fmatroids","Matroids & Exchange Arguments","The capstone of the greedy module: _why_ and _when_ a greedy algorithm is\nprovably optimal. We recap the two correctness templates — **greedy-stays-ahead**\nand the **exchange argument** — then meet the **matroid** $M=(S,\\mathcal{I})$, an\nabstraction whose **exchange property** is the structure greedy needs.\nThe matroid–greedy theorem says sorting by weight and taking what stays\nindependent yields a maximum-weight basis _if and only if_ the structure is a\nmatroid. Kruskal's MST is the canonical instance; 0\u002F1 knapsack and TSP are the\ncanonical failures.\n",{"path":10091,"title":10092,"module":10076,"summary":10093},"\u002Falgorithms\u002Fgreedy\u002Fstable-matching","Stable Matching (Gale–Shapley)","Two sides each rank the other; we want a matching with no **blocking pair** — no\ntwo participants who both prefer each other to their assigned partners. The\n**Gale–Shapley deferred-acceptance** algorithm has proposers propose in\npreference order while receivers tentatively hold the best offer so far. We prove\nit terminates in $\\O(n^2)$ proposals, returns a **perfect** matching, and that\nthe matching is **stable**. A sharper asymmetry follows: deferred acceptance is\n**proposer-optimal** and **receiver-pessimal**, the structural fact behind the\nresidency match and school-choice systems.\n",{"path":10095,"title":10096,"module":10097,"summary":10098},"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples","Principles of Dynamic Programming","Dynamic Programming","Dynamic programming is recursion with memory: when a recursive solution\nre-solves the same subproblems again and again, we solve each one once and\nstore the answer. We identify the two structural conditions that make this\nwork — overlapping subproblems and optimal substructure — contrast top-down\nmemoization with bottom-up tabulation, and distil the whole method into a\nfive-step recipe.\n",{"path":10100,"title":10101,"module":10097,"summary":10102},"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp","Sequence Alignment & LCS","Two strings can be compared by how much of one appears inside the\nother. The longest common subsequence (LCS) and edit distance are the two\nclassic measures, and they are the _same_ dynamic program with different\ncosts. We derive the LCS recurrence by examining the last characters, fill a\nworked DP table, reconstruct the subsequence, and then show edit distance as\nthe identical $\\Theta(mn)$ pattern.\n",{"path":10104,"title":10105,"module":10097,"summary":10106},"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence","Longest Increasing Subsequence","Given a sequence of numbers, how long is its longest strictly increasing\nsubsequence? A first dynamic program indexes subproblems by the element each\nsubsequence _ends at_, giving an $O(n^2)$ solution with parent-pointer\nreconstruction. A sharper idea, the patience-sorting _tails_ array searched by\nbinary search, drops the time to $O(n\\log n)$. We then fold in the\nvariants: non-decreasing, counting, Russian-doll envelopes, and bitonic.\n",{"path":10108,"title":10109,"module":10097,"summary":10110},"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack","Knapsack & Subset Problems","We start from $\\textsc{Subset-sum}$ — does some sublist hit a target $t$? — and its\ninclude\u002Fexclude recurrence over a boolean table $A(i, u)$, then bolt on values\nto get 0\u002F1 knapsack as the same machine with $\\lor$ promoted to $\\max$. We fill\nboth tables, recover the chosen items, and confront the surprise that the\n$\\Theta(nt)$ running time is only _pseudo-polynomial_ — exponential in the bit\nlength $b$, and unimprovable unless $\\mathrm{P}=\\mathrm{NP}$ since subset-sum is\n$\\textsc{NP-complete}$. The fractional variant reveals the sharp line between greedy\nand dynamic programming.\n",{"path":10112,"title":10113,"module":10097,"summary":10114},"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded","Coin Change & Unbounded Knapsack","The previous lesson let each item be taken at most once. Drop that cap — items\nmay be reused _any number of times_ — and the 0\u002F1 knapsack collapses from a\ntwo-dimensional table to a one-dimensional one, because there is no longer a\nprefix of \"already-used\" items to track. We meet **unbounded knapsack**, then\nits most famous instance, **coin change**: the minimum-coins recurrence\n$C[a] = 1 + \\min_c C[a-c]$, and the counting variant where the _order of the\nloops_ decides whether you count unordered combinations or ordered sequences —\nthe classic bug. Greed fails in general but works for canonical coin systems.\n",{"path":10116,"title":10117,"module":10097,"summary":10118},"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp","Interval DP","Many problems ask for the best way to combine a contiguous range of items, and\nthe answer is a dynamic program over subintervals $[i,j]$ that chooses a split\npoint $k$. We derive the pattern from matrix-chain multiplication —\nparenthesising a product to minimize scalar multiplications in $O(n^3)$ — distil\nit into a reusable template filled by increasing interval length, and then meet\nits sharpest variant: the \"last operation\" trick behind Burst Balloons and\ncutting a stick, where fixing the _last_ move (not the first) makes the two\nsides independent.\n",{"path":10120,"title":10121,"module":10097,"summary":10122},"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp","Dynamic Programming on Trees","When the subproblems of a dynamic program are _rooted subtrees_, a single\npost-order DFS solves the whole thing in $O(n)$: each node combines the\nalready-computed answers of its children. We meet the archetype — maximum-weight\nindependent set on a tree — then the \"path through a node\" pattern behind tree\ndiameter and maximum path sum, and finally **rerooting**, which computes a\nper-node answer for _every_ node as root in $O(n)$ with two passes.\n",{"path":10124,"title":10125,"module":10097,"summary":10126},"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp","Bitmask DP","When a subproblem depends not on an index or a prefix but on _which subset_ of\na small ground set has been used, we can encode that subset as the bits of an\ninteger and index a DP table by it. With $n \\le \\sim 20$ the $2^n$ subsets fit\nin a table, turning $\\Theta(n!)$ brute force into $O(2^n \\cdot \\text{poly}(n))$.\nWe meet the bit tricks, the Held–Karp TSP archetype, assignment by mask,\nsubset-sum partitioning, and submask enumeration with its $3^n$ bound.\n",{"path":10128,"title":10129,"module":10097,"summary":10130},"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations","DP Optimizations","A correct DP recurrence is only half the battle; its naive evaluation is often\na factor of $n$ slower than necessary. This capstone surveys five techniques,\nmonotonic-queue, the convex hull trick, divide-and-conquer optimization,\nKnuth's optimization, and SOS DP, that each exploit _structure in the\ntransition_ (a sliding window, linear costs, monotone optimal splits, the\nquadrangle inequality, or subset lattices) to shave an $O(n)$, $O(\\log n)$, or\nworse factor off the running time.\n",{"path":10132,"title":10133,"module":10097,"summary":10134},"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs","Dynamic Programming on Graphs","Many graph algorithms are dynamic programs: the subproblem is the\n_best value reachable under a restricted resource_ — intermediate vertices\nallowed, edges allowed, or a topological prefix — and edge _relaxation_ is the\nDP transition. We frame Floyd–Warshall as the archetype ($O(V^3)$ all-pairs\nshortest paths), Bellman–Ford as a DP over path length (the at-most-$K$-stops\nvariant), DAG-DP in topological order ($O(V+E)$), and Warshall's transitive\nclosure as the boolean analog.\n",{"path":10136,"title":10137,"module":10097,"summary":10138},"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp","Digit & Probability DP","Two DP patterns with unusual state. _Digit DP_ counts the\nintegers in a range $[L, R]$ that satisfy a digit constraint by walking the\ndecimal places of the bound, carrying a _tight_ flag that marks when the prefix\nstill equals the bound's. _Probability\u002FExpectation DP_ replaces \"best value\" with\n\"expected value,\" using linearity of expectation to make each state an\naverage over its weighted transitions — the natural tool for expected step\ncounts and absorbing Markov chains.\n",{"path":10140,"title":10141,"module":10142,"summary":10143},"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals","Backtracking: Subsets, Permutations & Combinations","Backtracking & Search","Backtracking builds a solution one choice at a time and abandons a partial\nsolution the moment it cannot be completed, exploring a state-space tree by\ndepth-first search. We meet the universal choose\u002Fexplore\u002Fun-choose template,\nderive the canonical enumerations — subsets ($2^n$), permutations ($n!$), and\ncombinations ($\\binom{n}{k}$) — handle duplicate elements by skipping equal\nsiblings, and see how pruning turns an exponential search into a tractable one.\n",{"path":10145,"title":10146,"module":10142,"summary":10147},"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search","Constraint Search: N-Queens & Sudoku","Many hard puzzles are **constraint satisfaction problems**: assign each\nvariable a value from its domain so that every constraint holds. Backtracking\nsolves them by assigning variables one at a time and rejecting a partial\nassignment the instant a constraint breaks. We make the rejection cheap — $O(1)$\nconflict checks for N-Queens via column and diagonal sets — and prune harder\nwith **forward checking**, **MRV** ordering, and **constraint propagation**,\nwhich is what lets an exponential search actually finish.\n",{"path":10149,"title":10150,"module":10142,"summary":10151},"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound","Branch & Bound and Meet in the Middle","Plain backtracking prunes a search tree by _feasibility_; for _optimization_\nproblems we can prune far more aggressively by _value_. **Branch and bound**\nkeeps the best complete solution found so far and discards any partial solution\nwhose optimistic bound cannot beat it. **Meet in the middle** splits the\ninstance in two, enumerates each half, and recombines by binary search — turning\n$2^n$ into $O(2^{n\u002F2}\\,n)$ and pushing exact search out to $n \\approx 40$.\n",{"path":10153,"title":10154,"module":10142,"summary":10155},"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking","Graph Backtracking: m-Coloring & Hamiltonian Paths","Two famous graph problems have no known efficient algorithm, yet yield cleanly\nto backtracking with the right pruning. **Graph $m$-coloring** assigns one of\n$m$ colors to each vertex so no edge is monochromatic; we color vertices in turn\nand reject a color the instant a neighbor already has it. **Hamiltonian\npath\u002Fcycle** asks for a walk visiting every vertex exactly once; we extend a path\ngreedily and backtrack on dead ends. Both are NP-complete, so the worst case is\nexponential — but feasibility pruning and good vertex ordering make real\ninstances tractable, and the contrast with the easy Eulerian condition shows why.\n",{"path":10157,"title":10158,"module":10159,"summary":10160},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics","Number Theory: GCD & Modular Arithmetic","Mathematical Algorithms","This lesson opens the mathematical-algorithms module with the bedrock of\ncomputational number theory. We prove Euclid's recurrence\n$\\gcd(a,b)=\\gcd(b,\\,a\\bmod b)$ and its $O(\\log\\min(a,b))$ running time, extend\nit to recover Bézout coefficients $x,y$ with $ax+by=\\gcd(a,b)$, and build\nmodular arithmetic on residue classes — including when a modular inverse\n$a^{-1}\\bmod m$ exists and how to compute it.\n",{"path":10162,"title":10163,"module":10159,"summary":10164},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality","Modular Exponentiation & Primality","Computing $a^n \\bmod m$ naively costs $n$ multiplications; **repeated squaring**\ndoes it in $O(\\log n)$ by reading the bits of the exponent. We use this routine\nto state **Fermat's little theorem** (and the modular inverse it gives), then to\ntest primality — trial division, the probabilistic **Fermat** and **Miller–Rabin**\ntests, and the deterministic witness set that settles primality for every 64-bit\nnumber.\n",{"path":10166,"title":10167,"module":10159,"summary":10168},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization","Sieves & Factorization","The previous lesson tested one number for primality; here we ask for _all_\nprimes up to $n$ at once. The **sieve of Eratosthenes** cross-cuts composites\nin $O(n\\log\\log n)$, and a **linear sieve** does it in $O(n)$ while recording\neach number's **smallest prime factor**, which then factors any $x \\le n$ in\n$O(\\log x)$. From a factorization $x = \\prod p_i^{e_i}$ the multiplicative\nfunctions $\\tau$, $\\sigma$, and Euler's totient $\\varphi$ fall out immediately.\n",{"path":10170,"title":10171,"module":10159,"summary":10172},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics","Combinatorics & Counting","Counting is the arithmetic of finite sets. We build up from permutations\n$n!$ and combinations $\\binom{n}{k}$, prove Pascal's rule by a bijection,\nand count multisets with stars and bars. The practical core is computing\n$\\binom{n}{k}\\bmod p$ in $O(1)$ from precomputed factorials and inverse\nfactorials. We close with inclusion–exclusion and the Chinese Remainder\nTheorem, both of which lean on the modular inverse from the previous lesson.\n",{"path":10174,"title":10175,"module":10159,"summary":10176},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation","Matrix Exponentiation","A linear recurrence advances by a fixed linear rule, so one step is a\n**matrix–vector** product and $n$ steps are a **matrix power**. Packaging\nFibonacci, and any $k$-term recurrence, into a transition matrix lets us jump\nto the $n$-th term in $O(k^3 \\log n)$ by **exponentiation by squaring** — the\nsame doubling trick from modular exponentiation, now over matrices.\n",{"path":10178,"title":10179,"module":10159,"summary":10180},"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform","Fast Fourier Transform","Multiplying two degree-$n$ polynomials by the schoolbook method costs\n$\\Theta(n^2)$. Evaluating them at the **$n$-th roots of unity** turns\nmultiplication into pointwise products, and the **Cooley–Tukey FFT** computes\nall those evaluations in $\\Theta(n\\log n)$ by splitting even and odd\ncoefficients. The inverse FFT interpolates back, giving $\\Theta(n\\log n)$\npolynomial and big-integer multiplication.\n",{"path":10182,"title":10183,"module":10159,"summary":10184},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent","Numerical Optimization and Gradient Descent","Most of this course chases **discrete** optima over finite structures; here the\nsearch space is **continuous** and the objective $f$ is differentiable. The\n**gradient** points uphill, so stepping against it —\n$x_{t+1} = x_t - \\eta\\,\\nabla f(x_t)$ — walks downhill. **Convexity** makes every\nlocal minimum global; for convex $L$-smooth $f$ gradient descent converges at\n$O(1\u002Ft)$, and **geometrically** under strong convexity. **Newton's method** uses\nthe Hessian for local quadratic convergence, and **bisection** is the robust\nbracketing fallback for roots.\n",{"path":10186,"title":10187,"module":10188,"summary":10189},"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives","Geometric Primitives & Orientation","Computational Geometry","Computational geometry is built on a single reliable primitive — the\n**orientation test**, a sign of a cross product that tells whether three points\nturn left, right, or lie collinear. From points-as-vectors and the dot and\ncross products we derive orientation, segment intersection, the shoelace area\nformula, and point-in-polygon tests, keeping all arithmetic **exact and\ninteger** so that no floating-point rounding can corrupt a sign.\n",{"path":10191,"title":10192,"module":10188,"summary":10193},"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull","Convex Hull","The convex hull is the smallest convex polygon enclosing a point set — the\nrubber band snapped around the nails. We build it with Andrew's monotone chain,\nsorting by $(x,y)$ and sweeping a lower and upper hull while popping any\nnon-left turn via the orientation primitive, in $O(n\\log n)$. A reduction from\nsorting shows that bound is optimal, and the hull yields diameter, smallest\nenclosing rectangle, and more through rotating calipers.\n",{"path":10195,"title":10196,"module":10188,"summary":10197},"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line","Sweep-Line Algorithms","The plane-sweep paradigm turns a static $2$-D geometry problem into a dynamic\n$1$-D ordered-set problem: a vertical line sweeps left to right, stopping at an\n$x$-sorted **event queue** while a balanced-BST **status structure** tracks the\nobjects it currently crosses, ordered by $y$. We derive Bentley–Ottmann segment\nintersection in $O((n+k)\\log n)$, recover closest-pair in $O(n\\log n)$, and\nreduce skyline, rectangle-area, and overlap problems to $\\pm1$ event sweeps.\n",{"path":10199,"title":10200,"module":10188,"summary":10201},"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity","Polygons & Proximity","Four classics that live on top of the orientation primitive and the convex\nhull. **Closest pair** falls to divide-and-conquer in $\\Theta(n\\log n)$, where a\npacking argument caps the cross-boundary combine at seven neighbours per point.\n**Point-in-polygon** is the ray-casting parity test or the winding-number count\nthat also handles self-intersecting boundaries, both with their edge caveats. The **shoelace formula**\ngives signed area as a sum of cross products, and **rotating calipers** walk the\nhull to read off diameter and width in $O(n)$.\n",{"path":10203,"title":10204,"module":10205,"summary":10206},"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions","P, NP, and Reductions","Intractability","Most problems we have met so far have fast algorithms. A vast and important\nfamily seemingly does not. This lesson builds the vocabulary for that\ndivide: decision problems, the class $\\mathsf{P}$ of problems we can solve\nquickly, the class $\\mathsf{NP}$ of problems whose solutions we can _check_\nquickly, and polynomial-time reductions, the tool that lets us compare the\ndifficulty of two problems without solving either.\n",{"path":10208,"title":10209,"module":10205,"summary":10210},"\u002Falgorithms\u002Fintractability\u002Fnp-completeness","NP-Completeness","Some problems in $\\mathsf{NP}$ are universally hardest: every other problem\nin $\\mathsf{NP}$ reduces to them. This lesson defines $\\mathsf{NP}$-hard and\n$\\mathsf{NP}$-complete, states the Cook–Levin theorem that anchors the\ntheory on **SAT**, walks the web of reductions that grows from it, and gives\nthe four-step recipe for proving a brand-new problem $\\mathsf{NP}$-complete.\n",{"path":10212,"title":10213,"module":10205,"summary":10214},"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness","Coping with NP-Hardness","An $\\mathsf{NP}$-hardness proof rules out an exact polynomial-time algorithm,\nnot the need for answers. This lesson surveys four practical responses to\nhardness: approximation algorithms with a provable ratio (worked through a\n2-approximation for vertex cover), heuristics and local search, exact\nexponential methods like branch and bound, and exploiting special structure\nin the instances you actually face.\n",{"path":10216,"title":10217,"module":10205,"summary":10218},"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms","Approximation Algorithms","When a problem is $\\mathsf{NP}$-hard we can still ask for a solution\nprovably close to optimal. This lesson makes the approximation ratio\n$\\rho$ precise, separates absolute from relative guarantees, and proves the\nratios of four classic algorithms: greedy set cover ($H_n \\approx \\ln n$),\nthe MST-doubling $2$-approximation for metric TSP, load balancing, and the\nknapsack FPTAS. It closes with the hierarchy PTAS \u002F FPTAS and the limits of\ninapproximability.\n",{"path":10220,"title":10221,"module":6,"summary":6},"\u002Falgorithms","Algorithms",{"path":10223,"title":10224,"module":10225,"summary":10226},"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models","Functions and Mathematical Models","Limits and Continuity","A function assigns exactly one output to each input and can be presented four ways: verbally, numerically, graphically, or by a formula. The elementary families — linear, polynomial, power, rational, trigonometric, exponential — model most elementary phenomena, and transformation, combination, and composition build every other function from them.\n",{"path":10228,"title":10229,"module":10225,"summary":10230},"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function","The Limit of a Function","The tangent and velocity problems both ask for a value a ratio approaches but never reaches — the limit. Its intuitive two-sided form splits into one-sided limits that must agree; a limit fails to exist when they disagree or when the function grows without bound, the latter producing a vertical asymptote.\n",{"path":10232,"title":10233,"module":10225,"summary":10234},"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition","Limit Laws and the ε–δ Definition","The Limit Laws reduce a limit to arithmetic on simpler limits, and direct substitution settles polynomials and rational functions outright. The 0\u002F0 forms that resist substitution yield to algebra or the Squeeze Theorem, and the ε–δ definition makes \"arbitrarily close\" precise as a pair of quantified inequalities.\n",{"path":10236,"title":10237,"module":10225,"summary":10238},"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity","Continuity","A function is continuous at a point when its limit there equals its value, so the graph has no break. Continuity fails in three geometric ways; it is closed under arithmetic and composition, so the elementary families and their combinations are continuous; and on a closed interval it forces the Intermediate Value Theorem, which locates roots.\n",{"path":10240,"title":10241,"module":10242,"summary":10243},"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change","The Derivative and Rates of Change","Derivatives","A single limit with three readings: the slope of the tangent line, the instantaneous velocity of a moving object, and the rate of change of one quantity with respect to another. Built from the difference quotient, extended from a value at one point to a function of x, and undefined exactly where a corner, jump, or vertical tangent appears.\n",{"path":10245,"title":10246,"module":10242,"summary":10247},"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule","Differentiation Rules and the Chain Rule","Computing every derivative from the limit definition is tedious. A short list of rules — power, constant multiple, sum, product, quotient — differentiates any polynomial or rational function by inspection. The trigonometric derivatives follow from one limit, and the chain rule extends everything to composite functions by multiplying rates along the composition.\n",{"path":10249,"title":10250,"module":10242,"summary":10251},"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates","Implicit Differentiation and Related Rates","Not every curve is the graph of y = f(x). Implicit differentiation finds a slope from an equation in x and y directly, treating y as an unknown function and differentiating both sides. The same chain-rule idea drives related rates, where one measured rate of change forces another through a geometric constraint, and interprets the derivative as a rate across the sciences.\n",{"path":10253,"title":10254,"module":10242,"summary":10255},"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials","Linear Approximations and Differentials","A differentiable curve looks like its tangent line under enough magnification, so the tangent is a usable stand-in for the function near the point of contact. The linear approximation and its linearization, written in the language of differentials dy and dx, estimate both function values and the measurement error propagated into a computed quantity.\n",{"path":10257,"title":10258,"module":10259,"summary":10260},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem","Extrema and the Mean Value Theorem","Applications of Derivatives","Absolute and local extrema, the Extreme Value Theorem that guarantees them, and Fermat's Theorem pinning candidates to critical numbers. The Closed Interval Method turns the search for extrema into a finite checklist. Rolle's Theorem and the Mean Value Theorem then connect a function's values to its derivative, giving the tool that most of differential calculus rests on.\n",{"path":10262,"title":10263,"module":10259,"summary":10264},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph","How Derivatives Shape a Graph","The sign of the first derivative fixes where a function rises and falls, and a sign change identifies each local extremum through the First Derivative Test. The second derivative sets concavity and inflection points and gives a faster Second Derivative Test. Limits at infinity describe end behavior and the horizontal asymptotes a curve settles toward.\n",{"path":10266,"title":10267,"module":10259,"summary":10268},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization","Curve Sketching and Optimization","A checklist that synthesizes domain, symmetry, asymptotes, monotonicity, extrema, and concavity into a hand sketch of any function, plus the slant asymptote for rational functions whose degree exceeds the denominator's. The same extremum machinery, applied to a word problem, becomes the optimization template: model one quantity, reduce it to a function of a single variable, and find its absolute extremum.\n",{"path":10270,"title":10271,"module":10259,"summary":10272},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives","Newton's Method and Antiderivatives","Newton's method solves $f(x) = 0$ by repeatedly replacing the curve with its tangent line and jumping to the tangent's root, converging fast when it works and diverging when the derivative is small. Antiderivatives reverse differentiation: every antiderivative of a function differs from another by a constant, so the general antiderivative is a family of parallel curves, pinned to one by an initial condition.\n",{"path":10274,"title":10275,"module":10276,"summary":10277},"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral","Area and the Definite Integral","Integrals","The area under a curve is defined as a limit of sums of rectangle areas. The same limit — a Riemann sum taken as the mesh shrinks to zero — defines the definite integral, a single number measuring signed area, total distance, and every accumulated quantity built the same way. Its properties, comparison bounds, and reading as net area follow directly from the limit.\n",{"path":10279,"title":10280,"module":10276,"summary":10281},"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus","The Fundamental Theorem of Calculus","Differentiation and integration are inverse operations. Part 1 says the derivative of an area-accumulation function is the integrand; Part 2 says a definite integral equals the change in any antiderivative across the interval. Together they replace limits of Riemann sums with antiderivative lookups, define the indefinite integral, and give the Net Change Theorem for rates.\n",{"path":10283,"title":10284,"module":10276,"summary":10285},"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule","The Substitution Rule","Substitution runs the Chain Rule backward: spotting an inner function whose derivative also appears in the integrand lets the variable change to $u$ and collapse a composite integral to a simple one. The rule applies to indefinite and definite integrals, with two ways to handle the limits, and it yields the symmetry shortcuts that double even integrands and vanish odd ones.\n",{"path":10287,"title":10288,"module":10289,"summary":10290},"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes","Areas Between Curves and Volumes","Applications of Integration","A definite integral computes any quantity that a limit of Riemann sums approximates. Applied to geometry it gives the area between two curves and the volume of a solid: by cross-sections, by disks and washers when the region is revolved, and by cylindrical shells when inverting the boundary is awkward.\n",{"path":10292,"title":10293,"module":10289,"summary":10294},"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length","Work, Average Value, Arc Length, and Surface Area","The work done by a force that varies with position, the average value of a function and the Mean Value Theorem it satisfies, the length of a curve, and the area of a surface swept out by revolving that curve. Each is a limit of Riemann sums, hence a definite integral.\n",{"path":10296,"title":10297,"module":10289,"summary":10298},"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability","Applications to Physics, Economics, and Probability","Definite integrals in physics, economics, and statistics: the force a fluid exerts on a submerged plate, the balance point of a plane region, the money consumers save at a market price, and the probability that a continuous random variable lands in an interval, together with its mean.\n",{"path":10300,"title":10301,"module":10302,"summary":10303},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials","Inverse Functions, Logarithms, and Exponentials","Exponential, Logarithmic, and Inverse Functions","A one-to-one function has an inverse that reverses it, with a graph mirrored across y = x and a derivative given by the reciprocal-slope rule. The exponential e^x is its own derivative and the natural logarithm has derivative 1\u002Fx; logarithmic differentiation turns products, quotients, and variable powers into sums.\n",{"path":10305,"title":10306,"module":10302,"summary":10307},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions","Growth, Decay, Inverse Trigonometric, and Hyperbolic Functions","Any quantity whose rate of change is proportional to its size grows or decays exponentially, the single equation y' = ky behind populations, radioactive decay, cooling, and continuously compounded interest. The inverse trigonometric functions have algebraic derivatives, and the hyperbolic functions, built from e^x and e^{-x}, describe the hanging cable.\n",{"path":10309,"title":10310,"module":10302,"summary":10311},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule","Indeterminate Forms and l'Hospital's Rule","When a limit produces 0\u002F0 or infinity over infinity, the value is undetermined by the forms alone. l'Hospital's Rule resolves both by replacing the ratio of functions with the ratio of their derivatives. Products, differences, and powers reduce to a quotient the rule can handle, and repeated use ranks the growth of logarithms, powers, and exponentials.\n",{"path":10313,"title":10314,"module":10315,"summary":10316},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts","Integration by Parts","Techniques of Integration","The product rule for derivatives reverses into integration by parts, trading the integral of $u\\,\\d v$ for the integral of $v\\,\\d u$ whenever the second is easier. The LIATE ordering fixes which factor to differentiate. Standard cases: a polynomial against a transcendental factor, repeated parts, cyclic integrals that solve for themselves, and reduction formulas that peel an exponent down by recursion.\n",{"path":10318,"title":10319,"module":10315,"summary":10320},"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution","Trigonometric Integrals and Substitution","Two related techniques. Trigonometric integrals evaluate powers and products of sine, cosine, tangent, and secant by splitting off one factor and converting the rest with a Pythagorean identity, or by dropping even powers with half-angle formulas. Trigonometric substitution runs the idea in reverse: replace x by a sine, tangent, or secant to clear a radical, integrate, then read the answer back off a reference triangle.\n",{"path":10322,"title":10323,"module":10315,"summary":10324},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy","Partial Fractions and Integration Strategy","Any rational function integrates in closed form: factor the denominator, split the fraction into simple pieces by partial fractions, and integrate each piece as a logarithm or an arctangent. Four denominator cases exhaust the possibilities. A four-step strategy then sorts an arbitrary integrand by its shape to the technique that fits it, and a short catalog records elementary functions whose antiderivatives are not elementary.\n",{"path":10326,"title":10327,"module":10315,"summary":10328},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals","Approximate and Improper Integrals","Two definite integrals the Fundamental Theorem cannot reach. With no antiderivative available, the Midpoint, Trapezoidal, and Simpson rules approximate the integral from sample values, each carrying a provable error bound. With an infinite interval or an integrand that blows up, the improper integral is defined as a limit that either converges or diverges; the Comparison Test settles which without evaluating it.\n",{"path":10330,"title":10331,"module":10332,"summary":10333},"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus","Parametric Curves and Their Calculus","Parametric Equations and Polar Coordinates","A parametric curve gives x and y separately as functions of a third variable, recording not only a path but the direction and timing with which it is traced. Eliminating the parameter recovers a Cartesian equation; the slope, area, arc-length, and surface-area formulas run directly on the parameter, with the cycloid and astroid as worked examples.\n",{"path":10335,"title":10336,"module":10332,"summary":10337},"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates","Polar Coordinates","Polar coordinates locate a point by a distance from the pole and an angle from the polar axis, giving circles, spirals, and flower-shaped curves short equations. Conversion between the two systems is right-triangle trigonometry, and treating a polar curve as a parametric curve in the angle yields the tangent, area, and arc-length formulas.\n",{"path":10339,"title":10340,"module":10332,"summary":10341},"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections","Conic Sections","Parabolas, ellipses, and hyperbolas are the plane curves cut from a double cone. Each has a focus-based geometric definition and a standard Cartesian equation. A single number, the eccentricity, ties the three together, and placing a focus at the pole gives all of them one polar equation that describes planetary orbits.\n",{"path":10343,"title":10344,"module":10345,"summary":10346},"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences","Sequences","Infinite Sequences and Series","A sequence is a function on the positive integers, and its limit is defined almost exactly like a limit at infinity. The Limit Laws and Squeeze Theorem carry over from functions, monotonic and bounded sequences give a convergence criterion, and the Monotonic Sequence Theorem guarantees a limit exists without naming it.\n",{"path":10348,"title":10349,"module":10345,"summary":10350},"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test","Series and the Integral Test","Adding infinitely many terms is made precise as the limit of partial sums. The two series with closed-form partial sums are geometric and telescoping; the harmonic series diverges even as its terms shrink to zero. The Integral Test compares a positive series to an improper integral, settling the p-series and supplying a remainder bound for estimating sums.\n",{"path":10352,"title":10353,"module":10345,"summary":10354},"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests","The Convergence Tests","The comparison, alternating-series, ratio, and root tests decide convergence without a closed-form partial sum. Absolute convergence is stronger than conditional convergence and is preserved under rearrangement; an alternating series errs by less than its first omitted term. A test is chosen from the shape of the general term.\n",{"path":10356,"title":10357,"module":10345,"summary":10358},"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series","Power Series","A power series is a polynomial of infinite degree whose convergence set is an interval centered at $a$, with a radius the Ratio Test finds and endpoints that must be tested by hand. Inside that interval the series represents a function that can be differentiated and integrated term by term, generating new representations from the geometric series.\n",{"path":10360,"title":10361,"module":10345,"summary":10362},"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series","Taylor and Maclaurin Series","If a function equals a power series, its coefficients are forced: the nth is the nth derivative at the center over n factorial. We derive that formula, use Taylor's Inequality to prove the standard series for the exponential, sine, and cosine, record the binomial series and a reference table, and bound the error when a Taylor polynomial replaces a function.\n",{"path":10364,"title":10365,"module":10366,"summary":10367},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product","Three-Dimensional Coordinates, Vectors, and the Dot Product","Vectors and the Geometry of Space","Space needs three coordinates, so we set up the rectangular system, the distance formula, and the equation of a sphere. Vectors then package magnitude and direction into a single algebraic object with its own arithmetic. The dot product turns two vectors into a number that measures the angle between them, gives a clean test for orthogonality, and produces the projection of one vector onto another.\n",{"path":10369,"title":10370,"module":10366,"summary":10371},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes","The Cross Product, Lines, and Planes","The cross product multiplies two vectors into a third perpendicular to both, with length equal to the area of the parallelogram they span. That one construction supplies the direction of a line, the normal of a plane, and, through the scalar triple product, the volume of a parallelepiped. Lines carry a point and a direction vector; planes carry a point and a normal, which fixes the angle between planes and the distance from a point to a plane.\n",{"path":10373,"title":10374,"module":10366,"summary":10375},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces","Cylinders and Quadric Surfaces","A surface whose equation omits one variable is a cylinder: the graph of a plane curve swept along the missing axis. A second-degree equation in three variables is a quadric, and translation and rotation reduce every one to a short standard list. Traces — the curves cut by planes parallel to the coordinate planes — sort the six quadrics into ellipsoid, the two paraboloids, the cone, and the two hyperboloids.\n",{"path":10377,"title":10378,"module":10366,"summary":10379},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves","Vector Functions and Space Curves","A vector function assigns a vector to each value of a parameter, and as the parameter runs its tip traces a space curve. Taking limits, derivatives, and integrals component by component carries all of single-variable calculus into three dimensions. The derivative of a vector function is the tangent vector to its curve, and normalizing it gives the unit tangent that points the way along the path.\n",{"path":10381,"title":10382,"module":10366,"summary":10383},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion","Arc Length, Curvature, and Motion in Space","Integrating the speed of a vector function gives the length of its curve and a natural parameter, arc length, that depends only on the curve's shape. Curvature measures how fast the unit tangent turns, and together with the normal and binormal it builds the moving TNB frame. Reading the same vector function as a trajectory, its first two derivatives are velocity and acceleration, and acceleration splits cleanly into tangential and normal parts.\n",{"path":10385,"title":10386,"module":10387,"summary":10388},"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables","Functions of Several Variables, Limits, and Continuity","Partial Derivatives","A function of several variables assigns one number to each point of a region in the plane or in space. Domain, graph, level curve, and level surface describe it; limits and continuity extend to two variables, where a limit must agree along every path of approach, not just from the left and the right.\n",{"path":10390,"title":10387,"module":10387,"summary":10391},"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives","A partial derivative holds every variable but one fixed and differentiates in the ordinary sense. Geometrically it is the slope of a trace curve cut from the surface by a coordinate plane. The freeze-and-differentiate rule computes the two first partials; the four second partials follow, and the two mixed ones agree under Clairaut's Theorem when they are continuous.\n",{"path":10393,"title":10394,"module":10387,"summary":10395},"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule","Tangent Planes, Linear Approximation, and the Chain Rule","Near a point, a smooth surface looks like its tangent plane, and the plane's equation is built from the two partial derivatives. That linearization defines the total differential and the meaning of differentiability in two variables. The chain rule then propagates derivatives through composed functions, tracked by a tree diagram, and yields clean formulas for implicit differentiation.\n",{"path":10397,"title":10398,"module":10387,"summary":10399},"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient","Directional Derivatives and the Gradient","The partial derivatives measure slope along the two axes; the directional derivative measures slope along any chosen direction, and equals the gradient dotted with a unit vector. The gradient points in the direction of steepest increase, its length is the greatest rate, and it stands perpendicular to level curves and surfaces, which fixes the tangent plane to a level surface.\n",{"path":10401,"title":10402,"module":10387,"summary":10403},"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers","Optimization and Lagrange Multipliers","Extrema of a two-variable function sit at critical points where the gradient vanishes; the Second Derivatives Test sorts them into peaks, valleys, and saddles by the sign of a discriminant. Absolute extrema on a closed region also need the boundary. When the domain is itself a constraint curve, Lagrange multipliers set the two gradients parallel and solve the constrained problem.\n",{"path":10405,"title":10406,"module":10407,"summary":10408},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals","Double Integrals","Multiple Integrals and Vector Calculus","The double integral extends the definite integral to functions of two variables: a limit of Riemann sums that measures signed volume under a surface. Fubini's Theorem turns it into two ordinary integrations done one after the other, general regions of type I and type II fix the inner limits, polar coordinates absorb circular symmetry through the factor r, and the same machine computes mass, center of mass, and moments of a lamina.\n",{"path":10410,"title":10411,"module":10407,"summary":10412},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems","Triple Integrals and Coordinate Systems","The triple integral integrates a function of three variables over a solid, as a limit of Riemann sums evaluated by three nested single integrations. Cylindrical coordinates add the factor r to handle axial symmetry, spherical coordinates add rho-squared sine-phi for radial symmetry, and the general change of variables shows both volume elements are Jacobian determinants of the coordinate map. Surface area for a graph completes the measurement toolkit.\n",{"path":10414,"title":10415,"module":10407,"summary":10416},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals","Vector Fields and Line Integrals","A vector field assigns a vector to every point of space; the line integral of a field along a curve accumulates its tangential component, measuring work. Conservative fields are gradients of a potential, and for them the Fundamental Theorem for Line Integrals makes the integral depend only on the endpoints. Path independence, closed-loop integrals of zero, and the component test for a potential are three faces of the same property.\n",{"path":10418,"title":10419,"module":10407,"summary":10420},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence","Green's Theorem, Curl, and Divergence","Green's Theorem equates the line integral of a field around a positively oriented closed curve with a double integral over the enclosed region, turning a boundary computation into an area computation and vice versa. Curl measures local circulation and divergence measures local outflow; the two vector forms of Green's Theorem express the boundary integral as the integrated curl or divergence, the planar case of Stokes' and the Divergence Theorem.\n",{"path":10422,"title":10423,"module":10407,"summary":10424},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals","Parametric Surfaces and Surface Integrals","A parametric surface is the image of a two-variable vector function; its area element is the magnitude of the cross product of the two tangent vectors. The surface integral of a scalar function sums it over that area, and the flux integral of a vector field sums the field's normal component, measuring flow through the surface. Orientation by a choice of unit normal makes flux well-defined, the integral Stokes' and the Divergence Theorem operate on.\n",{"path":10426,"title":10427,"module":10407,"summary":10428},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem","Stokes' Theorem and the Divergence Theorem","Stokes' Theorem lifts Green's Theorem into space: the line integral of a field around the boundary of a surface equals the flux of its curl through the surface. The Divergence Theorem relates the outward flux across a closed surface to the triple integral of divergence over the solid it encloses. Together with the Fundamental Theorem of Calculus and its line-integral and Green counterparts, they are one theorem: the integral of a derivative over a region equals the integral of the field over its oriented boundary.\n",{"path":10430,"title":10431,"module":6,"summary":6},"\u002Fcalculus","Calculus",{"path":10433,"title":10434,"module":9887,"summary":10435},"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions","Measurement and Dimensions","Every physical quantity is a number attached to a unit, and that pairing is what lets you check an equation before computing anything, since terms that add together must carry the same dimensions. We build the SI base units and the notion of dimension, then use dimensional analysis to test a proposed relation and form scaling groups — a method that fixes a formula's shape but never its numerical constants. The lesson also sets how precisely a result may be stated, through significant figures, propagated uncertainty, and order-of-magnitude checks that catch errors a raw calculator answer hides.\n",{"path":10437,"title":10438,"module":9887,"summary":10439},"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra","Vector Algebra","Force, velocity, and displacement all carry a direction, so mechanics needs an arithmetic that respects it; adding magnitudes alone gives the wrong answer the moment two arrows point different ways. We set up vectors and their components in a chosen basis, then build the two products that carry most of the physics — the dot product, which extracts the part of one vector along another and yields work and power, and the cross product, which measures oriented area and yields torque and angular momentum. Rotating the axes changes the components while leaving the vector itself untouched, and the same component method resolves a force along whatever directions a constraint picks out.\n",{"path":10441,"title":10442,"module":10443,"summary":10444},"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion","One-Dimensional Motion","Kinematics","Motion along a line already forces the two questions the whole of kinematics repeats: how fast is the object moving now, and where will it be next? Velocity and acceleration answer the first as derivatives of position; integrating them back — the signed area under a graph — answers the second. We derive the constant-acceleration equations, mark exactly where the \"constant\" assumption is load-bearing, and see why sign, not magnitude, is what carries direction.\n",{"path":10446,"title":10447,"module":10443,"summary":10448},"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs","Motion Graphs","Draw a motion as a graph and its two most useful facts turn geometric: the slope of the position curve is the velocity, and the area under the velocity curve is the displacement. We read motion in both directions — differentiating a graph for the next rate, integrating it back to recover position — and handle the curved, piecewise, and noisy graphs that real measurements produce. Along the way we see why a velocity estimated from two positions belongs to the midpoint of their interval, not its end.\n",{"path":10450,"title":10451,"module":10443,"summary":10452},"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion","Projectile Motion","Throw an object and it seems to trace one curved path, but the motion is really two independent one-dimensional motions running at once: constant velocity across the ground and free fall in the vertical. Splitting it that way turns every projectile question — how long it stays up, how far it lands, how high it climbs, whether it clears an obstacle — into a pair of equations you already know. We derive the parabolic trajectory, work both the forward and the inverse problems, and show why the familiar $45^\\circ$ range-maximizing angle holds only when launch and landing heights match.\n",{"path":10454,"title":10455,"module":10443,"summary":10456},"\u002Fmechanics\u002Fkinematics\u002Frelative-motion","Relative Motion","A velocity is only ever measured relative to some observer, so a boat's speed through the water, over the ground, and as seen from another boat are three different vectors. Choosing the right frame — and subtracting one motion from another — collapses river crossings, crosswind headings, pursuit, and closest-approach problems into a single vector equation. We build the relative-velocity and relative-position relations for uniformly moving frames, show why acceleration is the one quantity all such observers agree on, and note where rotating frames break the simple subtraction.\n",{"path":10458,"title":10459,"module":10443,"summary":10460},"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion","Circular Motion","An object going around a circle at a steady speed is still accelerating, because its velocity is forever changing direction — the fact that governs everything from a car on a curve to a satellite in orbit. We tie the angular description (angle, angular velocity, angular acceleration) to the linear one through $v=r\\omega$, split the acceleration into an inward part that turns the velocity and a tangential part that changes its speed, and extend the inward $v^2\u002Fr$ result to any curved path through its local radius of curvature. Constant angular acceleration then mirrors straight-line motion equation for equation.\n",{"path":10462,"title":10463,"module":10464,"summary":10465},"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws","Newton's Laws","Dynamics","What makes a body change its motion, and in which frames does the answer take its simplest form? Newton's three laws settle both: inertial frames are the ones where a force-free body coasts, force is whatever changes momentum, and every interaction pushes back on its source. We write the second law as $\\sum\\vec F=\\d\\vec p\u002F\\d t$, reduce it to $m\\vec a$ at constant mass, and separate what a scale actually reads — the support force — from the weight $m\\vec g$ it is so often mistaken for.\n",{"path":10467,"title":10468,"module":10464,"summary":10469},"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams","Free-Body Diagrams","Once several forces act on a body at once, the reliable way to predict its motion is to isolate that one body and draw every external push and pull on it — nothing more, nothing less. The free-body diagram is that discipline. We fix a system boundary, resolve $\\sum\\vec F=m\\vec a$ into components along axes chosen to fit the geometry, and solve for the unknowns a problem hands us — normal forces, tensions, friction, and the acceleration a constraint permits — seeing why internal forces drop out only when the boundary encloses both bodies that share them.\n",{"path":10471,"title":10472,"module":10464,"summary":10473},"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion","Friction and Curved Motion","Real surfaces grip before they slip, fluids push back harder the faster you move through them, and anything rounding a bend must be pulled toward the inside of the curve by something. This lesson supplies the force laws for those three cases. We bound static friction by $|f_s|\\leq\\mu_sN$ and switch to kinetic friction $\\mu_kN$ once sliding starts, model drag as a speed-dependent resistance that levels off at a terminal speed, and show that circular motion demands an inward net force $mv^2\u002Fr$ furnished by real interactions — friction, a banked normal force, tension — never by an invented outward one.\n",{"path":10475,"title":10476,"module":10464,"summary":10477},"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics","Numerical Dynamics","Most force laws — quadratic drag, coupled oscillators, anything nonlinear — admit no closed-form trajectory, so we advance the motion one small time step at a time and let arithmetic do what algebra cannot. This lesson turns $\\d\\vec y\u002F\\d t=f(t,\\vec y)$ into a marching rule. We derive the Euler, Euler--Cromer, midpoint, and Verlet updates, weigh their accuracy and stability, watch a drifting energy expose a bad scheme, and use step-halving and conserved quantities to separate the error of the method from the error of the model.\n",{"path":10479,"title":10480,"module":10464,"summary":10481},"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems","Center-of-Mass Systems","A firework bursts into a dozen fragments, yet one point keeps gliding along the original parabola as though nothing had happened. That point is the centre of mass, and following it collapses a many-body tangle into a single equation of motion. We define $\\vec R=\\frac1M\\sum_i m_i\\vec r_i$ and its continuous form, show that internal forces cancel so that only external ones move it, $M\\vec A_{\\rm cm}=\\sum\\vec F_{\\rm ext}$, and put the result to work on recoil, collisions viewed from the centre-of-mass frame, and rocket propulsion, where mass leaving the boundary carries momentum with it.\n",{"path":10483,"title":10484,"module":10485,"summary":10486},"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy","Work and Kinetic Energy","Energy","A constant push along a straight path is trivial to score, but real forces vary and bend along curved trajectories, and only the component along the motion transfers any energy. Work captures exactly that transfer as the line integral $W=\\int\\vec F\\cdot\\d\\vec r$, and the work-kinetic-energy theorem turns it into a statement about speed: the net work on a particle equals the change in its $\\tfrac12 mv^2$. We build work up from the dot product to the signed area under a force curve, derive the theorem from Newton's second law, and read power as its instantaneous rate $P=\\vec F\\cdot\\vec v$.\n",{"path":10488,"title":10489,"module":10485,"summary":10490},"\u002Fmechanics\u002Fenergy\u002Fpotential-energy","Potential Energy","When a force does the same work no matter which path a particle takes, that work can be stored as a function of position alone, and solving for the motion becomes bookkeeping instead of integration. We single out the forces that qualify — the conservative ones, for which $\\oint\\vec F\\cdot\\d\\vec r=0$ — define their potential energy through $\\vec F=-\\nabla U$, and use conservation of mechanical energy to read speeds, turning points, and equilibria straight off a potential curve. Friction breaks the shortcut, so we also track where mechanical energy leaks away as heat.\n",{"path":10492,"title":10493,"module":10485,"summary":10494},"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work","Multiparticle Work","A single particle has one velocity and one kinetic energy; a system of many can spin, deform, explode, and warm up while its centre of mass glides along as if nothing happened. Splitting the motion into a centre-of-mass part and an internal part separates the energy that momentum already fixes from the energy left free for relative motion, $K=\\tfrac12MV_{\\rm cm}^2+K'$. We derive the centre-of-mass work theorem, see why an explosion or a released spring can raise total kinetic energy with no external work at all, and use the reduced-mass and centre-of-mass frames to make collisions and internal transfers clean.\n",{"path":10496,"title":10497,"module":10485,"summary":10498},"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding","Mass-Energy and Binding","Relativity puts rest itself on the energy ledger: a mass $m$ carries energy $mc^2$ even when it sits still, so weighing a system's separated pieces and weighing the assembled whole give different answers, and the gap is binding energy. We convert freely between mass units and MeV, compute the energy that holds a nucleus together, and read the binding-energy-per-nucleon curve that explains why fusing light nuclei and splitting heavy ones both release energy. Reaction $Q$ values, thresholds, and recoil then follow from the same mass-difference accounting, once the frame and mass convention are fixed.\n",{"path":10500,"title":10501,"module":10485,"summary":10502},"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization","Photons and Quantization","Light delivers its energy in indivisible lumps: a photon of frequency $f$ carries exactly $hf$, and this one fact explains why a dim blue lamp ejects electrons that an intense red one cannot. We fix a photon's energy and momentum from its wavelength, follow the quanta through emission, absorption, and the photoelectric threshold $K_{\\rm max}=hf-\\phi$, and watch energy and momentum conservation together produce the Compton wavelength shift when a photon scatters from an electron. The recurring discipline is unit and frame care, where a stray factor of $10^9$ or a forgotten rest energy quietly ruins an answer.\n",{"path":10504,"title":10505,"module":10506,"summary":10507},"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions","Momentum and Collisions","Momentum","When two objects collide, the forces between them are too brief and too tangled to integrate directly, yet the result is fixed by one conserved quantity. Linear momentum $\\vec p=m\\vec v$ turns Newton's second law into the impulse-momentum theorem $\\vec J=\\Delta\\vec p$, and for an isolated system into a conservation law that holds through any internal collision, however dissipative. We use it to separate elastic from inelastic collisions, follow the centre of mass, and read impulse as the signed area under a force-time curve — always tracking which external impulses the chosen system and interval let us drop.\n",{"path":10509,"title":10510,"module":10506,"summary":10511},"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions","Center-of-Mass Collisions","A two-body collision that looks asymmetric in the laboratory becomes almost trivial in the frame that rides along with the centre of mass, where the total momentum is zero and the two momenta stay equal and opposite. We build that frame, reduce the pair to a single relative coordinate carrying the reduced mass $\\mu$, and show that an elastic collision there only rotates one momentum vector while its length holds fixed. Transforming back to the laboratory then handles elastic and inelastic collisions, scattering angles, and reaction thresholds with the same construction — and shows why relative speed, not laboratory kinetic energy, measures what a collision can convert.\n",{"path":10513,"title":10514,"module":10506,"summary":10515},"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion","Rocket Propulsion","A rocket speeds up by throwing mass backward, so its own mass drops as it flies and $\\vec F=m\\vec a$ no longer applies to a fixed body. Tracking the momentum the exhaust carries across the vehicle boundary gives thrust $T=Ru_e$ and, for a force-free burn, the rocket equation $\\Delta v=u_e\\ln(m_i\u002Fm_f)$ — a logarithm that makes large velocity changes expensive in propellant and forces staging. We then add the forces a real ascent cannot ignore, gravity, drag, and steering, and show how thrust and mass-flow records are cross-checked to infer the exhaust speed.\n",{"path":10517,"title":10518,"module":10519,"summary":10520},"\u002Fmechanics\u002Frotation\u002Frotational-inertia","Rotational Inertia","Rotation","Push a wheel and a merry-go-round with the same force and they speed up at wildly different rates: the same mass resists rotation differently depending on where it sits relative to the axis. That single fact is the moment of inertia, $I=\\int r_\\perp^2\\,\\d m$, and this lesson builds it from the ground up. We tie angular motion to linear through $s=r\\theta$, $v=r\\omega$, and $a_t=r\\alpha$, derive $I$ for rods, disks, and spheres, and use the parallel- and perpendicular-axis theorems to move between axes — always naming the axis, because the same body has as many moments of inertia as it has lines to spin about.\n",{"path":10522,"title":10523,"module":10519,"summary":10524},"\u002Fmechanics\u002Frotation\u002Frotational-dynamics","Rotational Dynamics","A force applied to a wheel does nothing unless it acts off the axis: what turns a rigid body is torque, force times lever arm. This lesson makes that precise and turns it into the rotational Newton's second law, $\\sum\\tau=I\\alpha$ about a fixed axis, the exact analogue of $\\sum F=ma$. From there we get rotational work $W=\\int\\tau\\,\\d\\theta$ and power $P=\\tau\\omega$, size a motor to a load, and solve pulleys and Atwood machines where the pulley's own inertia can no longer be ignored — always insisting that every torque be measured about the same axis.\n",{"path":10526,"title":10527,"module":10519,"summary":10528},"\u002Fmechanics\u002Frotation\u002Frolling-motion","Rolling Motion","A rolling wheel is doing two things at once — translating and spinning — but the no-slip condition $v_{cm}=R\\omega$ locks them together, and that single constraint is what makes rolling tractable. We use it to split the kinetic energy into $\\tfrac12Mv_{cm}^2+\\tfrac12I\\omega^2$, find how fast a cylinder reaches the bottom of an incline, and show why the contact point is instantaneously at rest. The static friction that enforces rolling does no work; we track its direction from the tendency to slip, and mark exactly where the model breaks once the required friction exceeds $\\mu_sN$.\n",{"path":10530,"title":10531,"module":10519,"summary":10532},"\u002Fmechanics\u002Frotation\u002Fangular-momentum","Angular Momentum","A skater pulls in her arms and spins faster, with no torque acting: that is angular momentum conservation, and it lets us answer questions that would be hopeless force by force. We build $\\vec L=\\vec r\\times\\vec p$, show it obeys $\\vec\\tau_{ext}=\\d\\vec L\u002F\\d t$, and use its conservation under zero external torque to link before and after in collisions, reconfigurations, and coupled rotors without ever resolving the internal forces. The catch is bookkeeping: the origin, the system boundary, and the frame must be fixed first, and a change in total $\\vec L$ always points to an external impulse someone forgot.\n",{"path":10534,"title":10535,"module":10519,"summary":10536},"\u002Fmechanics\u002Frotation\u002Frolling-resistance","Rolling Resistance","Ideal rolling should coast forever, yet every real wheel slows down. The reason is that a deformable tire and road do not press through a single point: the contact patch spreads, the normal-force resultant shifts ahead of the axle, and that offset is a resisting moment even with no gross sliding. We package it as an equivalent force $F_{rr}=C_{rr}N$, tie the coefficient to load, surface, speed, and temperature, and use coast-down, towing, and traction tests to separate this contact loss from aerodynamic drag, bearing friction, and the adhesion limit where rolling gives way to skidding.\n",{"path":10538,"title":10539,"module":10519,"summary":10540},"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession","Gyroscopic Precession","A spinning top leans over but does not fall — it swings its axis in a slow horizontal circle instead. The paradox dissolves once torque is read as the rate of change of a vector: gravity's torque is perpendicular to the spin angular momentum, so it turns $\\vec L$ rather than toppling it. We derive the steady precession rate $\\Omega\\simeq Mgr\u002F(I_s\\omega_s)$ in the fast-top limit, state the assumptions it leans on — dominant spin, slow tilt, negligible bearing torque — and read nutation, support motion, and a decaying spin as the ways real gyroscopes depart from it.\n",{"path":10542,"title":10543,"module":10544,"summary":10545},"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits","Keplerian Orbits","Gravitation and Matter","Why do the planets trace ellipses rather than any other curve? Newton's inverse-square law collapses the two-body problem onto a single conic section, and the answer falls out of two conserved quantities: a central force can exert no torque, so angular momentum is fixed, and gravity is conservative, so energy is fixed. We read an orbit's size and shape straight off those invariants, recover all three of Kepler's laws, and derive escape speed, the vis-viva relation, and the timing of a pass. We also mark where the ideal ellipse breaks down — drag, oblateness, and a third body slowly move a real orbit.\n",{"path":10547,"title":10548,"module":10544,"summary":10549},"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields","Gravitational Fields","Instead of tracking the force between every pair of masses, we attach a field to the source and ask a test mass to read it off locally. That move pays off because gravity is conservative: the field is the gradient of a single scalar potential, and potentials from many sources simply add. We build the field-potential picture, use spherical symmetry and the shell theorem to get the point-mass exterior field and the zero interior field of a shell, and read tides straight out of the field's gradient. Along the way we mark exactly when the constant-$g$ and point-mass shortcuts hold and when a shape correction is needed.\n",{"path":10551,"title":10552,"module":10544,"summary":10553},"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium","Static Equilibrium","What does it take for a loaded structure to stay put? A body at rest needs its forces to cancel and its turning effects to cancel — $\\sum\\vec F=0$ and $\\sum\\vec\\tau=0$ about any point — and almost all of statics is the craft of turning a physical setup into those equations. We build free-body diagrams, replace supports, cables, friction, couples, and distributed loads with their idealized reactions, and locate the centre of gravity that decides whether a body tips. We also count equations against unknowns to separate a determinate problem from one that needs the material's deformation to resolve, and read every negative or inconsistent reaction as a sign that a contact or a boundary was chosen wrong.\n",{"path":10555,"title":10556,"module":10544,"summary":10557},"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics","Fluid Statics","A fluid at rest cannot support a shear, so the only stress it carries is a pressure that must grow with depth to hold up the fluid above it. That single balance, $\\d p\u002F\\d z=-\\rho g$, runs the whole subject: it sets manometer readings, the force on a dam, and — integrated over a submerged boundary — Archimedes' buoyant force $F_B=\\rho g V_{\\rm disp}$. We derive these, use them to decide when a body floats and whether it floats upright, and mark where acceleration, rotation, compressibility, or capillarity forces a richer pressure model.\n",{"path":10559,"title":10560,"module":10544,"summary":10561},"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow","Fluid Flow","Two accounting rules carry most of steady flow: mass cannot pile up, so the same volume crosses every section each second, and mechanical energy is conserved along a streamline when the fluid is ideal. From those we get continuity, Bernoulli's relation between pressure, speed, and height, and the results that follow — Torricelli's efflux speed, the Venturi meter, the Pitot tube. We then let go of the ideal assumptions one at a time: viscosity adds wall shear and head loss, Reynolds number decides laminar versus turbulent, and Mach number marks where a gas stops behaving as incompressible.\n",{"path":10563,"title":10564,"module":10544,"summary":10565},"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion","Orbital Motion","A circular orbit is nothing but free fall with enough sideways speed to keep missing the ground, and setting gravity equal to the centripetal requirement fixes that speed and the period once and for all. From the same energy bookkeeping we read off escape speed, sort orbits into bound, parabolic, and hyperbolic by the sign of their specific energy, and see why a tangential burn is the efficient way to change an orbit. We build the Hohmann transfer and its launch window, work the numbers for a geostationary orbit and an escape burn, and mark where finite thrust, perturbations, and an uncertain initial state pull a real trajectory off the ideal.\n",{"path":10567,"title":10568,"module":10544,"summary":10569},"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity","Stress and Elasticity","Rigid bodies are a fiction; every real material stretches, shears, or squeezes under load, and the useful question is how much. We define stress as force per area and strain as fractional deformation, then find that for small deformations the two are simply proportional — Hooke's law — with Young's, shear, and bulk moduli as the constants for stretch, twist, and volume change. From these we compute extensions, torsional twist, and stored elastic energy, and read a tensile curve for the yield, ultimate, and fracture points where linear elasticity ends. We also mark the practical limits: stress concentrations, fatigue, and the multiaxial states a single uniaxial modulus cannot capture.\n",{"path":10571,"title":10572,"module":10573,"summary":10574},"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators","Damped Oscillators","Oscillations and Waves","Every real oscillator eventually stops: friction, drag, and internal loss drain its energy, so free motion is a decay rather than a permanent swing. Adding a velocity-proportional resistance to the spring-mass equation produces one dimensionless number, $b\u002F(2\\sqrt{mk})$, that decides whether the mass rings down through many cycles, returns once without overshoot, or crawls back slowly. We solve the three regimes, tie the observed decay to the power balance $b\\dot x^2$, and turn a measured ring-down into the decay rate and quality factor of the apparatus — reading damping off the data instead of assuming it.\n",{"path":10576,"title":10577,"module":10573,"summary":10578},"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves","Travelling Waves","A wave carries a shape, not the material: each element of a rope or air column oscillates in place while the disturbance travels through it. Writing that shape as $f(x\\mp vt)$ turns \"the pattern moves\" into a statement about the cosine's argument, and a local force balance on one string segment fixes the speed at $v=\\sqrt{T\u002F\\mu}$ — restoring stiffness over inertia, with amplitude nowhere in it. We build the sinusoidal wave and its phase, derive the wave equation from Newton's second law, and follow the energy a travelling wave transports, then check speed and power against those predictions.\n",{"path":10580,"title":10581,"module":10573,"summary":10582},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition","Wave Superposition","When two waves cross the same point, what does a probe read? In a linear medium the answer is arithmetic: the displacements add, $y=y_1+y_2$, and the pulses pass through each other unchanged. That one rule produces interference — reinforcement where the signs agree, cancellation where they oppose — and it guards against a common mistake, since displacement can vanish at an instant while the energy sits in transverse motion instead. We work out the signed sum, the phase bookkeeping for equal-frequency components, and why a null in the record is not a null in the wave.\n",{"path":10584,"title":10585,"module":10573,"summary":10586},"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves","Standing Waves","Clamp a string at both ends and only certain frequencies survive: the ends must be nodes, and that single geometric demand quantizes the wave into a discrete set of modes $f_n=nv\u002F(2L)$. The travelling wave becomes a fixed pattern of nodes and antinodes — standing, not moving — because equal waves running in opposite directions superpose. We build the standing wave from its counter-propagating pieces, read the harmonic sequence off the boundary conditions (half-wavelengths for a fixed-fixed string, odd quarter-wavelengths for a closed pipe), and test the ideal model against node scans and resonance peaks.\n",{"path":10588,"title":10589,"module":10573,"summary":10590},"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves","Sound Waves","Sound is a pressure wave so small that a loud tone displaces air molecules by less than the width of an atom, yet a microphone reads it easily — because pressure, not displacement, is what the ear and the instrument sense. The acoustic impedance $Z=\\rho c$ ties pressure, density, and particle velocity together, fixes the intensity a wave carries, and sets the reference for the decibel, a logarithm that tames a $10^{12}$ range in power. We derive the sound speed from the gas's stiffness, convert between pressure and intensity levels, and treat the measurement itself — calibration, geometry, background, averaging — as part of the physics.\n",{"path":10592,"title":10593,"module":10573,"summary":10594},"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect","Doppler Effect","A passing siren drops in pitch not because the source changes but because motion repacks the wavefronts: an approaching source crowds its crests, a receding one stretches them, and a moving listener samples them at a different rate. For mechanical waves every velocity is measured against the medium, and one signed ratio $f_r=f_s(v-u_r)\u002F(v-u_s)$ captures both effects at once. We separate source motion, which sets crest spacing, from receiver motion, which sets arrival rate, invert the shift to recover radial velocity, and mark where the model breaks — supersonic sources, moving air, and reflected paths that carry two shifts, not one.\n",{"path":10596,"title":10597,"module":10573,"summary":10598},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets","Wave Packets","No real signal is a single frequency: a disturbance that starts and stops is built from a band of wave numbers, and the width of that band is what makes it local. We ask how such a packet moves — carrier crests at the phase velocity $v_\\mathrm p=\\omega\u002Fk$, the envelope at the group velocity $v_\\mathrm g=\\d\\omega\u002F\\d k$ — and why the two differ once a medium is dispersive. Curvature $\\d^2\\omega\u002F\\d k^2$ spreads and chirps the packet as it travels, and the Fourier reciprocity that ties bandwidth to duration explains why a finite record, aliasing, or a coarse probe can imitate that spreading unless the sampling limits are respected.\n",{"path":10600,"title":10601,"module":10573,"summary":10602},"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling","Beats and Coupling","Add two tones a few hertz apart and the sum swells and fades at their difference frequency — a beat — though neither source is changing. We work out that envelope, then ask the mechanical version of the same question: join two oscillators and a single resonance splits into normal modes, with energy sloshing between the coordinates at their frequency difference. The lesson identifies when a slow amplitude envelope signals genuine coupling rather than two independent sources, drift, or deliberate modulation, reading it from envelope timing, spectral sidebands, and the mode shapes.\n",{"path":10604,"title":10605,"module":10573,"summary":10606},"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion","Simple Harmonic Motion","Any system pushed back toward equilibrium by a force proportional to its displacement obeys one equation, $\\ddot x+\\omega_0^2x=0$, and so moves sinusoidally at $\\omega_0=\\sqrt{k\u002Fm}$ whatever the amplitude. We derive that motion, follow its energy $E=mv^2\u002F2+kx^2\u002F2$ trading between kinetic and potential form at constant total, and read the elliptical phase-space orbit Hooke's law implies. Period, amplitude, velocity, and acceleration then supply redundant checks: an amplitude-dependent period or a curved force residual is the signature that the linear model has failed, and mass-loading and offset tests separate a calibration error from a real frequency shift.\n",{"path":10608,"title":10609,"module":10573,"summary":10610},"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion","Pendulum Motion","A pendulum keeps time only because, for small swings, gravity supplies a restoring torque proportional to the angle — and $T=2\\pi\\sqrt{L\u002Fg}$ then follows without the mass appearing at all. We derive that result, mark exactly which assumptions carry it (small angle, negligible pivot loss, a rigid support), then relax them: finite amplitude lengthens the period through an elliptic integral, and an extended body replaces $L$ with the ratio of its moment of inertia to its center-of-mass distance. How the period drifts with amplitude or pivot position is what diagnoses the geometric, damping, and distributed-mass corrections.\n",{"path":10612,"title":10613,"module":10573,"summary":10614},"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators","Driven Oscillators","Drive a damped oscillator at a frequency you control and it eventually forgets its own: $m\\ddot x+b\\dot x+kx=F_0\\cos\\omega t$ settles into a steady response whose amplitude and phase depend sharply on how close the drive sits to resonance. We solve for that response, show how damping alone fixes the resonance width, the peak power, and the settling time, and treat base excitation as the same problem with a different input. The steady-state formulas hold only for constant $m$, $b$, and $k$; level-dependent peaks or hysteresis between up- and down-sweeps are how nonlinearity or an extra mode announces itself.\n",{"path":10616,"title":10617,"module":10573,"summary":10618},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries","Wave Boundaries","A pulse traveling along a string does something abrupt where the string's properties change: part reflects, part transmits, and which is which is set by the impedance mismatch alone. We impose continuity of displacement and transverse force at the join to get the reflection and transmission coefficients in terms of $Z=\\sqrt{T\\mu}$, fix their signs and the polarity flip, and balance the energy. The clean result assumes linear, nondispersive segments meeting at a localized join; pulse polarity, return timing, and energy ratios are the measurements that expose a real connector's mass, loss, or distributed transition.\n",{"path":10620,"title":10621,"module":10622,"summary":10623},"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases","Kinetic Theory of Ideal Gases","Thermodynamics","A gas has no springs and no gears, yet it pushes on its container with a definite pressure and stores energy in a lawful way. Kinetic theory explains both from the motion of the molecules alone: pressure is the accumulated recoil of countless elastic impacts, and temperature is the average translational kinetic energy each molecule carries. We derive $pV=\\tfrac13Nm\\overline{v^2}$ from momentum transfer, read off $\\overline{K}_{\\rm tr}=\\tfrac32kT$, and use the Maxwell–Boltzmann distribution to separate the most probable, mean, and rms speeds — each the right average for a different question — while marking where the dilute, classical assumptions stop holding.\n",{"path":10625,"title":10626,"module":10622,"summary":10627},"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics","First Law of Thermodynamics","Heat a gas and it may warm, expand, or both; compress it and the same energy can reappear as a temperature rise. The first law settles the bookkeeping: internal energy is a state property whose change equals the heat added plus the work done on the system, $\\Delta E_{\\rm int}=Q_{\\rm in}+W_{\\rm on}$. We fix a system boundary and one sign convention, compute boundary work as $\\int p\\,\\d V$ along a path, and use calorimetry to measure heat and heat capacities. The recurring point is that heat and work are path-dependent transfers while their sum is not, so an energy ledger closes only once every boundary crossing is named.\n",{"path":10629,"title":10630,"module":10622,"summary":10631},"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law","Entropy and the Second Law","The first law lets energy flow either way; it never says which way heat actually goes. The second law supplies the missing arrow. Entropy, defined through the reversible transfer $\\d S=\\delta Q_{\\rm rev}\u002FT$, can only increase in an isolated system, and that single inequality fixes the direction of heat flow and caps every engine, refrigerator, and heat pump at its Carnot value. We build entropy ledgers for reservoirs and working substances, separate the entropy carried by heat from the entropy generated by irreversibility, and read the sign of the total as a hard check on any proposed thermal machine.\n",{"path":10633,"title":10634,"module":10622,"summary":10635},"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes","Thermal Processes","Heat rarely sits still: it stretches solids, pushes real gases off their ideal isotherms, and leaks across walls by conduction, convection, and radiation. Each behavior becomes a number a designer can use. Thermal expansion sets the gaps in a bridge and the stress in a clamped rod; the van der Waals equation and a phase diagram fix when $pV=nRT$ or a latent-heat term applies; Fourier's law, Newton cooling, and Stefan–Boltzmann radiation give the rate of heat flow. We assemble these into thermal-resistance networks and transient time constants, then mark where contact resistance, phase change, or a hidden thermal bridge breaks the simple model.\n",{"path":10637,"title":10638,"module":10622,"summary":10639},"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes","Phase Changes","Add heat to ice and its temperature climbs — until it reaches $0\\ ^\\circ\\mathrm C$, where the thermometer stalls while the ice melts. That plateau is the whole subject: at a phase boundary the energy rearranges molecules, $Q=mL$, instead of raising temperature, which resumes only once one phase is gone. We stage a heating path into sensible-heat legs ($Q=mc\\Delta T$) and latent plateaus, use the Clausius–Clapeyron relation to track how a boiling point moves with pressure, and solve calorimetry by testing each coexistence endpoint — so a melt fraction that lands outside $[0,1]$ flags a wrong final-state guess rather than a real state.\n",{"path":10641,"title":10642,"module":10622,"summary":10643},"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines","Thermal Machines","An engine, a refrigerator, and a heat pump are one machine read three ways: each shuttles heat between a hot and a cold reservoir while trading work at the boundary, and only the flow you call useful separates them. A heat engine turns part of $Q_h$ into work, $W=Q_h-Q_c$; a refrigerator spends work to pull $Q_c$ from the cold side; a heat pump counts the warm-side delivery instead. We measure each with its own ratio — efficiency or coefficient of performance — bound them all by the Carnot limit that reservoir temperatures alone set, and track how finite temperature differences, throttling, and friction generate entropy and pull real machines below that bound.\n",{"path":10645,"title":10646,"module":6,"summary":6},"\u002Fmechanics","Mechanics & Dynamics",{"path":10648,"title":10649,"module":10650,"summary":10651},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors","Charge and Conductors","Electric Fields","Rub two objects together and one pulls electrons from the other; nothing is created, only moved. We define what electric charge is — conserved, additive, and quantized in units of $e$ — and why a conductor's mobile carriers rearrange until its interior field vanishes and its surface sits at one potential. We follow charge through contact, induction, and grounding, treat the field-free cavity that turns a conductor into a shield, and mark where finite conductivity and leakage set the limits of the electrostatic picture.\n",{"path":10653,"title":10654,"module":10650,"summary":10655},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law","Coulomb's Law","Two charges at rest push or pull along the line joining them, and the whole of electrostatics is assembled by adding up such pairs. We measure that force — its inverse-square falloff, its linear dependence on each charge, the sign that says attract or repel — and write it as a vector so direction survives superposition. We work the magnitude and component forms on real numbers, check them against limiting cases and dimensions, and fix the point-charge approximation to source sizes small against every separation.\n",{"path":10657,"title":10658,"module":10650,"summary":10659},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force","Electric Field and Force","Rather than ask how one charge reaches across empty space to another, we credit the source with a field that fills the space and let a second charge respond to whatever field sits at its own location. Electric field is force per unit positive test charge, $\\vec E=kq\\hat r\u002Fr^2$ for a point source, and source fields add before any receiving charge is placed. We compute those fields and the force $\\vec F=q\\vec E$ they exert, then follow a charge along its parabolic path through a uniform field and into nonuniform fields where the dynamics turn position-dependent.\n",{"path":10661,"title":10662,"module":10650,"summary":10663},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps","Electric Field Maps","A field is a vector at every point of space, and the quickest way to grasp one is to draw it. We build the two standard pictures — continuous field lines tangent to $\\vec E$, and scaled vector arrows — and read direction, magnitude, and the location of nulls straight off them. We fix what a line drawing can and cannot say: density encodes magnitude only under a stated seeding rule, and integral curves never cross at a regular point. From there we work the topology near sources, sinks, and conductor surfaces, and state the step-size and interpolation checks a numerical map must pass.\n",{"path":10665,"title":10666,"module":10650,"summary":10667},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles","Electric Dipoles","Most neutral matter carries no net charge yet still responds to an electric field, because its positive and negative charge sit slightly apart. That separation is a dipole, moment $\\vec p=q\\vec d$ pointing from the negative to the positive charge, and it is the leading term in how any neutral distribution looks from far away. We derive the torque $\\vec p\\times\\vec E$ and energy $-\\vec p\\cdot\\vec E$ a uniform field imposes, the net force a field gradient adds, and the axial and equatorial $1\u002Fr^3$ fields the pair produces, then measure how far out the point-dipole approximation still holds.\n",{"path":10669,"title":10670,"module":10671,"summary":10672},"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields","Continuous Charge Fields","Continuous Charge Distributions","A charged rod, ring, or disk is not a point, yet its field is still nothing but Coulomb's law added up over the charge it carries. We replace the discrete sum by an integral, with $\\d q=\\lambda\\d\\ell$, $\\sigma\\d A$, or $\\rho\\d V$, so the real work becomes geometry: writing the vector from each source element to the field point, and letting symmetry cancel the components that must cancel before any integral is attempted. We carry the line, ring, and disk fields through in full, then check each result against its near field, its far field, and its dimensions.\n",{"path":10674,"title":10675,"module":10671,"summary":10676},"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors","Gauss's Law and Conductors","Adding up Coulomb's law over a whole distribution is laborious; Gauss's law trades that sum for a single statement, that the flux of $\\vec E$ out of any closed surface counts the charge inside, $\\oint\\vec E\\cdot\\d\\vec A=Q_{\\rm enc}\u002F\\varepsilon_0$. The law is always true, but it hands over the field only when the source is symmetric enough to pull $E$ outside the integral. We apply it to spheres, lines, and sheets, then turn it on conductors, where the zero interior field drives every excess charge to the surface and fixes the normal-field jump $\\sigma\u002F\\varepsilon_0$, the charge induced on a cavity wall, and electrostatic shielding.\n",{"path":10678,"title":10679,"module":10680,"summary":10681},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential","Point-Charge Potential","Electric Potential","The electrostatic force is conservative, so the work it does between two points\ndepends only on the endpoints. That lets us trade the vector field for a single\nscalar attached to each point, the electric potential, the potential energy a unit\ncharge would have there. We build potential from the work integral, fix the usual\nreference at infinity, and add point sources as scalars, $V=k\\sum_i q_i\u002Fr_i$,\navoiding the vector bookkeeping the field demands. Signed charges, the reference\nchoice, equipotential motion, and far-field expansions each give an independent\ncheck on a result.\n",{"path":10683,"title":10684,"module":10680,"summary":10685},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials","Potential Gradients and Equipotentials","Given the potential everywhere, how do we recover the field? The field is the\nnegative gradient, $\\vec E=-\\nabla V$: it points down the steepest local drop in\npotential, and its magnitude is set by how fast $V$ changes, not by the shape of a\ncontour. We read off components with directional derivatives, reconstruct fields\nfrom measured potential grids using centered differences, and use closed-loop\nintegrals and grid refinement to test whether a reconstructed field is physically\nconsistent.\n",{"path":10687,"title":10688,"module":10680,"summary":10689},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure","Electrostatic Energy and Pressure","Assembling a charge configuration takes work, and that work is stored, but where\nis it kept and how much is there? We total it two ways: as a sum over the charges,\n$U=\\tfrac12\\sum_i q_iV_i$, and as an integral over the field itself,\n$u_E=\\tfrac12\\varepsilon_0E^2$, energy the field carries in every region it fills.\nDifferentiating the stored energy at fixed charge or at fixed voltage recovers the\nmechanical force on a conductor, and at a charged surface the same field scale\nappears as an outward electrostatic pressure. We work the parallel-plate case in\nfull and mark where curvature and fringing make the pressure nonuniform.\n",{"path":10691,"title":10692,"module":10680,"summary":10693},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems","Laplace Boundary Problems","Often the charges are not given, only the conductors and the voltages held on\nthem, and the potential in the empty space between has to be found. There $V$ obeys\nLaplace's equation $\\nabla^2V=0$, and the boundary data alone determine a unique solution.\nWe solve it two ways: separation of variables into boundary-matched modes, whose\nhigher spatial frequencies die away with depth into the domain, and finite-difference\nrelaxation for boundaries no analytic mode fits. Residual norms, boundary error, and\nflux balance tell us when the computed potential and its field can be trusted.\n",{"path":10695,"title":10696,"module":10680,"summary":10697},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials","Continuous Charge Potentials","When charge is spread over a line, a surface, or a volume, the sum over point\nsources becomes an integral, $V(\\vec r)=k\\int \\d q\u002F|\\vec r-\\vec r'|$. Because\npotential is a scalar, this integral sidesteps the component algebra the field\nwould force, until the field is actually wanted through $\\vec E=-\\nabla V$. We set\nup the right density element for each geometry, choose a workable reference, handle\nthe integrable singularities that arise when the observation point sits on the\ncharge, and check every result against symmetry, dimensions, and the far-field\nmultipole limit.\n",{"path":10699,"title":10700,"module":10701,"summary":10702},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals","Capacitance Fundamentals","Capacitance","How much charge must you separate onto two conductors to hold a given voltage between\nthem? That ratio, $C=Q\u002F\\Delta V$, is fixed by the conductor geometry and the medium,\nnot by how much charge is presently stored. We compute it from the field for the\nparallel-plate, isolated-sphere, concentric-sphere, and coaxial geometries, trace how\nsurface charge and boundary conditions set each result, and see where fringing,\nguarding, and stray coupling separate the ideal formula from what a bridge measures.\n",{"path":10704,"title":10705,"module":10701,"summary":10706},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks","Capacitor Networks","Wire several capacitors together and the source sees one equivalent capacitance — but\nwhich? The answer comes not from how the symbols are drawn but from which conductors\nshare a node: parallel branches hold a common voltage and add, $C_{\\rm eq}=\\sum_iC_i$,\nwhile series branches share a common charge and add reciprocally. We derive both rules\nfrom charge conservation on the floating internal node, then extend the node-charge\nmethod to unequal, precharged, and stray-coupled branches and carry a worked reduction\nthrough to the charge and voltage on every element.\n",{"path":10708,"title":10709,"module":10701,"summary":10710},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force","Capacitor Energy and Force","Charging a capacitor takes work, because every increment of charge is pushed through\nthe voltage the earlier charge already established. We total that work three\nequivalent ways, $U=Q^2\u002F(2C)=Q\\Delta V\u002F2=C(\\Delta V)^2\u002F2$, locate it in the field as\na density $u=\\tfrac12\\epsilon_0E^2$, then let the plates move. Differentiating the\nstored energy at fixed charge, or the coenergy at fixed voltage, gives the mechanical\nforce; the two boundaries differ only by the work the source supplies. We work the\nparallel-plate attraction and its electrostatic pressure in full, and follow the same\ngradient into pull-in, tilt, comb drives, and traceable force calibration.\n",{"path":10712,"title":10713,"module":10701,"summary":10714},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown","Dielectric Polarization and Breakdown","Slide a dielectric between the plates and the capacitance rises — but why, and how\nhard can you drive it before the insulator fails? Bound charge answers the first:\npolarization $\\vec P$ sets up surface and volume charge that partly cancels the\napplied field, so $\\vec D=\\varepsilon_0\\vec E+\\vec P$ separates what the circuit\ncontrols from what the material contributes. We follow the field across layered\ndielectrics and interfaces, tie permittivity and loss to their frequency dependence,\nand treat dielectric strength as a measured, geometry-dependent limit rather than one\nmaterial number.\n",{"path":10716,"title":10717,"module":10718,"summary":10719},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance","Current and Resistance","Direct-Current Circuits","What does it mean, physically, for charge to flow, and what sets how hard a wire resists that flow? Current counts charge crossing a surface, $I=\\int\\vec J\\cdot\\d\\vec A$, and traces back to a slow drift of many carriers, $\\vec J=nq\\vec v_d$. We establish when the linear law $V=IR$ actually holds, how resistivity and geometry combine into bulk resistance, why real sources sag under load through their internal resistance, and how the three power forms $P=IV=I^2R=V^2\u002FR$ tie electrical work to heating and component ratings.\n",{"path":10721,"title":10722,"module":10718,"summary":10723},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis","Kirchhoff Network Analysis","Once a circuit has more than one loop, no amount of series-parallel folding will reduce it — you need the two conservation laws written as equations. Kirchhoff's junction law is charge conservation at a node; his loop law is energy conservation around a closed path. We turn a labelled network into a linear system in node voltages or mesh currents, fix the sign conventions so a negative answer just means a reversed arrow, and use power balance as an independent check that the algebra describes the circuit that was actually built.\n",{"path":10725,"title":10726,"module":10718,"summary":10727},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients","RC Transients","How does a circuit get from one steady state to the next when a capacitor refuses to change its voltage all at once? Because a jump would demand infinite current, an RC circuit slides between states exponentially, with a single time constant $\\tau=RC$ that sets the whole schedule: charging fills as $1-e^{-t\u002F\\tau}$, discharge empties as $e^{-t\u002F\\tau}$. We solve the first-order loop equation, read the response off three numbers — the switch-instant voltage, the final dc voltage, and the Thevenin resistance the capacitor sees — and mark where source and probe resistance shift $\\tau$ or where a second storage element hides a mode a one-$\\tau$ fit misses.\n",{"path":10729,"title":10730,"module":10731,"summary":10732},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories","Magnetic Trajectories","Magnetic Field","A charged particle in a magnetic field never speeds up or slows down, yet its path curves relentlessly. We work out why: the magnetic force is always perpendicular to velocity, so it does no work and bends the transverse motion into a circle of radius $r=mv_\\perp\u002F(|q|B)$ while leaving the parallel motion untouched, producing a helix. We derive the cyclotron frequency, show why it is independent of speed until relativity intervenes, and turn the geometry around: a measured curvature reads back a particle's momentum, which is how tracking detectors weigh what they cannot see.\n",{"path":10734,"title":10735,"module":10731,"summary":10736},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect","Hall Effect","Current tells you charge is moving, but not whether the movers are positive or negative, nor how many there are. A magnetic field settles both questions. Push current through a strip in a transverse field and the carriers pile up on one edge until a transverse electric field just balances the magnetic deflection; the sign of the resulting Hall voltage names the carrier's charge and its size counts the carriers per volume. We derive the balance $q\\vec E+q\\vec v_d\\times\\vec B=0$, read off $V_H=IB\u002F(nqt)$, and see why field-and-current reversal is what separates the real Hall signal from the offsets that mimic it.\n",{"path":10738,"title":10739,"module":10731,"summary":10740},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors","Magnetic Force on Conductors","A magnet pushes on a current-carrying wire even though the wire is electrically neutral. The reason is that each moving carrier feels the Lorentz force, and those microscopic pushes add up to a force the wire's supports must hold. We sum them into $\\d\\vec F=I\\,\\d\\vec\\ell\\times\\vec B$, collapse it to $\\vec F=I\\vec L\\times\\vec B$ for a straight segment in a uniform field, and see exactly when that shortcut fails and the full path integral is needed. The same law runs backward as a measurement: a force-versus-current slope weighs a magnetic field against a known length.\n",{"path":10742,"title":10743,"module":10731,"summary":10744},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles","Magnetic Dipoles","A compass needle turns to point north; a current loop in a field does the same thing, and for the same reason. Both are magnetic dipoles, and a uniform field cannot push a dipole anywhere, only twist it. We package a loop's response into one vector, the magnetic moment $\\vec\\mu=IA\\hat n$, from which torque $\\vec\\tau=\\vec\\mu\\times\\vec B$ and orientation energy $U=-\\vec\\mu\\cdot\\vec B$ both follow. Stable alignment sits at the energy minimum, a field gradient is what it takes to produce a net force $\\vec F=\\nabla(\\vec\\mu\\cdot\\vec B)$, and the same moment reappears whenever anything from an electron to a planet acts magnetic.\n",{"path":10746,"title":10747,"module":10731,"summary":10748},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry","Mass Spectrometry","To weigh a single atom you cannot use a scale, so you use a magnetic field instead. A charged ion of unknown mass bends in a field by an amount that depends on its momentum and charge, so if every ion enters with the same velocity, its landing position reads off its mass-to-charge ratio directly. We build the instrument in two stages: crossed electric and magnetic fields that pass only ions with $v=E\u002FB$, and a magnetic sector that bends the survivors along $r=mv\u002F(|q|B)$. Then we ask what blurs a spectral line and how reference ions turn a position into a calibrated mass.\n",{"path":10750,"title":10751,"module":10752,"summary":10753},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields","Moving-Charge Fields","Magnetic Sources","Every magnetic field comes from charge in motion, and the simplest source is a single point charge drifting past. We work out the field it produces — normal to both the velocity and the line of sight, falling off as the inverse square — and read off why it vanishes straight ahead of the charge and peaks broadside. Summing many such charges is the bridge to steady currents, valid while speeds stay far below $c$ and the motion changes little during the time its field takes to propagate outward.\n",{"path":10755,"title":10756,"module":10752,"summary":10757},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law","Biot–Savart Law","A steady current is a continuous stream of current elements, and the Biot–Savart law hands each one a magnetic contribution — a right-hand cross product that falls off as the inverse square of distance. Summing the contributions along a conductor is a vector line integral, which we carry out for the straight wire to get the endpoint-angle formula. The infinite-wire field $B=\\mu_0 I\u002F2\\pi s$ falls out as the limit where both ends recede, and we mark how fast a finite wire departs from it and when a thin-filament model is safe.\n",{"path":10759,"title":10760,"module":10752,"summary":10761},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops","Circular Current Loops","A ring of current is the simplest source with a well-defined magnetic axis, and it is the building block of every coil and electromagnet. Symmetry kills the transverse Biot–Savart contributions along that axis and leaves a single clean integral; we evaluate it to get $B_z=\\mu_0 I R^2\u002F[2(R^2+z^2)^{3\u002F2}]$, read off the centre field $\\mu_0 I\u002F2R$, and watch it fall into the $1\u002Fz^3$ tail of a magnetic dipole far away. Stacking turns just adds their axial contributions, which is what makes a solenoid out of a pile of loops.\n",{"path":10763,"title":10764,"module":10752,"summary":10765},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law","Ampère’s Law","When a current arrangement is symmetric enough, the Biot–Savart integral is overkill: Ampère's law, $\\oint_C\\vec B\\cdot\\d\\vec\\ell=\\mu_0 I_{\\rm enc}$, gets the field from a single line of reasoning about how much current a loop encloses. We see why the law holds for any steady current, then use cylindrical, planar, and toroidal symmetry to turn the circulation into simple algebra — the field inside and outside a wire, an infinite sheet, a solenoid, and a toroid. We also mark the catch: without symmetry the law still holds but no longer hands you the field pointwise.\n",{"path":10767,"title":10768,"module":10752,"summary":10769},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism","Gauss’s Law for Magnetism","Electric field lines start and end on charges; magnetic field lines do neither, because no one has ever found an isolated magnetic pole. That single experimental fact is Gauss's law for magnetism: the flux of $\\vec B$ through any closed surface is zero, $\\oint\\vec B\\cdot\\d\\vec A=0$, or in differential form $\\nabla\\cdot\\vec B=0$. We work through what it says — every field line that enters a closed surface must leave it, so field lines close on themselves — and, just as important, what it does not say, since flux through an open surface is generally nonzero.\n",{"path":10771,"title":10772,"module":10752,"summary":10773},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials","Magnetic Materials","Put matter in a magnetic field and its atoms respond, each acting as a tiny current loop; the aligned moments per unit volume are the magnetization $\\vec M$, whose bound currents add to the field. Separating what we control (the free current) from what the material supplies leads to $\\vec H$ and the relation $\\vec B=\\mu_0(\\vec H+\\vec M)$. We sort materials into diamagnets, paramagnets, and ferromagnets by how $\\vec M$ answers, follow a ferromagnet around its hysteresis loop, and see why the loop's area is the energy dissipated per cycle and why a sample's shape changes the field it actually feels.\n",{"path":10775,"title":10776,"module":10777,"summary":10778},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux","Magnetic Flux","Electromagnetic Induction","A magnetic field threading a loop collapses to one signed number, the flux, and every induced voltage in this module turns out to be a rate of change of that number — so defining the flux and its sign comes first. We define it as the surface integral of $\\vec B$ over an oriented surface, reduce it to $BA\\cos\\theta$ for a uniform field on a flat loop, and carry the flux linkage $N\\Phi_B$ of a coil. The chosen normal fixes the sign; reversing it flips the sign without touching the field. Nonuniform fields and curved surfaces force the integral, so we also build the numerical estimate and the checks that separate a reliable value from a nominal field-times-area product.\n",{"path":10780,"title":10781,"module":10777,"summary":10782},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law","Faraday's Law","Move a magnet toward a coil, or ramp the current in a nearby circuit, and a voltage appears with no battery in sight. Faraday's law names the cause: the emf around a loop equals minus the rate of change of the magnetic flux through it, so any change of field, area, orientation, or position that alters the flux drives an emf. We separate the emf, which lives around the boundary whether or not current can flow, from the current that follows only when the path is closed; fix the single sign convention that ties flux to loop orientation; and read the emf off rotating coils and off flux sampled at discrete times.\n",{"path":10784,"title":10785,"module":10777,"summary":10786},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law","Lenz's Law","The minus sign in Faraday's law is not decoration: it decides which way the induced current flows, and it always chooses the direction that fights the change that produced it. Lenz's law reads that sign off energy conservation — a current that aided the change would be free energy — and turns it into a repeatable procedure. We fix a surface normal and a positive loop direction so the sign is calculable, then work through approaching magnets, expanding loops, coupled coils, and rotating generators, using mechanical work and Joule heating as an independent check on every direction we draw.\n",{"path":10788,"title":10789,"module":10777,"summary":10790},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf","Motional EMF","Push a wire through a magnetic field and its free charges feel a sideways magnetic force that piles them up at the ends — a battery made of motion. Motional emf is that effect: the work per unit charge a moving conductor supplies is the line integral of $\\vec v\\times\\vec B$ along it, which for a rod moving perpendicular to both its length and the field collapses to $B\\ell v$. We chase where the energy comes from — the hand or motor fighting the magnetic drag, never the magnetic force itself — solve the sliding-rail circuit from both flux and carrier forces, and carry the idea into rotating rods, homopolar disks, generators, and the back emf of a motor.\n",{"path":10792,"title":10793,"module":10777,"summary":10794},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents","Eddy Currents","A wire carries current along one path; a solid block of metal offers a continuum of them, and any changing flux threading that block sets charge circulating in closed loops it chooses for itself. We ask what those eddy currents do — where they heat, where they drag, and how Lenz's law fixes their direction — and why the same circulation is a feature in an induction furnace and a loss to be suppressed in a transformer core. From a representative-loop estimate we get the scaling (heating grows with the square of frequency and flux rate) and the two design levers, lamination and resistivity, that break the paths a solid conductor would otherwise hand the current.\n",{"path":10796,"title":10797,"module":10777,"summary":10798},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance","Self-Inductance","A coil resists changes to its own current. Drive current through it and the flux it produces threads its own turns; change that current and Faraday's law turns the coil against the source with a back emf $\\mathcal E_L=-L\\,\\d I\u002F\\d t$. We define self-inductance as the flux linkage per ampere fixed by winding and core geometry, derive the long-solenoid value $L=\\mu_0 N^2A\u002F\\ell$, and follow the consequence that dominates circuits: because a finite voltage can only sustain a finite $\\d I\u002F\\d t$, an inductor's current cannot jump — which is why opening a switch on a live coil throws a spark.\n",{"path":10800,"title":10801,"module":10777,"summary":10802},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy","Magnetic Energy","Building current in a coil means working against its back emf, and that work does not vanish — it sits in the magnetic field as recoverable energy $U_B=\\tfrac12LI^2$, spread through space at density $u_B=B^2\u002F(2\\mu_0)$. We derive both forms, show they agree for a solenoid, and read a force out of the same energy: an armature is pulled toward higher inductance, and $B^2\u002F(2\\mu_0)$ doubles as a magnetic pressure. The lesson closes on the accounting a real switching event demands, where recoverable energy, copper heating, core loss, and clamp dissipation must balance a single ledger.\n",{"path":10804,"title":10805,"module":10777,"summary":10806},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits","RL Circuits","Put a resistor and an inductor in series and the current cannot switch on or off at will: it climbs to $V_0\u002FR$ and falls away exponentially on a single time scale $\\tau=L\u002FR$ set by how much flux the coil hoards against how fast the resistor bleeds it. We solve the turn-on and turn-off, then confront the practical sting — because the coil's current refuses to stop instantly, breaking its path throws up a large voltage, which is why real inductive circuits carry freewheel diodes and clamps that trade voltage stress against how quickly the current dies.\n",{"path":10808,"title":10809,"module":10810,"summary":10811},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals","AC Fundamentals","Alternating Current","A wall socket delivers a voltage that averages to zero over each cycle, yet it still heats a filament and runs a motor. The resolution is that dissipation follows the mean of the square, not the mean, so we define the root-mean-square value that makes an alternating source the equal of a DC one for resistive heating. We show a sinusoid's RMS is its peak divided by $\\sqrt2$, work out the average power an ideal resistor draws when its current stays in phase with the applied voltage, and separate the peak, average, and RMS descriptions that a single number cannot combine.\n",{"path":10813,"title":10814,"module":10810,"summary":10815},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance","Reactance","A resistor obeys Ohm's law instant by instant, but a capacitor responds to how fast its voltage changes and an inductor to how fast its current changes. Under a steady sinusoid that rate-dependence collapses to a fixed quarter-cycle phase shift and a frequency-dependent amplitude ratio, the reactance. We derive $X_C=1\u002F(\\omega C)$ and $X_L=\\omega L$, adopt phasors to turn the defining derivatives into multiplication by $j\\omega$ so a single complex impedance carries amplitude and phase together, and track the energy an ideal reactance stores and returns without dissipating it. Real windings and dielectrics add loss, leakage, and self-resonance that bound where the ideal formulas hold.\n",{"path":10817,"title":10818,"module":10810,"summary":10819},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance","RLC Resonance","Put a resistor, inductor, and capacitor in one loop and their reactances work against each other: inductive reactance grows with frequency while capacitive reactance shrinks, and at one frequency they cancel exactly. There the branch looks purely resistive, the current peaks, and the inductor and capacitor voltages can swing far above the source. We locate that resonance at $\\omega_0=1\u002F\\sqrt{LC}$, measure how sharp the peak is with the quality factor $Q=\\omega_0L\u002FR$, tie its half-power bandwidth $R\u002FL$ to the ringdown of the unforced circuit, and read the same poles off as bandpass and peaked filters at the R, L, or C terminals.\n",{"path":10821,"title":10822,"module":10810,"summary":10823},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power","AC Power","Multiply an AC load's RMS voltage by its RMS current and you get an answer in volt-amperes that the wiring must carry, but not in general the watts the load consumes. The phase between voltage and current splits that product into a part that does net work and a part that merely sloshes energy back and forth. We derive the average power $P=V_{\\rm rms}I_{\\rm rms}\\cos\\phi$, package amplitude and phase into complex power $S=P+jQ$ so that real, reactive, and apparent power form one right triangle, and see why a harmonic-rich current forces the time-domain definition $P=\\langle vi\\rangle$ in place of a single phase angle.\n",{"path":10825,"title":10826,"module":10810,"summary":10827},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers","Transformers","Two coils sharing an iron core exchange no charge, yet a changing current in one drives a voltage in the other, and the ratio of their turns sets how voltage and current trade off between the windings. That lets a transformer step a voltage up or down, isolate two circuits, and make a load look larger or smaller to the source by the square of the turns ratio. We build the ideal ratio element from Faraday's law and the dot convention, derive the reflected-impedance rule, then add the winding resistance, leakage, magnetizing current, and core loss that turn the ideal ratios into real regulation, efficiency, and a bounded voltage-frequency range.\n",{"path":10829,"title":10830,"module":10831,"summary":10832},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current","Displacement Current","Maxwell’s Equations and Electromagnetic Waves","Ampère's law asks for the current through a surface bounded by a loop, but a charging capacitor breaks it: slide the surface off the wire and into the gap and the enclosed conduction current drops to zero, while the magnetic field around the loop plainly does not. Maxwell's repair is to count a changing electric flux as itself a source of magnetic circulation. We derive the displacement-current term $\\varepsilon_0\\,\\d\\Phi_E\u002F\\d t$, show that charge continuity demands it, compute the magnetic field it produces inside a charging capacitor, and see how it closes the Ampère–Maxwell law so that electric and magnetic fields can sustain one another as a wave.\n",{"path":10834,"title":10835,"module":10831,"summary":10836},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves","Electromagnetic Waves","Once a changing electric flux can drive a magnetic field, the two curl laws feed each other: a disturbance in one regenerates the other, and the pair walks off through empty space with no medium holding it up. We take the curl of Faraday's law, land on a wave equation whose speed is fixed entirely by $\\mu_0$ and $\\varepsilon_0$, and find that $c=1\u002F\\sqrt{\\mu_0\\varepsilon_0}$ falls out of purely electric and magnetic constants. The plane-wave solution then fixes the geometry — $\\vec E$, $\\vec B$, and the propagation direction mutually perpendicular, oscillating in phase, with amplitudes locked at $E=cB$ — a set of independent predictions any real measurement must meet at once.\n",{"path":10838,"title":10839,"module":10831,"summary":10840},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum","Electromagnetic Momentum","A light beam carries no mass, yet it pushes: shine it on a surface and the surface feels a force. We trace that force back to the fields, which store energy with density $\\varepsilon_0E^2$ and carry it along the Poynting vector $\\vec S=\\vec E\\times\\vec B\u002F\\mu_0$. Because that energy also carries momentum $U\u002Fc$, an absorbed beam presses with $I\u002Fc$ and a mirror with $2I\u002Fc$. We derive the Poynting theorem as local energy conservation, tie intensity to field amplitude, and work the momentum balance carefully enough that oblique incidence, partial reflection, and finite beams all drop out of one accounting.\n",{"path":10842,"title":10843,"module":10831,"summary":10844},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation","Dipole Radiation","Only accelerating charge radiates, and the simplest accelerator is a charge sloshing back and forth: an oscillating electric dipole. We work out the field it throws off, keeping the part that survives to large distance — the $1\u002Fr$ radiation field whose intensity goes as $\\sin^2\\theta\u002Fr^2$, zero along the dipole axis and strongest broadside. From it follow the $\\omega^4$ scaling of total radiated power, radiation resistance as the feed's view of that escaping power, and, through reciprocity, the fact that a good transmitter receives well in the same directions. The near-zone terms that fall off faster carry no net power, and we mark carefully where each description is allowed to be used.\n",{"path":10846,"title":10847,"module":10831,"summary":10848},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization","Polarization","A plane wave still leaves one thing free: which way its electric field points as it oscillates. That freedom is polarization, set entirely by the relative amplitude and phase of the two transverse field components — in phase gives a line, equal amplitudes a quarter cycle apart give a circle, everything else an ellipse. We work out how a linear analyzer reads a state through Malus's law $I=I_0\\cos^2\\theta$, why that scan alone cannot tell circular light from unpolarized, and how a quarter-wave plate plus a few analyzer settings recover the full Stokes vector and the degree of polarization.\n",{"path":10850,"title":10851,"module":10852,"summary":10853},"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction","Reflection and Refraction","Geometrical Optics","Light meeting a boundary between two transparent media splits into a reflected ray and a bent transmitted one, and predicting where those rays go is the whole starting point of geometrical optics. Fixing one convention — every angle measured from the surface normal — we get reflection's equal angles and derive Snell's law $n_1\\sin\\theta_1=n_2\\sin\\theta_2$ from wavefront timing. That single relation, applied once or twice, yields the critical angle and total internal reflection, prism deviation, the lateral shift through a window, apparent depth, and a fiber's acceptance cone; a wavelength-dependent index then adds dispersion. We mark throughout where the ray picture is trustworthy: feature sizes large against the wavelength and clean interface geometry.\n",{"path":10855,"title":10856,"module":10852,"summary":10857},"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses","Thin Lenses","A lens gathers the light spreading from one point back onto another, and a single paraxial relation $1\u002Fs+1\u002Fs'=1\u002Ff$ predicts where that image lands and how large it is. We collapse two refractions into one bending plane, read image position and orientation off the three principal rays, and trace focal length back to glass and curvature through the lensmaker equation. Sign conventions carry the physics here — they separate real from virtual images and upright from inverted — so we drill them before chaining lenses in sequence and in contact. The lesson ends on how focal length is actually measured on a bench, and where finite thickness, aperture, and dispersion break the thin-lens picture.\n",{"path":10859,"title":10860,"module":10852,"summary":10861},"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors","Spherical Mirrors","Curve a mirror and it stops merely reflecting an image and starts forming one: the same $1\u002Fs+1\u002Fs'=1\u002Ff$ that governs lenses reappears, now with $f=R\u002F2$ and reflected rays and object sharing one side of the glass. We derive the mirror equation from the reflection geometry of a single paraxial ray, then let signed distances do the sorting — real inverted images on the near branch, virtual upright ones behind the surface — and check the concave, convex, and plane-mirror limits against each other. The second half turns to how focal length is actually measured on a bench, by finite conjugates, distant targets, return imaging, and sagitta, and to the aperture and off-axis aberrations the single paraxial focus cannot capture.\n",{"path":10863,"title":10864,"module":6,"summary":6},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":10866,"title":10867,"module":10868,"summary":10869},"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms","Systems of Linear Equations and Row Reduction","Linear Equations in Linear Algebra","A linear system is a finite set of linear equations in shared variables. Elementary row operations rewrite it without changing its solution set, and reducing the augmented matrix to echelon form decides both existence and uniqueness. Pivot positions say whether the solution set is empty, a single point, or infinite.\n",{"path":10871,"title":10872,"module":10868,"summary":10873},"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations","Vector Equations and the Matrix Equation Ax = b","The same linear system reads three equivalent ways: a system of equations, a vector equation asking whether b is a linear combination of fixed vectors, and a matrix equation Ax = b. Ax is the linear combination of A's columns weighted by x, so consistency for a given b means b lies in the span of the columns, and consistency for every b means the columns span all of R^m.\n",{"path":10875,"title":10876,"module":10868,"summary":10877},"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications","Solution Sets and Applied Linear Systems","A homogeneous system Ax = 0 has a solution set that is a span through the origin; a consistent Ax = b has that same span translated by any one particular solution. Parametric vector form writes both explicitly. The structure shows up in applied systems with many solutions: equilibrium prices, balanced chemical reactions, network flows, weight-loss diets, and migration models.\n",{"path":10879,"title":10880,"module":10868,"summary":10881},"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence","Linear Independence","A set of vectors is linearly independent when the only linear combination equal to zero is the trivial one; otherwise a dependence relation writes one vector in terms of the others. For the columns of A the question becomes whether Ax = 0 has only the trivial solution — a pivot in every column. Counting pivots settles independence, and any set with more vectors than entries is automatically dependent.\n",{"path":10883,"title":10884,"module":10868,"summary":10885},"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations","Linear Transformations and Their Matrices","Reading A as an action rather than an array, x maps to Ax is a transformation from R^n to R^m. The ones that preserve addition and scalar multiplication are the linear transformations, and every one is x maps to Ax for a unique standard matrix whose columns are the images of the standard basis vectors. Onto and one-to-one translate into the span and independence of those columns.\n",{"path":10887,"title":10888,"module":10889,"summary":10890},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations","Matrix Operations","Matrix Algebra","Matrices add and scale entrywise, but their product is defined so that multiplication corresponds to composition of linear maps: the columns of AB are A applied to the columns of B. From that requirement follow the row-column rule, the algebra of products (associative and distributive but not commutative), powers, and the transpose.\n",{"path":10892,"title":10893,"module":10889,"summary":10894},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility","The Inverse and the Invertible Matrix Theorem","The inverse of a square matrix is the matrix analogue of a reciprocal, defined by AA⁻¹ = I. A closed form settles the 2×2 case; the Gauss–Jordan algorithm row reduces [A | I] to [I | A⁻¹] in general; and elementary matrices record single row operations. The Invertible Matrix Theorem collects a dozen equivalent conditions for invertibility into one statement.\n",{"path":10896,"title":10897,"module":10889,"summary":10898},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu","Block Matrices and the LU Factorization","Partitioning a matrix into blocks lets sums, products, and inverses be computed block by block, as if the submatrices were scalars. Block structure also underlies the LU factorization A = LU, which splits solving Ax = b into two fast triangular solves and repays the cost whenever many systems share one coefficient matrix.\n",{"path":10900,"title":10901,"module":10889,"summary":10902},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank","Subspaces of Rⁿ, Dimension, and Rank","A subspace is a set closed under addition and scalar multiplication. Every matrix carries two: the column space of all attainable outputs Ax, and the null space of all solutions of Ax = 0. A basis measures each with a minimal spanning set, dimension counts it, and the Rank Theorem ties pivots and free variables together as rank + nullity = n.\n",{"path":10904,"title":10905,"module":10889,"summary":10906},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics","Applications: Leontief Economics and Computer Graphics","The Leontief input–output model balances an economy through (I − C)x = d and expands the inverse as a geometric series in the consumption matrix. Computer graphics moves figures with matrix products, using homogeneous coordinates so that translation and perspective projection become matrix multiplications too.\n",{"path":10908,"title":10909,"module":10910,"summary":10911},"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors","Introduction to Determinants","Determinants","The determinant of a square matrix is defined recursively by cofactor expansion: an n-by-n determinant is a signed sum of (n-1)-by-(n-1) determinants built from the first row. The expansion can equally run along any row or down any column, and a triangular matrix has determinant equal to the product of its diagonal.\n",{"path":10913,"title":10914,"module":10910,"summary":10915},"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants","Properties of Determinants","Row operations act on the determinant in three predictable ways, and this turns row reduction into a fast algorithm: the determinant is the product of the pivots times a sign for the interchanges. The same properties yield the invertibility test det A is nonzero, the transpose identity, and the multiplicative law det(AB) equals det A times det B.\n",{"path":10917,"title":10918,"module":10910,"summary":10919},"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area","Cramer's Rule, Volume, and Linear Transformations","Cramer's rule writes each unknown of an invertible system as a ratio of determinants, and the same idea gives a closed formula for the inverse through the adjugate. Geometrically the absolute determinant is the area of the parallelogram or the volume of the parallelepiped spanned by the columns, so a linear map scales every region's measure by that factor.\n",{"path":10921,"title":10922,"module":10923,"summary":10924},"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces","Vector Spaces and Subspaces","Vector Spaces","A vector space is any set closed under addition and scalar multiplication that obeys ten algebraic axioms. The same axioms that govern arrows in the plane govern polynomials, functions, matrices, and infinite signals, so one theory covers them all. A subspace is a subset that is a vector space in its own right, tested by three conditions, and the span of any set of vectors is the smallest subspace containing them.\n",{"path":10926,"title":10927,"module":10923,"summary":10928},"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces","Null Spaces, Column Spaces, and Linear Transformations","Two subspaces sit inside every matrix. The null space collects all solutions of $Ax = 0$ and lives in the domain; the column space collects every attainable $Ax$ and lives in the codomain. One is defined implicitly by a condition, the other explicitly by a spanning set, and the same pair appears for an abstract linear transformation as its kernel and range.\n",{"path":10930,"title":10931,"module":10923,"summary":10932},"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets","Linearly Independent Sets and Bases","A basis is a spanning set with no redundancy: linearly independent and still large enough to reach every vector. The spanning-set theorem shows any spanning set can be trimmed to a basis by discarding dependent vectors, and the pivot columns of a matrix give a basis for its column space. Independence and spanning are defined for abstract spaces exactly as in $\\mathbb{R}^n$.\n",{"path":10934,"title":10935,"module":10923,"summary":10936},"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems","Coordinate Systems","Fixing a basis assigns every vector a unique list of coordinates, turning an abstract space into $\\mathbb{R}^n$. The coordinate mapping is a one-to-one linear transformation onto $\\mathbb{R}^n$ — an isomorphism — so any $n$-dimensional space is indistinguishable from $\\mathbb{R}^n$ as far as vector-space computations go. In $\\mathbb{R}^n$ the change-of-coordinates matrix $P_B$ and its inverse convert between basis coordinates and standard coordinates.\n",{"path":10938,"title":10939,"module":10923,"summary":10940},"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank","The Dimension of a Vector Space and Rank","Every basis of a space has the same number of vectors, and that number is the dimension. Rank is the dimension of the column space, equal to the dimension of the row space and to the number of pivots. The Rank Theorem, rank plus nullity equals the number of columns, ties the four fundamental subspaces of a matrix together and adds six lines to the Invertible Matrix Theorem.\n",{"path":10942,"title":10943,"module":10923,"summary":10944},"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis","Change of Basis","Two bases give the same vector two different coordinate vectors, and a single invertible matrix converts between them. Its columns are the coordinate vectors of the old basis expressed in the new one, and its inverse reverses the conversion. In $\\mathbb{R}^n$ the change-of-coordinates matrix between two bases is found by one row reduction.\n",{"path":10946,"title":10947,"module":10923,"summary":10948},"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov","Applications: Difference Equations and Markov Chains","The solutions of an nth-order linear difference equation form an $n$-dimensional vector space, so finding $n$ independent solutions gives them all. A Markov chain evolves a probability distribution by repeated multiplication by a stochastic matrix, and a regular chain converges to a unique steady-state vector fixed by that matrix. Both applications turn a dynamic process into a subspace or a fixed-point question.\n",{"path":10950,"title":10951,"module":10952,"summary":10953},"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues","Eigenvectors and Eigenvalues","Eigenvalues and Eigenvectors","An eigenvector of a square matrix is a nonzero vector the matrix only stretches; its eigenvalue is the stretch factor. The eigenspace of an eigenvalue is the null space of A minus lambda times the identity, the eigenvalues of a triangular matrix are its diagonal entries, and eigenvectors for distinct eigenvalues are linearly independent.\n",{"path":10955,"title":10956,"module":10952,"summary":10957},"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation","The Characteristic Equation","The eigenvalues of a matrix are the roots of its characteristic polynomial det(A minus lambda I). This degree-n polynomial carries an algebraic multiplicity at each repeated root, a nonzero determinant is equivalent to zero not being an eigenvalue, and similar matrices share a characteristic polynomial and hence the same eigenvalues.\n",{"path":10959,"title":10960,"module":10952,"summary":10961},"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization","Diagonalization","A matrix is diagonalizable when it factors as A equals P D P inverse with D diagonal, which happens exactly when it has n linearly independent eigenvectors. The factorization computes matrix powers cheaply, distinct eigenvalues guarantee it, and a repeated eigenvalue permits it only when its eigenspace dimension equals its multiplicity.\n",{"path":10963,"title":10964,"module":10952,"summary":10965},"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations","Eigenvectors and Linear Transformations","Every linear transformation between finite-dimensional spaces has a matrix relative to chosen bases, built from the coordinate vectors of the images of the basis vectors. For a map from a space to itself, an eigenvector basis makes that matrix diagonal, and that change of basis is diagonalization; the matrices similar to A are the representations of the map in every basis.\n",{"path":10967,"title":10968,"module":10952,"summary":10969},"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues","Complex Eigenvalues","A real matrix with no real eigenvalues still has complex ones, occurring in conjugate pairs. A real 2-by-2 matrix with eigenvalue a plus b i is similar to a rotation-scaling matrix, whose rotation angle is the argument of the eigenvalue and whose scale factor is its modulus; the modulus decides whether the trajectories close up, spiral in, or spiral out.\n",{"path":10971,"title":10972,"module":10952,"summary":10973},"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems","Discrete and Continuous Dynamical Systems","Eigenvalues govern the long-term behavior of a system that evolves by x becomes A x or by x prime equals A x. An eigenvector basis decouples both kinds of system into independent scalar equations; the eigenvalues then classify the origin as attractor, repeller, saddle, or spiral, and the dominant eigenpair fixes the growth rate and limiting direction.\n",{"path":10975,"title":10976,"module":10952,"summary":10977},"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method","Iterative Estimates for Eigenvalues","When only a numerical eigenvalue is needed, iteration is preferred over the characteristic polynomial. The power method repeatedly multiplies by A to converge on the dominant eigenvalue and its eigenvector; the Rayleigh quotient sharpens the estimate for symmetric matrices; and the inverse power method targets any eigenvalue near a known guess.\n",{"path":10979,"title":10980,"module":10981,"summary":10982},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality","Inner Product, Length, and Orthogonality","Orthogonality and Least Squares","The dot product turns the algebra of vectors in R^n into geometry: length, distance, and perpendicularity. The inner product yields the norm, the Pythagorean theorem, and the orthogonal complement, and the null space of a matrix is the orthogonal complement of its row space.\n",{"path":10984,"title":10985,"module":10981,"summary":10986},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections","Orthogonal Sets and Orthogonal Projections","An orthogonal basis makes coordinates trivial: each weight is a single dot product, no linear system required. Orthogonal and orthonormal bases give a direct projection formula onto a line and onto a subspace, the orthogonal decomposition and best-approximation theorems, and the matrix form U U-transpose of a projection.\n",{"path":10988,"title":10989,"module":10981,"summary":10990},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr","The Gram-Schmidt Process and QR Factorization","Gram-Schmidt turns any basis into an orthogonal one by repeatedly subtracting off projections onto the span already built. Normalizing the result and recording the coefficients factors the matrix as A = QR, with Q orthonormal and R upper triangular, the factorization behind stable least-squares and eigenvalue algorithms.\n",{"path":10992,"title":10993,"module":10981,"summary":10994},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems","Least-Squares Problems","When Ax = b has no solution, the least-squares solution makes Ax as close to b as possible. The closest Ax is the projection of b onto the column space, and the vector that produces it solves the normal equations A-transpose A x = A-transpose b. Uniqueness, the residual error, and the stabler QR route follow.\n",{"path":10996,"title":10997,"module":10981,"summary":10998},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications","Applications to Linear Models","Curve fitting is a least-squares problem in statistical notation. The least-squares line, polynomial fits, and multiple regression all reduce to X beta = y with a design matrix X built from the data, solved by the same normal equations.\n",{"path":11000,"title":11001,"module":10981,"summary":11002},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces","Inner Product Spaces","Promoting the four properties of the dot product to axioms defines an inner product on any vector space, including spaces of functions. Length, distance, orthogonality, Gram-Schmidt, and best approximation all carry over, along with the Cauchy-Schwarz and triangle inequalities and the integral inner product behind Fourier approximation.\n",{"path":11004,"title":11005,"module":11006,"summary":11007},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices","Diagonalization of Symmetric Matrices","Symmetric Matrices, Quadratic Forms, and the SVD","A symmetric matrix is one that equals its own transpose. Every such matrix can be diagonalized by an orthogonal change of basis, A = PDPᵀ, with real eigenvalues and perpendicular eigenvectors. This is the Spectral Theorem, and it rewrites A as a weighted sum of rank-one projections onto its eigenvectors.\n",{"path":11009,"title":11010,"module":11006,"summary":11011},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms","Quadratic Forms","A quadratic form xᵀAx is the second-degree analogue of a linear map, attached to a symmetric matrix A. Orthogonal diagonalization changes variables to the eigenbasis, removing all cross-terms and rotating the form into standard position. The signs of the eigenvalues then classify it as definite or indefinite.\n",{"path":11013,"title":11014,"module":11006,"summary":11015},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization","Constrained Optimization","Maximizing a quadratic form xᵀAx over the unit sphere has an exact answer: the maximum is the largest eigenvalue of A, attained at its eigenvector, and the minimum is the smallest eigenvalue. Adding orthogonality constraints peels off the eigenvalues in order, characterizing the whole spectrum by optimization.\n",{"path":11017,"title":11018,"module":11006,"summary":11019},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition","The Singular Value Decomposition","The singular value decomposition factors any m×n matrix as A = UΣVᵀ, with orthogonal U and V and a nonnegative diagonal Σ of singular values. The singular values are the square roots of the eigenvalues of AᵀA, and they describe the matrix geometrically as a rotation, an axiswise stretch, and another rotation, exposing rank, the four fundamental subspaces, and a best low-rank approximation.\n",{"path":11021,"title":11022,"module":11006,"summary":11023},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging","Applications: Image Processing and Statistics","Principal component analysis diagonalizes the covariance matrix of a data set, producing uncorrelated variables ordered by variance. The leading components capture most of the variation, which reduces dimension, compresses images through low-rank SVD approximation, and connects directly to the singular values of the data matrix.\n",{"path":11025,"title":11026,"module":11027,"summary":11028},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation","Numerical Thinking and Matrix Computation","Numerical Linear Algebra","Numerical analysis builds efficient discrete algorithms for continuous problems, and its cost is dominated as much by memory traffic as by arithmetic. Block matrix calculus, flop counts, and the BLAS efficiency ratio fix the cost model; triangular and unitary matrices are the two computational building blocks every factorization rests on.\n",{"path":11030,"title":11031,"module":11027,"summary":11032},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky","LU and Cholesky Factorization in Practice","Gaussian elimination, read as a factorization A = LU, turns a linear system into two triangular solves. A single near-zero pivot wrecks it, so partial pivoting reorders rows to pick the largest available pivot and makes the method work for every invertible matrix. For symmetric positive-definite systems, Cholesky halves the cost and needs no pivoting.\n",{"path":11034,"title":11035,"module":11027,"summary":11036},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point","Conditioning and Floating-Point Arithmetic","A problem's condition number measures how much its answer moves when its data is perturbed, independent of any algorithm. Subtraction is ill-conditioned under cancellation, and for a linear system the amplifier is the matrix condition number κ(A). Floating-point arithmetic supplies the perturbation: every real number is rounded to within a relative machine precision, so even perfect computation inherits an error of order κ times the unit roundoff.\n",{"path":11038,"title":11039,"module":11027,"summary":11040},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis","Numerical Stability and Backward Error Analysis","An algorithm is backward stable when its computed answer is the exact answer to a slightly perturbed problem. Combined with the condition number this gives the governing rule of thumb: forward error is at most condition times stability. Three cancellation case studies make the point, then the residual-based backward error applies it to Ax = b and shows why partial pivoting keeps Gaussian elimination stable.\n",{"path":11042,"title":11043,"module":11027,"summary":11044},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares","QR, Householder, and Numerical Least Squares","The least-squares problem reduces to the normal equations, but forming AᵀA squares the condition number and can wreck accuracy. The stable route computes a QR factorization directly on A and solves Rx = Qᵀb. Householder reflectors build that QR one column at a time using length-preserving reflections, the unconditionally backward-stable building block behind every serious least-squares solver.\n",{"path":11046,"title":11047,"module":11027,"summary":11048},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd","Numerical Eigenvalue Problems and the SVD","Eigenvalues cannot be found by a formula for large matrices, so they are found by iteration. Power and inverse iteration converge to one eigenvector at a rate set by the eigenvalue gap; the QR algorithm sweeps a matrix to Schur form and, with a good shift and a Hessenberg reduction, computes the whole spectrum in cubic time. Singular values follow from the same machinery applied without ever forming AᵀA.\n",{"path":11050,"title":11051,"module":11052,"summary":11053},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations","Affine Combinations","Geometry of Vector Spaces","An affine combination is a linear combination whose weights sum to one. The affine hull of a set is the smallest flat containing it: a point, a line, a plane, or a translated subspace. Homogeneous coordinates turn every affine combination into an ordinary linear combination one dimension up.\n",{"path":11055,"title":11056,"module":11052,"summary":11057},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates","Affine Independence and Barycentric Coordinates","Affine independence is linear independence for the translated or lifted points, and it guarantees each point of an affine hull a unique weight vector. Those weights are barycentric coordinates: centers of mass, ratios of triangle areas, and the interpolation rule behind smooth shading in computer graphics.\n",{"path":11059,"title":11060,"module":11052,"summary":11061},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets","Convex Combinations and Convex Sets","A convex combination is an affine combination with nonnegative weights, and the convex hull of a set is the smallest convex set containing it. Convex sets are closed under intersection, and Carathéodory's theorem bounds how many points a convex combination in $\\mathbb{R}^n$ ever needs: at most $n+1$.\n",{"path":11063,"title":11064,"module":11052,"summary":11065},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes","Hyperplanes and Polytopes","A hyperplane is a level set of a linear functional, the set where an inner product equals a constant. Hyperplanes separate disjoint convex sets and support them at their boundaries. Polytopes are convex hulls of finite point sets; their vertices are the extreme points, and a linear functional attains its extremes there.\n",{"path":11067,"title":11068,"module":11052,"summary":11069},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces","Curves and Surfaces","Bézier curves are affine combinations of control points with polynomial weights, so they lie in the convex hull of those points and bend toward them. The de Casteljau algorithm evaluates them by repeated interpolation, a matrix form factors them for computation, and matching endpoints and tangents joins segments into smooth curves and surfaces.\n",{"path":11071,"title":11072,"module":6,"summary":6},"\u002Flinear-algebra","Linear Algebra",{"path":11074,"title":11075,"module":6,"summary":6},"\u002Ftheory-of-computation","Theory of Computation",{"path":11077,"title":11078,"module":9887,"summary":11079},"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words","Bits, Bytes, and Words","Everything a machine stores is a string of bits grouped into bytes. We set out binary and hexadecimal, the byte as the unit of addressing, the word as the machine's natural integer size, and byte ordering — why the same four bytes read as 0x01234567 on one machine and 0x67452301 on another.\n",{"path":11081,"title":11082,"module":9887,"summary":11083},"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation","Integer Representation","A fixed-width byte string is just a pattern; what makes it a number is the rule we read it by. We define unsigned encoding and two's complement — where the top bit carries a negative weight — derive the ranges UMax, TMin, and TMax, and show how the same bits reinterpret between signed and unsigned, how widening sign-extends, and what truncation throws away.\n",{"path":11085,"title":11086,"module":9887,"summary":11087},"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic","Integer Arithmetic","Fixed-width integer arithmetic is arithmetic modulo a power of two: add past the top and the result wraps. We work out unsigned and two's-complement addition and the rules that detect their overflow, why negation is a complement-plus-one, how multiplication truncates to the low-order bits and how compilers turn constant multiplies into shifts and adds, why C declares signed overflow undefined, and the bias fix that keeps shift-based signed division rounding toward zero.\n",{"path":11089,"title":11090,"module":9887,"summary":11091},"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point","Floating Point","IEEE-754 trades the exactness of integers for enormous range by storing numbers as sign, exponent, and fraction — scientific notation in binary. We lay out the single and double formats, the bias that encodes the exponent, the three regimes (normalized, denormalized, special), a worked encode\u002Fdecode, the four rounding modes and round-to-even at the bit level, why addition is not associative, the pitfalls of float-int conversion, and why 0.1 has no exact binary representation.\n",{"path":11093,"title":11094,"module":9887,"summary":11095},"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation","Boolean Algebra and Bit Manipulation","Treat a word as a vector of independent bits and the bitwise operators become an algebra. We define AND, OR, NOT, and XOR as bit vectors, build the masking idioms that set, clear, toggle, and test individual bits, extract fields with zero- and sign-extension, count set bits three ways, derive the classic x & (x - 1) family of tricks, and distinguish bitwise operators from C's short-circuiting logical operators.\n",{"path":11097,"title":11098,"module":11099,"summary":11100},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view","The Machine's View","Machine-Level Programming","The instruction set architecture is the contract a compiler writes against: the program counter, sixteen integer registers with their sub-register widths, and the condition codes. We follow one C function down through gcc to assembly, learn to read an instruction as operation plus operands, and fix the vocabulary the rest of the module uses.\n",{"path":11102,"title":11103,"module":11099,"summary":11104},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement","Data Movement","Most instructions a program runs simply move data. We cover the mov family and its size suffixes, the three operand forms, the full memory addressing mode D(Rb,Ri,S) and its special cases, lea for address arithmetic, and how push and pop manipulate the stack pointer %rsp on a stack that grows toward lower addresses.\n",{"path":11106,"title":11107,"module":11099,"summary":11108},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic","Arithmetic and Logic","The ALU instructions that compute on register and memory values: add, sub, and imul; the unary inc\u002Fdec\u002Fneg\u002Fnot; the shifts sal\u002Fshr\u002Fsar; the bitwise and\u002For\u002Fxor; and lea reused as a fast arithmetic trick. Each binary operation also sets the condition-code flags CF, ZF, SF, and OF, which cmp and test compute without keeping a result.\n",{"path":11110,"title":11111,"module":11099,"summary":11112},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow","Control Flow","How a flat instruction stream realizes branches and loops. The conditional jumps read the condition-code flags; set instructions turn flags into a 0\u002F1 byte. We translate if\u002Felse into the standard compare-and-branch pattern, while\u002Ffor loops into the guarded-do form, and dense switches into jump tables that index a target directly.\n",{"path":11114,"title":11115,"module":11099,"summary":11116},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures","Procedures","How a function call works at the machine level: the run-time stack, call and ret passing control through a saved return address, the System V convention that routes the first six arguments through %rdi..%r9 and the result through %rax, the caller-saved versus callee-saved split, the stack frame, and a recursive factorial traced through its frames.\n",{"path":11118,"title":11119,"module":11099,"summary":11120},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment","Arrays, Structs, and Alignment","How aggregate data lays out in memory. Arrays as base-plus-scaled-index, the row-major ordering of multidimensional arrays, pointer arithmetic in units of the pointed-to type, struct fields at fixed byte offsets, the overlapping storage of unions, and the alignment rules that force padding into a struct.\n",{"path":11122,"title":11123,"module":11099,"summary":11124},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows","Memory Layout and Buffer Overflows","The process address space — text, data, heap, and stack — and the classic vulnerability it enables. A stack buffer that is written past its end can overwrite the saved return address and redirect ret, so we sketch the mechanism defensively and then the three standard protections: stack canaries, a non-executable stack, and address-space layout randomization.\n",{"path":11126,"title":11127,"module":11128,"summary":11129},"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is","What an ISA Is","Instruction Set Architecture","The instruction set architecture is the contract that lets a compiler and a chip be written by people who never meet: the stable interface software targets and hardware implements. We separate architecture from microarchitecture, read RISC and CISC as opposite answers to where complexity should live, price out what each choice costs in decode hardware, code density, and pipeline friendliness, and see how x86-64 endures by translating its instructions into RISC-like operations on the fly.\n",{"path":11131,"title":11132,"module":11128,"summary":11133},"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands","Instruction Formats and Operands","An instruction is an opcode plus a way to name its operands. We count operands — 3-address, 2-address, 1-address accumulator, and 0-address stack machines — by writing the same C = A + B four ways, weigh register operands against memory operands, then lay out the same add byte by byte in x86-64 (REX prefix, opcode, ModRM) and in Y86-64, and what fixed versus variable length costs at fetch time.\n",{"path":11135,"title":11136,"module":11128,"summary":11137},"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes","Addressing Modes","Once an operand field exists, it needs a rule for turning its bits into the data it names. That rule is the addressing mode. We walk the standard set — immediate, register, direct, register-indirect, displacement, scaled-indexed, and PC-relative — fixing the effective-address computation for each, run every mode against one concrete machine state, and price out what Y86-64 loses by keeping only base plus displacement.\n",{"path":11139,"title":11140,"module":11128,"summary":11141},"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set","The Y86-64 Instruction Set","Y86-64 is a teaching ISA — a stripped-down x86-64 simple enough to implement by hand yet real enough to compile to. We fix its programmer-visible state (fifteen registers, three condition codes, the PC, memory, and a status code), give the instruction set with exact byte encodings, spell out how the condition codes decide every jXX and cmovXX, and run the encoding both directions: assembly to bytes and raw bytes back to meaning.\n",{"path":11143,"title":11144,"module":11128,"summary":11145},"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming","Y86-64 Programming","With the encodings fixed, we write real Y86-64 assembly: the .pos, .align, and .quad directives, the calling convention borrowed from x86-64, a stack set up by hand, and complete programs — an array sum and a branch-free max. We watch the assembler turn the listing into the exact byte image the processor will execute, and trace the stack across the call.\n",{"path":11147,"title":11148,"module":11149,"summary":11150},"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions","Transistors, Gates, and Boolean Functions","Digital Logic","A processor is built from millions of transistor switches. We start at the MOS transistor as a voltage-controlled switch, build the CMOS inverter and NAND transistor by transistor, meet the seven standard gates with their truth tables, show that NAND alone is functionally complete, price each gate in transistors and in time, and turn any truth table into a sum-of-products circuit.\n",{"path":11152,"title":11153,"module":11149,"summary":11154},"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl","Combinational Logic and HCL","A combinational circuit is a pure Boolean function of its current inputs — no memory, no clock. We draw the line between combinational and sequential logic, do the gate-delay accounting that finds a circuit's critical path and bounds the clock, meet don't-cares, then introduce CS:APP's Hardware Control Language: bit-level operators, word-level signals, equality nets, and the case expression that compiles to a multiplexer tree.\n",{"path":11156,"title":11157,"module":11149,"summary":11158},"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu","Multiplexers, Decoders, and the ALU","The combinational building blocks that make a datapath. We build the 2:1 and 4:1 multiplexer and tie it back to HCL's case expression, the n-to-2^n decoder, a one-bit full adder (sum is XOR, carry is majority), the ripple-carry adder that chains them, and finally the ALU — a function unit that selects among add, sub, and, and xor under a control input and exposes condition flags.\n",{"path":11160,"title":11161,"module":11149,"summary":11162},"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking","Memory Elements: Latches, Flip-Flops, and Clocking","A combinational circuit holds no state; feeding a circuit's output back to its input creates memory. We build the SR latch from cross-coupled gates, the level-sensitive D latch, and the master\u002Fslave edge-triggered D flip-flop, then introduce the clock and the synchronous design discipline, the setup\u002Fhold timing window, clock skew, metastability, and the register as n flip-flops sharing one clock.\n",{"path":11164,"title":11165,"module":11149,"summary":11166},"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory","Register Files and Random-Access Memory","Storage organized for access by address. We build the register file (a small bank of registers with addressed read ports and clocked write ports, the exact structure Y86-64's decode and write-back stages use), then descend to the SRAM and DRAM cells of main memory, why one is fast and dear and the other dense and slow, and how a row decoder picks a word out of a memory array.\n",{"path":11168,"title":11169,"module":11170,"summary":11171},"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle","The Fetch-Decode-Execute Cycle","Processor Design","A processor is a machine that repeats one loop forever: read the next instruction from memory, figure out what it asks for, do it, and advance. We fix the stored-program idea, lay out the datapath at a high level — PC, instruction memory, register file, ALU, data memory — and the control unit that sequences them, break the work into the six stages the rest of the module builds in hardware, and work out exactly how fetch parses variable-length instructions and computes the next PC.\n",{"path":11173,"title":11174,"module":11170,"summary":11175},"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages","The SEQ Stages","The six SEQ stages, made exact. For every Y86-64 instruction — halt, nop, the moves, OPq, the jumps, call and ret, pushq and popq — we write down what Fetch, Decode, Execute, Memory, Write-back, and PC update each compute, as per-instruction stage tables with every row justified. Once the tables are filled in, the processor is fully specified; the remaining lessons turn them into wires.\n",{"path":11177,"title":11178,"module":11170,"summary":11179},"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing","Control Logic and Sequencing","The stage tables say what each instruction needs; the control logic computes it from icode. We write the HCL for the register-port selections (srcA, srcB, dstE, dstM), the ALU function and input selection, the memory read\u002Fwrite and address, the branch condition, and the next-PC mux — each a case expression on icode that compiles to a mux — and see how one blob of combinational logic serves every instruction at once. We close by contrasting hardwired control with the microprogrammed alternative.\n",{"path":11181,"title":11182,"module":11170,"summary":11183},"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq","Assembling SEQ","We wire the whole thing together. The functional units from digital logic and the control signals from the last lesson assemble into the complete SEQ datapath, laid out the way CS:APP draws it — six stages stacked bottom to top, Fetch at the floor and PC update at the ceiling, signals flowing up the margins. Then the timing analysis: why everything must settle in one cycle, the no-reading-back principle that makes single-cycle execution consistent, and the critical path that sets the clock. We close by walking an OPq and a ret through the assembled machine.\n",{"path":11185,"title":11186,"module":11170,"summary":11187},"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program","Tracing a Program","To close the module, we take a complete Y86-64 program — a loop that sums 1 through 3 — and run it through SEQ one cycle at a time, recording the PC, the fetched instruction, every stage computation, and the registers, condition codes, and memory after each cycle. Then we examine single cycles in detail: every named signal of an OPq in concrete hex, and a second program whose call and ret we trace through the stack. The traces confirm that the assembled datapath and control logic behave as a processor.\n",{"path":11189,"title":11190,"module":11191,"summary":11192},"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles","Pipelining Principles","Pipelining","A processor that runs one instruction to completion before starting the next wastes most of its hardware most of the time. Pipelining splits the work into stages separated by registers so several instructions are in flight at once. We separate throughput from latency, work the 300 ps example through one, two, and three stages, and derive the three ceilings on the gain: uneven stages, register overhead, and the dependencies between instructions.\n",{"path":11194,"title":11195,"module":11191,"summary":11196},"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe","From SEQ to PIPE","We turn the sequential Y86-64 processor into a pipelined one by inserting pipeline registers between its stages so each cycle holds one instruction per stage. Doing it correctly forces a rearrangement: the next-PC computation must move into Fetch as a prediction, because the later stages that used to compute it are now busy with other instructions. We walk SEQ to SEQ+ to PIPE, spell out exactly what each pipeline register carries, and fix the naming discipline (D_stat versus d_stat) that keeps five in-flight instructions straight.\n",{"path":11198,"title":11199,"module":11191,"summary":11200},"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding","Data Hazards: Stalling and Forwarding","Overlapping instructions collide when a later one needs a value an earlier one has not finished computing: a read-after-write data hazard. We map exactly which instruction distances are dangerous, fix hazards the slow way by stalling (three bubbles), then the fast way by forwarding from five distinct sources into Decode, in a priority order that sequential semantics forces. Forwarding handles almost everything; the load-use hazard still needs exactly one stall.\n",{"path":11202,"title":11203,"module":11191,"summary":11204},"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction","Control Hazards and Branch Prediction","A pipeline must fetch an instruction every cycle, but after a conditional jump or a ret the next address is not yet known: a control hazard. We measure the branch penalty, weigh predict-taken against its alternatives with real loop arithmetic, watch PIPE detect a misprediction in Execute and squash the two wrong-path instructions, and meet the ret hazard, which has nothing to predict and stalls three cycles. A 2-bit counter gives a taste of dynamic prediction.\n",{"path":11206,"title":11207,"module":11191,"summary":11208},"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor","The Complete PIPE Processor","We assemble the full pipelined Y86-64: five stages, five pipeline registers, forwarding paths, and a small control unit that decides, each cycle, whether to stall or bubble each register. The subtle part is when hazards combine: one pairing hides a genuine bug. A fourth control case reads stat and keeps exceptions precise. Performance reduces to CPI = 1 + lp + mp + rp, worked out to 1.27 with realistic frequencies, and PIPE beats SEQ by several times despite every penalty.\n",{"path":11210,"title":11211,"module":11212,"summary":11213},"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap","Storage Technologies and the Latency Gap","The Memory Hierarchy","No single memory is both fast and large and cheap. We survey the technologies a machine can store bits in — SRAM, DRAM, flash, and rotating disk — open up a DRAM chip to find the row buffer, work a disk access down to the millisecond, and rank everything by speed, density, and cost per bit. Then we watch the processor outrun memory decade after decade. That widening gap is the whole reason a machine stacks fast small storage on top of slow large storage into a hierarchy.\n",{"path":11215,"title":11216,"module":11212,"summary":11217},"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality","Locality","A hierarchy only pays off because programs do not touch memory at random. They reuse recently-used data (temporal locality) and touch nearby data soon after (spatial locality). We make both precise and then quantitative: miss rates for stride-1 and stride-k traversals against a concrete block size, and the loop-order pair on a 2-D array where the same sum misses 16 times one way and 64 times the other — why row-major versus column-major order can change a program's speed by an order of magnitude.\n",{"path":11219,"title":11220,"module":11212,"summary":11221},"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped","Cache Memories and Direct Mapping","A cache is fast SRAM that holds copies of recently-used blocks of main memory. We fix its organization — S sets, E lines per set, B bytes per block — and the way it dissects an address into tag, set index, and block offset, worked bit by bit on a concrete 16-byte cache. Then we run the direct-mapped (E=1) access algorithm end to end on a seven-access trace: index to a set, compare the tag, hit or miss, evict. Cold and conflict misses fall out of the structure, and a two-array ping-pong shows conflict thrashing and its padding fix.\n",{"path":11223,"title":11224,"module":11212,"summary":11225},"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies","Set-Associative Caches and Write Policies","Give each set several lines and a block has a choice of homes — fewer conflict misses, at the cost of comparing E tags in parallel and choosing a victim to evict. We re-run the direct-mapped ping-pong trace on a 2-way cache and watch the conflicts vanish, weigh LRU against random replacement, then turn to writes: write-through versus write-back with a dirty bit on a hit, write-allocate versus no-write-allocate on a miss, and a worked traffic count showing when each pairing wins.\n",{"path":11227,"title":11228,"module":11212,"summary":11229},"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code","Cache Performance and Cache-Friendly Code","Turn the cache mechanism into a number. Hit time, miss rate, and miss penalty combine into the average memory access time; we compute AMAT for a two-level hierarchy with real numbers, weigh the design knobs against each other, and read the memory mountain. Then we write cache-friendly code — the matrix-multiply loop-order case study (ijk versus kij, misses counted per iteration) and loop blocking, where cache-sized tiles turn evicted reuse back into hits.\n",{"path":11231,"title":11232,"module":11233,"summary":11234},"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation","Address Spaces and Translation","Virtual Memory","Every process runs as if it owns a private, contiguous span of memory — its virtual address space — while the hardware maps those addresses onto a single shared physical memory. We fix virtual memory's three jobs (a cache for disk, a memory manager, a protection boundary), the page as the unit of mapping, and the MMU replacing the virtual page number while the offset passes through untouched — then run one translation end to end at the bit level and trace the control flow of a page hit against a page fault.\n",{"path":11236,"title":11237,"module":11233,"summary":11238},"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults","Page Tables and Page Faults","The page table is an array of page-table entries indexed by virtual page number; each entry's valid bit says whether the page is in DRAM, on disk, or unallocated, and its permission, reference, and dirty bits drive protection and replacement. We walk translation as a table lookup, the page fault and demand paging, the clock algorithm the OS uses to approximate LRU, memory mapping and copy-on-write (why fork is cheap), the taxonomy of bad references, and thrashing.\n",{"path":11240,"title":11241,"module":11233,"summary":11242},"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables","The TLB and Multi-Level Page Tables","A page-table read on every access would double memory traffic; a flat table for a 48-bit space would occupy 512 GB per process. The TLB fixes the first: a small set-associative cache of PTEs inside the MMU whose tag and index come from the VPN. Multi-level page tables fix the second, allocating only the sub-tables a process uses; x86-64 walks four levels with a 9+9+9+9+12 split. We trace one reference end to end through TLB, walk, and cache, and close with the overlap trick that lets the L1 cache start before translation ends.\n",{"path":11244,"title":11245,"module":11246,"summary":11247},"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow","Exceptional Control Flow","Exceptions & I\u002FO","Beyond the sequential, branch, and call flow a program controls itself, the hardware can divert the processor in response to events. We sort these into four classes — interrupts (asynchronous, from devices), traps (intentional syscalls), faults (recoverable, like a page fault), and aborts (unrecoverable) — then take the mechanism apart: exception numbers and the table dispatch, what the hardware pushes and why it differs from a procedure call, the divide-error \u002F page-fault \u002F general-protection trio on x86-64, the full syscall round trip with a worked write in assembly, and processes and signals as the abstractions ECF makes possible.\n",{"path":11249,"title":11250,"module":11246,"summary":11251},"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel","Interrupts and the Kernel","An I\u002FO device signals completion by raising an interrupt, crossing the privilege boundary from user mode into the kernel. We fix that boundary, follow an interrupt from device through the interrupt controller to its vectored handler, and use the timer interrupt to drive preemptive scheduling and the context switch. Then the I\u002FO mechanics: polling versus interrupt-driven I\u002FO with a cycle count, device registers and memory-mapped I\u002FO versus port I\u002FO, DMA's full transfer walkthrough and its cache hazard, and a disk read traced end to end, from the read syscall to the completion interrupt.\n",{"path":11253,"title":11254,"module":11255,"summary":11256},"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism","Processes, Threads, and Parallelism","Multithreading & Multicore","Around 2004 the single core stopped getting faster, and the industry's answer was to hand programmers more cores instead. This lesson builds the vocabulary that shift demands: process versus thread and exactly which hardware state each one owns, concurrency versus parallelism, the three kinds of parallelism a machine can exploit, why Dennard scaling ended and forced the multicore turn, and Amdahl's law — the arithmetic that bounds the speedup those cores can deliver.\n",{"path":11258,"title":11259,"module":11255,"summary":11260},"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading","Hardware Multithreading","A pipeline spends much of its life waiting — on cache misses, on dependences, on branches. Hardware multithreading fills the dead cycles with instructions from another thread. We compare coarse-grained switching (change threads on a long stall), fine-grained interleaving (change every cycle), and simultaneous multithreading (mix threads inside a single cycle), work out exactly which hardware a second thread context duplicates and which it shares, and weigh when SMT pays off and when two threads just fight over one cache.\n",{"path":11262,"title":11263,"module":11255,"summary":11264},"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence","Cache Coherence","Give each core its own cache and the same address can live in two places at once, with copies that disagree. We reproduce the stale-copy bug with a two-core trace, then fix it the way hardware does: snooping caches that watch a shared bus and keep every line in a protocol state. We build MSI in full, upgrade it to MESI, contrast invalidation with updating, add coherence misses as the fourth C, and end with false sharing: the performance bug where cores fight over a line while never touching the same byte.\n",{"path":11266,"title":11267,"module":11255,"summary":11268},"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization","Memory Consistency and Synchronization","Coherence keeps cores agreeing about one location; consistency is the contract about many. We define sequential consistency, then watch real hardware break it: the store buffer lets a load slip ahead of an older store, and the classic two-thread litmus test ends with both sides reading zero. We state x86-TSO precisely, restore order with mfence, build atomic read-modify-write from the lock prefix, xchg, and cmpxchg, and write a spinlock twice — once naively, once bus-friendly — closing with what lock-free progress actually guarantees.\n",{"path":11270,"title":11271,"module":11255,"summary":11272},"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization","Multicore Organization","Where everything sits on the die. A modern die gives each core private L1 and L2 caches, spreads a shared last-level cache across slices, and wires it all together with a ring or mesh; multi-socket servers add NUMA, where memory is local to one socket and every remote access pays a latency penalty. We walk the floorplan, put numbers on local versus remote latency, meet thread affinity, and account for the two shared resources — coherence traffic and LLC capacity — that decide how far a parallel program scales.\n",{"path":11274,"title":11275,"module":11276,"summary":11277},"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine","The Whole Machine","Capstone","We take one line of C down the whole tower the course built — compiler to assembly, assembly to machine-code bytes, the bytes into the fetch–decode–execute datapath — then trace one load and one add through the pipelined, cached, translated, interruptible machine, each step cross-linked to the lesson that built it. We close with the map of the course as a stack of layers and an accounting of what we simplified: out-of-order execution, superscalar issue, and speculation past the branch predictor.\n",{"path":11279,"title":11280,"module":11276,"summary":11281},"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu","Assembling a Complete CPU","We bolt the parts the course built — PC, instruction memory and its fetch logic, register file, ALU, condition codes, data memory, and the control unit — into one complete CPU, name the lesson that built each, wire them in a deliberate order, and power the machine on from reset. Then we assemble a real test program (sum a four-element array through a call\u002Fret procedure), give its exact bytes and memory layout, and trace it cycle by cycle to the answer 0xabcdabcdabcd. We close with how to validate such a machine, and what it takes to put two of them on one die.\n",{"path":11283,"title":11284,"module":6,"summary":6},"\u002Fcomputer-architecture","Computer Architecture",{"path":11286,"title":11287,"module":9887,"summary":11288},"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields","Models, Direction Fields, and Solution Curves","A differential equation relates an unknown function to its own rates of change. Three first-order models — a falling body, a cooling object, a population under predation — share the form dy\u002Fdt = ay - b; the slope field fixes their equilibria and long-run behavior before any formula is found. Solving the linear case gives the general solution, its integral curves, and the particular solution selected by an initial condition.\n",{"path":11290,"title":11291,"module":9887,"summary":11292},"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology","Classifying Equations: Order, Linearity, ODE vs. PDE","Every solution method targets a specific class of equation, so the first question about any differential equation is which classes it belongs to. Four independent axes sort them: ordinary versus partial, order, linear versus nonlinear, and homogeneous versus nonhomogeneous. Systems, verification of a solution by substitution, and the split between initial and boundary value problems complete the vocabulary.\n",{"path":11294,"title":11295,"module":11296,"summary":11297},"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors","Linear Equations and Integrating Factors","First-Order Equations","A first-order linear equation has the unknown and its derivative to the first power only. Multiplying by an integrating factor collapses the left side into a single derivative, and one integration gives the general solution in closed form. The solution exists wherever the coefficients are continuous, and for a constant coefficient it splits into a decaying transient and a steady state set by the forcing.\n",{"path":11299,"title":11300,"module":11296,"summary":11301},"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact","Separable and Exact Equations","Two nonlinear first-order classes solve by direct integration. A separable equation splits so that each variable can be integrated on its own side, giving an implicit relation. An exact equation is the total differential of a hidden potential function, recognized by a symmetry test on its coefficients; when the test fails, an integrating factor can sometimes restore exactness. A change of variable brings homogeneous equations into the separable class.\n",{"path":11303,"title":11304,"module":11296,"summary":11305},"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order","Modeling with First-Order Equations","A rate law is a differential equation. Each first-order model starts from one governing principle: conservation of mass for a mixing tank, proportional change for interest and radioactive decay, Newton's law of cooling, a force balance for a body falling against drag, and Kirchhoff's law for a series circuit. Setting the derivative to zero recovers the steady state, and the transient records how the initial condition relaxes toward it.\n",{"path":11307,"title":11308,"module":11296,"summary":11309},"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics","Autonomous Equations, Phase Lines, and Population Dynamics","An autonomous equation y' = f(y) can be analyzed qualitatively without being solved. Its constant solutions are the zeros of f, and the sign of f between them fixes whether nearby solutions rise or fall, which the phase line records as a column of arrows. The logistic and threshold models, constant- and effort-proportional harvesting, and the properties nonlinear equations lose all follow from this reading.\n",{"path":11311,"title":11312,"module":11296,"summary":11313},"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler","Existence, Uniqueness, and Euler's Method","Existence and uniqueness can be settled before any attempt to solve. The existence-uniqueness theorem gives sufficient conditions on f, and a standard example shows what fails when they do not hold. Picard's successive approximations build the solution as the limit of an iteration, and Euler's method turns the same tangent-line idea into a numerical procedure for the equations no formula reaches.\n",{"path":11315,"title":11316,"module":11296,"summary":11317},"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations","First-Order Difference Equations","A difference equation advances a sequence one index at a time by a rule y_{n+1} = f(y_n). The linear case y_{n+1} = rho*y_n + b solves in closed form and converges to its equilibrium exactly when the ratio has magnitude below one, which underlies compound-interest and loan calculations. The logistic difference equation shows the nonlinear counterpart: an exchange of stability, a cascade of period doublings, and the onset of chaos.\n",{"path":11319,"title":11320,"module":11321,"summary":11322},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients","Homogeneous Equations, the Wronskian, and Real Roots","Second-Order Linear Equations","A second-order linear homogeneous equation with constant coefficients is solved by guessing an exponential and reducing to the quadratic characteristic equation. Two solutions span every solution exactly when their Wronskian is nonzero; that condition, superposition, and Abel's formula give the full structure of the general solution for the case of two distinct real roots.\n",{"path":11324,"title":11325,"module":11321,"summary":11326},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots","Complex Roots, Repeated Roots, and Reduction of Order","When the characteristic equation has complex conjugate roots, Euler's formula converts the complex exponentials into a real fundamental set of decaying or growing oscillations. When it has a repeated root, one exponential is lost and reduction of order recovers the missing second solution as $t\\,e^{rt}$. The same substitution $y = v(t)y_1(t)$ finds a second solution from any known one.\n",{"path":11328,"title":11329,"module":11321,"summary":11330},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients","Nonhomogeneous Equations: Undetermined Coefficients","The general solution of a nonhomogeneous linear equation is a complementary solution plus any one particular solution. When the forcing term is a polynomial, exponential, sine, or cosine, a particular solution can be found by assuming a trial form of the same shape with unknown coefficients and solving for them. The one complication is resonance, handled by multiplying the trial by a power of $t$.\n",{"path":11332,"title":11333,"module":11321,"summary":11334},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters","Variation of Parameters","Variation of parameters finds a particular solution of any nonhomogeneous linear equation from a fundamental set of the homogeneous one. Replacing the constants in the complementary solution by functions and imposing one convenient constraint reduces the problem to a two-by-two linear system whose solution is expressed through the Wronskian, giving an integral formula that works for forcing terms undetermined coefficients cannot touch.\n",{"path":11336,"title":11337,"module":11321,"summary":11338},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations","Mechanical and Electrical Vibrations","A spring-mass-damper obeys a second-order linear equation, and so does a series RLC circuit, with the same mathematics governing both. Free undamped motion is a pure sinusoid; damping adds a decaying envelope with three regimes; periodic forcing produces a transient that dies out and a steady-state oscillation whose amplitude peaks sharply near the natural frequency, the phenomenon of resonance.\n",{"path":11340,"title":11341,"module":11321,"summary":11342},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear","Higher-Order Linear Equations","The second-order theory extends directly to order $n$: the solution space is $n$-dimensional, spanned by any $n$ solutions with nonzero Wronskian. For constant coefficients the characteristic polynomial has degree $n$, and its roots (counted with multiplicity, real and complex) build the basis by the same rules as before. Coupled oscillators are the natural application that raises the order.\n",{"path":11344,"title":11345,"module":11346,"summary":11347},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points","Power Series Solutions Near Ordinary Points","Series Solutions and Special Functions","A linear equation with variable coefficients has no characteristic equation. A power series substituted into the equation matches coefficients to a recurrence relation, which near an ordinary point yields two independent analytic solutions. The radius of convergence is at least the distance from the expansion point to the nearest singular point in the complex plane.\n",{"path":11349,"title":11350,"module":11346,"summary":11351},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius","Euler Equations, Regular Singular Points, and Frobenius","The Euler equation x^2 y'' + a x y' + b y = 0 is solved outright by y = x^r, and its three root cases fix the behavior at any regular singular point. The Frobenius method multiplies x^r by a power series; the indicial equation chooses the exponents, and equal or integer-separated roots force a logarithm in the second solution. Gauss's hypergeometric equation is the archetype containing most classical functions as special cases.\n",{"path":11353,"title":11354,"module":11346,"summary":11355},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions","Bessel's Equation, Legendre Polynomials, and Special Functions","Bessel's equation puts the Frobenius machinery through all three of its cases and produces the functions J and Y that govern anything vibrating or diffusing with circular symmetry. The gamma function extends the factorial so that Bessel functions of every order make sense; Legendre's equation, run through the hypergeometric form, yields the polynomials that play the same role in spherical geometry. Orthogonality ties both families to the eigenfunction expansions of Sturm–Liouville theory.\n",{"path":11357,"title":11358,"module":11359,"summary":11360},"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps","The Laplace Transform: Definition, Properties, and Solving IVPs","The Laplace Transform","The Laplace transform sends a function of time to a function of a complex frequency by integrating it against the kernel e^{-st}. Differentiation in t becomes multiplication by s, so a linear constant-coefficient initial value problem turns into an algebraic equation. Existence rests on piecewise continuity and exponential order; the derivative rule folds in the initial data; and inversion runs through a transform table and partial fractions.\n",{"path":11362,"title":11363,"module":11359,"summary":11364},"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution","Step Functions, Discontinuous Forcing, Impulses, and Convolution","The Heaviside step function and the second shifting theorem transform switches and discontinuous forcing into exponential factors on the transform. The Dirac delta idealizes an instantaneous impulse and transforms to a pure exponential. The convolution theorem inverts a product of transforms, writes the forced response as the impulse response convolved with the input, and solves Abel's tautochrone by transform.\n",{"path":11366,"title":11367,"module":11368,"summary":11369},"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review","Matrices, Linear Systems, and the Eigenvalue Toolkit","Systems of First-Order Linear Equations","Any nth-order linear equation, and any coupled collection of them, rewrites as a single first-order system x' = P(t)x + g(t). The matrix and vector algebra behind that form, the eigenvalue problem det(A - λI) = 0 that drives every solution method, and the fundamental theory — superposition, the Wronskian, Abel's theorem — together establish that n independent solutions span all solutions.\n",{"path":11371,"title":11372,"module":11368,"summary":11373},"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits","Homogeneous Constant-Coefficient Systems and Phase Portraits","For x' = Ax with A constant, the trial x = ξe^{rt} turns the differential equation into the eigenvalue problem Aξ = rξ. The eigenvalues fix the geometry of the phase plane: real opposite signs give a saddle, real same sign a node, complex a spiral, purely imaginary a center. Worked in the plane, these cases form the eigenvalue-type classification of equilibria.\n",{"path":11375,"title":11376,"module":11368,"summary":11377},"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices","Repeated Eigenvalues, Fundamental Matrices, and Nonhomogeneous Systems","When a repeated eigenvalue supplies too few eigenvectors, a generalized eigenvector supplies the missing solution as ξte^{ρt} + ηe^{ρt}, giving an improper node. A fundamental set packaged as a matrix Φ(t) yields the matrix exponential e^{At}, the propagator mapping initial states to later ones. Variation of parameters solves the nonhomogeneous system x' = Ax + g(t).\n",{"path":11379,"title":11380,"module":11381,"summary":11382},"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta","Euler, Improved Euler, and Runge–Kutta","Numerical Methods","Most initial value problems have no closed-form solution, so the solution is approximated on a grid. Euler's method steps along the tangent line, the improved Euler method averages two slopes, and the classical Runge–Kutta method averages four. Each added stage raises the order of accuracy at the cost of more evaluations per step, measured by how the local and global truncation errors scale with the step size.\n",{"path":11384,"title":11385,"module":11381,"summary":11386},"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability","Multistep Methods, Systems, and Stability","One-step methods discard everything but the last point. Multistep methods fit a polynomial to several past values and integrate it forward: the explicit Adams–Bashforth formulas, the implicit and more accurate Adams–Moulton formulas, and predictor–corrector pairs that combine them. The same rules extend verbatim to systems in vector form. A separate concern is stability: round-off can dominate truncation, and stiff equations force a tiny step for stability even when accuracy would allow a large one.\n",{"path":11388,"title":11389,"module":11390,"summary":11391},"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability","The Phase Plane, Critical Points, and Stability","Nonlinear Systems and Stability","Most nonlinear systems cannot be solved in closed form, so they are studied geometrically. The phase plane turns an autonomous planar system into a family of trajectories; the five archetypes of critical point follow from the eigenvalues of the coefficient matrix; the trace-determinant plane reads off type and stability directly; and epsilon-delta definitions make stability, asymptotic stability, and instability precise.\n",{"path":11393,"title":11394,"module":11390,"summary":11395},"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov","Locally Linear Systems and Liapunov's Method","Near a critical point a nonlinear system looks linear, and the linear part is the Jacobian. The linearization fixes the type and stability of the nonlinear critical point in every case except a center or a repeated eigenvalue. Liapunov's direct method settles those cases and bounds the basin of attraction by constructing an energy-like function, without solving the system.\n",{"path":11397,"title":11398,"module":11390,"summary":11399},"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles","Population Models, Limit Cycles, and Chaos","The phase-plane methods apply directly to interacting-population models. Competing species either coexist or drive one another to extinction, decided by a single inequality among the interaction constants; the Lotka-Volterra predator-prey system produces closed population cycles. Limit cycles and the Poincaré-Bendixson theorem, the van der Pol oscillator, and the Lorenz equations with their strange attractor carry the theory into chaos.\n",{"path":11401,"title":11402,"module":11403,"summary":11404},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series","Fourier Series and Convergence","PDEs, Fourier Series, and Boundary Value Problems","A two-point boundary value problem has nontrivial solutions only at a discrete set of eigenvalues, the same trichotomy that governs a singular linear system. For y'' + lambda y = 0 with zero endpoints the eigenfunctions are sines and cosines, and their orthogonality gives the Euler-Fourier coefficient formulas. The convergence theorem fixes when the series returns the function, the Gibbs phenomenon measures the overshoot at a jump, and even\u002Fodd symmetry produces half-range sine and cosine series.\n",{"path":11406,"title":11407,"module":11403,"summary":11408},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations","Separation of Variables: Heat, Wave, and Laplace Equations","Separation of variables replaces a partial differential equation by a pair of ordinary ones joined through a shared separation constant. Applied to the heat equation it produces the eigenvalue problem X'' + lambda X = 0, and the solution assembles as a Fourier series in the eigenfunctions. The same steps solve the wave equation, whose modes are standing waves, and Laplace's equation, the steady-state limit posed on a region rather than an interval.\n",{"path":11410,"title":11411,"module":11403,"summary":11412},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville","Sturm-Liouville Theory","The eigenvalue problem behind separation of variables generalizes to the self-adjoint Sturm-Liouville form. Lagrange's identity makes the operator symmetric, and from that one fact follow real eigenvalues, orthogonal eigenfunctions, and eigenfunction expansions that behave like Fourier series. Singular problems admit Bessel and Legendre functions, and Sturm's separation and comparison theorems describe how the eigenfunctions oscillate.\n",{"path":11414,"title":11415,"module":11416,"summary":11417},"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations","The Calculus of Variations","Historical Notes and the Calculus of Variations","Ordinary calculus finds the point where a function is stationary; the calculus of variations finds the whole curve where an integral is stationary. Euler's differential equation is the necessary condition for an extremal, and it becomes integrable in three cases, solving the shortest-path, minimal-surface, and brachistochrone problems. Lagrange multipliers extend the method to isoperimetric constraints, and Hamilton's principle recovers Newton's law from a single stationary integral.\n",{"path":11419,"title":11420,"module":11416,"summary":11421},"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes","Great Problems and the People Who Solved Them","Differential equations grew out of specific problems, not a plan: the invention of calculus by Newton and Leibniz, the Bernoulli brachistochrone challenge, Euler's flood of methods, Lagrange's analytical mechanics, Gauss and Riemann's rigor, Laplace's celestial mechanics, and Poincaré's qualitative theory. Each method descends from a named problem, and reading the subject forward from those problems explains why its parts fit together.\n",{"path":11423,"title":11424,"module":6,"summary":6},"\u002Fdifferential-equations","Differential Equations",{"path":11426,"title":11427,"module":11428,"summary":11429},"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates","The Postulates of Special Relativity","Foundations of Relativity","Newton's laws are the same in every inertial frame, but Maxwell's are not: the equations of electromagnetism single out one speed, c, and the nineteenth century read that as the speed of light relative to a medium, the ether. The Michelson-Morley experiment looked for Earth's motion through that medium and found nothing. Einstein's two postulates replace the ether, and their first consequence is that simultaneity is frame-dependent.\n",{"path":11431,"title":11432,"module":11428,"summary":11433},"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime","The Lorentz Transformation and Spacetime","Requiring that a light sphere stay a light sphere in every inertial frame fixes the coordinate change between frames uniquely: the Lorentz transformation, with its factor gamma. Differentiating it gives relativistic velocity addition, which caps composed speeds at c. Plotting the same events on skewed spacetime axes turns the algebra into geometry, with calibration hyperbolae, an invariant interval, and a light cone that sorts events into past, future, and elsewhere.\n",{"path":11435,"title":11436,"module":11428,"summary":11437},"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction","Time Dilation, Length Contraction, and Paradoxes","A light clock and the constancy of c give the two headline effects directly: a moving clock runs slow by gamma, and a moving rod is short by the same factor. Cosmic-ray muons reaching sea level are the standing experimental proof. The relativistic Doppler effect adds the time-dilation factor to the classical shift, and the twin and pole-barn paradoxes dissolve once the relativity of simultaneity is taken seriously.\n",{"path":11439,"title":11440,"module":11428,"summary":11441},"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy","Relativistic Momentum and Energy","Conserving momentum in every inertial frame forces the redefinition p = gamma m u, which diverges as the speed approaches c. Integrating the corresponding force gives the total energy E = gamma m c-squared, whose rest term m c-squared is Einstein's mass-energy equivalence. Energy and momentum join into a four-vector whose invariant length is the rest energy, giving E-squared = (pc)-squared + (m c-squared)-squared, massless particles, and nuclear binding energy.\n",{"path":11443,"title":11444,"module":11428,"summary":11445},"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity","A Taste of General Relativity","Einstein's happiest thought was that a freely falling observer feels no gravity: a uniform gravitational field is locally indistinguishable from an accelerating frame. That equivalence principle predicts that light bends near a mass, that clocks run slow deep in a gravitational well, that Mercury's orbit precesses, and that radar echoes are delayed. Every prediction has been confirmed, and pushing the redshift to its limit gives the black hole.\n",{"path":11447,"title":11448,"module":11449,"summary":11450},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval","Minkowski Spacetime and the Interval","Spacetime and the Lorentz Group","The Lorentz transformation of the foundations module is repackaged as the geometry of a four-dimensional space whose invariant is not a distance but the spacetime interval. Events, worldlines, and the metric signature define a causal structure that every observer shares. Proper time is the length of a timelike worldline, and the twin paradox becomes the statement that a straight worldline accumulates the most proper time.\n",{"path":11452,"title":11453,"module":11449,"summary":11454},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation","Four-Vectors and Index Notation","The index calculus that the rest of the course runs on. Contravariant and covariant components, the Minkowski metric as the machine that raises and lowers indices, and the Einstein summation convention are assembled into scalar products that are the same in every frame. The four-velocity and four-acceleration follow, together with the identity that the four-velocity has constant invariant length.\n",{"path":11456,"title":11457,"module":11449,"summary":11458},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity","The Lorentz Group and Rapidity","The Lorentz transformations are the linear maps that preserve the Minkowski metric, and they form the group O(1,3). Boosts are hyperbolic rotations parametrized by rapidity, which adds along a line where velocity does not. The boost and rotation generators fix the group's local structure; its four disconnected components are set by two signs; and two non-collinear boosts compose into a boost plus a rotation, the Wigner rotation behind Thomas precession.\n",{"path":11460,"title":11461,"module":11449,"summary":11462},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance","Doppler, Aberration, and Appearance","Light carries a null four-momentum, and boosting it produces every optical effect of relativity at once. The covariant Doppler formula follows from the transformation of frequency, aberration from the transformation of direction, and the headlight effect from the resulting concentration of light forward. The Terrell-Penrose result shows that a fast object photographs as rotated, not contracted.\n",{"path":11464,"title":11465,"module":11466,"summary":11467},"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion","Four-Momentum, Four-Force, and Accelerated Motion","Relativistic Dynamics","The four-momentum packages energy and momentum into a single vector whose invariant length is the rest mass. Its proper-time derivative is the four-force, always orthogonal to the four-velocity, and a constant orthogonal four-force produces hyperbolic motion. Constant proper acceleration gives rapidity linear in proper time, the relativistic rocket equation, and the Rindler horizon behind an eternally accelerating observer.\n",{"path":11469,"title":11470,"module":11466,"summary":11471},"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics","Particle Decays and Two-Body Kinematics","Conservation of four-momentum fixes the kinematics of a decay from the masses alone. In the center-of-momentum frame a parent breaks into two daughters with equal and opposite momenta and energies set by the Kallen triangle function. Boosting to the lab opens the decay into a cone, and the invariant mass built from the daughters reconstructs the parent as a peak. Worked cases: the two-photon decay of the neutral pion and a heavy two-body hadronic decay.\n",{"path":11473,"title":11474,"module":11466,"summary":11475},"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame","Relativistic Collisions and Threshold Energies","Two-body collisions run on the same conserved four-momentum as decays. The invariant s sets the total energy available in the center-of-momentum frame and therefore the threshold for producing new particles. Fixed-target energy grows only as the square root of beam energy while a collider grows linearly, which is why colliders reach high energy. Compton scattering follows as a worked photon-electron collision giving the wavelength shift.\n",{"path":11477,"title":11478,"module":11466,"summary":11479},"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants","Mandelstam Variables and Lorentz Invariants","For a two-to-two process the three Mandelstam invariants s, t, and u encode all the kinematics in frame-independent form. They obey a single linear constraint, the sum of the four squared masses, so only two are independent. s is the center-of-momentum energy squared, t and u are momentum transfers tied to the scattering angle, and crossing symmetry relates one amplitude across three channels through these variables.\n",{"path":11481,"title":11482,"module":11483,"summary":11484},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential","The Four-Current and Four-Potential","Covariant Electromagnetism","Charge density and current combine into a single four-vector whose divergence is charge conservation. The scalar and vector potentials combine likewise into the four-potential, whose gauge freedom fixes to the Lorenz condition, reducing Maxwell's equations for the potentials to a single wave equation sourced by the four-current.\n",{"path":11486,"title":11487,"module":11483,"summary":11488},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor","The Electromagnetic Field Tensor","The antisymmetric derivative of the four-potential is the field-strength tensor F, gauge invariant by construction, with the electric and magnetic fields as its components. Its dual exchanges E and B, and its two contractions form the Lorentz invariants that classify a field as electric, magnetic, or radiative in every frame.\n",{"path":11490,"title":11491,"module":11483,"summary":11492},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields","How E and B Transform","Transforming the field tensor under a boost gives explicit rules for the electric and magnetic fields: components along the motion are unchanged, transverse components mix and pick up a gamma. The field of a uniformly moving charge compresses transversely, and the force between a current and a moving charge shows that magnetism is the relativistic shadow of electrostatics.\n",{"path":11494,"title":11495,"module":11483,"summary":11496},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor","Covariant Maxwell and the Stress–Energy Tensor","Maxwell's four equations collapse into two tensor equations, one sourced by the four-current and one an identity on the field strength, with charge conservation automatic. The Lorentz force becomes a four-vector law, and the field's energy, momentum, and stress assemble into a symmetric, conserved stress–energy tensor — the object that will source gravity.\n",{"path":11498,"title":11499,"module":11500,"summary":11501},"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized","The Equivalence Principle","Curved Spacetime","The equality of gravitational and inertial mass promotes to a physical principle in three graded strengths — weak, Einstein, and strong. A freely falling laboratory is locally indistinguishable from an inertial frame, but the qualifier \"locally\" is essential: the size of the patch over which gravity vanishes is set by the tidal field, which no change of frame can remove. Tidal forces are the true, coordinate-independent signature of gravity, and they are what curvature will measure.\n",{"path":11503,"title":11504,"module":11500,"summary":11505},"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric","Manifolds, Vectors, and the Metric","A manifold is a space that looks locally like flat space, described by overlapping coordinate charts. Tangent vectors are directional derivatives with the coordinate basis vectors as partial-derivative operators; one-forms live in the dual space; and the metric tensor turns a coordinate line element into an invariant length. The 2-sphere and Rindler metrics serve as worked examples, including the coordinate singularities that are artefacts of the chart, not of the geometry.\n",{"path":11507,"title":11508,"module":11500,"summary":11509},"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols","Parallel Transport and the Covariant Derivative","The ordinary derivative of a vector field is not a tensor, because it subtracts vectors living in different tangent spaces. A connection supplies the missing comparison: the covariant derivative adds Christoffel-symbol correction terms that cancel the coordinate artefacts. Requiring the connection to be torsion-free and to preserve the metric fixes the Christoffel symbols uniquely in terms of derivatives of the metric, giving the Levi-Civita connection that general relativity uses.\n",{"path":11511,"title":11512,"module":11500,"summary":11513},"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation","Geodesics and the Newtonian Limit","Free fall is geodesic motion: a freely falling particle follows the straightest possible worldline, obtained either by parallel-transporting its own tangent vector or by extremizing proper time. Both routes give the geodesic equation. Affine parameters, and conserved quantities from symmetries via Killing vectors, make it solvable. In the weak-field slow-motion limit the geodesic equation reproduces Newton's law of gravity, fixing the time-time metric component as the Newtonian potential.\n",{"path":11515,"title":11516,"module":11500,"summary":11517},"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation","Curvature and the Riemann Tensor","Curvature is the failure of parallel transport to commute: carrying a vector around an infinitesimal loop returns it rotated, and the rotation per unit area is the Riemann tensor. Its symmetries cut the components to twenty in four dimensions. Geodesic deviation makes it the equation of tidal forces, and its contractions — the Ricci tensor, the Ricci scalar, and the divergence-free Einstein tensor — assemble the objects the field equation is built from.\n",{"path":11519,"title":11520,"module":11500,"summary":11521},"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations","The Einstein Field Equations","The field equation is assembled from a short list of requirements: a symmetric, divergence-free, second-order geometric tensor set proportional to the stress–energy tensor, with the coefficient fixed by the Newtonian limit. The cosmological constant is the one extra term the requirements allow. The Einstein–Hilbert action gives the same equation from a variational principle, and the coupled system closes the logic of the module: matter curves spacetime, and spacetime tells matter how to move.\n",{"path":11523,"title":11524,"module":11525,"summary":11526},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric","The Schwarzschild Metric","The Schwarzschild Solution","The first exact solution of Einstein's equation follows from two assumptions, staticity and spherical symmetry, imposed on the vacuum outside a mass. Solving the vacuum field equations fixes two metric functions and produces the Schwarzschild geometry, whose one length scale is the Schwarzschild radius $r_s = 2GM\u002Fc^2$. Birkhoff's theorem shows this is the only spherical vacuum, and the far field reduces to Newtonian gravity.\n",{"path":11528,"title":11529,"module":11525,"summary":11530},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild","Orbits in the Schwarzschild Geometry","The two Killing symmetries of the Schwarzschild metric give a conserved energy and angular momentum per unit mass, reducing geodesic motion to a one-dimensional problem in an effective potential. The potential carries an extra attractive $1\u002Fr^3$ term absent from Newton's, which caps the centrifugal barrier, produces an innermost stable circular orbit at $6GM\u002Fc^2$, and makes bound orbits precess instead of closing.\n",{"path":11532,"title":11533,"module":11525,"summary":11534},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics","Null Geodesics and the Photon Sphere","Light follows null geodesics, governed by a photon effective potential with a single unstable maximum at $3GM\u002Fc^2$, the photon sphere. The impact parameter sorts rays into those that escape with a deflection and those captured, with the critical value $b_c = 3\\sqrt{3}\\,GM\u002Fc^2$ dividing them. A grazing ray bends by $4GM\u002F(c^2 b)$, twice the naive Newtonian value, and the critical impact parameter sets the edge of a black hole's shadow.\n",{"path":11536,"title":11537,"module":11538,"summary":11539},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury","The Perihelion Precession of Mercury","Tests of General Relativity","A single extra term in the Schwarzschild orbit equation, cubic in the inverse radius, keeps a bound orbit from closing. The perturbation advances the perihelion by 6πGM\u002F(c²a(1−e²)) per revolution, which for Mercury is 43 arcseconds per century — exactly the anomaly left after Newtonian planetary perturbations are subtracted. A note on frame dragging closes the lesson.\n",{"path":11541,"title":11542,"module":11538,"summary":11543},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing","Light Deflection and Gravitational Lensing","A light ray grazing the Sun bends by 4GM\u002F(c²b), exactly twice the value a Newtonian corpuscle would give; the extra factor is the curvature of space. The 1919 eclipse confirmed it. The same bending focuses light from distant sources into Einstein rings, multiple images, and microlensing brightenings, making lensing a direct probe of mass, including mass that emits no light.\n",{"path":11545,"title":11546,"module":11538,"summary":11547},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay","Gravitational Redshift and the Shapiro Delay","A clock deeper in a gravitational well ticks slower, and a photon climbing out loses frequency by the ratio of the metric's time-time components. Pound and Rebka measured the 2.5×10⁻¹⁵ shift over a 22.5-metre tower. Radar signals grazing the Sun return late by about 250 microseconds, the Shapiro delay. Both probe the time part of the metric directly.\n",{"path":11549,"title":11550,"module":11538,"summary":11551},"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps","Relativity and the Global Positioning System","A GPS satellite clock runs slow by 7 microseconds a day from its orbital speed and fast by 46 from its higher gravitational potential, a net gain of about 38 microseconds a day. Left uncorrected, the timing error would grow into kilometres of position error within a day and exceed navigation tolerance within minutes. The satellites carry a pre-launch frequency offset to cancel it.\n",{"path":11553,"title":11554,"module":11555,"summary":11556},"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities","Horizons and Coordinate Singularities","Black Holes","The Schwarzschild radius is a coordinate singularity, not a curvature singularity: the metric blows up there only because the static coordinates fail, while the geometry stays finite. Eddington–Finkelstein and Kruskal– Szekeres coordinates cross the horizon smoothly and show the light cones tipping toward the center. A freely falling observer reaches the true singularity at r=0 in finite proper time, while a distant observer sees the infall freeze and redden at the horizon.\n",{"path":11558,"title":11559,"module":11555,"summary":11560},"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes","Rotating and Charged Black Holes","A stationary black hole is fixed by three numbers: mass, angular momentum, and charge. The Reissner–Nordström metric adds charge and splits the horizon in two; the Kerr metric adds rotation, drags inertial frames, and wraps the horizon in an ergosphere where nothing can stay still. Inside the ergosphere the Penrose process extracts rotational energy, and the no-hair theorem states that no other detail of the collapsed matter survives.\n",{"path":11562,"title":11563,"module":11555,"summary":11564},"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics","Black-Hole Thermodynamics","The four laws of black-hole mechanics mirror the four laws of thermodynamics term for term, with horizon area playing the role of entropy and surface gravity the role of temperature. Hawking's calculation makes the analogy literal: a black hole radiates at a temperature set by its surface gravity, carries a real entropy proportional to its horizon area, and slowly evaporates. The thermal spectrum raises the information paradox.\n",{"path":11566,"title":11567,"module":11568,"summary":11569},"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions","Linearized Gravity and Wave Solutions","Gravitational Waves","Weak gravity is a small perturbation of flat spacetime, and the linearized Einstein equation in the Lorenz gauge is an ordinary wave equation propagating at the speed of light. The trace-reversed perturbation carries the dynamics, residual gauge freedom fixes the transverse-traceless form, and the two physical polarizations deform a ring of freely falling masses into oscillating ellipses whose fractional size change is the strain.\n",{"path":11571,"title":11572,"module":11568,"summary":11573},"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula","The Quadrupole Formula","The retarded solution of the linearized field equation gives the field of a moving source, and conservation of mass and momentum forbids monopole and dipole radiation, leaving the mass quadrupole as the leading emitter. The quadrupole formula fixes the strain and the radiated luminosity, and applied to a compact binary it predicts the inspiral chirp of rising frequency and amplitude. The Hulse-Taylor pulsar's orbital decay confirmed it to a fraction of a percent.\n",{"path":11575,"title":11576,"module":11568,"summary":11577},"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events","LIGO and the First Detections","A gravitational wave is measured as a differential length change of the two arms of a kilometre-scale Michelson interferometer, a strain of order ten to the minus twenty-one that moves the mirrors by a fraction of a proton radius. GW150914 recorded the inspiral, merger, and ringdown of two black holes, fixing their masses and the energy radiated, and GW170817 with its coincident gamma-ray burst and kilonova opened multimessenger astronomy.\n",{"path":11579,"title":11580,"module":11581,"summary":11582},"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric","The Cosmological Principle and the FLRW Metric","A Bridge to Cosmology","Homogeneity and isotropy restrict the spacetime of the universe to a single family of metrics: a flat cosmic-time slicing of spatial sections of constant curvature, scaled by a time-dependent factor a(t). This lesson builds the Friedmann–Lemaître–Robertson–Walker metric from those symmetries, separates comoving from proper distance, and derives cosmological redshift as the stretching of wavelengths with the scale factor.\n",{"path":11584,"title":11585,"module":11581,"summary":11586},"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics","The Friedmann Equations and Cosmic Dynamics","The Einstein equation applied to the FLRW metric with a perfect-fluid source yields the two Friedmann equations and the conservation law that ties them together. This lesson derives them, defines the critical density and the density parameters that fix the spatial geometry, works out how matter, radiation, and a cosmological constant dilute and drive the expansion, and hands off to a dedicated cosmology subject.\n",{"path":11588,"title":11589,"module":6,"summary":6},"\u002Frelativity","Relativity",{"path":11591,"title":11592,"module":6,"summary":6},"\u002Fphysical-computing","Physical Computing",{"path":11594,"title":11595,"module":11596,"summary":11597},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum","Blackbody Radiation and the Planck Quantum","Origins of the Quantum","Millikan's oil-drop experiment fixed the electron charge as an indivisible unit, and the spectrum of thermal radiation forced a second, deeper quantum. Classical physics predicts an infinite energy density at short wavelengths; Planck removed the divergence by allowing a cavity oscillator to hold only energies that are integer multiples of hf, the first appearance of the quantum of action.\n",{"path":11599,"title":11600,"module":11596,"summary":11601},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon","The Photoelectric Effect and the Photon","Light shone on a clean metal ejects electrons, but the details defied the wave theory: the electrons' maximum energy depends on the light's frequency, not its brightness, and there is a sharp threshold frequency below which nothing happens. Einstein resolved every anomaly by treating light as a stream of energy quanta hf, each absorbed whole by one electron, and Millikan's measurement of the stopping-potential slope confirmed h to a decade before anyone expected.\n",{"path":11603,"title":11604,"module":11596,"summary":11605},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect","X-Rays and the Compton Effect","X-rays are short-wavelength electromagnetic waves produced when fast electrons are braked in a target, and their diffraction by crystals lets Bragg's law measure atomic spacings. Compton then scattered X-rays off electrons and found the wavelength shifted by an amount that only a photon carrying momentum hf\u002Fc could explain, closing the case for the particle nature of light.\n",{"path":11607,"title":11608,"module":11596,"summary":11609},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld","The Old Quantum Theory: Bohr, Sommerfeld, and Correspondence","Between Bohr's 1913 atom and Schrödinger's 1926 equation, physics ran on a provisional recipe: keep classical orbits, but admit only those whose action integral is a whole multiple of Planck's constant. This lesson develops the Wilson-Sommerfeld phase-integral rule, applies it to the oscillator and to the elliptical Kepler orbits of hydrogen, derives Sommerfeld's relativistic fine structure and the quantization of orbit orientation, and shows how the correspondence principle fixed intensities and selection rules. The systematic failures — helium, line intensities, the anomalous Zeeman effect — mark exactly where a theory of orbits had to give way to a theory of waves.\n",{"path":11611,"title":11612,"module":11613,"summary":11614},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction","De Broglie Waves and Electron Diffraction","The Wave Nature of Matter","In 1924 de Broglie proposed that every particle carries a wave of wavelength h\u002Fp. The hypothesis explains Bohr's quantized orbits as standing waves, and Davisson and Germer, then G. P. Thomson, confirmed it by diffracting electrons from crystals exactly as X-rays diffract. We derive the electron wavelength, work the Bragg analysis of the data, and give the relativistic form.\n",{"path":11616,"title":11617,"module":11613,"summary":11618},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation","Wave Packets and the Probabilistic Wave Function","A single de Broglie wave fills all space, but a particle is localized. Adding many waves of nearby wavelength builds a wave packet that is confined and moves at the group velocity, which equals the particle velocity. Born's rule reads the squared amplitude of the wave function as a probability density, the meaning confirmed by electron interference building up one detection at a time.\n",{"path":11620,"title":11621,"module":11613,"summary":11622},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle","The Uncertainty Principle and Wave-Particle Duality","The packet relations delta-k delta-x about 1 become Heisenberg's principle once momentum is hbar times wave number: position and momentum cannot both be sharp, nor energy and time. The gamma-ray microscope shows the limit is physical, not technical. It fixes the zero-point energy of a confined particle, the size of the hydrogen atom, and the natural width of spectral lines, and it frames the wave-particle duality of all matter and radiation.\n",{"path":11624,"title":11625,"module":11626,"summary":11627},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension","The Schrödinger Equation in One Dimension","Wave Mechanics in One Dimension","The wave equation for matter cannot be derived; it is postulated and judged by experiment. We build the time-dependent Schrödinger equation from the de Broglie relations, read Born's probability rule off the complex wave function, and separate the time and space dependence to get the time-independent equation whose bound-state solutions are the stationary states. The five acceptability conditions on the wave function are what force energy to be quantized.\n",{"path":11629,"title":11630,"module":11626,"summary":11631},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics","The Free Particle and Wave-Packet Dynamics","The free particle has no bound states: its stationary solutions are non-normalizable plane waves forming a continuum. Physical states are wave packets built by superposing them, and the superposition is a Fourier transform. We delta-normalize the plane waves, assemble a Gaussian packet, solve for its exact time evolution, and read off the two facts that reconcile the wave picture with mechanics: the packet moves at the group velocity ħk\u002Fm, the classical velocity, and it spreads because its component momenta travel at different speeds.\n",{"path":11633,"title":11634,"module":11626,"summary":11635},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells","Particle in Infinite and Finite Square Wells","The infinite square well is the simplest bound-state problem: two boundary conditions quantize the energy into a ladder E_n = n² E_1, and the eigenfunctions are the standing waves of a string fixed at both ends. Relaxing the walls to a finite depth lets the wave function leak into the classically forbidden region, keeps the number of bound states finite, and turns the eigenvalue condition into a transcendental equation solved graphically.\n",{"path":11637,"title":11638,"module":11626,"summary":11639},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator","Operators, Expectation Values, and the Harmonic Oscillator","Measurable quantities are extracted from the wave function as expectation values, and each observable is represented by an operator that acts between Ψ* and Ψ — position by multiplication, momentum by a derivative, energy by the Hamiltonian. Applied to the harmonic oscillator, the machinery yields evenly spaced levels E_n = (n+½)ℏω, Gaussian- times-Hermite eigenfunctions of definite parity, and the selection rule Δn = ±1.\n",{"path":11641,"title":11642,"module":11626,"summary":11643},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential","The Dirac-Delta Potential: A Single Bound State and Scattering","A potential concentrated at a single point is solvable in closed form and isolates the physics of matching a wave function across a discontinuity. Integrating the Schrödinger equation across the spike gives a jump condition on the derivative; the attractive delta well then supports exactly one bound state, of energy set by the strength alone, while the same spike scatters an incoming beam with a transmission that rises from zero to one. The attractive well and the repulsive barrier scatter identically yet only the well binds.\n",{"path":11645,"title":11646,"module":11626,"summary":11647},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling","Barrier Penetration and Quantum Tunneling","Unbound states scatter rather than bind. A particle meeting a step is partly reflected even when it has more than enough energy to pass, and a particle meeting a barrier taller than its energy has a nonzero chance of appearing on the far side. Matching the wave function across the boundaries gives the reflection and transmission coefficients and the exponential tunneling probability that explains alpha decay, the scanning tunneling microscope, and the ammonia clock.\n",{"path":11649,"title":11650,"module":11651,"summary":11652},"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation","Hilbert Space and Dirac Bra–Ket Notation","The Formalism of Quantum Mechanics","Wave mechanics is one representation of a deeper structure: quantum states are vectors in a complex inner-product space, and observables act on them as linear operators. We build that space from the axioms, introduce Dirac's kets and bras as vectors and the linear functionals that measure them, and identify the wavefunction as the components of an abstract state in the position basis. The resolution of the identity is the single algebraic tool that ties every basis, expansion, and matrix element together.\n",{"path":11654,"title":11655,"module":11651,"summary":11656},"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues","Observables, Hermitian Operators, and the Spectral Theorem","Every measurable quantity is represented by a Hermitian operator, and the reason is forced: a measurement needs real eigenvalues, orthogonal eigenvectors, and a complete eigenbasis, and Hermiticity delivers precisely those. We derive those properties from self-adjointness, state the spectral theorem, handle degeneracy, and show that two observables share an eigenbasis precisely when they commute — the algebraic condition behind compatible and incompatible measurements.\n",{"path":11658,"title":11659,"module":11651,"summary":11660},"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement","The Postulates and Quantum Measurement","With states as vectors and observables as Hermitian operators, the physical content of quantum mechanics reduces to a short list of postulates. We state them precisely, derive the Born probability rule for discrete and continuous spectra, work out projective collapse and its idempotence, compute expectation values and their variance, and state the measurement problem cleanly — the one place the postulates split unitary evolution from measurement without explaining the seam.\n",{"path":11662,"title":11663,"module":11651,"summary":11664},"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra","Position, Momentum, and Continuous Spectra","Position and momentum are the observables with no normalizable eigenstates: their spectra are continuous, their eigenkets are delta-normalized, and the two are Fourier conjugates. We derive the canonical commutator from the momentum operator, build the continuous-basis machinery (Dirac deltas replacing Kronecker deltas), show the position and momentum wavefunctions are a Fourier-transform pair, and compute expectation values in either representation.\n",{"path":11666,"title":11667,"module":11651,"summary":11668},"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle","Commutators and the Generalized Uncertainty Principle","The commutator of two observables measures the obstruction to sharing an eigenbasis, and it bounds how sharply both can be known at once. We derive the generalized uncertainty relation from the Schwarz inequality, recover the position–momentum bound as a special case, characterize the minimum-uncertainty states that saturate it as Gaussians, and give the energy–time relation its correct reading as a lifetime bound rather than a commutator relation.\n",{"path":11670,"title":11671,"module":11651,"summary":11672},"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures","Time Evolution, Propagators, and the Heisenberg Picture","Time evolution is generated by the Hamiltonian and implemented by a unitary operator that preserves probability. We build that operator, expand a state in stationary states to see why probability densities freeze while phases wind, introduce the propagator, transfer the time dependence onto operators in the Heisenberg picture, and derive Ehrenfest's theorem — which recovers classical equations of motion for expectation values and identifies conserved quantities as observables commuting with the Hamiltonian.\n",{"path":11674,"title":11675,"module":11676,"summary":11677},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states","Ladder Operators and the Number States","The Oscillator Algebraically, and Symmetry","The harmonic oscillator can be solved without touching a differential equation. Factoring the Hamiltonian into a lowering operator and its adjoint turns the spectrum into pure algebra: the commutator relation fixes the ladder, the vacuum condition fixes the ground state, and the energies fall out as equally spaced rungs. The same operators give the matrix elements of position and momentum for free.\n",{"path":11679,"title":11680,"module":11676,"summary":11681},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states","Coherent and Squeezed States","A single number state never moves — its position expectation is pinned at the origin. The superposition that oscillates like a classical particle is the eigenstate of the annihilation operator: the coherent state. It is a displaced vacuum, carries Poissonian photon statistics, saturates the uncertainty bound, and traces a rigid Gaussian orbit in phase space. Squeezing deforms that circle, trading precision in one quadrature for noise in the other.\n",{"path":11683,"title":11684,"module":11676,"summary":11685},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws","Symmetries, Generators, and Conservation Laws","Every continuous symmetry of a quantum system is a unitary operator built by exponentiating a Hermitian generator: momentum generates translations, angular momentum generates rotations, the Hamiltonian generates time evolution. When a generator commutes with the Hamiltonian, the transformation leaves the dynamics unchanged and the generator is conserved — the quantum form of Noether's theorem — and any symmetry that mixes states within a level forces degeneracy.\n",{"path":11687,"title":11688,"module":11676,"summary":11689},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries","Parity, Time Reversal, and Discrete Symmetries","Parity and time reversal are symmetries no continuous generator can reach. Parity is a unitary involution whose eigenvalues label states even or odd, fixing the dipole selection rules. Time reversal is antiunitary: it conjugates i, flips momenta and spins, and for half-integer spin squares to minus one, which by Kramers' theorem makes every level of a time-reversal-invariant Hamiltonian at least doubly degenerate.\n",{"path":11691,"title":11692,"module":10531,"summary":11693},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics","Orbital Angular Momentum and Spherical Harmonics","Orbital angular momentum is the operator triple built from position and momentum. Its components fail to commute, so no state carries sharp values of more than one of them, but each commutes with the total square. Solving the common eigenvalue problem in spherical coordinates quantizes both the magnitude and the projection and produces the spherical harmonics, the angular part of every central-force wavefunction.\n",{"path":11695,"title":11696,"module":10531,"summary":11697},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra","The Angular-Momentum Algebra and Ladder Operators","The eigenvalues of angular momentum follow from the commutation relations alone, with no reference to coordinates or wavefunctions. Raising and lowering operators built from the components generate finite multiplets, force the total quantum number to be a non-negative integer or half-integer, and fix the matrix elements of every component. The half-integer values excluded by orbital motion appear here, and they are what spin realizes.\n",{"path":11699,"title":11700,"module":10531,"summary":11701},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan","Addition of Angular Momenta and Clebsch–Gordan Coefficients","Two angular momenta combine into a total whose allowed magnitudes run from the difference to the sum of the parts in integer steps. The change from the uncoupled product basis to the coupled total-angular-momentum basis is carried out with the lowering operator and orthogonality, and its matrix of overlaps is the table of Clebsch–Gordan coefficients. Two spin-halves split into a triplet and a singlet, the prototype for every composite spin.\n",{"path":11703,"title":11704,"module":11705,"summary":11706},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions","The Schrödinger Equation in Three Dimensions","Central Potentials","A central potential depends only on the distance from a force center, so the three-dimensional Schrödinger equation separates in spherical coordinates. The angular factor is a spherical harmonic; the radial factor obeys a one-dimensional equation with an effective potential whose centrifugal barrier depends on the angular-momentum quantum number. The free particle and the spherical box fix the two limiting cases through the spherical Bessel functions.\n",{"path":11708,"title":11709,"module":11705,"summary":11710},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom","The Hydrogen Atom","The Coulomb potential turns the radial equation into one whose bound states exist only for a discrete set of energies. A power-series solution truncated to keep the wavefunction normalizable forces the principal quantum number, and the energy comes out proportional to minus one over its square, recovering the Rydberg spectrum. The bound states are the associated Laguerre functions times spherical harmonics, and their energy depends on the principal number alone, giving an n-squared degeneracy larger than rotational symmetry can explain.\n",{"path":11712,"title":11713,"module":11705,"summary":11714},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry","The Isotropic Oscillator and Hidden Symmetry","The three-dimensional isotropic harmonic oscillator solves in both Cartesian and spherical bases, and the two solutions must agree on the degeneracy of every level. That agreement, and the accidental degeneracy of hydrogen, both come from a symmetry larger than rotation: the oscillator carries an SU(3) invariance built from a conserved quadrupole tensor, and the Coulomb problem carries an SO(4) invariance built from the conserved Runge–Lenz vector. These hidden symmetries pin the degeneracies that rotational invariance alone leaves unexplained.\n",{"path":11716,"title":11717,"module":11718,"summary":11719},"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach","Spin-½, the Pauli Matrices, and Stern–Gerlach","Spin","A silver atom passing through an inhomogeneous magnetic field splits into two beams, not a smear. That single fact fixes the internal angular momentum of the electron to a two-valued quantity with no spatial wavefunction. We build the two-dimensional spin space, the Pauli matrices and their algebra, the spinor for measurement along an arbitrary axis, and the sequential Stern–Gerlach filters that expose measurement disturbance.\n",{"path":11721,"title":11722,"module":11718,"summary":11723},"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance","Spin in a Magnetic Field: Precession and Resonance","A spin coupled to a magnetic field is the simplest nontrivial quantum dynamics. A static field makes the spin expectation precess on a cone at the Larmor frequency while the energy levels split linearly. Adding a weak oscillating field and passing to the rotating frame produces Rabi oscillations and a resonance lineshape — the physics of NMR and ESR, and the driven qubit.\n",{"path":11725,"title":11726,"module":11718,"summary":11727},"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere","Two-Level Systems and the Bloch Sphere","Every two-state quantum system is a spin-½ in disguise. Its Hamiltonian is an effective magnetic field, its pure states are points on the Bloch sphere, and its unitary evolution is a rigid rotation of that sphere. The same structure produces avoided level crossings, the ammonia inversion doublet and its maser, and the qubit.\n",{"path":11729,"title":11730,"module":11731,"summary":11732},"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry","Identical Particles and Exchange Symmetry","Identical Particles","Two electrons carry no label that distinguishes one from the other, and that bare fact reshapes the state space. The exchange operator that swaps particle labels commutes with any Hamiltonian built from identical particles, so its eigenvalue is conserved, and nature admits only its two extremes: totally symmetric states for bosons and totally antisymmetric states for fermions. The antisymmetry forces a statistical correlation, the exchange \"force,\" that keeps fermions apart and draws bosons together even with no interaction between them.\n",{"path":11734,"title":11735,"module":11731,"summary":11736},"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table","The Pauli Principle, Atoms, and the Periodic Table","Antisymmetry packaged as a Slater determinant turns the exclusion principle into an operating rule for building atoms. Helium shows the machinery in full: the electron-electron repulsion splits into a direct Coulomb integral and an exchange integral, and the exchange term alone pushes the spin-triplet (orthohelium) below the spin-singlet (parahelium) with no magnetic interaction in sight. Screening, the aufbau order, and Hund's rules then assemble the whole periodic table from the same antisymmetry.\n",{"path":11738,"title":11739,"module":11740,"summary":11741},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory","Time-Independent Perturbation Theory","Approximation Methods for Bound States","Almost no realistic Hamiltonian can be solved exactly. Perturbation theory treats a hard Hamiltonian as a solvable one plus a small correction and expands the eigenvalues and eigenstates in powers of that correction. We derive the first- and second-order energy shifts and the first-order state correction for a nondegenerate level, expose the small-denominator failure that degeneracy forces, and fix it by diagonalizing the perturbation inside the degenerate subspace to find the \"good\" zeroth-order states.\n",{"path":11743,"title":11744,"module":11740,"summary":11745},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom","Fine Structure and the Real Hydrogen Atom","The Bohr spectrum is only the leading term. Two relativistic corrections of order alpha-squared — the relativistic kinetic-energy correction and spin–orbit coupling, joined by the Darwin term for s states — split the hydrogen levels into fine structure that depends on the total angular momentum j. We derive each shift as a first-order perturbation, combine them into a formula depending only on n and j, and continue down the energy ladder to the Lamb shift and the hyperfine 21 cm line.\n",{"path":11747,"title":11748,"module":11740,"summary":11749},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects","The Zeeman and Stark Effects","An atom in an external field is a perturbation problem whose good basis depends on which interaction wins. A magnetic field competes with the internal spin–orbit coupling: the weak-field limit gives the anomalous Zeeman splitting set by the Landé g-factor, the strong-field limit gives the Paschen–Back pattern in the uncoupled basis, and the intermediate regime is a matrix diagonalization. An electric field gives a quadratic shift for the nondegenerate ground state and a linear splitting for the degenerate n = 2 level.\n",{"path":11751,"title":11752,"module":11740,"summary":11753},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method","The Variational Method","The expectation of the Hamiltonian in any trial state is an upper bound on the true ground-state energy. Minimizing that expectation over a parametrized family of trial functions turns the ground-state problem into ordinary calculus and needs no small parameter. We prove the bound, apply it to the helium atom with a screened effective charge, use a two-center trial to predict binding in the hydrogen molecular ion, and extend the method to excited states through orthogonality.\n",{"path":11755,"title":11756,"module":11740,"summary":11757},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation","The WKB Approximation","When the potential varies slowly on the scale of the de Broglie wavelength, the wavefunction is locally a plane wave with a position-dependent wavelength. This semiclassical picture builds the wavefunction from the classical momentum, breaks down at the turning points where the momentum vanishes, and is repaired there by connection formulas. The result recovers the Bohr–Sommerfeld quantization rule with its half-integer correction and gives the exponential tunneling rate through a smooth barrier, the Gamow factor.\n",{"path":11759,"title":11760,"module":6,"summary":6},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":11762,"title":11763,"module":11764,"summary":11765},"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions","Sets, Logic, and Functions","Foundations and the Real Number System","The working language of analysis: quantifiers and the proof patterns (contrapositive, contradiction, induction), sets and their operations, relations and equivalence classes, and functions with their images, injections, surjections, and bijections. Cardinality is measured by bijection, and Cantor's theorem that no set surjects onto its power set forces uncountable sets to exist.\n",{"path":11767,"title":11768,"module":11764,"summary":11769},"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness","Ordered Fields and the Completeness Axiom","The real numbers are the unique ordered field with the least-upper-bound property. The field and order axioms, the exact failure of the rationals (no supremum for the set of rationals below √2), and completeness as the defining axiom of ℝ lead to the first consequences: the existence of √2, the Archimedean property, and the density of ℚ in ℝ.\n",{"path":11771,"title":11772,"module":11764,"summary":11773},"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds","Absolute Value, Bounded Sets, and Inequalities","The absolute value turns the order on ℝ into a notion of distance, with the triangle inequality as the estimate underlying most later proofs. Covered: its algebra, the triangle and reverse-triangle inequalities, and the extension of the sup\u002Finf vocabulary from sets to bounded functions.\n",{"path":11775,"title":11776,"module":11764,"summary":11777},"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability","Intervals, Uncountability, and Decimals","Intervals are classified, and ℝ is proved uncountable two ways: a nested-interval construction and the decimal diagonal argument. Decimal expansions are built as suprema of truncations, which pins the source of their non-uniqueness (the 0.4999… equals 0.5000… identity) and the identification of the rationals with the eventually-repeating expansions. The middle-thirds Cantor set is an uncountable set of measure zero.\n",{"path":11779,"title":11780,"module":11781,"summary":11782},"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits","Sequences and Their Limits","Sequences and Series","A sequence is a function on the natural numbers; it converges to a limit when its terms eventually stay within any prescribed tolerance of that number. The epsilon-M definition fixes the order of the quantifiers, and from it the limit is unique, every convergent sequence is bounded, and only the tail matters. Divergence to plus or minus infinity records terms that outgrow every bound.\n",{"path":11784,"title":11785,"module":11781,"summary":11786},"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone","Limit Laws and Monotone Convergence","Limits commute with sums, products, quotients, roots, and absolute values and preserve non-strict inequalities, so a limit can be assembled from the limits of its parts without returning to epsilon and M. The squeeze lemma transfers a limit through two envelopes; the monotone convergence theorem produces a limit from boundedness alone; and the ratio test settles the geometric and factorial standard limits.\n",{"path":11788,"title":11789,"module":11781,"summary":11790},"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass","Subsequences, Limit Superior, and Bolzano–Weierstrass","A bounded sequence need not converge, but it always has convergent subsequences, and its terms cluster between two extreme values. The limit superior and inferior are the limits of the tail suprema and infima; they always exist for a bounded sequence, coincide exactly when it converges, and are its largest and smallest subsequential limits. Bolzano–Weierstrass extracts a convergent subsequence from boundedness alone.\n",{"path":11792,"title":11793,"module":11781,"summary":11794},"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness","Cauchy Sequences and the Completeness of the Reals","The Cauchy criterion tests convergence without knowing the limit: a sequence converges exactly when its terms eventually all lie within any tolerance of one another. Cauchy sequences are bounded, in the reals Cauchy and convergent are equivalent, and this completeness property is interchangeable with the least-upper-bound axiom — the single feature that separates the real line from the rationals.\n",{"path":11796,"title":11797,"module":11781,"summary":11798},"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence","Series and Convergence Tests","A series converges when its sequence of partial sums does, so every fact about sequences transfers. Geometric and telescoping series sum in closed form; the n-th term test rejects series whose terms miss zero, though the harmonic series shows the converse fails; and the comparison test against the geometric and p-series benchmarks settles most nonnegative-term series.\n",{"path":11800,"title":11801,"module":11781,"summary":11802},"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement","Absolute Convergence, the Ratio and Root Tests, and Rearrangements","Absolute convergence is the strong form of convergence that permits free manipulation; conditional convergence is fragile. Absolute convergence implies convergence, and the ratio and root tests detect it by comparison with the geometric series. The alternating series test supplies conditionally convergent series, Riemann's theorem rearranges any of them to any sum, and Mertens' theorem multiplies series when at least one converges absolutely.\n",{"path":11804,"title":11805,"module":11806,"summary":11807},"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms","Metric Spaces, Norms, and Examples","Metric Spaces and Topology","A metric is a function $d(x,y)$ obeying four axioms: nonnegativity, identity of indiscernibles, symmetry, and the triangle inequality. The Euclidean, taxicab, sup, discrete, and great-circle metrics all qualify, as does the sup metric on $C[a,b]$. Every norm induces a metric, and strongly equivalent metrics share the same open sets.\n",{"path":11809,"title":11810,"module":11806,"summary":11811},"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets","Open and Closed Sets, Interior, Closure","Open sets are those in which every point has room to move; closed sets are their complements. From the single ball construction come the topology axioms (arbitrary unions, finite intersections), the interior, closure, and boundary of a set, and the fact that openness is always relative to the ambient space.\n",{"path":11813,"title":11814,"module":11806,"summary":11815},"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness","Convergence, Cauchy Sequences, and Completeness","The $\\varepsilon$-$N$ definition of a limit transfers verbatim to any metric space once $|x-y|$ is replaced by $d(x,y)$. Convergent sequences characterize closed sets and closures; Cauchy sequences and completeness capture spaces with no missing limits, with $\\mathbb{R}^n$ and $C[a,b]$ complete and $\\mathbb{Q}$ and $(0,1]$ not.\n",{"path":11817,"title":11818,"module":11806,"summary":11819},"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness","Compactness","A set is compact if every open cover has a finite subcover. In a metric space this is equivalent to sequential compactness and to being complete and totally bounded. Compact sets are closed and bounded; the Heine–Borel theorem gives the converse in $\\mathbb{R}^n$ but nowhere else in general.\n",{"path":11821,"title":11822,"module":11806,"summary":11823},"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness","Connectedness","A space is connected when it cannot be split into two nonempty open pieces. The connected subsets of $\\mathbb{R}$ are precisely the intervals, path- connectedness gives a constructive sufficient condition, and connectedness is a topological invariant preserved by continuous maps, the fact behind the intermediate value theorem.\n",{"path":11825,"title":11826,"module":10225,"summary":11827},"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions","Limits of Functions","The limit of a function at a point is an epsilon–delta condition pinning one value L as the target of f(x) as x approaches c, mirroring the sequence definition with distance replacing index. It is stated only at cluster points of the domain, is unique when it exists, and reduces to sequential limits through the Heine criterion. The algebra of limits and one-sided limits follow from that reduction.\n",{"path":11829,"title":11830,"module":10225,"summary":11831},"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions","Continuous Functions","A function is continuous at c when its limit there equals its own value, lim f(x) = f(c). The epsilon–delta and sequential forms agree; sums, products, quotients, and compositions of continuous functions are continuous; and the failures split into jump, Dirichlet, popcorn, and removable types. The topological reading is that preimages of open sets are open.\n",{"path":11833,"title":11834,"module":10225,"summary":11835},"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt","Extreme and Intermediate Value Theorems","On a closed bounded interval a continuous function attains an absolute maximum and minimum (the extreme value theorem, compactness preserved by continuity) and takes every value between its endpoint values (the intermediate value theorem, connectedness preserved). Both proofs run through Bolzano–Weierstrass and bisection, and yield root-finding, existence of k-th roots, and fixed-point theorems.\n",{"path":11837,"title":11838,"module":10225,"summary":11839},"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity","Uniform Continuity","Uniform continuity strengthens continuity by demanding one delta that works at every point of the domain, not a delta re-chosen at each point. It separates x^2 on a compact interval from x^2 on the whole line and from 1\u002Fx near zero; continuity on a closed bounded interval is automatically uniform; uniformly continuous functions preserve Cauchy sequences and extend to endpoints; and Lipschitz continuity is the strongest of the three, through its secant-slope bound.\n",{"path":11841,"title":11842,"module":10225,"summary":11843},"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces","Continuity on Metric Spaces","The epsilon–delta definition used only distances, so continuity transfers to maps between metric spaces by replacing absolute values with the two metrics. In this generality continuity still admits a sequential form, preserves compactness and connectedness, is uniform on a compact domain, and reads topologically as preimages of open sets being open, the formulation that defines homeomorphisms.\n",{"path":11845,"title":11846,"module":10225,"summary":11847},"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone","Limits at Infinity and Monotone Functions","Treating infinity as a cluster point extends the epsilon–delta limit to x approaching plus or minus infinity, giving horizontal asymptotes and infinite limits. For monotone functions the one-sided limits always exist as suprema and infima, the discontinuities are jumps and at most countably many, the continuity is equivalent to the image being an interval, and a strictly monotone function always has a continuous inverse.\n",{"path":11849,"title":11850,"module":11851,"summary":11852},"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative","The Derivative","Differentiation","The derivative is the limit of the difference quotient, the slope the secant lines approach as the second point slides into the first. Differentiability forces continuity; linearity and the product, quotient, and chain rules follow from the definition; and a continuous function can fail to be differentiable, as the absolute value does at the origin.\n",{"path":11854,"title":11855,"module":11851,"summary":11856},"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem","The Mean Value Theorem","A relative extremum in the interior forces the derivative to vanish; Rolle's theorem and the mean value theorem turn that local fact into global control. The sign of the derivative fixes monotonicity, a bounded derivative yields a Lipschitz bound, and Darboux's theorem shows derivatives have the intermediate value property even where they are discontinuous.\n",{"path":11858,"title":11859,"module":11851,"summary":11860},"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem","Taylor's Theorem","Taylor's theorem generalizes the mean value theorem: an n-times differentiable function is matched near a point by a degree-n polynomial, with a Lagrange remainder that names the error exactly through one higher derivative. Iterating the mean value theorem proves it; the second-derivative test is the order-one case; and a smooth non-analytic bump separates a Taylor series from the function it fails to represent.\n",{"path":11862,"title":11863,"module":11851,"summary":11864},"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d","The Inverse Function Theorem in One Variable","A nonzero derivative certifies a local inverse and fixes its slope. A strictly monotone differentiable function has a differentiable inverse whose derivative is the reciprocal of the original; the inverse function theorem removes the monotonicity hypothesis, and the reciprocal formula constructs nth roots and the logarithm's derivative, failing exactly where the derivative vanishes.\n",{"path":11866,"title":11867,"module":11868,"summary":11869},"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral","Partitions, Darboux Sums, and Integrability","The Riemann Integral","The Riemann integral is defined by trapping the area under a bounded function between under- and over-estimates. Partitions cut the domain into strips; lower and upper Darboux sums bracket the area; refining a partition tightens the bracket. A function is integrable exactly when the bracket can be made arbitrarily thin, and the tagged Riemann-sum limit gives the same number.\n",{"path":11871,"title":11872,"module":11868,"summary":11873},"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes","Which Functions Are Integrable","The Cauchy criterion certifies whole classes of functions as integrable. Continuous functions are integrable because uniform continuity makes every oscillation cap small; monotone functions are integrable because their caps telescope to a single total jump; bounded functions with finitely many discontinuities are integrable by isolating the bad points. The Dirichlet function fails, and the Lebesgue criterion names the exact boundary.\n",{"path":11875,"title":11876,"module":11868,"summary":11877},"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral","Properties of the Integral","The integral is a linear, order-preserving, additive operator on the integrable functions. It splits across subintervals, respects inequalities, bounds the size of a function by the integral of its absolute value, and preserves products. The mean value theorem for integrals identifies the integral with an attained average height on a fixed rectangle.\n",{"path":11879,"title":10280,"module":11868,"summary":11880},"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem","The fundamental theorem ties the integral to the derivative in two forms. The evaluation form computes a definite integral from any antiderivative; the differentiation form shows the area function has derivative equal to the integrand at points of continuity. Together they make differentiation and integration inverse operations, and yield integration by parts and change of variables.\n",{"path":11882,"title":11883,"module":11868,"summary":11884},"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper","The Logarithm, Exponential, and Improper Integrals","The integral defines transcendental functions. The logarithm is the area under 1\u002Ft, the exponential is its inverse, and their calculus properties follow from the fundamental theorem. Improper integrals extend integration to unbounded intervals and unbounded integrands as limits of proper integrals, with a p-test, a comparison test, absolute versus conditional convergence, and the integral test linking integrals to series.\n",{"path":11886,"title":11887,"module":11888,"summary":11889},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence","Pointwise and Uniform Convergence","Sequences and Series of Functions","A sequence of functions has two natural notions of limit. Pointwise convergence fixes each input and takes the limit of numbers; uniform convergence demands one rate that works for every input at once. The uniform norm turns the second into a statement about a single sequence of numbers, and the uniform Cauchy criterion and the Weierstrass M-test let us certify it.\n",{"path":11891,"title":11892,"module":11888,"summary":11893},"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits","Interchange of Limits: Continuity, Integration, Differentiation","Passing to a limit inside a continuity statement, an integral, or a derivative is an interchange of two limits, and the two limits do not always commute. Uniform convergence licenses the first two swaps: the uniform limit of continuous functions is continuous, and the limit of the integrals is the integral of the limit. Differentiation needs uniform convergence of the derivatives, and counterexamples show why each hypothesis is required.\n",{"path":11895,"title":11896,"module":11888,"summary":11897},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass","Power Series and the Weierstrass Approximation Theorem","A power series converges uniformly on every closed subinterval inside its radius of convergence, together with all of its derivatives. That makes it continuous, differentiable, and integrable term by term, so a power series defines an infinitely differentiable function. The Weierstrass approximation theorem then shows that polynomials come uniformly close to any continuous function on a closed bounded interval.\n",{"path":11899,"title":11900,"module":11888,"summary":11901},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode","Picard's Existence and Uniqueness Theorem","The Banach fixed-point theorem says a contraction of a complete metric space has exactly one fixed point, found by iterating from any start. Applied to the space of continuous functions with the uniform norm, it proves Picard's theorem: a first-order differential equation with a Lipschitz right-hand side has a unique local solution. Picard iteration constructs that solution explicitly, and worked examples show the Lipschitz condition is not optional.\n",{"path":11903,"title":11904,"module":11905,"summary":11906},"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn","The Derivative of a Map ℝⁿ → ℝᵐ","Functions of Several Variables (Introduction)","The derivative of a map between Euclidean spaces is the linear transformation of vanishing relative error, unique when it exists and represented in coordinates by the Jacobian matrix of partial derivatives. Differentiability forces continuity through a local Lipschitz bound. Existence of the partial derivatives alone does not suffice; continuity of the partials does.\n",{"path":11908,"title":11909,"module":11905,"summary":11910},"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule","Directional Derivatives, the Gradient, and the Chain Rule","The directional derivative measures the rate of change of a scalar field along a chosen heading and equals the derivative applied to that direction. The gradient collects these into a vector that points along steepest ascent and sits orthogonal to level sets. The chain rule composes derivatives by multiplying Jacobians, and a mean value theorem holds for scalar fields but fails for vector-valued maps.\n",{"path":11912,"title":11913,"module":11905,"summary":11914},"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema","Higher Derivatives, Taylor's Theorem, and Extrema","Iterating the derivative gives a symmetric second derivative, the Hessian, whose mixed partials agree when they are continuous. Taylor's theorem expands a smooth map to any order with a Lagrange-type remainder, and at a critical point the definiteness of the Hessian decides between a local minimum, a local maximum, and a saddle.\n",{"path":11916,"title":11917,"module":11905,"summary":11918},"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems","The Inverse and Implicit Function Theorems","A nonlinear map with a nonsingular Jacobian is locally invertible, with the inverse's derivative given by the inverse matrix. The contraction mapping principle supplies the local inverse; the implicit function theorem then solves a system for some variables in terms of the rest whenever the relevant Jacobian block is invertible. Worked coordinate changes show both theorems in use.\n",{"path":11920,"title":11921,"module":11905,"summary":11922},"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals","Multiple Integrals","The Riemann integral of a bounded function over a closed rectangle in Euclidean space is built from Darboux upper and lower sums on a grid of subrectangles, with the same squeeze criterion that governs the one-variable integral. Continuous integrands are integrable, and a set of content zero can be ignored. Fubini's theorem evaluates a multiple integral as an iterated one in either order, and the indicator trick extends the theory to regions bounded by curves.\n",{"path":11924,"title":11925,"module":6,"summary":6},"\u002Freal-analysis","Real Analysis",{"path":11927,"title":11928,"module":9887,"summary":11929},"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations","Sets, Functions, and Equivalence Relations","Algebra is built on three prior notions: the set, the map between sets, and the equivalence relation that reorganizes a set into disjoint classes. Sets, maps (injective, surjective, bijective), fibers and preimages, and the correspondence between equivalence relations and partitions — the one structural fact reused in every later quotient construction.\n",{"path":11931,"title":11932,"module":9887,"summary":11933},"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic","The Integers and Modular Arithmetic","The integers carry the template every ring later imitates: well-ordering drives induction, induction drives the division algorithm, and division drives the Euclidean algorithm, gcd, Bézout's identity, and unique factorization into primes. Quotienting by congruence mod n builds the first finite arithmetic, Z\u002FnZ, whose invertible elements form the group of units.\n",{"path":11935,"title":11936,"module":11937,"summary":11938},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples","Group Axioms and First Examples","Groups and Symmetry","A group is a set with one associative operation that has an identity and inverses. We state the axioms, prove that the identity, inverses, and cancellation behave as expected, define the order of a group and of an element, and catalogue the running examples: the integers, the additive group of residues mod n, and the multiplicative group of units mod n.\n",{"path":11940,"title":11941,"module":11937,"summary":11942},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups","Dihedral and Symmetric Groups","The dihedral group D_{2n} is the symmetries of a regular n-gon, generated by a rotation r and a reflection s subject to three relations. The symmetric group S_n is all permutations of n objects, written in cycle notation. Orders, generators and relations, cycle decomposition, the order of a permutation from its cycle type, and the parity that splits S_n in half.\n",{"path":11944,"title":11945,"module":11937,"summary":11946},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups","Matrix and Quaternion Groups","Invertible matrices over a field form the general linear group GL_n(F), with the determinant-one matrices as the subgroup SL_n(F). Over a finite field the order of GL_n(F) has a clean product formula. The quaternion group Q_8 is a second small nonabelian group, distinct from the dihedral group of the same order; its multiplication and subgroup structure sharpen the contrast between the two.\n",{"path":11948,"title":11949,"module":11937,"summary":11950},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions","Homomorphisms, Isomorphisms, and Actions","A homomorphism is a map between groups that respects the operation; an isomorphism is a bijective one, making two groups the same up to relabeling. The kernel and image measure how far a homomorphism is from injective and surjective. A group action realizes a group as permutations of a set, and actions correspond exactly to homomorphisms into a symmetric group, with orbits and stabilizers as the first tools for counting.\n",{"path":11952,"title":11953,"module":11954,"summary":11955},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures","Subgroups and Their Substructures","Subgroups and Quotients","A subgroup is a subset that is a group under the inherited operation. One test decides it: nonempty and closed under the map $(x,y) \\mapsto xy^{-1}$. From an arbitrary subset $A$ we build the centralizer, normalizer, and center, and from an action the stabilizer and kernel, all of them subgroups nested in a fixed chain inside $G$.\n",{"path":11957,"title":11958,"module":11954,"summary":11959},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups","Cyclic Groups","A cyclic group is generated by one element. Two facts organize the whole theory: the order of an element equals the order of the subgroup it generates, and cyclic groups of equal order are isomorphic, so $\\mathbb{Z}$ and $\\mathbb{Z}\u002Fn\\mathbb{Z}$ are the only ones. From there the generators ($\\varphi(n)$ of them), the subgroups (one per divisor of $n$), and a fast exponentiation algorithm all follow.\n",{"path":11961,"title":11962,"module":11954,"summary":11963},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices","Generation and the Lattice of Subgroups","The subgroup generated by a subset $A$ is the smallest subgroup containing it, described top-down as an intersection and bottom-up as the set of words in $A$ and its inverses. Collecting all subgroups and ordering them by containment produces the subgroup lattice, whose Hasse diagram shows the joins, meets, and containment relations among all subgroups.\n",{"path":11965,"title":11966,"module":11954,"summary":11967},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups","Cosets, Lagrange, and Normal Subgroups","The left cosets of a subgroup partition a group into equal-sized blocks, so the order of a subgroup divides the order of the group: Lagrange's theorem. When the blocks can be multiplied consistently — exactly when the subgroup is normal — they form the quotient group $G\u002FN$. Fermat's and Euler's theorems fall out as index computations.\n",{"path":11969,"title":11970,"module":11954,"summary":11971},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems","The Isomorphism Theorems","Four theorems relate homomorphisms, quotients, and subgroup lattices. The first identifies the image of a homomorphism with the quotient by its kernel; the second and third compute quotients built from two subgroups and quotients of quotients; the fourth matches the subgroups of $G\u002FN$ with the subgroups of $G$ lying above $N$. Together they make quotient groups computable.\n",{"path":11973,"title":11974,"module":11954,"summary":11975},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group","Composition Series and the Alternating Group","A composition series breaks a finite group into simple quotient factors, and Jordan-Hölder says those factors are unique up to order. This turns classification into two problems: list the simple groups, and describe how to reassemble them. The sign homomorphism splits $S_n$ into even and odd permutations, defining the alternating group $A_n$, simple for $n \\ge 5$.\n",{"path":11977,"title":11978,"module":11979,"summary":11980},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem","Actions, Orbits, and Cayley's Theorem","Group Actions and Sylow Theory","A group action turns abstract elements into permutations of a set. The action splits the set into orbits, and the orbit-stabilizer theorem ties each orbit's size to the index of a stabilizer. Applied to a group acting on itself by left multiplication, this gives Cayley's theorem: every group is a group of permutations.\n",{"path":11982,"title":11983,"module":11979,"summary":11984},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation","Conjugation and the Class Equation","A group acts on itself by conjugation, and the orbits are the conjugacy classes. Orbit-stabilizer turns the resulting partition into the class equation, which forces every group of prime-power order to have a nontrivial center. Conjugacy in the symmetric group is cycle type, and Burnside's lemma counts orbits by averaging fixed points.\n",{"path":11986,"title":11987,"module":11979,"summary":11988},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems","The Sylow Theorems","Lagrange's theorem forbids subgroups whose order fails to divide the group order; Sylow's theorems supply a partial converse for prime powers. A Sylow p-subgroup always exists, all of them are conjugate, and their count satisfies two congruence-and-divisibility constraints tight enough to prove many groups non-simple from their order alone.\n",{"path":11990,"title":11991,"module":11979,"summary":11992},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups","Automorphisms and Simplicity of Aₙ","Conjugation makes a group act on itself and on its normal subgroups by automorphisms, giving the inner automorphism group G\u002FZ(G) and the embedding of N(H)\u002FC(H) into Aut(H). Characteristic subgroups are those every automorphism fixes, and the automorphism group of a cyclic group is its unit group. The lesson closes by proving the alternating group Aₙ is simple for n ≥ 5.\n",{"path":11994,"title":11995,"module":11996,"summary":11997},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups","Direct Products and Finite Abelian Groups","Products and Group Structure","The direct product assembles a larger group from componentwise copies of smaller ones, and a recognition theorem reverses the process when two normal subgroups meet trivially and span the group. The Fundamental Theorem of Finitely Generated Abelian Groups then classifies every such group by two equivalent invariants, invariant factors and elementary divisors.\n",{"path":11999,"title":12000,"module":11996,"summary":12001},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products","Semidirect Products","The semidirect product relaxes the direct product by requiring only one factor to be normal, with the other acting on it through a homomorphism into its automorphism group. This single twisting map lets abelian pieces assemble into non-abelian groups, realizes the dihedral groups as $\\mathbb{Z}_n \\rtimes \\mathbb{Z}_2$, and, with a recognition theorem, classifies groups of several small orders.\n",{"path":12003,"title":12004,"module":11996,"summary":12005},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups","p-Groups, Nilpotent, and Solvable Groups","Finite p-groups have nontrivial center, and iterating the center upward builds the nilpotent groups, which decompose as the direct product of their Sylow subgroups. Iterating the commutator downward builds the solvable groups, whose factors are abelian. The chain cyclic, abelian, nilpotent, solvable orders these classes, and A_5 breaks the last link.\n",{"path":12007,"title":12008,"module":11996,"summary":12009},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups","Classifying Groups of Small Order","With Sylow's theorem to force normal subgroups, direct and semidirect products to assemble them, and presentations to name the result, every group up to order fifteen can be listed explicitly. Free groups make presentations precise: generators with no relations, from which any group is a quotient by the normal closure of its relations.\n",{"path":12011,"title":12012,"module":12013,"summary":12014},"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples","Rings: Definitions and Examples","Ring Theory","A ring carries two operations: an abelian group under addition and an associative multiplication linked by the distributive laws. The named special cases — commutative rings, integral domains, division rings, and fields — differ only in how their multiplication behaves. Standard examples include quadratic integer rings, polynomial rings, matrix rings, and group rings.\n",{"path":12016,"title":12017,"module":12013,"summary":12018},"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms","Ideals, Quotient Rings, and Homomorphisms","Ring homomorphisms have kernels that absorb multiplication; such subsets are ideals, and every ideal is the kernel of the projection onto a quotient ring. The quotient construction yields the ring isomorphism theorems and classifies ideals by their quotients: R\u002FI is a field exactly when I is maximal, an integral domain exactly when I is prime.\n",{"path":12020,"title":12021,"module":12013,"summary":12022},"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem","Fields of Fractions and the CRT","Rings of fractions invert a multiplicatively closed set, enlarging an integral domain into its field of fractions the way Z becomes Q. The Chinese Remainder Theorem splits a quotient by comaximal ideals into a direct product, generalizing Z\u002FmnZ ≅ Z\u002FmZ × Z\u002FnZ and explaining why the Euler function is multiplicative.\n",{"path":12024,"title":12025,"module":12026,"summary":12027},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds","Euclidean Domains, PIDs, and UFDs","Factorization and Polynomial Rings","Three classes of integral domain, ordered by how much of elementary arithmetic survives: Euclidean domains carry a division algorithm, principal ideal domains make every ideal a single multiple, and unique factorization domains factor every element into irreducibles in one way. We prove the chain ED implies PID implies UFD, the classes are separated by explicit counterexamples, and irreducible and prime coincide exactly in a UFD.\n",{"path":12029,"title":12030,"module":12026,"summary":12031},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields","Polynomial Rings over Fields","When the coefficients form a field, polynomial long division works exactly as it does over the rationals, and it works with a unique quotient and remainder. That single fact makes F[x] a Euclidean domain, hence a PID and a UFD: every ideal is the multiples of one polynomial, roots correspond to linear factors, and F[x]\u002F(f) is a field precisely when f is irreducible.\n",{"path":12033,"title":12034,"module":12026,"summary":12035},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization","Gauss's Lemma and Unique Factorization","A UFD is not a field, so its polynomial ring is not a PID — yet unique factorization survives the passage from R to R[x]. Gauss's lemma supplies the passage: a polynomial that factors over the fraction field already factors over R, once content is factored out. This gives the theorem that R[x] is a UFD whenever R is, so Z[x] and Q[x,y] factor uniquely even though neither is a PID.\n",{"path":12037,"title":12038,"module":12026,"summary":12039},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner","Irreducibility Criteria and Gröbner Bases","Deciding whether a given polynomial is irreducible, and computing in multivariate polynomial rings. In one variable: the rational root test, reduction modulo a prime, and Eisenstein's criterion. In several variables, where division fails, a monomial order gives leading terms, a Gröbner basis restores a well-defined remainder, and Buchberger's algorithm computes it.\n",{"path":12041,"title":12042,"module":12043,"summary":12044},"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules","Introduction to Modules","Module Theory","A module is an abelian group on which a ring acts, generalizing both vector spaces (when the ring is a field) and abelian groups (when the ring is the integers). Submodules, homomorphisms, quotients, and the isomorphism theorems carry over from groups, and an F[x]-module is the same datum as a vector space with a chosen linear operator — the correspondence behind the canonical forms.\n",{"path":12046,"title":12047,"module":12043,"summary":12048},"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums","Generation, Direct Sums, and Free Modules","A generating set spans a module by R-linear combinations; a direct sum decomposes it into independent pieces; a free module has a basis and the universal property that a homomorphism is determined by arbitrary values on that basis. Rank is well defined over a commutative ring, torsion blocks a basis, and every module is a quotient of a free one — a presentation by generators and relations.\n",{"path":12050,"title":12051,"module":12043,"summary":12052},"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences","Tensor Products and Exact Sequences","The tensor product builds a module in which elements of two modules can be multiplied, characterized by a universal property turning bilinear maps into linear ones; extension of scalars is its guiding case. Exact sequences track how a module is assembled from a submodule and a quotient, when that assembly splits, and which modules — projective, injective, flat — make the Hom and tensor functors preserve exactness.\n",{"path":12054,"title":12055,"module":12043,"summary":12056},"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps","Vector Spaces and Linear Maps","A vector space is a module over a field, and the field hypothesis removes every pathology a general module can have: every vector space is free, so it has a basis, a well-defined dimension, and a coordinate isomorphism with F^n. Linear maps become matrices, change of basis becomes similarity, every space pairs with a dual of the same dimension, and the determinant is the unique alternating multilinear normalized form.\n",{"path":12058,"title":12059,"module":12060,"summary":12061},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids","The Structure Theorem for Modules over a PID","Modules over PIDs and Canonical Forms","Every finitely generated module over a principal ideal domain splits as a free part plus a direct sum of cyclic torsion pieces, in two canonical ways: invariant factors, tied together by a divisibility chain, and elementary divisors, one prime power at a time. Existence follows from the stacked-basis theorem, both lists are unique, and the case $R = \\mathbb{Z}$ is the classification of finitely generated abelian groups.\n",{"path":12063,"title":12064,"module":12060,"summary":12065},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form","Rational Canonical Form","A linear operator turns its vector space into a module over the polynomial ring $F[x]$, with $x$ acting as the operator. The structure theorem's invariant factors then become polynomials, each cyclic summand becomes a companion matrix, and the block-diagonal assembly is the rational canonical form. It is unique, it is computed inside the base field, and two matrices are similar exactly when their rational canonical forms agree.\n",{"path":12067,"title":12068,"module":12060,"summary":12069},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form","Jordan Canonical Form","When the base field contains all the eigenvalues, the elementary divisors of an operator are powers of linear polynomials, and each cyclic summand becomes a Jordan block: an eigenvalue on the diagonal with ones just above it. Stacking the blocks gives the Jordan canonical form, unique up to reordering, as close to diagonal as the operator allows. Diagonalizability reads off the minimal polynomial, and the block sizes are counted by ranks of powers of the operator minus the eigenvalue.\n",{"path":12071,"title":12072,"module":12073,"summary":12074},"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements","Field Extensions and Algebraic Elements","Field Theory","A field extension makes a larger field K into a vector space over a smaller field F, and its degree [K:F] is that dimension. Adjoining a root of an irreducible polynomial builds a simple extension F(α) isomorphic to F[x]\u002F(m), whose degree is the degree of the minimal polynomial. The tower law makes these degrees multiply, which turns algebra over fields into bookkeeping with integers.\n",{"path":12076,"title":12077,"module":12073,"summary":12078},"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions","Straightedge-and-Compass Constructions","The lengths a straightedge and compass can build from a unit form a field closed under square roots, and every constructible number lies in a tower of quadratic extensions. So its degree over the rationals is a power of two. That single obstruction settles three problems the Greeks left open: doubling the cube, trisecting a general angle, and squaring the circle are all impossible.\n",{"path":12080,"title":12081,"module":12073,"summary":12082},"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure","Splitting Fields and Algebraic Closure","The splitting field of a polynomial is the smallest extension in which it factors into linear pieces, obtained by adjoining all its roots. Every polynomial has one, its degree is at most n factorial, and any two splitting fields are isomorphic. Pushing this to all polynomials at once gives the algebraic closure, a field in which every polynomial splits and which is unique up to isomorphism.\n",{"path":12084,"title":12085,"module":12073,"summary":12086},"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions","Separable Extensions and Cyclotomic Fields","A polynomial is separable when its roots are distinct, detected by whether it shares a factor with its formal derivative. Over perfect fields — characteristic zero and finite fields — every irreducible is separable, and the existence and uniqueness of the finite fields follow. Cyclotomic polynomials package the roots of unity by order, are irreducible over the rationals, and give the cyclotomic field its degree phi(n).\n",{"path":12088,"title":12089,"module":12090,"summary":12091},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence","The Galois Correspondence","Galois Theory","Galois theory attaches to a field extension its group of symmetries and shows that, for the right extensions, the subgroups of that group are in exact order-reversing correspondence with the intermediate fields. The automorphism group, Artin's theorem, the characterization of Galois extensions, and the Fundamental Theorem together turn questions about fields into questions about finite groups.\n",{"path":12093,"title":12094,"module":12090,"summary":12095},"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields","Finite Fields","Every finite field has prime-power order, is the splitting field of $x^{p^n} - x$, and is unique up to isomorphism. Its extension over the prime field is Galois with cyclic group generated by the Frobenius map $x \\mapsto x^p$, so the Galois correspondence reduces the subfield lattice to the divisor lattice of $n$. Möbius inversion counts the irreducible polynomials of each degree, and cyclic error-correcting codes are one application.\n",{"path":12097,"title":12098,"module":12090,"summary":12099},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions","Cyclotomic and Abelian Extensions","The Galois group of the $n$th cyclotomic field over $\\mathbb{Q}$ is the unit group $(\\mathbb{Z}\u002Fn\\mathbb{Z})^\\times$, which makes cyclotomic fields the worked catalogue of abelian extensions of $\\mathbb{Q}$. The isomorphism identifies subfields with subgroups, realizes every finite abelian group as a Galois group over $\\mathbb{Q}$, and leads to Kronecker–Weber. Composites of Galois extensions and the primitive element theorem supply the machinery.\n",{"path":12101,"title":12102,"module":12090,"summary":12103},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials","Galois Groups of Polynomials","Ordering the roots of a separable polynomial embeds its Galois group in the symmetric group $S_n$, and the group is transitive exactly when the polynomial is irreducible. The discriminant decides membership in $A_n$; for cubics and quartics the resolvent cubic pins the group down; and reduction modulo a prime produces elements of prescribed cycle type, the standard tool for computing Galois groups over $\\mathbb{Q}$.\n",{"path":12105,"title":12106,"module":12090,"summary":12107},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic","Solvability by Radicals and the Quintic","A polynomial is solvable by radicals exactly when its Galois group is solvable. Cyclic extensions are radical extensions once roots of unity are present, which turns a radical tower into a solvable subnormal series. Since $S_n$ is solvable only for $n \\le 4$, the general quintic has no radical formula, and an explicit quintic with Galois group $S_5$ has roots provably not expressible in radicals.\n",{"path":12109,"title":12110,"module":12111,"summary":12112},"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry","A Glimpse of Commutative Algebra and Algebraic Geometry","Capstone: Where Algebra Goes Next","Commutative algebra reads geometry off the ring of polynomial functions. The dictionary runs through Noetherian rings and the ascending chain condition, Hilbert's Basis Theorem, affine algebraic sets and the two maps connecting ideals to zero sets, radicals, the Zariski topology, and Hilbert's Nullstellensatz, which over an algebraically closed field makes radical ideals and algebraic sets the same object.\n",{"path":12114,"title":12115,"module":12111,"summary":12116},"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory","A Glimpse of Representation and Character Theory","Representation theory studies a group by the ways it can act linearly on a vector space. Representations are equivalent to modules over the group ring; Maschke's theorem gives complete reducibility, the Wedderburn consequences bound the irreducible degrees, and character theory reduces a representation to a trace invariant governed by the orthogonality relations and displayed in the character table of a small group.\n",{"path":12118,"title":12119,"module":6,"summary":6},"\u002Fabstract-algebra","Abstract Algebra",{"path":12121,"title":12122,"module":12123,"summary":12124},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford","Atomic Spectra and Rutherford's Nucleus","Early Atomic Models and the Old Quantum Theory","Atoms emit light only at sharp, reproducible wavelengths, and by 1890 those wavelengths were captured by the Rydberg-Ritz formula. Neither empirical regularity had a mechanical explanation. Rutherford's alpha-scattering experiment supplied the missing structure: the atom's positive charge and nearly all its mass sit in a tiny central nucleus, with the electrons far outside.\n",{"path":12126,"title":12127,"module":12123,"summary":12128},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen","The Bohr Model of Hydrogen","Bohr grafted three quantum postulates onto Rutherford's nuclear atom: certain orbits do not radiate, radiation accompanies a jump between them, and quantization must match classical physics for large orbits. Quantizing the angular momentum fixes the orbit radii and energies, reproduces the Rydberg-Ritz formula, and predicts the Rydberg constant from fundamental constants alone.\n",{"path":12130,"title":12131,"module":12123,"summary":12132},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz","X-Ray Spectra and the Franck-Hertz Experiment","Two 1913-14 experiments confirmed the Bohr-Rutherford atom independently of optical spectra. Moseley found that the square root of a characteristic X-ray frequency is linear in atomic number, fixing Z as nuclear charge and ordering the periodic table. Franck and Hertz measured discrete atomic energy levels directly by scattering electrons through a mercury vapor.\n",{"path":12134,"title":12135,"module":12123,"summary":12136},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory","The Bohr-Sommerfeld Old Quantum Theory","Bohr fixed the hydrogen levels with a single quantum number by quantizing angular momentum. Sommerfeld replaced that ad hoc rule with a general prescription: quantize the action of each separable coordinate. The rule produces elliptical orbits, a second (azimuthal) quantum number, space quantization, and — once the relativistic mass variation is included — a fine-structure splitting that matches experiment to order alpha squared.\n",{"path":12138,"title":12139,"module":12123,"summary":12140},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb","Limits of the Old Quantum Theory and the WKB Bridge","The old quantum theory works only where the classical motion is separable into independent periodic coordinates. It fails for helium, forbids the correct zero angular momentum of the hydrogen ground state, and misses the half-integer in the oscillator and in molecular spectra. The WKB quantization condition, derived from the Schrodinger equation, is the modern descendant of the Sommerfeld rule and repairs the half-integer through the Maslov correction.\n",{"path":12142,"title":12143,"module":12144,"summary":12145},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen","The Schrödinger Equation in Three Dimensions and Hydrogen","The Quantum Hydrogen Atom","Extending the Schrödinger equation to three dimensions and separating it in spherical coordinates produces three ordinary differential equations, one per coordinate. Their boundary conditions generate the quantum numbers n, ℓ, and mℓ, quantize the angular momentum to √(ℓ(ℓ+1))ℏ with projections mℏ, and fix the bound-state energies of hydrogen at −Z²(13.6 eV)\u002Fn².\n",{"path":12147,"title":12148,"module":12144,"summary":12149},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions","Hydrogen Wave Functions and Orbitals","The hydrogen wave functions factor into a radial part Rₙℓ(r) and an angular spherical harmonic Yℓm(θ,φ). Squaring gives the probability cloud; the radial distribution P(r) = r²|ψ|² peaks at the Bohr radius for the ground state and at the Bohr orbits for excited states. The angular part fixes the s, p, and d orbital shapes that govern chemical bonding.\n",{"path":12151,"title":12152,"module":12144,"summary":12153},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full","Solving the Radial Equation in Full","The hydrogen radial equation is solved from the differential equation up. The substitution u = rR turns it into a one-dimensional problem with a centrifugal barrier; matching the asymptotic behaviour at the origin and at infinity peels off the factors r^(ℓ+1) and e^(−r\u002Fna₀); a Frobenius series for the remainder must terminate, and that termination condition yields the quantization n ≥ ℓ+1 with E = −Z²Ry\u002Fn². The surviving polynomials are the associated Laguerre functions, whose degree n−ℓ−1 counts the radial nodes.\n",{"path":12155,"title":12156,"module":12144,"summary":12157},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz","Accidental Degeneracy and the Runge-Lenz Symmetry","Hydrogen energies depend only on n, so states of different ℓ at the same n are degenerate. This is not a coincidence but the mark of a hidden symmetry: the quantum Runge-Lenz vector is conserved for the 1\u002Fr potential alone, and together with angular momentum it generates the group SO(4). The Casimir invariant of that group reproduces E = −Z²Ry\u002Fn² and its representations count the n² states. Any departure from 1\u002Fr breaks the symmetry and lifts the ℓ-degeneracy.\n",{"path":12159,"title":12160,"module":12144,"summary":12161},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial","Expectation Values, the Virial Theorem, and Scaling","The radial matrix elements ⟨r^k⟩ of hydrogenic states are the raw material of every later correction. This lesson derives ⟨1\u002Fr⟩ from the virial theorem, builds the full family ⟨r⟩, ⟨r²⟩, ⟨1\u002Fr²⟩, ⟨1\u002Fr³⟩ from Kramers' recursion and the Feynman-Hellmann theorem, and reads off their scaling with n, ℓ, and Z. The virial balance ⟨T⟩ = −½⟨V⟩ = −E fixes the energy budget of every bound state.\n",{"path":12163,"title":12164,"module":12144,"summary":12165},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra","Quantum Defects and Alkali Spectra","An alkali atom is one valence electron outside a closed-shell core, and to a good approximation it is hydrogen with a modified quantum number. Core penetration makes low-ℓ states more bound than the Coulomb formula predicts, and the shortfall is captured by a single number per ℓ, the quantum defect δℓ. The spectrum then follows the Rydberg formula with n replaced by the effective n − δℓ, and the sodium D-line doublet is the worked case.\n",{"path":12167,"title":12168,"module":12144,"summary":12169},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms","Rydberg Atoms","A Rydberg atom is an atom excited to a very high principal quantum number, and every hydrogenic property becomes exaggerated by a power of n. Size grows as n², binding falls as n⁻², radiative lifetime lengthens as n³, and the static polarizability explodes as n⁷. The levels crowd toward the ionization limit, and the enormous dipole interaction between two Rydberg atoms produces the blockade that underlies neutral-atom quantum computing.\n",{"path":12171,"title":12172,"module":12173,"summary":12174},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction","The Relativistic Kinetic-Energy Correction","Fine Structure and the Dirac Atom","The Bohr energies treat the electron as slowly moving, but its speed is of order αc, so the kinetic energy needs a relativistic correction. Expanding √(p²c²+m²c⁴) to order (v\u002Fc)² produces the perturbation −p⁴\u002F8m³c², whose first-order shift on a hydrogenic state is evaluated with the trick p²=2m(E−V). The result depends on n and ℓ, is smaller than the gross structure by α²≈5×10⁻⁵, and is one of the three pieces that combine into the fine-structure formula.\n",{"path":12176,"title":12177,"module":12173,"summary":12178},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession","Spin-Orbit Coupling and Thomas Precession","In the electron's rest frame the nucleus orbits it, and the resulting current produces a magnetic field that couples to the electron's spin moment. The interaction is ξ(r) L·S, with ξ built from the Coulomb potential and the radial expectation ⟨1\u002Fr³⟩. A relativistic subtlety, Thomas precession, halves the naive coefficient because the electron's rest frame is accelerating. The result splits each ℓ≥1 level into a j=ℓ±½ doublet and makes (n, ℓ, j, mⱼ) the good quantum numbers.\n",{"path":12180,"title":12181,"module":12173,"summary":12182},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula","The Darwin Term and the Fine-Structure Formula","The third fine-structure correction, the Darwin term, is a contact interaction proportional to ∇²V that acts only on s-states, physically a smearing of the electron over a Compton wavelength. Adding the relativistic, spin-orbit, and Darwin shifts, the ℓ-dependence cancels and the total collapses to a formula in n and j alone. The n=2 shell splits into 2S₁\u002F₂, 2P₁\u002F₂, 2P₃\u002F₂, with the two j=½ levels exactly degenerate, a coincidence the Dirac theory explains.\n",{"path":12184,"title":12185,"module":12173,"summary":12186},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen","The Dirac Equation for Hydrogen","The fine-structure formula was assembled from three perturbations; the Dirac equation produces it in one stroke and exactly. A first-order relativistic wave equation forces a four-component spinor, from which spin s=½, the g-factor of 2, the spin-orbit term, and antiparticles all emerge automatically. Its exact Coulomb spectrum depends only on n and j, and expanding in Zα reproduces the perturbative result, including the 2S₁\u002F₂–2P₁\u002F₂ degeneracy that sets up the Lamb shift.\n",{"path":12188,"title":12189,"module":12190,"summary":12191},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed","The Lamb Shift and QED Radiative Corrections","QED Corrections and Hyperfine Structure","The Dirac equation makes the 2S₁\u002F₂ and 2P₁\u002F₂ levels of hydrogen exactly degenerate. Lamb and Retherford measured a splitting of about 1058 MHz that the Dirac theory cannot produce. The gap comes from the electron's coupling to the quantized electromagnetic field: self-energy, vacuum polarization, and the anomalous magnetic moment. Welton's vacuum-fluctuation estimate reproduces the size and shows why the effect lands almost entirely on s-states, and the same radiative corrections make hydrogen the most stringent test of QED.\n",{"path":12193,"title":12194,"module":12190,"summary":12195},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm","Hyperfine Structure and the 21 cm Line","The proton carries a magnetic moment, and it interacts with the magnetic field the electron produces at the nucleus. For s-states that interaction is the Fermi contact term, proportional to the electron density at the origin and to the dot product of the nuclear and electronic spins. Coupling I and J into F = I + J splits each level by a Landé interval rule; in hydrogen's ground state it produces the F = 0\u002FF = 1 doublet whose 1420 MHz, 21 cm transition maps neutral hydrogen across the galaxy.\n",{"path":12197,"title":12198,"module":12190,"summary":12199},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift","Nuclear Size, Moments, and Isotope Shifts","A real nucleus has a finite size, a mass that changes between isotopes, and, when its spin is at least one, an electric quadrupole moment. Each leaves a fingerprint in the atomic spectrum: the volume shift from s-electrons sampling the charge distribution, the mass and field isotope shifts that separate on a King plot, the quadrupole interaction that breaks the Landé interval rule, and the hyperfine anomaly from the magnetization distribution. Atomic spectroscopy reads nuclear properties out of these shifts.\n",{"path":12201,"title":12202,"module":12203,"summary":12204},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra","The Periodic Table and Atomic Spectra","Many-Electron Atoms","Identical electrons demand antisymmetric wave functions, which is the Pauli exclusion principle: no two electrons share all four quantum numbers. Filling shells in order of increasing energy — shifted by penetration and shielding — builds the periodic table and its recurring ionization pattern. Selection rules govern optical spectra, and an external field splits lines by the Zeeman effect.\n",{"path":12206,"title":12207,"module":12203,"summary":12208},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent","The Central-Field Approximation and the Self-Consistent Field","The N-electron Hamiltonian does not separate because every pair of electrons repels. The central-field approximation replaces that pairwise repulsion with an averaged spherical potential each electron feels, restoring hydrogen-like orbitals labelled by n and ℓ. The Thomas-Fermi statistical model fixes the shape of the screened charge from Fermi-gas thermodynamics; the Hartree self-consistent field determines it exactly by iterating orbitals against the potential they generate until the two agree.\n",{"path":12210,"title":12211,"module":12203,"summary":12212},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock","Exchange, Slater Determinants, and Hartree-Fock","A product wave function ignores that electrons are identical fermions. Enforcing antisymmetry writes the state as a Slater determinant, which vanishes whenever two electrons share a spin-orbital — the exclusion principle made algebraic. The energy of a determinant carries a new term with no classical analogue, the exchange integral, nonzero only for parallel spins; it lowers the energy of aligned electrons and carves a Fermi hole around each one. Adding the exchange operator to the mean field gives the Hartree-Fock equations, and what they still miss defines the correlation energy.\n",{"path":12214,"title":12215,"module":12203,"summary":12216},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom","Helium: the Prototype Two-Electron Atom","Helium is the smallest atom the Schrödinger equation cannot solve exactly, and the smallest that shows every many-electron effect. Ignoring the electron repulsion overbinds the ground state by 30 eV; first-order perturbation theory and a one-parameter variational calculation with an effective charge close most of the gap. The excited configurations split into para (singlet) and ortho (triplet) states separated by the exchange integral, with the triplet lower — and the absence of a 1s² triplet is the Pauli principle in its plainest form.\n",{"path":12218,"title":12219,"module":12203,"summary":12220},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols","LS and jj Coupling; Term Symbols","A configuration is not a single energy level. The residual electrostatic repulsion and the spin-orbit interaction split it, and which one dominates fixes the coupling scheme. In light atoms the electrostatic term wins: orbital and spin angular momenta couple separately into L and S, then into J, giving Russell- Saunders term symbols. In heavy atoms spin-orbit wins and each electron's j forms first. The Pauli principle prunes the allowed terms of equivalent electrons, the Landé interval rule spaces the fine-structure multiplet, and the scheme crosses over from LS to jj down a column.\n",{"path":12222,"title":12223,"module":12203,"summary":12224},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms","Hund's Rules and Ground-State Terms","A configuration allows several terms; Hund's three rules pick the ground one. Maximize the spin S first, then the orbital L, then set J to |L−S| for a less-than-half shell and L+S for a more-than-half shell. The first two rules come from exchange lowering the energy of apart-kept electrons; the third comes from the sign of the spin-orbit coupling, which flips as a shell passes half-filling and turns the multiplet from normal to inverted. Worked ground terms for carbon, nitrogen, oxygen, and iron show the rules in action.\n",{"path":12226,"title":12227,"module":12228,"summary":12229},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect","The Zeeman Effect","Atoms in External Fields","A magnetic field couples to the atom through its magnetic moment, splitting each level into equally spaced sublevels labelled by the projection of the total angular momentum. When spin is present the spacing is not the classical one: it carries the Landé g-factor, a projection of the spin and orbital moments onto the total angular momentum. We derive the weak-field Hamiltonian from minimal coupling, evaluate the shift with the projection theorem, and read off the polarization of the emitted components.\n",{"path":12231,"title":12232,"module":12228,"summary":12233},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate","The Paschen-Back and Intermediate-Field Regimes","When the magnetic interaction grows past the fine-structure coupling, spin and orbital angular momentum decouple and precess independently about the field. The anomalous Zeeman pattern reverts to a simple triplet, the Paschen-Back effect. Between the two limits neither coupling dominates and the level positions follow from diagonalizing the combined spin-orbit and Zeeman Hamiltonian. We build the two-by-two problem for a single valence electron, solve it in closed form, and show both limits emerge from one expression.\n",{"path":12235,"title":12236,"module":12228,"summary":12237},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability","The Stark Effect and Field Ionization","An electric field shifts atomic levels by coupling to the electron's position. Parity forbids a first-order shift for a non-degenerate state, so most atoms respond only at second order through their polarizability, a quadratic Stark shift. Hydrogen is the exception: its accidental degeneracy admits a permanent dipole and a linear shift, cleanest in parabolic coordinates. At large fields the Coulomb well develops a saddle, and Rydberg states field-ionize at a threshold that falls as the fourth power of the principal quantum number.\n",{"path":12239,"title":12240,"module":12241,"summary":12242},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule","Time-Dependent Perturbation Theory and the Golden Rule","Radiative Transitions and Spectral Lines","An atom in a weak oscillating field makes transitions between its stationary states. First-order time-dependent perturbation theory gives the transition amplitude as a Fourier component of the perturbation at the Bohr frequency, and the resulting probability is a sinc-squared resonance that sharpens as the field acts longer. For a two-level system the same coupling produces Rabi oscillations; for a transition into a continuum the long-time limit collapses the sinc-squared into a delta function and yields Fermi's golden rule, a constant transition rate set by the coupling strength and the density of final states.\n",{"path":12244,"title":12245,"module":12241,"summary":12246},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients","The Dipole Approximation and Einstein Coefficients","The coupling between an atom and light is the interaction of the electron with the electromagnetic field. Because an optical wavelength dwarfs the atom, the spatial variation of the field across the atom can be dropped, leaving the electric-dipole interaction and its matrix element. That matrix element defines the oscillator strength, which obeys the Thomas-Reiche-Kuhn sum rule. Einstein's three rate coefficients (absorption, stimulated emission, spontaneous emission) follow from detailed balance with thermal radiation, fixing the ratio of spontaneous to stimulated rates and its steep growth with frequency.\n",{"path":12248,"title":12249,"module":12241,"summary":12250},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions","Selection Rules and Forbidden Transitions","The dipole matrix element vanishes for most pairs of states, and the pattern of which survive is the set of selection rules. Parity forces the orbital angular momentum to change by one; the angular integral of three spherical harmonics restricts the magnetic quantum number to change by zero or one; the photon's spin restricts the total angular momentum. When the dipole element vanishes, higher multipoles (magnetic dipole and electric quadrupole) can still drive the transition at rates smaller by powers of the fine-structure constant, and states with no allowed decay become metastable.\n",{"path":12252,"title":12253,"module":12241,"summary":12254},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes","Lifetimes, Line Widths, and Line Shapes","A spectral line is never infinitely sharp. The finite lifetime of the excited state gives every line a natural Lorentzian width set by the total decay rate, the Fourier transform of an exponentially damped emission. Thermal motion adds a Gaussian Doppler width that usually dominates in a gas; collisions add a further Lorentzian pressure width; the observed profile is the Voigt convolution of the Gaussian and Lorentzian parts. Strong driving fields broaden the line further through saturation. Each mechanism has a distinct dependence on temperature, density, and intensity that lets it be identified and, where possible, removed.\n",{"path":12256,"title":12257,"module":12258,"summary":12259},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles","Population Inversion, Gain, and the Laser","Lasers and Spectroscopy","A laser is an optical amplifier placed inside a resonant cavity. Amplification requires that stimulated emission outrun absorption, which requires more atoms in the upper level than the lower one — a population inversion that the Einstein relations forbid in thermal equilibrium and that no two-level pump can produce. Three- and four-level schemes reach it by routing atoms through auxiliary states. The gain coefficient sets how strongly a weak beam grows, the cavity fixes the threshold and selects a comb of longitudinal modes, and gain saturation clamps the steady-state inversion at its threshold value.\n",{"path":12261,"title":12262,"module":12258,"summary":12263},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques","Spectroscopic Techniques and Frequency Combs","A tunable laser turns spectroscopy from photographing a spectrum into interrogating a single transition, but at room temperature the Doppler width buries the natural linewidth under a thousandfold-broader Gaussian. Saturated absorption and two-photon spectroscopy defeat the first-order Doppler shift by selecting the zero-velocity class or cancelling the shift between counter-propagating photons, recovering natural-width features. Laser-induced fluorescence pushes sensitivity to single atoms, and the optical frequency comb converts an optical frequency into a countable radio-frequency beat, giving absolute frequency measurement across the visible spectrum.\n",{"path":12265,"title":12266,"module":12258,"summary":12267},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd","Reading Real Spectra with the NIST Database","Every quantity computed in this course — energy levels, transition frequencies, oscillator strengths, lifetimes — is tabulated for real atoms in the NIST Atomic Spectra Database. This lesson reads that data as physics: how levels are labelled by term symbols and energies in wavenumbers, how a transition list encodes wavelength, Einstein coefficient, and line strength, how a Grotrian diagram is reconstructed from the tables, and how a measured spectrum is matched to catalog lines. The residual between computed and tabulated positions is the running score of atomic theory.\n",{"path":12269,"title":12270,"module":12271,"summary":12272},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler","Laser Cooling and Optical Molasses","Modern Atomic Physics","A near-resonant laser beam pushes an atom because every absorbed photon delivers one unit of momentum and the subsequent spontaneous emission averages to zero. Two counter-propagating red-detuned beams turn that push into friction: the Doppler shift brings a moving atom closer to resonance with the beam it moves against, so the net force opposes the velocity. Six beams give optical molasses in three dimensions. The random recoil of spontaneous emission heats against the friction, and the balance sets the Doppler cooling limit. Adding a magnetic-field gradient makes the force position-dependent as well, giving the magneto-optical trap.\n",{"path":12274,"title":12275,"module":12271,"summary":12276},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping","Sub-Doppler Cooling and Atom Traps","Optical molasses cools multilevel atoms below the Doppler limit. A polarization gradient plus optical pumping makes an atom repeatedly climb a light-shift hill and be pumped to the valley, losing kinetic energy each cycle — Sisyphus cooling. The floor is the recoil limit, one photon momentum of residual motion. Below it, cooling must avoid scattering photons: conservative magnetic and optical-dipole traps hold the atoms while forced evaporation removes the hot tail, driving the phase-space density up toward quantum degeneracy.\n",{"path":12278,"title":12279,"module":12271,"summary":12280},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation","Bose-Einstein Condensation of Atomic Gases","Below a critical temperature a gas of identical bosons places a macroscopic fraction of its atoms in the single lowest-energy state. The transition occurs when the thermal de Broglie wavelength grows to the interparticle spacing, so the phase- space density reaches order unity. The critical temperature follows from the Bose-Einstein distribution and the density of states, the condensate fraction grows as one minus (T\u002FTc) to the three-halves, and the condensate reveals itself in time-of-flight as a sharp bimodal peak in the momentum distribution. The 1995 rubidium and sodium experiments realized it in dilute trapped gases.\n",{"path":12282,"title":12283,"module":12271,"summary":12284},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision","Optical Atomic Clocks and Precision Measurement","An atomic clock counts the oscillations of a field locked to an atomic transition. The cesium microwave standard defines the second through the 9.19 GHz ground-state hyperfine transition, interrogated by Ramsey's separated-oscillatory-field method whose fringe width is set by the free-precession time. Optical clocks replace the microwave transition with an optical one five orders of magnitude higher in frequency, raising the quality factor and the fractional stability in proportion. Lattice and single-ion clocks reach fractional uncertainties near ten-to-the-minus- eighteen by trapping the atoms at a magic wavelength that cancels the light shift, and at that level they measure the gravitational redshift over centimetres of height.\n",{"path":12286,"title":12287,"module":6,"summary":6},"\u002Fatomic-physics","Atomic Physics",{"path":12289,"title":12290,"module":6,"summary":6},"\u002Fdatabases","Databases",{"path":12292,"title":12293,"module":9887,"summary":12294},"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category","Categories, Objects, and Arrows","A category is objects, arrows between them, a rule for composing arrows, and an identity arrow on every object, subject to associativity and the unit laws. The axioms mention no elements: arrows need not be functions, and an object is known only through the arrows into and out of it. Isomorphism, commutative diagrams, duality, and the terminal object are the first consequences.\n",{"path":12296,"title":12297,"module":9887,"summary":12298},"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories","A Zoo of Categories","The axioms admit two very different kinds of model: large categories of structured sets and their structure-preserving maps (Set, Mon, Grp, Top, Vect), and small categories that are themselves single algebraic objects — a monoid as a one-object category, a poset as a thin category. The awkward cases Rel and Pfn have sets as objects but relations and partial functions as arrows, and a typed programming language presents its types and programs as a category.\n",{"path":12300,"title":12301,"module":9887,"summary":12302},"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms","Isomorphisms, Monos, and Epis","Injectivity and surjectivity mention elements, so a general category re-expresses them by cancellation: monomorphisms cancel on the left, epimorphisms on the right. Sections and retractions are the split versions with an explicit one-sided inverse. Mono plus epi does not force an isomorphism, and subobjects are equivalence classes of monos into a fixed object.\n",{"path":12304,"title":12305,"module":9887,"summary":12306},"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors","Functors: Maps Between Categories","A functor sends objects to objects and arrows to arrows while preserving composition and identities. Covariant and contravariant functors, the standard stock (forgetful, free, hom, and powerset), and the classification by faithfulness, fullness, and essential surjectivity all follow. Functors compose, so categories and functors form a category themselves.\n",{"path":12308,"title":12309,"module":9887,"summary":12310},"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations","Natural Transformations and Functor Categories","A natural transformation is a map between two parallel functors: one component arrow per object, subject to a commuting square for every arrow of the source. Naturality is verified for the determinant, the double dual, and list operations; functors and natural transformations form the functor category [C, D]; and vertical and horizontal composition satisfy the Godement interchange law.\n",{"path":12312,"title":12313,"module":9887,"summary":12314},"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory","Size: Small, Large, Locally Small","The objects of Set do not form a set, and pretending otherwise reproduces the classical paradoxes. Classes make the small\u002Flarge distinction precise, with locally small and essentially small as the intermediate notions. Cantor's theorem shows Set and its algebraic relatives are large, and the function-based axiomatization of sets is the one category theory prefers to ZFC.\n",{"path":12316,"title":12317,"module":12318,"summary":12319},"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties","Universal Properties, Initial and Terminal Objects","Universal Properties and Basic Constructions","A universal property characterizes an object by a for-all\u002Fexists-unique condition on the arrows into or out of it, and any two objects satisfying the same property are isomorphic by a unique isomorphism. Initial and terminal objects are the simplest cases; the free vector space, the discrete topology, and the ring of integers show the pattern at work.\n",{"path":12321,"title":12322,"module":12318,"summary":12323},"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts","Products and Coproducts","The product of two objects is a wedge of projections through which every other wedge factors uniquely; the coproduct is the dual, built from injections. In Set these are the cartesian product and the disjoint union, in a poset the meet and join, and in abelian groups the two coincide. The mediating-arrow discipline established here is the template for all limits.\n",{"path":12325,"title":12326,"module":12318,"summary":12327},"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories","Opposite, Product, Slice, and Comma Categories","Categories are themselves mathematical structures, and the standard algebraic constructions apply: opposites, products, subcategories, slices, and the comma category that subsumes them. The opposite category yields the duality principle, halving the subject's proofs; slice and comma categories repackage every universal property as an initial or terminal object.\n",{"path":12329,"title":12330,"module":12331,"summary":12332},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors","Hom-Functors and Representables","Representables and the Yoneda Lemma","Fixing an object A of a locally small category produces a set-valued functor, the hom-functor A(A,-), that records every map out of A. A functor is representable when it is naturally isomorphic to such a hom-functor. We define the covariant and contravariant hom-functors, collect the standard representables (identity, forgetful, powerset), and read maps as generalized elements of varying shape.\n",{"path":12334,"title":12335,"module":12331,"summary":12336},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma","The Yoneda Lemma","The Yoneda lemma computes the natural transformations out of a representable presheaf: they form a set in natural bijection with X(A). The proof fixes a single degree of freedom, the image of the identity arrow, and shows naturality forces everything else. We prove the bijection, verify naturality in both variables, and read off that a natural transformation out of a representable is just one element.\n",{"path":12338,"title":12339,"module":12331,"summary":12340},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences","The Yoneda Embedding and Its Uses","Three corollaries turn the Yoneda lemma into working machinery. A representation of a presheaf is the same thing as a universal element; the Yoneda embedding of a category into its presheaf category is full and faithful; and two objects are isomorphic exactly when their representables are. Together they justify constructing arrows by constructing natural transformations between hom-functors, and they contain Cayley's theorem as the one-object case.\n",{"path":12342,"title":12343,"module":12344,"summary":12345},"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits","Cones and Limits","Limits and Colimits","A diagram is a functor from a small shape category; a cone over it is an object with compatible legs to every node; and a limit is the terminal cone, the one every other cone factors through uniquely. Products and terminal objects reappear as limits over particular shapes, and the whole construction is unique up to a single isomorphism.\n",{"path":12347,"title":12348,"module":12344,"summary":12349},"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks","Equalizers and Pullbacks","The equalizer of a parallel pair is the universal arrow that makes the two composites agree; the pullback of a cospan is the universal commutative square. In Set they are solution sets and fibered products, every equalizer is monic, monics are stable under pullback, and products plus equalizers together generate all limits.\n",{"path":12351,"title":12352,"module":12344,"summary":12353},"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits","Colimits: Coproducts, Coequalizers, Pushouts","Colimits are limits in the opposite category: cocones replace cones, and the universal cocone is initial rather than terminal. Coproducts glue objects side by side, coequalizers impose relations and produce quotients, pushouts glue along a shared part, and in Set every colimit is a quotient of a disjoint union. Directed colimits admit a clean elementwise description.\n",{"path":12355,"title":12356,"module":12344,"summary":12357},"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits","Computing Limits in Concrete Categories","In Set the limit of any diagram is the set of threads: choice functions through the nodes that commute with every edge. In Pos, Mon, and Top the recipe is the same limit downstairs plus the unique structure that makes the projections structure-preserving — pointwise order, componentwise operations, the topology generated by the projections. The pattern is what \"the forgetful functor creates limits\" means concretely.\n",{"path":12359,"title":12360,"module":12344,"summary":12361},"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors","Preservation, Reflection, and Creation of Limits","A functor preserves limits if it sends limit cones to limit cones, reflects them if it recognizes them, and creates them if limits downstairs lift uniquely upstairs. Representable functors preserve all limits, forgetful functors from algebra create them, and limits in functor categories are computed pointwise, one evaluation at a time.\n",{"path":12363,"title":12364,"module":12365,"summary":12366},"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions","Adjoint Functors via Hom-Set Bijections","Adjunctions","An adjunction is a natural bijection between two hom-sets: maps out of $F(A)$ in one category correspond to maps into $G(B)$ in the other. We give the definition, spell out the naturality axioms that make the correspondence compatible with composition, and work the flagship examples — free vector spaces, free groups, discrete and indiscrete topologies, and currying.\n",{"path":12368,"title":12369,"module":12365,"summary":12370},"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits","Units, Counits, and the Triangle Identities","The whole hom-set bijection of an adjunction is generated by two natural transformations: the unit, obtained by transposing identity maps on one side, and the counit, by transposing them on the other. Two triangle identities are all they must satisfy, and any pair satisfying them determines a unique adjunction. The same correspondence specializes to order-preserving maps between posets and to free constructions.\n",{"path":12372,"title":12373,"module":12365,"summary":12374},"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows","Adjunctions from Universal Arrows","The unit component at a single object is an initial object of a comma category, and this universal property alone rebuilds the whole adjunction. A functor has a left adjoint exactly when every object admits such a universal arrow, and the left adjoint is assembled from them one object at a time. We prove the equivalence of all three formulations of adjointness.\n",{"path":12376,"title":12377,"module":12365,"summary":12378},"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions","Free Constructions and Free–Forgetful Adjunctions","Free monoids, free groups, and free vector spaces are left adjoints to forgetful functors, and the universal mapping property is all one needs to prove it. Some forgetful functors also have right adjoints (co-free constructions like the indiscrete topology), producing three-functor chains. Contravariant adjunctions, symmetric in their two functors, close the lesson with the pattern behind duality and representation theorems.\n",{"path":12380,"title":12381,"module":12382,"summary":12383},"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints","Limits as Adjoints and as Representables","Adjoints, Representables, and Limits Together","A cone on a diagram is a natural transformation from a constant diagram, so a limit is a representation of the cone functor and, equivalently, a value of the right adjoint to the diagonal functor. We prove both rephrasings, derive uniqueness and functoriality of limits from them, and record the dual statement that a colimit is the left adjoint to the diagonal.\n",{"path":12385,"title":12386,"module":12382,"summary":12387},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits","Limits and Colimits of Presheaves","Representables preserve limits, and limits in a functor category are computed one object at a time, so a presheaf category is complete and cocomplete with all its structure inherited pointwise from Set. The Yoneda embedding then preserves limits but not colimits, and the density theorem repairs the colimit side: every presheaf is a canonical colimit of representables.\n",{"path":12389,"title":12390,"module":12382,"summary":12391},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits","Right Adjoints Preserve Limits (RAPL)","A functor with a left adjoint preserves every limit that exists, and dually a functor with a right adjoint preserves colimits. The proof is a four-line chain of natural isomorphisms through the adjunction and the continuity of representables. The theorem yields product-and-exponential arithmetic in Set, another proof that limits commute with limits, and a standard test for proving that a functor has no adjoint.\n",{"path":12393,"title":12394,"module":12382,"summary":12395},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem","The Adjoint Functor Theorem","RAPL makes limit preservation necessary for having a left adjoint; the adjoint functor theorems identify when it is sufficient. For ordered sets no extra hypothesis is needed. In general the candidate adjoint is a limit over a comma category that may be large, and the general adjoint functor theorem tames it with a weakly initial set. We prove GAFT in full and apply it to free groups and, through the special adjoint functor theorem, the Stone–Čech compactification.\n",{"path":12397,"title":12398,"module":12399,"summary":12400},"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads","Monads from Adjunctions","Monads and Algebras","A monad on a category is an endofunctor equipped with a unit and a multiplication satisfying associativity and unit laws — the data of a monoid, written internally to the category of endofunctors. Every adjunction induces one, and the list, exception, and state constructions that model computational effects are all monads on Set.\n",{"path":12402,"title":12403,"module":12399,"summary":12404},"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore","Algebras for a Monad","An algebra for a monad is an object with a structure map that interacts correctly with the unit and multiplication. The algebras form the Eilenberg–Moore category, whose free–forgetful adjunction induces the monad back; a comparison functor relates any other inducing adjunction to it, and for the list monad the algebras are exactly monoids.\n",{"path":12406,"title":12407,"module":12399,"summary":12408},"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming","The Kleisli Category and Monads in Programming","The Kleisli category of a monad has the same objects as the base but takes arrows A to TB, composed by mapping and flattening. These arrows are effectful programs, Kleisli composition is the bind of functional programming, and the Kleisli adjunction is the initial resolution of the monad, with Eilenberg–Moore at the terminal end.\n",{"path":12410,"title":12411,"module":12399,"summary":12412},"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors","Algebras for an Endofunctor and Recursion","Dropping the monad laws leaves algebras for a bare endofunctor, whose initial objects are the least fixed points of the functor by Lambek's lemma. The natural numbers, lists, and trees are initial algebras; the unique map out of an initial algebra is the fold of functional programming; and the Smyth–Plotkin fixed-point technique builds Scott domains the same way.\n",{"path":12414,"title":12415,"module":12416,"summary":12417},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories","Cartesian Closed Categories","Cartesian Closed Categories and Typed Lambda Calculus","A cartesian closed category has a terminal object, binary products, and for every pair of objects an exponential object that internalizes the hom-set as an object of the category. The defining data is an evaluation arrow and a currying operation, packaged by the adjunction between product-with-A and exponential-by-A. Set, Boolean and Heyting algebras, functor categories, and Cat are all cartesian closed.\n",{"path":12419,"title":12420,"module":12416,"summary":12421},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence","Typed Lambda Calculus and CCCs","The typed lambda calculus and the cartesian closed category are two presentations of the same theory. Types become objects, terms with one free variable become arrows, product types become products, and function types become exponentials, with abstraction matching currying and application matching evaluation. Building the category of a lambda theory and the internal language of a category are mutually inverse up to equivalence.\n",{"path":12423,"title":12424,"module":12416,"summary":12425},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion","Fixed Points in Cartesian Closed Categories","The untyped lambda calculus has a fixed-point combinator; the typed calculus cannot, and Lawvere's fixed-point theorem explains why: any point-surjection onto an exponential forces every endomap to have a fixed point, which is the abstract form of Cantor's diagonal argument. Recursion is recovered instead by restricting to omega-complete partially ordered objects, where every continuous endomap has a least fixed point built by iterating from bottom. This gives While loops a semantics.\n",{"path":12427,"title":12428,"module":6,"summary":6},"\u002Fcategory-theory","Category Theory",{"path":12430,"title":11072,"module":12431,"summary":12432},"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning","Mathematical Background","Every quantity a network touches is a tensor, and every layer is a matrix acting on one. This lesson compiles the linear algebra deep learning actually uses: products and norms, the system $Ax=b$ and when it is solvable, the two decompositions (eigen and SVD) that diagonalize a transformation, and the pseudoinverse that solves what cannot be solved exactly. It then derives PCA as the worked example that ties it all together.\n",{"path":12434,"title":12435,"module":12431,"summary":12436},"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory","Probability & Information Theory","This lesson assembles the probabilistic vocabulary a network is trained in (random variables, densities, the chain rule, expectation and covariance, the handful of distributions that recur everywhere) and then the information theory that turns a probabilistic model into a loss: self-information, entropy, and the KL divergence whose asymmetry is the cross-entropy objective itself.\n",{"path":12438,"title":12439,"module":12431,"summary":12440},"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation","Numerical Computation","Machine learning runs on finite-precision arithmetic, where every number is approximated and every operation rounds. This lesson sets the numerical ground rules: overflow and underflow and the standard stabilizations, the condition number that measures how much a problem amplifies error, and the gradient-based optimization (first and second order, constrained and unconstrained) that every training loop runs.\n",{"path":12442,"title":10431,"module":12431,"summary":12443},"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus","This lesson assembles the differential calculus used in training networks: the gradient and directional derivative, the Jacobian and Hessian, and the chain rule in scalar, vector, and matrix form. From the chain rule it derives back-propagation as a single sweep over the computational graph, tabulates the matrix-calculus identities that recur in layer gradients, reads optimization off a second-order Taylor expansion, and ends with why reverse-mode automatic differentiation is the algorithm every framework runs.\n",{"path":12445,"title":12446,"module":9887,"summary":12447},"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning","What Is Deep Learning?","Deep learning is representation learning by composition: stack simple differentiable layers, define a loss, and let gradient descent discover the features a human would otherwise have to engineer by hand. We set up the whole vocabulary (model, loss, optimizer, data), the training loop that ties them together, and the three reasons the approach became practical.\n",{"path":12449,"title":12450,"module":9887,"summary":12451},"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher","A Machine-Learning Refresher","The statistical framework the networks live in: data drawn from an unknown distribution, a loss to minimize, and the central question of generalization: will it work on data we have not seen? We set up empirical risk, capacity, the bias–variance tradeoff, and maximum likelihood.\n",{"path":12453,"title":12454,"module":9887,"summary":12455},"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron","Linear Models & the Perceptron","The simplest learners (linear regression, logistic regression, the perceptron) already contain the whole template: a weighted sum, a loss, a gradient step. They also fail on the XOR problem, which no linear model can solve — the limitation that motivates deep learning.\n",{"path":12457,"title":12458,"module":12459,"summary":12460},"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron","The Multilayer Perceptron","Neural Networks","Stacking linear layers with a nonlinearity between them removes the limitation that stopped the perceptron. We build the multilayer perceptron in explicit matrix form (the forward pass, its dimensions, a worked XOR network with concrete weights) and prove why the nonlinearity is essential: without it the deepest stack collapses to a single hyperplane.\n",{"path":12462,"title":12463,"module":12459,"summary":12464},"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions","Activation Functions","The activation is the only nonlinear part of a layer, and the reason depth adds expressive power. We catalog the standard hidden units (sigmoid, tanh, ReLU and its descendants, plus GELU, softplus, swish and maxout), derive each unit's derivative in full, make the vanishing-gradient problem quantitative with the chain-rule product, work numeric examples, and explain why the saturating units gave way to ReLU and why ReLU's own dead-unit failure gave way to Leaky\u002FPReLU\u002FELU\u002FGELU.\n",{"path":12466,"title":12467,"module":12459,"summary":12468},"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation","Universal Approximation","One hidden layer with a non-polynomial activation can approximate any continuous function on a compact set to arbitrary accuracy: the universal approximation theorem. We prove it constructively (two sigmoids make a bump; sums of bumps make any curve), then show the limitation: existence is not efficiency. Depth-separation results exhibit functions a deep net represents with $O(n)$ units that a shallow net needs $\\exp(n)$ units to match.\n",{"path":12470,"title":12471,"module":12459,"summary":12472},"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation","Backpropagation","Backpropagation is the chain rule run backward over a computational graph. We formalize the graph, derive the four backprop equations for an MLP, present the forward and backward passes as algorithms, and work a tiny two-layer net by hand with explicit numbers. The result: one scalar loss, reverse-mode autodiff, and a gradient for every parameter at twice the cost of a forward pass.\n",{"path":12474,"title":12475,"module":12459,"summary":12476},"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units","Loss Functions & Output Units","The last layer is where a network's hidden representation meets the task. Choosing an output unit and a loss is not two independent choices; maximum likelihood fixes the pair. We derive the standard couplings (linear\u002FMSE, sigmoid\u002FBCE, softmax\u002Fcross-entropy), show why softmax and cross-entropy were built to cancel into the residual $\\hat y - y$, and prove why squared error is the wrong loss for a saturating classifier.\n",{"path":12478,"title":12479,"module":12480,"summary":12481},"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd","Gradient Descent & SGD","Optimization","Training is descent on the empirical risk: step the parameters against the gradient. We derive the minibatch gradient as an unbiased estimator whose variance falls as $1\u002FB$, derive the learning-rate ceiling from the smoothness-stability bound $\\eta \u003C 2\u002FL$, and lay out the schedules (step, exponential, cosine, warmup) that anneal it over training.\n",{"path":12483,"title":12484,"module":12480,"summary":12485},"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods","Momentum & Adaptive Methods","Plain gradient descent zig-zags across ravines and moves slowly along flat valleys, because one global learning rate cannot suit a surface with wildly different curvature in different directions. Two fixes address the two problems: momentum accumulates a velocity that damps the oscillation and accelerates the drift, and adaptive methods give every parameter its own learning rate scaled by the history of its gradients. Adam fuses both, and is the default optimizer of modern deep learning.\n",{"path":12487,"title":12488,"module":12480,"summary":12489},"\u002Fdeep-learning\u002Foptimization\u002Finitialization","Weight Initialization","The initial weights determine whether training can succeed before the first gradient step. Initialize every weight equal and all hidden units compute the same function forever; initialize too small or too large and the signal vanishes or explodes as it crosses depth. A single variance condition, $n_{\\text{in}}\\mathrm{Var}(W)=1$, fixes both, and reading it off the forward and backward passes yields Xavier and He initialization directly.\n",{"path":12491,"title":12492,"module":12480,"summary":12493},"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape","The Optimization Landscape","The loss of a deep network is a non-convex surface in millions of dimensions, so local search carries no global guarantee, yet it works. We classify critical points by the eigenvalues of the Hessian, show that in high dimension nearly all of them are saddle points rather than bad local minima, and read off the practical terrain — plateaus, cliffs, ill-conditioning, and the sharp-versus-flat distinction that ties the geometry of a minimum to how well it generalizes.\n",{"path":12495,"title":12496,"module":12480,"summary":12497},"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods","Second-Order & Approximate Methods","Newton's method reads the curvature of the loss off its Hessian and jumps to the minimum of the local quadratic in a single step, rescaling away the ill-conditioning that slows first-order descent. We derive it, then explain the three obstacles that keep it out of deep learning: a $d \\times d$ Hessian for $d$ in the billions, an attraction to saddle points, and minibatch noise. The alternative is approximation (conjugate gradients, BFGS and L-BFGS, the natural gradient and Hessian-free methods), each buying some of Newton's curvature information without ever forming or inverting $H$.\n",{"path":12499,"title":12500,"module":12501,"summary":12502},"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview","Regularization Overview","Regularization","Regularization is any modification to a learning algorithm meant to lower test error at the possible expense of training error. We derive the bias–variance decomposition that explains why it helps, set up the two parameter-norm penalties, $L^2$ weight decay and $L^1$, derive their update rules and eigenbasis shrinkage, show geometrically why $L^1$ alone produces sparse weights (soft-thresholding), distinguish weight decay from loss-added $L^2$ under AdamW, and read both penalties through the two lenses that recur across the chapter: a norm-ball constraint via KKT, and a prior via MAP estimation.\n",{"path":12504,"title":12505,"module":12501,"summary":12506},"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation","Dropout & Data Augmentation","Two of the most effective regularizers add no penalty term at all; they perturb the computation instead. Dropout multiplies hidden units by a random Bernoulli mask, training an exponential ensemble of thinned subnetworks that share weights; inverted scaling collapses that ensemble into one cheap forward pass at test time. Data augmentation enlarges the training set with label-preserving transforms, injecting the invariances the task demands, and noise injection (input, weight, label smoothing, Mixup) generalizes the same idea into a continuous family.\n",{"path":12508,"title":12509,"module":12501,"summary":12510},"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing","Early Stopping & Parameter Sharing","Two cheap regularizers that cost no extra term in the loss. Early stopping treats training time itself as a hyperparameter (watch the validation curve, halt at its minimum, keep the best checkpoint), and for a quadratic objective it is provably equivalent to $L^2$ weight decay. Parameter sharing goes the other way: it constrains many weights to be _equal_, the prior behind every convolution and every recurrent step, and the reason a CNN has orders of magnitude fewer parameters than the dense net it replaces.\n",{"path":12512,"title":12513,"module":12501,"summary":12514},"\u002Fdeep-learning\u002Fregularization\u002Fnormalization","Normalization","Normalization layers standardize activations to zero mean and unit variance inside the network, then hand the model a learnable scale and shift to undo the constraint when it pays to. Batch normalization does this across the batch and must keep separate train-time and test-time statistics; layer, instance, and group norm change only the axes they average over. The result is faster, better-conditioned optimization and a free dose of regularizing batch noise.\n",{"path":12516,"title":12517,"module":12518,"summary":12519},"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks","Convolutional Networks","Architectures","A convolutional network replaces the dense layer's all-to-all weight matrix with a small kernel slid across the input. Three structural commitments (sparse connectivity, parameter sharing, and translation equivariance) collapse the parameter count by orders of magnitude and bake the right prior for images directly into the architecture. We derive the convolution arithmetic, the output geometry, pooling, and the receptive field, then assemble the canonical stack.\n",{"path":12521,"title":12522,"module":12518,"summary":12523},"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures","CNN Architectures","Six landmark networks, each contributing exactly one idea: LeNet's conv-pool stack, AlexNet's ReLU-and-dropout scale, VGG's $3\\times3$ uniformity, Inception's multi-scale module, ResNet's residual skip, and DenseNet's dense connectivity. The common thread is the degradation problem (why plain deeper nets train worse, not just overfit) and the residual block that solved it by keeping a $+1$ path open for the gradient.\n",{"path":12525,"title":12526,"module":12518,"summary":12527},"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks","Recurrent Networks","A recurrent network folds a sequence into a fixed-size hidden state, reusing one set of weights at every time step, the architectural prior that the same rule applies wherever it lands in time. Unrolling the recurrence exposes a deep feed-forward graph; backpropagation through it sums gradient contributions across all steps and chains a product of Jacobians, and that product is why long-range gradients vanish or explode. That failure motivates gated architectures.\n",{"path":12529,"title":12530,"module":12518,"summary":12531},"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru","LSTM & GRU","A plain recurrent network propagates its hidden state through a repeated weight-matrix multiply, and the Jacobian product that results vanishes or explodes long before a useful gradient can reach the early steps. Gated RNNs fix this with an additive memory path: a cell state that is carried forward almost unchanged, past which the gradient flows along a near-identity highway. We derive that highway, give the full LSTM and GRU equations, and compare the two.\n",{"path":12533,"title":12534,"module":12518,"summary":12535},"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers","Attention & Transformers","Attention replaces fixed wiring with content-based routing: every position reads from every other through a soft, learned dot-product lookup. We derive scaled dot-product attention and its $\\sqrt{d_k}$ correction, build it into multi-head self-attention, inject order with positional encodings, and stack the whole thing into the Transformer block that displaced recurrence and convolution alike.\n",{"path":12537,"title":12538,"module":12518,"summary":12539},"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture","The Transformer Architecture","The Transformer is the architecture built around the attention mechanism. This first part assembles the full encoder–decoder of \"Attention Is All You Need\" — embeddings and positional encoding, stacked self-attention and feed-forward sublayers wrapped in residual connections and LayerNorm, masked decoding and cross-attention — works through causal masking and the three modern families (encoder-only, decoder-only, encoder–decoder), and accounts for where the parameters and the $O(n^2)$ compute actually go.\n",{"path":12541,"title":12542,"module":12518,"summary":12543},"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice","Transformers in Practice","The Transformer makes no assumption about what a token represents. This part follows the architecture out of language: image patches feed a plain encoder (the Vision Transformer), the decoder-only half scales into the GPT line of large language models, and one substrate covers translation, retrieval, and multimodal grounding. We work the ViT patch arithmetic and a GPT parameter count by hand, then close on the empirical scaling laws — power-law loss, the Chinchilla compute-optimal balance, and emergent behavior — that made scale the dominant lever.\n",{"path":12545,"title":12546,"module":12518,"summary":12547},"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks","Graph Neural Networks","A graph neural network learns on data with no grid and no canonical ordering: atoms in a molecule, users in a social network, road segments in a map. The unifying idea is message passing — each node repeatedly aggregates its neighbors' states and updates its own — built to respect the one symmetry graphs demand, permutation equivariance. We derive the message-passing framework, specialize it into GCN, GraphSAGE, GAT, and GIN, read off graph-level outputs, and bound what message passing can and cannot tell apart.\n",{"path":12549,"title":12550,"module":12518,"summary":12551},"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models","State-Space Models and Mamba","A state-space model carries a continuous linear hidden state through a sequence, and that linearity buys two equivalent algorithms from one set of weights: a recurrence that runs in linear time with constant memory, and a global convolution that trains in parallel. Long-range memory comes from how the transition matrix is initialized (HiPPO) and parameterized (S4's diagonal-plus-low-rank form). Mamba breaks the convolution on purpose, making the parameters input-dependent so the model can select what to remember, recovered at speed by a hardware-aware parallel scan.\n",{"path":12553,"title":12554,"module":12555,"summary":12556},"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory","Generalization Theory","Theory & Frontiers","Classical learning theory bounds the gap between training and test error by a model's capacity (VC dimension, Rademacher complexity), and predicts that a model with more parameters than data should overfit catastrophically. Modern networks do the opposite: they interpolate, even fit pure noise, and still generalize. We derive the classical bounds, work the bias-variance decomposition, show why the bounds go vacuous, and survey what replaced them: double descent, the interpolation threshold, margin and norm-based bounds, and the implicit bias of the optimizer itself.\n",{"path":12558,"title":12559,"module":12555,"summary":12560},"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness","Adversarial Robustness","A trained network can be fooled by a perturbation too small for a human to see: add a carefully aimed vector of magnitude $\\epsilon$ to a correctly classified image and the prediction flips. We derive the fast gradient sign method as the first-order-optimal step inside an $L_\\infty$ ball, explain the linearity hypothesis that makes high-dimensional models so easy to push around, build up to projected gradient descent, and frame adversarial training as a min-max robust-optimization problem with its own accuracy cost. Defenses beyond training continue in the next lesson.\n",{"path":12562,"title":12563,"module":12555,"summary":12564},"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses","Adversarial Defenses","Defending a network against an adversary is far harder than attacking one. This lesson covers the defense side: certified guarantees via randomized smoothing, the transferability that makes black-box attacks possible, and the recurring failure of gradient masking, where a defense hides the attacker's gradient instead of moving the decision boundary. It ends with the adaptive-attack discipline (BPDA, EOT, transfer) that every robustness claim must be tested against.\n",{"path":12566,"title":12567,"module":12555,"summary":12568},"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods","Bayesian & Ensemble Methods","A trained network returns a single point prediction and, with the softmax, a confidence, but that confidence is usually miscalibrated, collapsing to near- certainty even on inputs the model has never seen. This lesson covers uncertainty estimation for networks: the two kinds of uncertainty, the Bayesian posterior over weights and its tractable stand-ins (MC dropout, deep ensembles), and how to check whether a model's reported confidences match observed frequencies.\n",{"path":12570,"title":12571,"module":12555,"summary":12572},"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models","Deep Equilibrium Models","A deep network need not be a fixed stack of layers; it can be a single weight-tied layer iterated to convergence, its output defined implicitly as the fixed point $z^\\star = f_\\theta(z^\\star, x)$. The forward pass becomes root-finding and the backward pass becomes implicit differentiation, so training costs O(1) memory regardless of effective depth. We derive both passes from the implicit function theorem and close the course on defining a layer by a fixed-point condition rather than an explicit stack.\n",{"path":12574,"title":12575,"module":12576,"summary":12577},"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models","Linear Factor Models","Generative Models","The simplest generative models share one template: a latent variable drawn from a fixed prior, run through a linear decoder, plus noise. Probabilistic PCA, factor analysis, independent component analysis, and sparse coding are all this template with a different prior on the latents and a different noise model. We derive each marginal, see why ICA needs non-Gaussianity to identify its sources, and show how sparse coding learns Gabor-like dictionary atoms.\n",{"path":12579,"title":12580,"module":12576,"summary":12581},"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders","Autoencoders","An autoencoder is a network trained to copy its input to its output through a narrow channel; the useful product is the bottleneck representation $h$, not the reconstruction. We derive the undercomplete autoencoder and prove its linear case recovers PCA, then trade the bottleneck for explicit regularization (sparse, denoising, contractive) and show how a denoising autoencoder learns the low-dimensional manifold the data lives on.\n",{"path":12583,"title":12584,"module":12576,"summary":12585},"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders","Variational Autoencoders","An autoencoder compresses, but its latent space has gaps: sample a point between two encodings and the decoder produces noise. The variational autoencoder fixes this by training a probabilistic encoder against a prior, so the latent space becomes a smooth, samplable density. We derive the evidence lower bound it maximizes, the reparameterization trick that lets gradients flow through a random sample, and the closed-form Gaussian regularizer that pulls the posterior toward the prior.\n",{"path":12587,"title":12588,"module":12576,"summary":12589},"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks","Generative Adversarial Networks","A generative adversarial network trains two networks against each other: a generator that turns noise into samples, and a discriminator that tries to tell real data from forgeries. The game has a clean theory: the optimal discriminator is a likelihood ratio, and at equilibrium the generator minimizes the Jensen–Shannon divergence to the data, with a global optimum exactly when its distribution matches the data. We derive that result, fix the saturating loss that breaks training, and catalogue the failure modes (mode collapse, instability, vanishing gradients) and the architectural fixes.\n",{"path":12591,"title":12592,"module":12576,"summary":12593},"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows","Autoregressive Models & Normalizing Flows","Two families that provide exact likelihoods, each at a cost. Autoregressive models factor the joint by the probability chain rule and learn each conditional with a masked network: exact $\\log p(x)$, but sampling proceeds one coordinate at a time. Normalizing flows push a simple base density through an invertible map and read $\\log p(x)$ off the change-of-variables formula, trading architectural freedom for a cheap Jacobian determinant via triangular coupling layers.\n",{"path":12595,"title":12596,"module":12576,"summary":12597},"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines","Energy-Based & Boltzmann Machines","Energy-based models replace an explicit density with a scalar energy and a Boltzmann normalization, $p(x) = e^{-E(x)}\u002FZ$: simple to specify, but with an intractable partition function $Z$. The Boltzmann machine and its restricted variant make the energy bilinear so the hidden units factorize, and contrastive divergence sidesteps $Z$ by replacing the model expectation with a few Gibbs steps started at the data. We close on the undirected deep models (DBNs and DBMs) and how they differ from the directed VAE.\n",{"path":12599,"title":12600,"module":12576,"summary":12601},"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models","Diffusion and Score-Based Models","Corrupt a data point with Gaussian noise in small steps until only noise remains, then train a network to undo one step at a time. We derive the forward process and its closed-form marginal, reduce the variational bound to the single noise-prediction objective that makes diffusion trainable, and show the score-matching view that unifies it with Langevin sampling and the continuous SDE. The lesson closes with DDIM fast sampling, classifier-free guidance, and the latent diffusion that powers modern text-to-image systems.\n",{"path":12603,"title":12604,"module":12605,"summary":12606},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models","Structured Probabilistic Models","Probabilistic Methods","A joint distribution over $n$ variables is a table with exponentially many entries; nobody can store it, fit it, or sample from it directly. Structure fixes this: a graph whose missing edges encode conditional independencies that factor the joint into small local pieces. We build the two dialects, directed (Bayesian networks) and undirected (Markov random fields), read independence off the graph, and connect the machinery to the latent-variable and energy-based models that power deep generative learning.\n",{"path":12608,"title":12609,"module":12605,"summary":12610},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc","Monte Carlo & MCMC","Most quantities of interest in a probabilistic model are integrals nobody can compute in closed form: expectations, marginals, partition functions. Monte Carlo replaces the integral with an average over samples; importance sampling reweights samples from a tractable proposal; and when even sampling the target is hard, Markov-chain Monte Carlo builds a chain whose stationary distribution _is_ the target. We derive Metropolis–Hastings and Gibbs, analyze mixing, and close on the partition-function gradient that powers energy-based learning.\n",{"path":12612,"title":12613,"module":12605,"summary":12614},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference","Approximate Inference","In a latent-variable model the quantity we need, the posterior $p(h\\mid v)$ over hidden causes, is almost never computable, because its normalizer is an intractable sum over configurations. Approximate inference reframes the problem as optimization: maximize the evidence lower bound, a tractable functional whose gap to the true log-evidence equals a KL divergence. From that single bound fall expectation–maximization, mean-field variational inference, MAP, and the learned encoders behind variational autoencoders.\n",{"path":12616,"title":12617,"module":12618,"summary":12619},"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology","Practical Methodology","Practical Deep Learning","Knowing the algorithms is half the job; the other half is a disciplined loop. Fix a goal and a metric, stand up an end-to-end baseline, then read the train\u002Fvalidation gap to decide whether the next move is more data or a bigger model. We detail that loop: choosing metrics under class imbalance, default baselines by data type, extrapolating the data a target needs, and guarding the data pipeline against the leaks and label bugs that corrupt every gradient. Hyperparameter tuning, debugging, and deployment continue in the sequel.\n",{"path":12621,"title":12622,"module":12618,"summary":12623},"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging","Hyperparameters & Debugging","The tuning half of the methodology loop. The learning rate is the one hyperparameter that dominates, so we tune it first, on a log scale, coarse to fine, and prefer random search to grid when only a few dials matter. Then an ordered debugging playbook — overfit one batch, check the loss at initialization against ln C, watch the gradient norm, gradient-check against centered finite differences — and, after launch, monitoring for train-test skew and distribution drift with confidence-based abstention.\n",{"path":12625,"title":12626,"module":12618,"summary":12627},"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning","Representation Learning","A good representation makes a hard task easy by changing coordinates: it disentangles the factors of variation, spends its bits as a distributed code, and respects the low-dimensional manifold the data lives on. We make those three properties precise, recover the manifold hypothesis, and close on the first method that turned them into training practice — greedy layer-wise unsupervised pretraining — before the sequel picks up how the field learned to reuse those features.\n",{"path":12629,"title":12630,"module":12618,"summary":12631},"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning","Transfer Learning","A representation learned once can be reused everywhere. We cover the main mechanisms of reuse: feature extraction versus fine-tuning, the generic-to-specific gradient of features that sets the freeze boundary, the learning-rate discipline that keeps borrowed weights from being erased, domain adaptation when only the input distribution shifts, and the modern arc from supervised transfer to self-supervised foundation models.\n",{"path":12633,"title":12634,"module":12618,"summary":12635},"\u002Fdeep-learning\u002Fpractical\u002Fapplications","Applications","We survey large-scale training (the hardware, the two axes of parallelism, mixed precision, and the compression tricks that shrink a model after it is trained), then specialize the same gradient loop to vision, language, speech, and recommendation. Each domain is a different prior bolted onto one optimizer: convolutional invariance for pixels, distributed word vectors for tokens, sequence transduction for audio, low-rank factorization for the user–item matrix.\n",{"path":12637,"title":12638,"module":12618,"summary":12639},"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation","Model Compression and Distillation","A trained network and a deployable one are rarely the same object. This lesson is the toolkit for closing that gap: knowledge distillation transfers a large teacher's soft, information-rich logits into a small student; pruning deletes the weights that contribute least; quantization swaps 32-bit floats for 8- or 4-bit integers; and low-rank factorization replaces a fat matrix with two thin ones. We derive each method, show what it costs in accuracy, and lay out which combinations win on which hardware.\n",{"path":12641,"title":12642,"module":12618,"summary":12643},"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot","Meta-Learning and Few-Shot Learning","A deep network trained on one example per class overfits. Meta-learning targets this few-shot regime by training across a distribution of tasks so that a new task is learnable from a handful of examples. We formalize the $N$-way $K$-shot episode, then derive the two dominant families: metric methods that learn an embedding where distance classifies (Prototypical Networks), and optimization methods that learn an initialization a few gradient steps can adapt (MAML). We close on the link to transfer learning and to the in-context few-shot behavior of large language models.\n",{"path":12645,"title":12646,"module":12647,"summary":12648},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models","Large Language Models","Large Models & Agents","A large language model is a decoder-only Transformer trained on one objective, next-token prediction, then scaled until new behavior appears. This first part builds the object itself: the equivalence between next-token prediction and lossless compression, subword tokenization (BPE, WordPiece, Unigram, SentencePiece) worked on a real sentence, the four pretraining objectives and the attention masks that distinguish them, and the three model families (encoder-only, decoder-only, encoder--decoder) with their parameter budgets. Scaling, decoding, the KV cache, and alignment continue in part two.\n",{"path":12650,"title":12651,"module":12647,"summary":12652},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment","Scaling, Inference, and Alignment of Language Models","Once a language model is built, three questions remain: how does it improve as it grows, how is it decoded and served affordably, and how is a raw next-token predictor turned into an assistant. We derive the Kaplan power laws and the Chinchilla compute-optimal balance, trace emergent abilities and in-context learning, catalog the decoding strategies from greedy to nucleus sampling, work the KV cache that makes generation quadratic instead of cubic, cover parameter-efficient adaptation by low-rank updates (LoRA), and close on the alignment stack: instruction tuning, RLHF, and DPO.\n",{"path":12654,"title":12655,"module":12647,"summary":12656},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart","Denoising Sequence-to-Sequence Pretraining: BART","BERT corrupts and reconstructs; GPT predicts the next token. Sequence-to-sequence pretraining unifies both by training a full encoder–decoder as a denoising autoencoder: corrupt the text with a noise function, then reconstruct the original through a bidirectional encoder and an autoregressive decoder. This first part derives the denoising objective, catalogs BART's five noise functions (with a worked Poisson-infilling budget), proves BART specializes to both BERT and GPT, and traces a dimension-annotated forward pass through its encoder--decoder. T5, PEGASUS, fine-tuning, and decoding continue in part two.\n",{"path":12658,"title":12659,"module":12647,"summary":12660},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation","Text-to-Text Transfer and Conditional Generation","BART reconstructs a corrupted document; T5 pushes the same denoising idea into a single interface where every task is a string-to-string map. This second part covers T5's span corruption with sentinel tokens (with a worked token budget), PEGASUS's summarization-matched gap sentences and the MASS midpoint, supervised fine-tuning and beam-search decoding with a length penalty, the exposure-bias failure modes of autoregressive decoding, and a theorem showing why a bidirectional encoder--decoder strictly dominates a decoder-only model when the output is conditioned on a full input.\n",{"path":12662,"title":12663,"module":12647,"summary":12664},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models","Speech Recognition: Front-Ends and Alignment","Speech is a long, high-rate sequence whose label is short and unaligned, so the whole subject turns on bridging that mismatch. This first part builds the spectral front-ends that compress a waveform into frames (STFT, mel spectrogram, MFCC, with a worked frame-count), derives CTC's marginalization over alignments and its forward-backward recursion with a two-frame numeric example, and contrasts it with attention-based seq2seq (LAS) and the RNN transducer. Self-supervised and weakly-supervised models, and text-to-speech, continue in part two.\n",{"path":12666,"title":12667,"module":12647,"summary":12668},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis","Self-Supervised Speech Models and Synthesis","The recognition front-ends and alignment losses of part one all need transcribed audio, which is scarce. This second part removes that dependence: wav2vec 2.0 learns speech representations from unlabeled audio by a masked contrastive objective, HuBERT swaps the contrast for masked prediction of clustered units, and Whisper trades curation for scale with weakly-supervised web audio and a multitask token interface. We close with text-to-speech (the same length mismatch run backwards) and a tour of speech foundation models, discrete audio codecs, and neural TTS.\n",{"path":12670,"title":12671,"module":12647,"summary":12672},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents","AI Agents: Tools and Reasoning","A language model that only emits text is a function from prompt to prompt; an agent closes the loop, letting that model act on an environment, read back the result, and decide again. This first part formalizes the agent as a policy over interaction histories, builds out tool calling and the executor trust boundary, the ReAct interleaving of reasoning and action (with concrete traces), and search over thoughts: chain-of-thought, self-consistency, least-to-most, and Tree of Thoughts. Memory, retrieval, reflection, and multi-agent orchestration continue in part two.\n",{"path":12674,"title":12675,"module":12647,"summary":12676},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration","Agent Memory, Retrieval, and Orchestration","An agent's reasoning and tool use only matter if it can remember what it learned and coordinate work larger than one context window. This second part builds the systems around the loop: short-term scratchpad versus long-term vector store, retrieval-augmented generation with a worked softmax over passage scores, reflection (Reflexion, Self-Refine), and multi-agent orchestration. It closes on the failure modes that bound agents — invalid tool calls, horizon-error compounding, context overflow, non-terminating loops — and the benchmarks that score the full loop.\n",{"path":12678,"title":12679,"module":12647,"summary":12680},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts","Mixture-of-Experts","A mixture-of-experts layer replaces one feed-forward network with many and a router that sends each token to only a few of them, so the parameter count and the per-token compute become separate dials. We derive the gated output, sparse top-$k$ routing softmax, the load-balancing loss that stops the router from collapsing onto a single expert, and expert\u002Ftoken capacity with dropping, then work the dimension-annotated tensor shapes and FLOP arithmetic. We trace the architectures from the sparsely-gated LSTM through GShard, Switch Transformer, and Mixtral, cover distributed expert parallelism, and close on the training dynamics, failure modes, and serving costs of a sparse model.\n",{"path":12682,"title":12683,"module":12647,"summary":12684},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models","Multimodal Contrastive Learning","A multimodal model places images, text, and audio in one representation space, so a picture and its caption land close together. This first part builds the contrastive route: the shared embedding space and its residual modality gap, the Vision Transformer image encoder (patch embedding, CLS token, position embeddings, with shapes), the symmetric InfoNCE loss that trains the CLIP dual encoder from a batch similarity matrix (with a worked numeric step), and zero-shot classification as a softmax over class-prompt embeddings. Fusion and vision-language models continue in part two.\n",{"path":12686,"title":12687,"module":12647,"summary":12688},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models","Fusion and Vision-Language Models","A contrastive model compares modalities but never lets one read another. This second part builds the fusion route: early, late, and cross-attention fusion, then the three designs that connect a frozen vision encoder to a frozen language model — Flamingo's zero-initialized gated cross-attention, BLIP-2's Q-Former, and LLaVA's linear projector. We work the token-budget arithmetic that separates them, name the object-hallucination and fine-detail failure modes, cover the contrastive-then- instruction-tune recipe and its retrieval\u002Fcaptioning\u002FVQA benchmarks, and close on natively multimodal models.\n",{"path":12690,"title":12691,"module":12692,"summary":12693},"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning","Foundations of Reinforcement Learning","Reinforcement Learning","Reinforcement learning is the third paradigm: an agent learns to act by interacting with an environment that returns rewards, not labels. We formalize the interaction as a Markov decision process, define the value functions that rank states and actions, and derive the Bellman expectation and optimality equations that every method downstream solves. Dynamic programming gives the exact answer when the model is known, and its convergence rests on a single fact: the Bellman operator is a contraction.\n",{"path":12695,"title":12696,"module":12692,"summary":12697},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control","Model-Free Prediction and Control","When the dynamics are unknown, an agent cannot plan against a model; it must learn directly from sampled experience. We build prediction and control from two estimators of the same return: Monte Carlo averages whole episodes, while temporal-difference learning bootstraps from its own next estimate. We trace the bias-variance contrast between them, derive SARSA and Q-learning as the on-policy and off-policy forms of control, unify everything through n-step returns and eligibility traces, and close on the deadly triad that makes off-policy bootstrapping with function approximation diverge.\n",{"path":12699,"title":12700,"module":12692,"summary":12701},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks","Deep Q-Networks","A Deep Q-Network replaces the tabular action-value function with a neural approximator $Q(s,a;\\theta)$ and trains it by regression toward a bootstrapped target. Naive online Q-learning with a network diverges, so DQN adds two stabilizers: an experience-replay buffer that decorrelates samples, and a periodically-frozen target network that holds the regression target still. We derive the loss, give the full algorithm and the Atari pipeline, and then layer on Double DQN, the dueling split, prioritized replay, and the Rainbow combination.\n",{"path":12703,"title":12704,"module":12692,"summary":12705},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic","Policy Gradients and Actor-Critic Methods","Value-based reinforcement learning learns what each state is worth and acts greedily; policy-gradient methods skip the detour and optimize a parameterized policy directly by ascending the gradient of expected return. The policy gradient theorem makes this tractable through the log-derivative trick, turning an intractable gradient of an expectation into an expectation of a gradient. REINFORCE realizes the idea but suffers high variance; baselines, the advantage function, and actor-critic learning reduce it, and trust-region methods (TRPO, PPO) keep each update from destroying the policy it just learned.\n",{"path":12707,"title":12708,"module":12692,"summary":12709},"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback","Reinforcement Learning from Human Feedback","Many objectives we want from a model, that it be helpful and harmless, are hard to write down but easy to judge by comparison. RLHF turns that asymmetry into a training signal: fit a reward model to pairwise human preferences under the Bradley-Terry likelihood, then fine-tune the policy to maximize that reward under a KL penalty toward a reference. We derive the reward loss, the KL-regularized RL objective and its closed-form optimum, then show how DPO inverts that optimum to collapse the whole pipeline into one supervised log-sigmoid loss, and survey IPO, KTO, RLAIF, and GRPO.\n",{"path":12711,"title":12712,"module":6,"summary":6},"\u002Fdeep-learning","Deep Learning",{"path":12714,"title":12715,"module":10622,"summary":12716},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law","Equilibrium, State Variables, and the Zeroth Law","Thermodynamics describes a many-body system by a handful of macroscopic variables and the equilibrium relations among them. This lesson fixes the vocabulary: systems and the walls that separate them, state variables versus path-dependent process quantities, quasi-static and reversible idealizations, and the zeroth law, whose transitivity of thermal equilibrium is what lets temperature exist as a number. The ideal-gas thermometer turns that number into a scale, and an equation of state ties the variables into a surface.\n",{"path":12718,"title":12719,"module":10622,"summary":12720},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work","The First Law: Internal Energy, Heat, and Work","The first law is energy conservation for a system that exchanges energy as both heat and work. Internal energy is a state function with an exact differential; heat and work are path-dependent process quantities. This lesson states $\\d U=\\delta Q+\\delta W$, computes compression work as an area on the $P$–$V$ plane, defines the heat capacities $C_V$ and $C_P$ and the enthalpy that makes $C_P$ natural, and works the isothermal and adiabatic processes of an ideal gas, including the adiabat $PV^\\gamma=\\text{const}$.\n",{"path":12722,"title":12723,"module":10622,"summary":12724},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound","The Second Law, Carnot Cycles, and Entropy","The second law forbids the free conversion of heat into work. This lesson states the Kelvin and Clausius forms, proves them equivalent, and analyzes the Carnot cycle to get the efficiency bound $1-T_c\u002FT_h$. Carnot's theorem makes that bound universal and defines the thermodynamic temperature scale. The Clausius inequality $\\oint \\delta Q\u002FT\\le 0$ then constructs entropy as a state function, $\\d S=\\delta Q_{\\rm rev}\u002FT$, whose non-decrease in isolated systems is the arrow of time.\n",{"path":12726,"title":12727,"module":10622,"summary":12728},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations","Thermodynamic Potentials and Maxwell Relations","The fundamental relation $\\d U=T\\,\\d S-P\\,\\d V+\\mu\\,\\d N$ packages the first and second laws into one exact differential. Legendre transforms swap each conjugate pair to produce the Helmholtz, enthalpy, Gibbs, and grand potentials, each minimized under its own natural variables. Equality of mixed second partials of these potentials gives the Maxwell relations, which convert unmeasurable entropy derivatives into measurable ones from the equation of state.\n",{"path":12730,"title":12731,"module":10622,"summary":12732},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law","Response Functions, Stability, and the Third Law","Response functions — heat capacities, compressibilities, thermal expansion — are the second derivatives of the potentials and the quantities an experiment actually measures. This lesson derives the general relation $C_P-C_V=TV\\alpha^2\u002F\\kappa_T$, shows that convexity of the potentials forces the stability conditions $C_V>0$ and $\\kappa_T>0$, and states the third law: entropy approaches a constant as $T\\to0$, so heat capacities and expansion coefficients vanish there and absolute zero is unattainable.\n",{"path":12734,"title":12735,"module":12736,"summary":12737},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition","Classical Statistics and Equipartition","Microstates, Phase Space, and Statistical Entropy","A liter of gas holds on the order of a trillion trillion molecules, far too many to track by their equations of motion. Classical statistical mechanics replaces the trajectories with a single probability law, the Boltzmann distribution, and reads the measurable properties of matter off it: the Maxwell speed distribution, the average energy per degree of freedom, and the heat capacities of gases and solids — together with the low-temperature failures that forced the quantum revision.\n",{"path":12739,"title":12740,"module":12736,"summary":12741},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem","Phase Space, Trajectories, and Liouville's Theorem","A classical system of N particles is one point in a 6N-dimensional phase space, and its evolution is a single trajectory driven by Hamilton's equations. This lesson builds that geometric picture, introduces the phase-space density of an ensemble, and proves Liouville's theorem: the density is carried by the flow as an incompressible fluid, so phase-space volume is conserved. The stationary densities of equilibrium follow as functions of the conserved quantities alone.\n",{"path":12743,"title":12744,"module":12736,"summary":12745},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate","Ensembles and the Postulate of Equal a Priori Probabilities","An ensemble is a probability distribution over the microstates of a system. This lesson states the single postulate on which equilibrium statistical mechanics rests — that an isolated system in equilibrium is equally likely to be in any of its accessible microstates — and works out its consequences: the accessible phase-space volume, the overwhelming dominance of the most probable macrostate as the particle number grows, and the ergodic hypothesis that lets a time average be replaced by an ensemble average.\n",{"path":12747,"title":12748,"module":12736,"summary":12749},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs","Statistical Entropy: Boltzmann and Gibbs","Entropy is the logarithm of the number of accessible microstates. This lesson builds the two statistical entropies — Boltzmann's S = k ln Omega for an isolated system and Gibbs's S = -k sum p ln p for any ensemble — proves they agree for a uniform distribution, and connects both to Shannon's measure of missing information. The second law emerges as the drift toward maximum multiplicity, and maximizing the Gibbs entropy under constraints previews the canonical distribution.\n",{"path":12751,"title":12752,"module":12753,"summary":12754},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy","The Microcanonical Ensemble and Statistical Entropy","The Microcanonical Ensemble","An isolated system holds its energy, volume, and particle number fixed, and the fundamental postulate assigns equal probability to every microstate on its energy shell. This lesson builds the microcanonical distribution, defines the enclosed phase-space volume $\\Gamma(E)$, the surface density of states $\\omega(E)=\\d\\Gamma\u002F\\d E$, and the shell count $\\Omega(E)$, shows their logarithms agree to $O(\\ln N)$ for large $N$, and reads the Boltzmann entropy $S=k\\ln\\Omega$ off the count. The measure factors $h^{3N}$ and $N!$ enter here and make $S$ extensive.\n",{"path":12756,"title":12757,"module":12753,"summary":12758},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential","Thermal, Mechanical, and Diffusive Equilibrium","Two isolated subsystems that can exchange energy, volume, or particles reach equilibrium at the partition that maximizes their combined entropy. Setting the derivative of the total entropy to zero identifies the statistical definitions $1\u002FT=(\\partial S\u002F\\partial E)$, $P\u002FT=(\\partial S\u002F\\partial V)$, and $-\\mu\u002FT=(\\partial S\u002F\\partial N)$, shows heat flows from hot to cold as an entropy increase, and recovers the fundamental relation $\\d S=(\\d E+P\\,\\d V-\\mu\\,\\d N)\u002FT$ from pure counting.\n",{"path":12760,"title":12761,"module":12753,"summary":12762},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy","The Ideal Gas, Phase-Space Volume, and the Sackur–Tetrode Entropy","The monatomic ideal gas is the first system whose microcanonical count can be done in closed form. The momentum integral is the volume of a $3N$-dimensional ball of radius $\\sqrt{2mE}$, the configuration integral is $V^N$, and together they give the Sackur–Tetrode entropy $S=Nk[\\ln(V\u002FN\\lambda^3)+5\u002F2]$ with the thermal wavelength $\\lambda=h\u002F\\sqrt{2\\pi mkT}$. The formula matches the measured entropy of helium, fixes the classical regime $n\\ll n_Q$, and shows why the $N!$ is needed for extensivity.\n",{"path":12764,"title":12765,"module":12753,"summary":12766},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature","Two-State Systems, Paramagnets, and Negative Temperature","The ideal two-state paramagnet has a multiplicity counted by the binomial coefficient, an entropy that is an inverted dome in the energy, and a temperature read from the slope $1\u002FT=\\partial S\u002F\\partial E$. Because the energy is bounded above, the slope changes sign past the entropy maximum: a population-inverted spin system has a negative absolute temperature, which is hotter than any positive temperature. Nuclear-spin experiments and lasers realize the inverted state.\n",{"path":12768,"title":12769,"module":12770,"summary":12771},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution","The Canonical Ensemble and the Boltzmann Distribution","The Canonical Ensemble","A system held at fixed temperature by contact with a heat reservoir is described by the canonical ensemble. Expanding the reservoir entropy to first order in the system energy gives the Boltzmann distribution $p_i\\propto e^{-\\beta E_i}$, and the same law follows from maximizing the Gibbs entropy at fixed mean energy. Both routes identify $\\beta=1\u002Fk_BT$ and fix the probability of every microstate from the temperature alone.\n",{"path":12773,"title":12774,"module":12770,"summary":12775},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy","The Partition Function and the Helmholtz Free Energy","The normalizing sum of the Boltzmann distribution, the partition function $Z=\\sum_i e^{-\\beta E_i}$, is a generating function for the thermodynamics. The mean energy is $-\\partial\\ln Z\u002F\\partial\\beta$, and the Gibbs entropy of the canonical distribution collapses to the bridge relation $F=-k_BT\\ln Z$. From $F$ every thermodynamic quantity follows by differentiation, and $Z$ factorizes over independent degrees of freedom.\n",{"path":12777,"title":12778,"module":12770,"summary":12779},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence","Energy Fluctuations and the Equivalence of Ensembles","In the canonical ensemble the energy fluctuates, and the second derivative of $\\ln Z$ gives its variance. The fluctuation–response identity $\\langle\\Delta E^2\\rangle = k_BT^2C_V$ ties the spread of the energy to the heat capacity, and the relative fluctuation falls as $1\u002F\\sqrt{N}$. In the thermodynamic limit the canonical energy distribution is a sharp spike, and the canonical and microcanonical ensembles predict the same thermodynamics.\n",{"path":12781,"title":12782,"module":12770,"summary":12783},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems","Harmonic Systems: The Einstein Solid and Vibrational Heat Capacity","A quantum harmonic oscillator has a geometric partition function summed in closed form, giving a mean energy $\\hbar\\omega(\\tfrac12+\\langle n\\rangle)$ with the Bose occupation factor. Modeling a solid as $3N$ independent oscillators yields a heat capacity that rises from zero and saturates at the Dulong–Petit value $3Nk_B$. The Einstein temperature sets the crossover, and the model's exponential low-temperature falloff, too steep against the observed $T^3$, motivates the Debye theory.\n",{"path":12785,"title":12786,"module":12770,"summary":12787},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly","Paramagnetism, Two-Level Systems, and the Schottky Anomaly","A magnetic moment in a field is a two-level system whose partition function is a hyperbolic cosine. The magnetization of a spin-$\\tfrac12$ paramagnet is $N\\mu\\tanh(\\mu B\u002Fk_BT)$, generalizing to the Brillouin function for spin $J$; it gives Curie's law $\\chi\\propto 1\u002FT$ at high temperature and saturates at low temperature. A finite level gap produces the Schottky heat-capacity peak, and the temperature dependence of the entropy on the field is the basis of adiabatic demagnetization cooling.\n",{"path":12789,"title":12790,"module":12791,"summary":12792},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox","The Ideal Gas Partition Function and the Gibbs Paradox","The Classical Ideal Gas","The classical monatomic ideal gas built from the partition function. The single-particle sum is $z_1=V\u002F\\lambda^3$ with the thermal de Broglie wavelength $\\lambda$; the $N$-particle partition function is $z_1^N\u002FN!$, and the $N!$ is forced by indistinguishability. From $Z$ the ideal-gas law, $U=\\tfrac32 Nk_BT$, and the Sackur–Tetrode entropy follow. The $N!$ makes the entropy extensive and resolves the Gibbs paradox: mixing identical gases produces no entropy change.\n",{"path":12794,"title":12795,"module":12791,"summary":12796},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem","Equipartition and the Virial Theorem","The equipartition theorem derived from the canonical ensemble: every phase-space coordinate that enters the Hamiltonian quadratically carries a mean energy $\\tfrac12 k_BT$. The generalized form $\\langle x_i\\,\\partial H\u002F\\partial x_j\\rangle = k_BT\\,\\delta_{ij}$ contains equipartition and the classical virial theorem as special cases. Equipartition fixes the classical heat capacities, fails by quantum freeze-out when a level gap exceeds $k_BT$, and shifts for a relativistic gas whose energy is linear rather than quadratic in momentum.\n",{"path":12798,"title":12799,"module":12791,"summary":12800},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration","Molecular Gases: Rotational and Vibrational Degrees of Freedom","The internal partition function of a diatomic gas factorizes into translational, rotational, vibrational, and electronic parts. The rigid rotor gives a rotational temperature $\\theta_{\\rm rot}$; the harmonic bond gives a vibrational temperature $\\theta_{\\rm vib}$. Each mode contributes to the heat capacity only above its characteristic temperature, producing the diatomic $C_V$ staircase from $\\tfrac32 R$ to $\\tfrac52 R$ to $\\tfrac72 R$. Homonuclear molecules carry a symmetry number, and hydrogen splits into ortho and para species.\n",{"path":12802,"title":12803,"module":12804,"summary":12805},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function","The Grand Canonical Ensemble","Grand Canonical Ensemble","When a system exchanges both energy and particles with a reservoir, the reservoir fixes its temperature and its chemical potential. Expanding the reservoir entropy to first order in the exchanged energy and particle number gives the Gibbs factor $e^{-\\beta(E-\\mu N)}$, and summing it over every microstate of every particle number gives the grand partition function $\\Xi$. The grand potential $\\Phi = -k_BT\\ln\\Xi = -PV$ generates the mean particle number, energy, entropy, and pressure by differentiation.\n",{"path":12807,"title":12808,"module":12804,"summary":12809},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations","Chemical Potential, Fugacity, and Number Fluctuations","The chemical potential is the energy to add one particle at fixed entropy and volume, equal to the slope of the free energy in the particle number. For the classical ideal gas $\\mu=k_BT\\ln(n\\lambda^3)$ is large and negative, and the fugacity $z=n\\lambda^3$ is small. The grand ensemble makes the particle number fluctuate; its variance $\\langle\\Delta N^2\\rangle=k_BT(\\partial N\u002F\\partial\\mu)$ equals $k_BT\\,N^2\\kappa_T\u002FV$, tying density fluctuations to the isothermal compressibility. Equality of $\\mu$ is the condition for diffusive equilibrium and phase coexistence.\n",{"path":12811,"title":12812,"module":12804,"summary":12813},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web","The Three Ensembles and the Thermodynamic Web","The microcanonical, canonical, and grand canonical ensembles hold different variables fixed and generate different potentials — the entropy $S$, the Helmholtz free energy $F$, and the grand potential $\\Phi$ — linked by Legendre transforms that trade each fixed variable for its conjugate. Each successive ensemble lets one more quantity fluctuate. In the thermodynamic limit the three agree, the relative fluctuations vanishing as $1\u002F\\sqrt{N}$; the ideal gas gives the same equation of state in all three. The choice of ensemble is a matter of convenience, set by which sum is easiest.\n",{"path":12815,"title":12816,"module":12817,"summary":12818},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac","Quantum Statistics — Bose-Einstein and Fermi-Dirac","Quantum Statistics","Quantum particles of the same kind are genuinely indistinguishable: no label survives an overlap of their wave functions. Counting states with that constraint replaces the Boltzmann distribution with two quantum laws — the Bose-Einstein distribution for integer-spin particles, which clump into shared states, and the Fermi-Dirac distribution for half-integer-spin particles, which exclude one another. Both reduce to Boltzmann in the dilute, hot limit, and a de Broglie criterion says exactly when.\n",{"path":12820,"title":12821,"module":12817,"summary":12822},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions","Deriving the Quantum Distributions from the Grand Ensemble","The Bose-Einstein and Fermi-Dirac distributions follow from one observation: in the occupation-number representation the single-particle modes are independent, so the grand partition function factorizes into one factor per mode. A boson mode sums a geometric series over all occupancies; a fermion mode sums two terms. Differentiating each factor gives the mean occupation $1\u002F(e^{\\beta(\\varepsilon-\\mu)}\\mp 1)$, the Maxwell-Boltzmann limit when occupancies are small, and the occupation fluctuations that distinguish bunching from anti-bunching.\n",{"path":12824,"title":12825,"module":12817,"summary":12826},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration","The Classical Limit and Quantum Concentration","When every single-particle level is nearly empty, both quantum distributions collapse to the Maxwell-Boltzmann form, and the fugacity equals the ratio of the number density to the quantum concentration $n_Q = 1\u002F\\lambda^3$. The gas is classical when $n \\ll n_Q$, degenerate when $n \\gtrsim n_Q$. The chemical potential is large and negative in the classical regime and rises through zero as the gas degenerates. The leading quantum correction to the ideal-gas law is a second virial term that lowers the pressure for bosons and raises it for fermions — a statistical attraction and repulsion with no interaction behind it.\n",{"path":12828,"title":12829,"module":12817,"summary":12830},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework","Ideal Quantum Gases: The General Framework","Every ideal quantum gas is handled by one calculation. The sum over single-particle modes becomes an energy integral weighted by a density of states $g(\\varepsilon)\\propto\\varepsilon^{1\u002F2}$, and the number and pressure reduce to the Bose and Fermi functions $g_\\nu(z)$ and $f_\\nu(z)$ of the fugacity. An integration by parts fixes $PV=\\tfrac23 U$ for a nonrelativistic gas and $PV=\\tfrac13 U$ for an ultrarelativistic one, independent of statistics. Specializing the density of states and the chemical potential then produces the photon gas, phonons, the Bose gas, and the Fermi gas as four branches of the same framework.\n",{"path":12832,"title":12833,"module":12834,"summary":12835},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas","Bose-Einstein Condensation and the Fermion Gas","Bosonic Systems","Below a critical temperature a boson gas drops a macroscopic fraction of its particles into the single ground state — Bose-Einstein condensation, the mechanism behind superfluid helium and the dilute-atom condensates cooled to nanokelvin. The same statistics applied to a photon gas reproduces Planck's blackbody spectrum. Fermions do the opposite: forbidden from sharing states, they fill every level up to the Fermi energy, and that filled sea governs the electrons in metals and the pressure that holds up a white dwarf.\n",{"path":12837,"title":12838,"module":12834,"summary":12839},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law","The Photon Gas and Planck's Radiation Law","Electromagnetic radiation in equilibrium with cavity walls is a gas of non-conserved bosons, and non-conservation forces the chemical potential to zero. Counting standing-wave modes with two polarizations and weighting each by the Bose occupation gives the Planck spectral energy density. Its low-frequency tail reproduces the classical Rayleigh-Jeans law and the ultraviolet catastrophe; the Bose factor cuts the divergence off at high frequency and the peak obeys Wien's displacement law.\n",{"path":12841,"title":12842,"module":12834,"summary":12843},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure","Blackbody Thermodynamics and Radiation Pressure","Integrating the Planck spectrum over all frequencies gives the total energy density proportional to the fourth power of temperature — the Stefan-Boltzmann law — and the isotropy of a relativistic gas fixes the radiation pressure at one third of the energy density. From the free energy follow the entropy and heat capacity, both proportional to T cubed, and the adiabatic law for radiation. The results govern the pressure inside stars and the cooling of the cosmic microwave background as the universe expands.\n",{"path":12845,"title":12846,"module":12834,"summary":12847},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model","Phonons and the Debye Model","The vibrations of a crystal lattice are quantized into phonons — bosons of zero chemical potential, counted exactly like cavity photons but with three polarizations, a finite sound speed, and a total of 3N modes. The Debye model replaces the true dispersion by a linear one cut off at a frequency that enforces that count. It gives the correct low-temperature T-cubed heat capacity the Einstein model missed and recovers the Dulong-Petit value at high temperature.\n",{"path":12849,"title":12850,"module":12834,"summary":12851},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived","Bose-Einstein Condensation Derived","For a gas of conserved bosons the excited states can hold only a finite number of particles at fixed temperature, set by the Bose function at unit fugacity. When the total exceeds that ceiling the surplus collapses into the single ground state, which the continuum density-of-states integral misses and which must be restored by hand. This fixes the critical temperature, the condensate fraction, and the fact that a uniform gas condenses only in three or more dimensions.\n",{"path":12853,"title":12854,"module":12834,"summary":12855},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity","Thermodynamics of the Bose Gas and Superfluidity","The energy and pressure of the ideal Bose gas follow from the Bose function at the order above the density, and below the critical temperature the pressure depends on temperature alone because the condensate carries none. The heat capacity rises to a cusp at the transition. Real superfluid helium departs from the ideal gas because interactions matter: the Landau criterion ties frictionless flow to the phonon-roton excitation spectrum, and the two-fluid model carries a second sound.\n",{"path":12857,"title":12858,"module":12859,"summary":12860},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature","The Ideal Fermi Gas at Zero Temperature","Degenerate Fermi Gas","At absolute zero a gas of non-interacting fermions fills every single-particle state up to the Fermi energy and leaves the rest empty, a filled Fermi sphere in momentum space. This lesson computes the Fermi momentum, energy, and temperature from the density, the density of states, the total ground-state energy, and the degeneracy pressure that grows as $n^{5\u002F3}$. Numerical Fermi energies for metals set the scale: they are electron-volts, so room temperature is deep in the degenerate regime.\n",{"path":12862,"title":12863,"module":12859,"summary":12864},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals","The Sommerfeld Expansion and Electrons in Metals","Turning on a small temperature blurs the Fermi step over a shell of width $k_BT$ around $\\epsilon_F$. The Sommerfeld expansion turns integrals over the Fermi function into a power series in $(k_BT\u002F\\epsilon_F)^2$, giving the shift of the chemical potential and a heat capacity linear in $T$. This resolves the old puzzle of the missing electronic heat capacity, predicts the combined $C=\\gamma T+AT^3$ of a metal, and gives the temperature-independent Pauli paramagnetism of the electron gas.\n",{"path":12866,"title":12867,"module":12859,"summary":12868},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit","White Dwarfs and the Chandrasekhar Limit","A white dwarf is held up against its own gravity by the degeneracy pressure of its electrons. Balancing that pressure against gravity gives a mass-radius relation $R\\propto M^{-1\u002F3}$: heavier white dwarfs are smaller and denser. As the density rises the electrons turn relativistic, the pressure softens from $n^{5\u002F3}$ to $n^{4\u002F3}$, and the star can no longer support itself above a critical mass. This lesson derives that Chandrasekhar mass, about $1.4\\,M_\\odot$, and what lies beyond it.\n",{"path":12870,"title":12871,"module":12859,"summary":12872},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter","Neutron Stars and Dense Matter","When a collapsing core passes nuclear density, electron capture converts the matter to neutrons and their degeneracy pressure takes over. The same balance that fixes a white dwarf, rescaled by the neutron mass, gives a neutron star of a few solar masses in a ten-kilometre radius. General relativity is no longer a correction: the Tolman-Oppenheimer-Volkoff equation replaces the Newtonian balance and sets a maximum mass around two solar masses. This lesson rescales the Fermi-gas argument, states where it breaks, and places the compact objects in one stability sequence.\n",{"path":12874,"title":12875,"module":12876,"summary":12877},"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients","The Cluster Expansion and Virial Coefficients","Interacting Gases","A real gas departs from $PV=Nk_BT$ because its molecules interact. The configuration integral factors through the Mayer function $f_{ij}=e^{-\\beta u_{ij}}-1$, and expanding it in powers of density produces the virial expansion $PV\u002FNk_BT = 1 + B_2(T)n + B_3(T)n^2 + \\cdots$. The second virial coefficient $B_2(T)=-\\tfrac12\\int f\\,\\d^3r$ is a single integral over the pair potential; it is positive for a hard core, negative for an attractive well, and vanishes at the Boyle temperature where the two balance.\n",{"path":12879,"title":12880,"module":12876,"summary":12881},"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence","The van der Waals Gas and Liquid-Gas Coexistence","Resumming the second virial coefficient $B_2=b-a\u002Fk_BT$ into an equation of state gives the van der Waals model $(P+a\u002Fv^2)(v-b)=k_BT$, the simplest theory of a fluid that condenses. Below the critical temperature its isotherms develop a mechanically unstable loop; the Maxwell equal-area construction replaces the loop with a coexistence tie line. The critical point sits at $v_c=3b$, $k_BT_c=8a\u002F27b$, $P_c=a\u002F27b^2$, and the model predicts universal but incorrect critical exponents because it ignores fluctuations.\n",{"path":12883,"title":12884,"module":12876,"summary":12885},"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange","Quantum Gases with Interactions and Statistical Exchange","A quantum gas has a nonzero second virial coefficient even with no forces between the particles: symmetrization alone produces an effective statistical interaction, attractive for bosons and repulsive for fermions, with range the thermal wavelength $\\lambda$. This lesson derives that exchange contribution $B_2=\\mp\\lambda^3\u002F2^{5\u002F2}g$, writes it as a statistical potential $v_s(r)=-k_BT\\ln(1\\pm e^{-2\\pi r^2\u002F\\lambda^2})$, and shows how real interactions add on top through the Beth-Uhlenbeck phase-shift formula, reducing at low temperature to a single scattering length.\n",{"path":12887,"title":12888,"module":12889,"summary":12890},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification","Phases, Coexistence, and the Classification of Transitions","Phase Transitions","A phase transition is a point where the free energy of a substance loses analyticity, so a small change in temperature or pressure produces a qualitative change of state. This lesson maps the coexistence curves of a pure substance, derives the Clausius-Clapeyron relation between the slope of a coexistence line and its latent heat, and separates first-order transitions (discontinuous entropy and density) from continuous ones (a vanishing order parameter and divergent response). The Ehrenfest scheme, the order parameter, and the triple and critical points fix the vocabulary the rest of the module builds on.\n",{"path":12892,"title":12893,"module":12889,"summary":12894},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions","The Ising Model and Exact Results","The Ising model reduces cooperative ordering to spins on a lattice coupled to their neighbors, and the same Hamiltonian describes uniaxial magnets, the liquid-gas critical point through the lattice gas, and binary alloys. This lesson solves the one-dimensional chain exactly with the transfer matrix, shows by a domain-wall argument why one dimension has no ordered phase at any positive temperature, contrasts the survival of order in two dimensions, and quotes Onsager's exact two-dimensional results: the critical temperature, the logarithmically divergent heat capacity, and the magnetization exponent one eighth.\n",{"path":12896,"title":12897,"module":12889,"summary":12898},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model","Mean-Field Theory and Spontaneous Symmetry Breaking","Mean-field theory replaces the neighbors of each spin by their average, turning the interacting Ising model into a single spin in a self-consistent field. The resulting equation m = tanh(beta J z m + beta h) has only the zero solution above a critical temperature and gains a nonzero root below it, giving spontaneous magnetization and a mean-field critical temperature k T_c = J z. The Bragg-Williams free energy turns single-welled above T_c and double-welled below, the picture of spontaneous symmetry breaking. The approximation is exact in high dimension and fails below the upper critical dimension four, quantified by the Ginzburg criterion.\n",{"path":12900,"title":12901,"module":12889,"summary":12902},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory","Critical Exponents, Scaling, and Landau Theory","Near a continuous transition every singular quantity follows a power law in the reduced temperature, and the exponents alpha, beta, gamma, delta, nu, and eta encode the transition more sharply than T_c itself. Landau theory expands the free energy in the order parameter and delivers the mean-field exponents in a few lines. They disagree with experiment and with the exact two-dimensional Ising values, but the exponents are not independent: the scaling relations of Rushbrooke, Widom, Fisher, and Josephson tie them together, and the correlation length sets the length scale that organizes universality classes.\n",{"path":12904,"title":12905,"module":12889,"summary":12906},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea","Scaling and the Renormalization-Group Idea","At a critical point fluctuations exist on every length scale, so the system looks the same after coarse-graining. The renormalization group makes this self-similarity a computation: group spins into blocks, integrate out the short scales, and track how the couplings change. The transformation has fixed points, and the flow near a critical fixed point separates relevant couplings that grow from irrelevant ones that shrink, which is why only dimension and symmetry survive to set the exponents. The one-dimensional Ising decimation carries the whole scheme through in closed form and reproduces the absence of a finite-temperature transition.\n",{"path":12908,"title":12909,"module":12910,"summary":12911},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response","Thermodynamic Fluctuations and Response Functions","Fluctuations and Response","Thermodynamic variables are sharp only on average; a macroscopic system in equilibrium fluctuates about its mean values. Einstein inverted Boltzmann's $S=k_B\\ln\\Omega$ into a Gaussian probability for a fluctuation, $w\\propto e^{\\Delta S\u002Fk_B}$, and the second moments it predicts reproduce the response functions: $\\langle\\Delta E^2\\rangle=k_BT^2C_V$, $\\langle\\Delta V^2\\rangle=k_BTV\\kappa_T$, $\\langle\\Delta M^2\\rangle=k_BT\\chi_T$. The variances diverge where the responses diverge, at a critical point, producing critical opalescence and the breakdown of the thermodynamic description.\n",{"path":12913,"title":12914,"module":12910,"summary":12915},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation","Brownian Motion and the Langevin Equation","A pollen grain in water executes a random walk driven by molecular collisions. Einstein tied its diffusion constant to its mobility, $D=\\mu_{\\mathrm{mob}}k_BT$, turning a visible motion into a measurement of Avogadro's number. The Langevin equation splits the collisions into a systematic drag and a random force whose strength is fixed by the drag through $\\langle\\xi(t)\\xi(t')\\rangle=2\\gamma k_BT\\,\\delta(t-t')$ — the first fluctuation–dissipation relation. The mean-square displacement grows ballistically at short times and linearly, $\\langle r^2\\rangle=2dDt$, at long times, and the Stokes–Einstein relation $D=k_BT\u002F6\\pi\\eta a$ closes the loop to Perrin's experiments.\n",{"path":12917,"title":12918,"module":12910,"summary":12919},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem","Linear Response and the Fluctuation-Dissipation Theorem","A system driven by a weak external field responds through a generalized susceptibility $\\chi(\\omega)$ whose imaginary part measures dissipation. The Wiener–Khinchin theorem makes the power spectrum of equilibrium fluctuations the Fourier transform of their correlation function, and the fluctuation–dissipation theorem ties the two together: $S_x(\\omega)=(2k_BT\u002F\\omega)\\,\\chi''(\\omega)$, so the spectrum of spontaneous fluctuations is fixed by the dissipative response. The Johnson–Nyquist noise of a resistor, $\\langle V^2\\rangle=4k_BTR\\,\\Delta f$, is the canonical example, and Onsager reciprocity closes the subject.\n",{"path":12921,"title":12922,"module":6,"summary":6},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":12924,"title":12925,"module":12926,"summary":12927},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms","Bonding Mechanisms","Molecules and Chemical Bonding","A molecule forms when the total energy of two atoms drops below the energy of the separated pair. This lesson works through the four mechanisms that produce that minimum: the ionic bond from charge transfer, the covalent bond from shared electron wave functions, the metallic bond, and the weak dipole-dipole and hydrogen bonds, computing bond lengths and dissociation energies for NaCl, H₂, and H₂⁺.\n",{"path":12929,"title":12930,"module":12926,"summary":12931},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus","The Molecular-Orbital Method and H₂⁺","The hydrogen molecule ion is the two-center problem that fixes the language of chemical bonding. This lesson builds the molecular orbital as a linear combination of atomic orbitals, minimizes the energy through the variational secular equation, and reduces the result to three two-center integrals: the overlap, the Coulomb term, and the exchange (resonance) integral. The bonding and antibonding levels, their potential-energy curves, and the charge piled between the nuclei follow from those integrals.\n",{"path":12933,"title":12934,"module":12926,"summary":12935},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange","The Hydrogen Molecule, Exchange, and Hybridization","Adding the second electron turns the one-electron ion into the two-electron hydrogen molecule, where electron-electron repulsion and the Pauli principle govern the bond. This lesson contrasts the Heitler-London valence-bond and molecular-orbital wave functions, derives the singlet-triplet splitting as an exchange energy, shows why naive molecular orbitals fail at dissociation, and builds the sp, sp², and sp³ hybrids that fix the directed geometry of covalent bonds.\n",{"path":12937,"title":12938,"module":12926,"summary":12939},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces","Van der Waals Forces","The bond of last resort acts between all atoms, even closed-shell noble gases with no permanent moment. This lesson separates the three van der Waals contributions — Keesom orientation, Debye induction, and London dispersion — derives the London 1\u002Fr⁶ attraction from the coupled-oscillator and second-order perturbation pictures, and assembles the Lennard-Jones potential to compute the equilibrium spacing and cohesive energy of the noble-gas crystals, argon in particular.\n",{"path":12941,"title":12942,"module":12943,"summary":12944},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra","Rotational and Vibrational Spectra of Molecules","Molecular Spectra","A diatomic molecule stores energy in three well-separated ledgers: electronic, vibrational, and rotational. Quantizing the rigid rotor gives levels spaced as ℓ(ℓ+1); quantizing the bond as a harmonic oscillator gives equally spaced vibrational levels. Their combination produces the P and R branches of an infrared absorption band, from which the bond length and force constant are read directly.\n",{"path":12946,"title":12947,"module":12943,"summary":12948},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure","Anharmonicity and Rovibrational Structure","The rigid rotor and harmonic oscillator are first approximations. A real bond follows the Morse potential, whose levels converge toward dissociation; a real rotor stretches centrifugally; and vibration couples to rotation, so the rotational constant depends on the vibrational level. This lesson works out the anharmonic and centrifugal corrections, the Birge-Sponer route to the dissociation energy, the isotope shift, and the thermal band envelope.\n",{"path":12950,"title":12951,"module":12943,"summary":12952},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands","Raman Scattering and Electronic Bands","Not every vibration absorbs in the infrared. Raman scattering reaches modes that modulate the polarizability, giving Stokes and anti-Stokes lines whose intensity ratio measures temperature, and the mutual-exclusion rule pairs it with infrared absorption. Electronic transitions add the vibronic structure of band spectra, governed by the Franck-Condon principle, and the radiative fates of an excited state are sorted by the Jablonski diagram into fluorescence and phosphorescence.\n",{"path":12954,"title":12955,"module":12943,"summary":12956},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers","Lasers, Masers, and Stimulated Emission","Einstein's three radiative processes — absorption, spontaneous emission, and stimulated emission — and the coefficients that relate them. Stimulated emission produces coherent photons, and inverting the level populations turns it into net amplification. We build the ruby three-level laser and the helium-neon four-level laser, and show why the fourth level makes inversion easy.\n",{"path":12958,"title":12959,"module":12960,"summary":12961},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids","The Structure of Solids","Crystal Structure","A crystal is a unit cell repeated in three dimensions. We classify the common cubic lattices, compute the Coulomb energy of an ionic crystal through the Madelung constant, and show how the divergent naive lattice sum is tamed by cubic shells. The cohesive energy that results predicts melting points and connects the diatomic bond of an earlier lesson to the bulk solid.\n",{"path":12963,"title":12964,"module":12960,"summary":12965},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems","Bravais Lattices, Bases, and Crystal Structures","A crystal is a Bravais lattice decorated by a basis. This lesson separates the two, builds primitive and Wigner-Seitz cells, enumerates the seven crystal systems and fourteen Bravais lattices, and fixes the language of point and space groups. Miller indices label planes and directions, and the packing fractions of the close-packed, cubic, and diamond structures follow from the geometry.\n",{"path":12967,"title":12968,"module":12960,"summary":12969},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones","The Reciprocal Lattice and Brillouin Zones","Every periodic crystal has a dual lattice in wavevector space. This lesson defines the reciprocal lattice through the condition b_i dot a_j equals two pi delta, derives its properties, shows the reciprocal of fcc is bcc, links reciprocal vectors to families of lattice planes, and builds the first Brillouin zone as the Wigner-Seitz cell of the reciprocal lattice, including the higher zones.\n",{"path":12971,"title":12972,"module":12960,"summary":12973},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors","X-ray and Neutron Diffraction","A crystal diffracts radiation whose wavelength matches its atomic spacing. This lesson derives the Bragg condition, the equivalent Laue condition 2k dot G equals G squared, and the Ewald-sphere construction, then computes the geometric structure factor that produces systematic absences for bcc and fcc, the atomic form factor, and the powder method. It closes on why neutrons and electrons complement X-rays.\n",{"path":12975,"title":12976,"module":12977,"summary":12978},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion","The Harmonic Crystal and Phonon Dispersion","Lattice Dynamics","Atoms in a crystal vibrate about their equilibrium sites, and expanding the potential to second order turns the whole lattice into a set of coupled harmonic oscillators. This lesson sets up the harmonic approximation and the dynamical matrix, solves the monatomic linear chain for its dispersion omega(k) = 2 sqrt(K\u002FM) times the absolute sine of ka over two, explains why wavevectors outside the first Brillouin zone are redundant, and extends the chain to two atoms per cell to produce acoustic and optical branches with a frequency gap.\n",{"path":12980,"title":12981,"module":12977,"summary":12982},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos","Phonons, Density of States, and Crystal Momentum","Quantizing the normal modes of a harmonic crystal turns each vibrational mode into a quantum oscillator whose excitations are phonons. This lesson counts phonons with Bose-Einstein statistics, defines crystal momentum and the normal versus Umklapp distinction in momentum conservation, builds the density of states with its van Hove singularities, and shows how inelastic neutron scattering measures a dispersion curve point by point.\n",{"path":12984,"title":12985,"module":12977,"summary":12986},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity","Thermal Properties — Einstein and Debye Models","The lattice heat capacity follows the classical Dulong-Petit value at high temperature but collapses toward zero as T approaches zero, a purely quantum effect. This lesson derives that behavior from the Einstein model of a single frequency, then the Debye model of a linear phonon spectrum with a cutoff, obtaining the Debye T-cubed law at low temperature and the Debye interpolation across all temperatures, and closes with thermal expansion and the Gruneisen parameter.\n",{"path":12988,"title":12989,"module":12977,"summary":12990},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport","Anharmonicity, Thermal Expansion, and Heat Conduction","A perfectly harmonic crystal neither expands when heated nor resists heat flow. Both effects come from the cubic and higher terms the harmonic approximation discards. This lesson derives thermal expansion from an asymmetric interatomic potential, treats phonon-phonon scattering as the decay channel these terms open, shows why Umklapp processes are what make lattice thermal conductivity finite, and traces the temperature dependence of the conductivity and the phonon mean free path.\n",{"path":12992,"title":12993,"module":12994,"summary":12995},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction","Conduction and the Free-Electron Gas","Free-Electron Fermi Gas","Drude's classical free-electron model gets Ohm's law right but the resistivity, its temperature dependence, and the heat capacity wrong. Replacing the Maxwell-Boltzmann distribution with the Fermi-Dirac distribution and treating electron-lattice collisions as wave scattering repairs all three: the Fermi energy, Fermi speed, and a mean free path set by thermal lattice vibrations.\n",{"path":12997,"title":12998,"module":12994,"summary":12999},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity","The Sommerfeld Model: Ground State and Heat Capacity","Quantizing the free-electron gas in a box fills a Fermi sphere in k-space. The density of states grows as the square root of energy in three dimensions, and the Fermi energy, temperature, and wavevector follow for real metals. The Sommerfeld expansion shows only a thermal shell of width k_BT near E_F is excited, giving an electronic heat capacity linear in T that sits beneath the phonon T-cubed term.\n",{"path":13001,"title":13002,"module":12994,"summary":13003},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect","Transport, Wiedemann–Franz, and the Hall Effect","The relaxation-time picture displaces the Fermi sphere under an applied field and gives the electrical conductivity ne-squared-tau over m. The same electrons carry heat, and their ratio yields the Wiedemann–Franz law with the universal Lorenz number. A magnetic field bends the carriers into cyclotron orbits and produces the Hall voltage, whose sign reveals the charge of the carriers.\n",{"path":13005,"title":13006,"module":12994,"summary":13007},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons","Screening, Plasmons, and the Limits of Free Electrons","A mobile electron gas rearranges to screen any foreign charge, turning the bare Coulomb potential into a short-ranged Yukawa form over the Thomas–Fermi length. Displaced collectively, the gas rings at the plasma frequency, whose quantum is the plasmon and whose value sets the reflectivity edge of metals. A ledger of free-electron successes and failures then motivates band theory.\n",{"path":13009,"title":13010,"module":13011,"summary":13012},"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands","Bloch's Theorem and Energy Bands","Band Theory","An electron in a periodic potential has stationary states that are plane waves modulated by a lattice-periodic envelope. This lesson proves Bloch's theorem two ways, defines crystal momentum and the band index, counts the allowed wavevectors from Born–von Kármán boundary conditions, and sets up the extended, reduced, and repeated-zone descriptions of a band.\n",{"path":13014,"title":13015,"module":13011,"summary":13016},"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model","The Nearly-Free-Electron Model","A weak periodic potential leaves the free-electron parabola almost intact except near Brillouin-zone boundaries, where two nearly degenerate plane waves mix. This lesson solves the resulting two-by-two secular problem, shows the gap of size twice the potential component opening at each boundary, identifies the two standing waves that pile charge on and between the ions, and works the exactly solvable Kronig–Penney model.\n",{"path":13018,"title":13019,"module":13011,"summary":13020},"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method","The Tight-Binding Method","The opposite limit to nearly-free electrons builds bands from atomic orbitals. A Bloch sum of one orbital per site gives a dispersion set by the hopping integral between neighbours; the band widens from a sharp atomic level as the atoms approach. This lesson derives the s-band cosine dispersion, extends it to p-bands, and introduces Wannier functions as the localized dual of Bloch states.\n",{"path":13022,"title":13023,"module":13011,"summary":13024},"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics","Fermi Surfaces, Effective Mass, and Metals vs Insulators","Filling the bands settles which crystals conduct. A filled band carries no current, so a crystal with filled bands and a gap is an insulator, while a partly filled band makes a metal. This lesson derives the no-current theorem for a filled band, defines the Fermi surface and Harrison's construction, introduces holes and the effective mass from band curvature, and states the semiclassical equations of motion that lead to Bloch oscillations.\n",{"path":13026,"title":13027,"module":13028,"summary":13029},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions","Band Theory and Semiconductors","Semiconductors","The periodic lattice splits atomic levels into allowed energy bands separated by forbidden gaps. Whether the highest occupied band is full or partly full, and how wide the gap above it is, sorts every solid into conductor, insulator, or semiconductor. Doping adds donor or acceptor levels inside the gap, and a p-n junction built from doped regions gives the diode, the solar cell, the LED, and the transistor.\n",{"path":13031,"title":13032,"module":13028,"summary":13033},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors","Carrier Statistics: Intrinsic and Extrinsic Semiconductors","The number of mobile electrons and holes in a semiconductor follows from the density of states near each band edge and the Fermi-Dirac tail that reaches into it. This lesson derives the effective densities of states, the intrinsic concentration and its exponential gap dependence, the law of mass action, the temperature march of the Fermi level, and the freeze-out, saturation, and intrinsic regimes of a doped crystal.\n",{"path":13035,"title":13036,"module":13028,"summary":13037},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination","Carrier Transport and Recombination","Carriers move by drift in a field and by diffusion down a concentration gradient, the two tied together by the Einstein relation. This lesson derives mobility and its scattering-limited temperature dependence, the drift and diffusion currents, the continuity equations, band-to-band and trap-assisted recombination, and the minority-carrier lifetime and diffusion length that set the length scale of every junction device.\n",{"path":13039,"title":13040,"module":13028,"summary":13041},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction","The p-n Junction in Depth","Joining p-type and n-type silicon aligns their Fermi levels and leaves a depletion region of fixed charge with a built-in potential. This lesson derives the space-charge field and potential from Poisson's equation in the depletion approximation, the built-in voltage from Fermi-level alignment, the Shockley diode equation from minority-carrier diffusion, junction and diffusion capacitance, and the avalanche and Zener breakdown mechanisms.\n",{"path":13043,"title":13044,"module":13028,"summary":13045},"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics","Transistors and Optoelectronic Devices","Two junctions in series make a bipolar transistor whose thin base gives current gain; a gate over an oxide makes a MOSFET whose inversion channel switches digital logic. Run in reverse, a junction converts photons to current. This lesson derives the transistor current gain and the MOSFET channel current, then treats the LED, the diode laser, and the illuminated solar-cell characteristic.\n",{"path":13047,"title":13048,"module":13049,"summary":13050},"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization","Dielectrics, Polarization, and the Local Field","Dielectrics and Ferroelectrics","An insulator responds to an electric field by polarizing. This lesson builds the macroscopic polarization and the dielectric constant, sorts the microscopic response into electronic, ionic, and orientational polarizability, and corrects the field an atom actually feels to the Lorentz local field E + P\u002F3 epsilon-0. The Clausius-Mossotti relation links the measured permittivity to the atomic polarizability, and the frequency dependence of each mechanism explains why the static and optical dielectric constants differ.\n",{"path":13052,"title":13053,"module":13049,"summary":13054},"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics","Ferroelectrics, Piezoelectrics, and Structural Transitions","Some crystals carry a polarization with no applied field and switch it under a reversing field, tracing a hysteresis loop. This lesson develops the ferroelectric transition through the perovskite BaTiO3 displacive instability and its soft transverse-optical mode, builds the Landau free-energy theory of first- and second-order polar transitions, derives the Curie-Weiss divergence of the dielectric constant, and closes with piezoelectricity and pyroelectricity and their devices.\n",{"path":13056,"title":13057,"module":13058,"summary":13059},"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism","Diamagnetism and Paramagnetism","Magnetism in Solids","Every solid responds to a magnetic field. Filled shells give a small negative diamagnetic susceptibility from induced Larmor currents; localized moments give a positive Curie paramagnetism described by the Brillouin function, with the ground-state moment fixed by Hund's rules. The conduction electrons add a temperature-independent Pauli paramagnetism from the thermal shell near the Fermi surface, partly cancelled by Landau diamagnetism of their orbital motion.\n",{"path":13061,"title":13062,"module":13058,"summary":13063},"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism","Exchange and Ferromagnetism","Magnetic ordering at hundreds of kelvin cannot be dipolar; it is an exchange effect, the Coulomb repulsion sorted by the Pauli principle into a spin-dependent energy captured by the Heisenberg Hamiltonian. Weiss molecular-field theory replaces the exchange field by an average proportional to the magnetization, giving a self-consistent equation whose solution is spontaneous magnetization below a Curie temperature and a Curie–Weiss susceptibility above it. Itinerant ferromagnetism follows from the Stoner criterion on the band density of states.\n",{"path":13065,"title":13066,"module":13058,"summary":13067},"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains","Antiferromagnetism, Ferrimagnetism, and Domains","A negative exchange coupling orders neighboring spins antiparallel. Two-sublattice molecular-field theory gives a Néel temperature marked by a cusp in the susceptibility, and unequal sublattices leave a net moment — ferrimagnetism, the magnetism of the ferrites. A ferromagnet breaks into domains to reduce its magnetostatic energy, separated by Bloch walls whose width is set by the competition between exchange and magnetocrystalline anisotropy, and the irreversible motion of those walls produces the hysteresis loop.\n",{"path":13069,"title":13070,"module":13058,"summary":13071},"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons","Spin Waves and Magnons","The lowest excitations of a ferromagnet are not single flipped spins but collective precessions in which every moment tips slightly and its phase advances along the crystal. These spin waves have a quadratic dispersion at long wavelength, quantize into magnons obeying Bose statistics, and their thermal population removes magnetization as the Bloch T-to-the-three-halves law. Antiferromagnetic magnons disperse linearly, and inelastic neutron scattering measures both.\n",{"path":13073,"title":13074,"module":13075,"summary":13076},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology","Superconductivity: Phenomenology and BCS","Superconductivity","Below a critical temperature some materials lose all resistance and expel magnetic flux — the Meissner effect that defines the state. The isotope effect points to lattice vibrations, and BCS theory binds electrons into Cooper pairs through phonon exchange. The paired condensate opens an energy gap, quantizes magnetic flux, and drives the Josephson effects.\n",{"path":13078,"title":13079,"module":13075,"summary":13080},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect","London Theory and the Meissner Effect","A perfect conductor freezes the field it was cooled in; a superconductor expels it. The distinction needs a constitutive law beyond zero resistance — the two London equations — whose solution is exponential flux decay over the penetration depth. The same rigidity follows from a macroscopic condensate wave function, and the thermodynamics of the critical field fixes the condensation energy, the latent heat, and the specific-heat jump.\n",{"path":13082,"title":13083,"module":13075,"summary":13084},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory","Ginzburg–Landau Theory, Vortices, and Type-II","A complex order parameter and a free-energy expansion turn the superconducting transition into a Landau theory. Two lengths emerge — the coherence length and the penetration depth — whose ratio kappa sorts superconductors into type I and type II. Type-II materials admit flux as an Abrikosov lattice of vortices, each threading exactly one quantum h\u002F2e, between a lower and an upper critical field.\n",{"path":13086,"title":13087,"module":13075,"summary":13088},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory","Microscopic BCS Theory","A phonon-mediated attraction, however weak, binds two electrons above the Fermi sea — the Cooper problem shows the sea is unstable. The BCS variational ground state pairs all electrons near the Fermi surface and, through a self-consistent gap equation, opens an energy gap. Weak-coupling solution gives the exponential T_c and the universal ratios 2 Delta(0) = 3.53 k_B T_c and Delta C \u002F C_n = 1.43.\n",{"path":13090,"title":13091,"module":13075,"summary":13092},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc","Josephson Effects and Unconventional Superconductors","Two superconductors joined by a thin barrier carry a supercurrent set by their phase difference — the dc Josephson effect — and oscillate at 2eV\u002Fh under a voltage. A two-junction loop turns flux quantization into a magnetometer of single-quantum sensitivity. The cuprates superconduct in CuO2 planes with a doping-dependent dome, d-wave pairing, and a pseudogap that lie outside the phonon picture.\n",{"path":13094,"title":13095,"module":13096,"summary":13097},"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots","Quantum Wells, Wires, and Dots","Nanostructures","When a crystal is shrunk until one or more of its dimensions approaches the electron wavelength, the continuous bands of the bulk break into discrete subbands. Confining in one direction gives a quantum well with a step-like density of states, in two directions a quantum wire with inverse-square-root singularities, and in all three a quantum dot whose levels are sharp like an atom's. This lesson derives the density of states in each case and applies it to size-tunable dot emission and the Coulomb blockade of a single-electron transistor.\n",{"path":13099,"title":13100,"module":13096,"summary":13101},"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect","The 2D Electron Gas and the Integer Quantum Hall Effect","A two-dimensional electron gas in a strong perpendicular magnetic field has its continuous density of states collapse into macroscopically degenerate Landau levels. As the field is swept, the Hall resistance locks onto exact plateaus at h over an integer times e squared, while the longitudinal resistance drops to zero. This lesson derives the Landau levels and their degeneracy, explains the plateaus through disorder-localized states and current-carrying edge channels, and states why the von Klitzing constant is now a resistance standard.\n",{"path":13103,"title":13104,"module":13096,"summary":13105},"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology","The Fractional Quantum Hall Effect and Topological Order","When the lowest Landau level is only partly filled, the non-interacting theory predicts no gap, yet a plateau appears at filling one-third. It is a many-body effect: Coulomb repulsion selects a correlated ground state, the Laughlin wavefunction, whose excitations carry a fraction of the electron charge. This lesson builds the Laughlin state, introduces composite fermions that map the fractional effect onto an integer one, and explains how the quantum Hall effect brought the Chern number and topology into condensed-matter physics.\n",{"path":13107,"title":13108,"module":13096,"summary":13109},"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials","Graphene and Dirac Materials","Graphene is one atomic layer of carbon on a honeycomb lattice. A tight-binding calculation on its two-atom basis gives valence and conduction bands that touch at the corners of the Brillouin zone, where the dispersion is linear and the electrons behave as massless two-dimensional Dirac particles with a fixed speed. This lesson derives the Dirac cones, the Berry phase of pi and the sublattice chirality, the anomalous half-integer quantum Hall effect that follows, and how opening a gap in a Dirac cone points toward topological insulators.\n",{"path":13111,"title":13112,"module":6,"summary":6},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":13114,"title":13115,"module":9887,"summary":13116},"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model","Logic as a Mathematical Model of Deduction","Symbolic logic models deductive reasoning the way probability theory models chance: it keeps the form of a correct deduction and discards its content. A deduction is valid when its conclusion follows from the form of the premises alone, independent of what the non-logical words mean. Two models carry the subject — coarse sentential logic and fine first-order logic — and four questions organize it: logical consequence, methods of proof, the gap between provable and true, and the link between logic and computability. Tuples, relations, functions, equivalence classes, and cardinality supply the set-theoretic vocabulary every later chapter uses.\n",{"path":13118,"title":13119,"module":13120,"summary":13121},"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas","Formal Languages and Well-Formed Formulas","Sentential Logic","The language of sentential logic has an alphabet of sentence symbols, five connectives, and two parentheses, with formation rules that pick out the well-formed formulas. The wffs are the least set of expressions closed under the five formula-building operations, and every such generated set carries an induction principle.\n",{"path":13123,"title":13124,"module":13120,"summary":13125},"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies","Truth Assignments, Tautologies, and Consequence","A truth assignment fixes the sentence symbols true or false, and a recursion extends it uniquely to every formula. Satisfaction, tautologies, and tautological implication — one formula following semantically from others — rest on that extension, and the truth-table procedure decides implication for finite premise sets.\n",{"path":13127,"title":13128,"module":13120,"summary":13129},"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing","Unique Readability and a Parsing Algorithm","Parentheses keep a formula from being read two ways. The parenthesis lemmas and a top-down parsing algorithm recover a formula's structure and yield unique readability: every wff has exactly one formation tree, which is what makes the truth recursion well defined.\n",{"path":13131,"title":13132,"module":13120,"summary":13133},"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion","Induction and Recursion on Formulas","Two principles govern any set generated from initial elements by operations: prove a property of all its members by covering the initial elements and the closure steps, and define a function on it by recursion on structure. The recursion theorem needs the set to be freely generated, and unique readability supplies that condition for the well-formed formulas.\n",{"path":13135,"title":13136,"module":13120,"summary":13137},"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms","Sentential Connectives and Normal Forms","Every formula computes a Boolean function of its atoms, and Post's theorem gives the converse: every Boolean function is realized by a wff in disjunctive normal form, so the five connectives are more than enough. Minimal complete sets follow, down to the single connectives NAND and NOR, together with a method for proving a set of connectives incomplete.\n",{"path":13139,"title":13140,"module":13120,"summary":13141},"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits","Switching Circuits","A memoryless two-valued circuit computes a Boolean function, so every formula names a gate network and every network a formula. Cost and delay are read off the formula by recursion, and tautological equivalence and normal forms design and simplify circuits realizing a given specification.\n",{"path":13143,"title":13144,"module":13120,"summary":13145},"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness","Compactness and Effectiveness","The compactness theorem reduces satisfiability of an infinite set of formulas to its finite subsets, proved by extension to a maximal finitely satisfiable set and applied to color infinite graphs. Effectiveness fixes what \"decidable\" and \"effectively enumerable\" mean and settles the decidability of tautologyhood.\n",{"path":13147,"title":13148,"module":13149,"summary":13150},"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages","First-Order Languages","First-Order Languages and Structures","Sentential logic cannot see inside a simple statement, so it misses valid arguments that turn on quantifiers and predicates. A first-order language adds a quantifier, variables, and a chosen vocabulary of predicate, function, and constant symbols. Terms and well-formed formulas are built by recursion over this alphabet, and a variable occurs free or bound according to the quantifiers that reach it.\n",{"path":13152,"title":13153,"module":13149,"summary":13154},"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction","Structures, Truth, and Satisfaction","A structure interprets a language: a nonempty universe plus a meaning for every predicate, function, and constant symbol. Tarski's recursion defines when a structure satisfies a formula under a variable assignment, and hence when a sentence is true. From satisfaction we recover logical implication, validity, and logical equivalence for first-order logic.\n",{"path":13156,"title":13157,"module":13149,"summary":13158},"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence","Definability and Elementary Equivalence","Fix a structure and ask which relations a formula can pick out: the definable ones. A set of sentences picks out a class of structures, the elementary classes. Homomorphisms and isomorphisms compare structures, and the homomorphism theorem shows isomorphic structures satisfy the same sentences. Automorphisms bound what first-order logic can distinguish, giving a tool for proving relations undefinable.\n",{"path":13160,"title":13161,"module":13149,"summary":13162},"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing","Parsing, Substitution, and Substitutability","Every recursion on first-order syntax rests on unique readability. A parenthesis-counting function proves that terms and formulas decompose in exactly one way, and a parsing algorithm recovers the decomposition. Substituting a term for a free variable can capture it under a quantifier; the substitutability condition rules that out, and the substitution lemma trades syntactic substitution for a change of assignment.\n",{"path":13164,"title":13165,"module":13166,"summary":13167},"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus","A Deductive Calculus for First-Order Logic","The Deductive Calculus and Its Metatheorems","A proof must be finite and mechanically checkable. A Hilbert-style calculus meets both demands: six schemas of logical axioms, a single rule of inference (modus ponens), and the syntactic consequence relation they generate. Substitution and substitutability are defined by recursion, and the bridge theorem reduces deducibility to tautological implication from the axioms.\n",{"path":13169,"title":13170,"module":13166,"summary":13171},"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules","The Deduction Theorem and Derived Rules","Raw deductions from axioms are unusable by hand. The generalization theorem, the deduction theorem, contraposition, reductio ad absurdum, and rule T reduce the calculus to the moves of ordinary mathematics, each proved once to license a block of axiom-level steps. Generalization on constants and alphabetic variants handle the quantifier and substitution bookkeeping.\n",{"path":13173,"title":13174,"module":13166,"summary":13175},"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness","The Soundness Theorem","Soundness is the easy half of the match between proof and truth. Whatever the calculus deduces is logically implied, by an induction on deduction length that rests on one lemma: every logical axiom is valid. The only hard case, quantifier instantiation, needs the substitution lemma. The contrapositive corollary states that every satisfiable set is consistent.\n",{"path":13177,"title":13178,"module":13166,"summary":13179},"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency","The Completeness Theorem","Gödel's completeness theorem is the deep converse of soundness: whatever is logically implied can be deduced. Equivalently, every consistent set has a model. The Henkin proof manufactures that model out of syntax alone: add witnessing constants, extend to a maximal consistent set, and read a term model off the formulas it contains. Compactness and the enumerability theorem drop out.\n",{"path":13181,"title":13182,"module":13183,"summary":13184},"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem","Compactness and the Löwenheim–Skolem Theorems","Models, Compactness, and Theories","A set of first-order sentences has a model whenever each of its finite subsets does. This compactness theorem follows from completeness and yields the finiteness limitation, the downward and upward Löwenheim–Skolem theorems, models of every infinite cardinality, and nonstandard models of arithmetic.\n",{"path":13186,"title":13187,"module":13183,"summary":13188},"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity","Theories, Elementary Classes, and Categoricity","A theory is a set of sentences closed under logical consequence. Theories correspond to classes of models; a theory may be complete, axiomatizable, or finitely axiomatizable, and completeness together with axiomatizability yields decidability. The Łoś–Vaught test derives completeness from categoricity in a cardinal, applied to dense linear orders and to algebraically closed fields.\n",{"path":13190,"title":13191,"module":13183,"summary":13192},"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories","Interpretations Between Theories","An interpretation translates the vocabulary of one theory into formulas of another, relativizing quantifiers to a definable domain and mapping symbols to defining formulas. Defined function symbols meet a noncreativity criterion; the syntactic translation of formulas carries theoremhood forward, and a faithful interpretation transfers decidability and undecidability between theories.\n",{"path":13194,"title":13195,"module":13183,"summary":13196},"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis","Nonstandard Analysis","Compactness builds a model of the real ordered field containing infinite elements and nonzero infinitesimals. The transfer principle carries every first-order truth from the reals to this extension, the standard-part map collapses finite hyperreals back onto the reals, and continuity and the derivative are rederived by working with infinitely small quantities directly.\n",{"path":13198,"title":13199,"module":13200,"summary":13201},"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic","The Structure of Arithmetic and Definability","Number Theory and Definability","Number theory is the theory of one fixed structure, the natural numbers under successor, order, addition, multiplication, and exponentiation. Every number is named by a numeral, and a relation is definable when a single formula picks out exactly its tuples. The central gap separates the sentences true in that structure from those any reasonable set of axioms can prove.\n",{"path":13203,"title":13204,"module":13200,"summary":13205},"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor","Natural Numbers with Successor","The weakest reduct keeps only zero and successor. Its models are a standard chain together with disjoint copies of the integers, which makes the theory categorical in every uncountable power, hence complete and decidable. A quantifier-elimination procedure gives a practical decision method and shows a subset is definable if and only if it is finite or cofinite.\n",{"path":13207,"title":13208,"module":13200,"summary":13209},"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts","Reducts: Order, Addition, and Multiplication","Adding order to the successor reduct keeps decidability and makes the theory finitely axiomatizable; adding addition gives Presburger arithmetic, still decidable by quantifier elimination once congruence predicates are included, with definable sets exactly the eventually periodic ones. Multiplication is the break point: neither addition nor order can define it, and once it joins addition the theory stops being decidable.\n",{"path":13211,"title":13212,"module":13200,"summary":13213},"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability","A Subtheory of Number Theory and Representability","A finite set of eleven axioms, the recursion equations for successor, order, addition, multiplication, and exponentiation, already proves every true quantifier-free and existential sentence. Representability asks a theory to prove the right instances of a formula rather than merely make them true, and a relation is defined to be recursive exactly when some consistent finite theory represents it. Church's thesis identifies that with decidability, and closure under composition, minimization, and primitive recursion builds the catalog the incompleteness proofs need.\n",{"path":13215,"title":13216,"module":13217,"summary":13218},"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax","Arithmetization of Syntax","Arithmetization and the Incompleteness Theorems","Gödel numbering assigns a natural number to every symbol, expression, formula, and deduction, turning statements about syntax into statements about numbers. The syntactic operations — substitution, \"is a wff\", \"is an axiom\", \"d codes a deduction of a\" — come out primitive recursive and hence representable in the subtheory, which lets a formula of arithmetic talk about formulas, including itself.\n",{"path":13220,"title":13221,"module":13217,"summary":13222},"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability","Incompleteness, Undecidability, and Church's Theorem","The fixed-point lemma manufactures a sentence that talks about its own Gödel number. Pointed at truth it gives Tarski's theorem — arithmetic truth is not arithmetically definable; pointed at provability it gives Gödel's first incompleteness theorem and the undecidability of the theory of the natural numbers, and, applied to validity, Church's theorem that first-order logic is undecidable. The set of theorems of a recursive theory is only recursively enumerable — the gap between provable and true.\n",{"path":13224,"title":13225,"module":13217,"summary":13226},"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem","The Second Incompleteness Theorem","Consistency of a recursively axiomatized theory is itself an arithmetic sentence, built from a provability predicate. When the theory is strong enough to formalize its own reflection and modus ponens — the Hilbert–Bernays–Löb derivability conditions — it cannot prove that sentence unless it is inconsistent. Löb's theorem is the companion result, and set theory is the case that closes Hilbert's program.\n",{"path":13228,"title":13229,"module":13230,"summary":13231},"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions","Recursive Functions and Church's Thesis","Recursive Functions and Representability","The recursive functions are the formal counterpart of the effectively computable ones: built from three initial functions by composition, primitive recursion, and minimization, and equivalently the functions representable in a finitely axiomatized arithmetic. Church's thesis identifies the class with effective calculability; Kleene's normal form theorem and the unsolvable halting problem place the recursive sets strictly inside the recursively enumerable ones.\n",{"path":13233,"title":13234,"module":13230,"summary":13235},"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation","Representing Exponentiation and the β-Function","Coding finite sequences by prime-power exponents already assumes exponentiation, so representing exponentiation from addition and multiplication alone needs a different encoder. Gödel's β-function, built from a pairing function and the Chinese remainder theorem, reads back arbitrary finite sequences using only plus and times. This represents exponentiation in the addition-multiplication arithmetic and closes the last gap in the representability of every recursive syntactic operation.\n",{"path":13237,"title":13238,"module":13239,"summary":13240},"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages","Second-Order Languages","Second-Order Logic and Beyond","Second-order logic quantifies over relations and functions, not just individuals. Second-order Peano arithmetic and the second-order theory of the reals become categorical, and finiteness is definable by a single sentence. Compactness, completeness, and the Löwenheim–Skolem theorems all fail for the standard semantics.\n",{"path":13242,"title":13243,"module":13239,"summary":13244},"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic","Skolem Functions and Many-Sorted Logic","Skolem functions replace existential quantifiers with named witnesses, putting any first-order formula into a prenex form with all existentials — now over functions — pulled to the front. The Skolemized formula is equisatisfiable with the original, which reduces satisfiability to universal sentences and, through Herbrand expansions, to sentential logic. Many-sorted logic then adds several universes at once and reduces cleanly to ordinary one-sorted logic.\n",{"path":13246,"title":13247,"module":13239,"summary":13248},"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures","General (Henkin) Structures","General semantics reinterprets second-order logic by letting the predicate and function quantifiers range over a designated collection of relations and functions rather than all of them. Recast as many-sorted first-order logic with comprehension axioms, general second-order logic recovers a sound and complete calculus together with compactness and Löwenheim–Skolem, giving up the categoricity of the standard semantics. The ω-models of analysis show the trade.\n",{"path":13250,"title":13251,"module":6,"summary":6},"\u002Flogic","Logic",{"path":13253,"title":13254,"module":9887,"summary":13255},"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning","What Is Reinforcement Learning?","Reinforcement learning is learning what to do — how to map situations to actions — so as to maximize a numerical reward signal, discovered by trial and error rather than told. We set up the agent–environment loop, separate it from supervised and unsupervised learning, name the four elements (policy, reward, value, and an optional model), and train a tic-tac-toe player with a temporal-difference value update.\n",{"path":13257,"title":13258,"module":9887,"summary":13259},"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl","A Brief History of Reinforcement Learning","The origins of reinforcement learning. Three threads — trial-and-error learning from animal psychology, optimal control and dynamic programming, and temporal-difference learning — ran independently for decades and merged around 1989 into the modern field. Replacing the lookup table with a neural network then produced deep reinforcement learning: DQN, AlphaGo, AlphaZero, MuZero, and RLHF.\n",{"path":13261,"title":13262,"module":9887,"summary":13263},"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits","Multi-Armed Bandits","A bandit is reinforcement learning stripped to a single decision, repeated: no state, no consequences, only the tension between exploiting the arm that looks best and exploring the ones that might be better. We build up the whole toolkit — sample-average value estimates, the incremental update rule, ε-greedy, optimistic initialization, UCB, and gradient bandits — and use it to study exploration in isolation, the one problem that carries over to the full setting.\n",{"path":13265,"title":13266,"module":9887,"summary":13267},"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms","Bandit Exploration Algorithms","Better ways to explore than picking at random. Upper-confidence-bound selection explores by optimism about what it hasn't measured; gradient bandits learn action preferences by stochastic gradient ascent on reward. We then add context to get the contextual bandit, the bridge to full RL, and measure everything by regret — where UCB1 and Thompson sampling reach the logarithmic optimum that fixed-ε greedy cannot.\n",{"path":13269,"title":13270,"module":9887,"summary":13271},"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes","Markov Decision Processes","A Markov decision process is the formal interface between an agent and its environment: at each step the agent reads a state, chooses an action, and receives a reward and a next state. We fix that loop, the dynamics function that governs it, and the Markov property that makes the state sufficient; then turn goals into a scalar reward and rewards into a discounted return, with one notation that covers both episodic and continuing tasks.\n",{"path":13273,"title":13274,"module":9887,"summary":13275},"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality","Value Functions and Optimality","A value function scores how good a state (or state–action pair) is under a policy: the expected return from there onward. Its defining property is the Bellman equation, a self-consistency condition linking a state's value to its successors' values, which we derive from the return and the dynamics. Pushing the same idea to the best-achievable value gives the Bellman optimality equations, whose solution yields an optimal policy — and whose intractability is what the rest of the course is about.\n",{"path":13277,"title":10097,"module":13278,"summary":13279},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming","Tabular Solution Methods","Dynamic programming computes optimal policies when a perfect model of the MDP is given, by turning the Bellman equations into assignment statements. We build up iterative policy evaluation (the expected update), the policy improvement theorem, and the two classic algorithms that alternate them — policy iteration and value iteration — worked on the gridworld, a two-state MDP, Jack's car rental, and the gambler's problem.\n",{"path":13281,"title":13282,"module":13278,"summary":13283},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi","Dynamic Programming: Asynchronous DP and Generalized Policy Iteration","Policy and value iteration both sweep the entire state set on every pass, which is impossible once the state space is huge. This lesson loosens the schedule: asynchronous DP updates states in any order, generalized policy iteration names the alternation of evaluation and improvement that underlies nearly every RL method, and a look at efficiency and the curse of dimensionality places DP among the alternatives. We close past Sutton & Barto with prioritized sweeping, neuro-dynamic programming, value-iteration networks, and MuZero.\n",{"path":13285,"title":13286,"module":13278,"summary":13287},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods","Monte Carlo Methods","Monte Carlo methods learn value functions and optimal policies from complete sampled episodes, with no model of the environment: they simply average the returns that actually followed each state. We build prediction (first-visit and every-visit averaging), see why estimating action values forces the exploration question, and answer it two ways on-policy — exploring starts and epsilon-soft control. Throughout, Monte Carlo samples one whole trajectory to termination and never bootstraps.\n",{"path":13289,"title":13290,"module":13278,"summary":13291},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy","Monte Carlo Methods: Off-Policy Learning","On-policy Monte Carlo can only reach the best exploring policy, not the true optimum. Off-policy methods remove that ceiling by learning about a greedy target policy from data generated by a soft behavior policy, corrected with importance sampling. We derive the importance-sampling ratio, weigh ordinary against weighted estimators on real numbers, give the incremental off-policy algorithm, sharpen it with discounting-aware sampling, and close by placing Monte Carlo on the model\u002Fbootstrap map beside DP and temporal-difference learning.\n",{"path":13293,"title":13294,"module":13278,"summary":13295},"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning","Temporal-Difference Learning","Temporal-difference learning is the one idea most central to reinforcement learning: learn a value directly from experience, like Monte Carlo, but update each guess toward the next guess before the episode ends, like dynamic programming. We derive the TD(0) prediction rule and its reward-prediction error, contrast its one-step backup with MC and DP, work the driving-home and random-walk examples, and show the batch-updating optimality that makes TD approximate the certainty-equivalence estimate.\n",{"path":13297,"title":13298,"module":13278,"summary":13299},"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning","TD Control: Sarsa, Q-learning, and Double Learning","With TD prediction in hand, control follows the generalized-policy-iteration pattern with TD as the evaluation step. We build Sarsa (on-policy), Q-learning (off-policy, targeting the optimal policy), and Expected Sarsa that spans the two, then confront the maximization bias every max-based method inherits and fix it with Double Q-learning. We close past Sutton & Barto, following each one-step tabular update into its deep-RL descendant — DQN, Double DQN, and Rainbow.\n",{"path":13301,"title":13302,"module":13278,"summary":13303},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping","n-Step Bootstrapping","Monte Carlo waits for the full return; one-step TD bootstraps after a single reward. Between them lies a whole spectrum, indexed by one integer n: look ahead n real rewards, then bootstrap from the value n steps out. The n-step return unifies the previous two lessons, and — on the random walk — an intermediate n beats both extremes. We build the n-step return, the n-step TD update, the backup-diagram spectrum, and n-step Sarsa for control.\n",{"path":13305,"title":13306,"module":13278,"summary":13307},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods","n-Step Bootstrapping: Off-Policy Methods","Taking the n-step family off-policy raises the same importance-sampling questions Monte Carlo did, now over a window of exactly n actions. We reweight n-step returns by the policy ratio, watch the ratio product inflate variance on real numbers, then build the tree-backup algorithm that learns off-policy with no ratios at all — and finally n-step Q(sigma), one algorithm whose per-step switch recovers Sarsa, tree backup, and Expected Sarsa as special cases.\n",{"path":13309,"title":13310,"module":13278,"summary":13311},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning","Planning and Learning","Planning and learning are the same operation run on two kinds of experience. A model turns states and actions into simulated transitions; planning backs up values over that simulated experience exactly as learning backs them up over real experience. We build the Dyna architecture that interleaves acting, model-learning, direct RL, and planning in one loop, trace a single Dyna-Q step by hand, and patch the architecture for when the model goes stale.\n",{"path":13313,"title":13314,"module":13278,"summary":13315},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time","Planning: Focusing Updates and Decision-Time Search","Dyna plans by replaying remembered transitions, but sampling them uniformly wastes most of the effort. This lesson sharpens planning: prioritized sweeping works backward from states whose value just changed, expected versus sample updates weigh thoroughness against cost, and trajectory sampling and real-time DP focus updates on the states the policy actually visits. We trace Dyna forward to model-based deep RL, then turn to decision-time planning — heuristic search, rollouts, and Monte Carlo Tree Search.\n",{"path":13317,"title":13318,"module":13278,"summary":13319},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning","Decision-Time Planning","Planning need not build a global policy. Decision-time planning runs a fresh lookahead every time a state arrives and returns just one action, then throws the work away. We start from real-time dynamic programming — asynchronous value iteration on the states the agent actually visits — then move through heuristic search and rollout algorithms, each a one-step policy improvement applied on the fly to the current state.\n",{"path":13321,"title":13322,"module":13278,"summary":13323},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search","Monte Carlo Tree Search","Monte Carlo Tree Search is a rollout algorithm with memory: it accumulates value estimates across simulations and steers later ones toward promising branches. We work through the four steps — selection, expansion, simulation, backup — the UCT selection rule computed on real numbers, the asymmetric growing tree, and the full pseudocode. We close past Sutton & Barto with the lineage from UCT to AlphaGo, AlphaZero, and MuZero, where a learned network stands in for the leaf value and the rollout.\n",{"path":13325,"title":13326,"module":13327,"summary":13328},"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction","On-Policy Prediction with Approximation","Approximate Solution Methods","Every tabular method so far stored one number per state, which fails once the state space is large or continuous. We replace the table with a parameterized value function $\\hat v(s,\\mathbf{w})$, define the mean squared value error it should minimize under the on-policy distribution, and derive stochastic- and semi-gradient learning rules — the semi-gradient TD(0) update that bootstraps and so is not a true gradient. Linear methods make the analysis clean and give the TD fixed point; feature construction (polynomials, Fourier basis, coarse and tile coding, RBFs) supplies the vectors $\\mathbf{x}(s)$, and neural networks are the nonlinear bridge to deep RL.\n",{"path":13330,"title":13331,"module":13327,"summary":13332},"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear","Feature Construction and Nonlinear Approximation","Linear methods are only as good as the feature vectors $\\mathbf{x}(s)$ fed to them, and this lesson builds those vectors. Polynomials and the Fourier basis turn a state's coordinates into smooth global features; coarse coding, tile coding, and radial basis functions cover a continuous space with overlapping local receptive fields whose size sets the reach of generalization. Then we stop designing features by hand: a neural network learns the representation itself by gradient descent, trading the convergence guarantees of the linear case for expressiveness — the bridge to deep reinforcement learning.\n",{"path":13334,"title":13335,"module":13327,"summary":13336},"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control","On-Policy Control with Approximation","Prediction learned a value function from features; control learns to act. We carry semi-gradient methods over to action values $\\hat q(s,a,\\mathbf{w})$, giving episodic semi-gradient Sarsa and its n-step form, and solve Mountain Car by descending a cost-to-go surface. In the continuing case, function approximation makes discounting unable to affect which policy is best, so we replace it with the average-reward setting — the differential return, differential value functions, and differential semi-gradient Sarsa.\n",{"path":13338,"title":13339,"module":13327,"summary":13340},"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control","Average-Reward Control for Continuing Tasks","With function approximation, discounting has no effect on a continuing task: averaged over the on-policy distribution, the discounted objective equals the average reward times a policy-independent constant, so $\\gamma$ cannot change which policy is best. This lesson replaces discounting with the average-reward setting — the long-run reward rate $r(\\pi)$, the differential return that measures each state's transient advantage over that rate, differential value functions and TD error, and differential semi-gradient Sarsa, the control method for continuing tasks that never invokes a discount factor.\n",{"path":13342,"title":13343,"module":13327,"summary":13344},"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad","Off-Policy Methods and the Deadly Triad","Off-policy learning with function approximation is where the convergence guarantees of reinforcement learning fail. We extend the tabular off-policy updates to semi-gradient form with per-step importance sampling, show Baird's counterexample driving the weights to infinity, and identify the cause: the deadly triad of function approximation, bootstrapping, and off-policy training — any two are safe, all three can diverge. The divergence is not caused by sampling noise: a fully synchronous dynamic-programming update blows up just the same, which is what makes the triad a structural hazard rather than a fluke.\n",{"path":13346,"title":13347,"module":13327,"summary":13348},"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td","Value-Function Geometry and Gradient-TD Methods","Why does the deadly triad diverge, and how do you stop it? This lesson develops the geometry that explains the failure: value functions as vectors, the projection operator onto the representable subspace, and the split between the Bellman error, the value error, and the projected Bellman error: the three objectives have different minimizers. The projected Bellman error is the learnable one, and Gradient-TD methods (GTD2, TDC) do true stochastic gradient descent on it, staying stable even off-policy at $O(d)$ cost. Emphatic TD reweights states instead, and a survey of variance-reduction techniques closes the gap between stability and usable learning.\n",{"path":13350,"title":13351,"module":13327,"summary":13352},"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces","Eligibility Traces","n-step methods unify TD and Monte Carlo by storing the last n feature vectors; eligibility traces do the same job with a single short-term memory vector. The λ-return averages every n-step return under a geometric weighting; the forward view looks ahead to that average, and the backward view produces nearly the same updates online through a decaying trace vector. We build the λ-return, TD(λ) with its trace, the two ways λ recovers TD(0) and Monte Carlo, a note on the exact equivalence of true online TD(λ), and Sarsa(λ) for control.\n",{"path":13354,"title":13355,"module":13327,"summary":13356},"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda","True Online TD(λ) and Sarsa(λ)","Plain TD(λ) makes the forward and backward views nearly agree; this lesson closes the gap. True online TD(λ) uses a dutch trace and a small correction term to produce exactly the same weight sequence as the online λ-return algorithm, at the same memory and only a constant factor more compute — the sharpest statement of the forward\u002Fbackward duality. The whole apparatus then lifts to control unchanged: Sarsa(λ) threads a single delayed reward back along an entire trajectory in one sweep, and the λ-weighting reappears in modern deep RL as generalized advantage estimation.\n",{"path":13358,"title":13359,"module":13327,"summary":13360},"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods","Policy Gradient Methods","Every method so far learned values and read a policy off them. Policy gradient methods drop the intermediary: parameterize the policy directly and climb the performance gradient. We build the softmax-in-preferences parameterization, prove the policy gradient theorem that makes the gradient computable without the unknown state distribution, and derive REINFORCE and its variance-cutting state-value baseline — the launch point for the bootstrapping actor-critic that follows.\n",{"path":13362,"title":13363,"module":13327,"summary":13364},"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions","Actor-Critic Methods and Continuous Actions","REINFORCE with a baseline learns a value function but never bootstraps; this lesson adds the bootstrapping critic that completes the actor-critic architecture. The critic scores each transition into a single TD error that steers both the actor's policy step and its own value step, trading a little bias for much lower variance and fully online, continuing-task learning. The policy gradient theorem carries over unchanged to the average-reward setting, a Gaussian policy handles real-valued actions with self-tuning exploration, and the natural policy gradient leads straight to TRPO, PPO, and the deep actor-critic methods that train today's agents.\n",{"path":13366,"title":13367,"module":13327,"summary":13368},"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods","Least-Squares TD","Semi-gradient TD spends one cheap step per example and needs many examples; this lesson makes the opposite tradeoff. Least-Squares TD (LSTD) accumulates the matrices $\\mathbf{A}$ and $\\mathbf{b}$ and solves the TD fixed point $\\mathbf{w} = \\mathbf{A}^{-1}\\mathbf{b}$ directly, using the Sherman-Morrison identity to maintain the inverse in $O(d^2)$ — the most data-efficient linear TD method, at a quadratic cost. We work a solve by hand, weigh the quadratic cost against semi-gradient TD's cheap steps, and note that LSTD never forgets — a problem in control, where least-squares policy iteration is the natural extension.\n",{"path":13370,"title":13371,"module":13327,"summary":13372},"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods","Memory-Based and Kernel Methods","Least-squares TD spent more compute to extract more from each example; this lesson drops the parametric form entirely. Memory-based methods store training examples untouched and answer a query locally at retrieval time — nearest neighbor, weighted average, locally weighted regression — so accuracy grows with the data and effort concentrates where the agent actually goes. Kernel-based methods weight stored examples by a similarity kernel $k(s,s')$, and every linear method turns out to be a kernel method. Interest and emphasis, finally, make the on-policy weighting itself a design choice, aiming scarce approximation capacity at the states that matter.\n",{"path":13374,"title":13375,"module":13327,"summary":13376},"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces","Off-Policy Eligibility Traces","Eligibility traces meet off-policy learning and function approximation — the corner where stability gets hard. We first let the bootstrapping and discounting parameters vary with state, so a single generalized return covers episodic and continuing tasks and folds termination into the discount. Then we fold the per-decision importance ratio into the trace with a control-variate correction, and build Watkins's Q(λ) and its importance-sampling-free successor Tree-Backup(λ) — all correct in expectation, but still semi-gradient, so the deadly triad and its fixes wait for the next lesson.\n",{"path":13378,"title":13379,"module":13327,"summary":13380},"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces","Stable Off-Policy Methods with Traces","Off-policy traces get the expected target right, but with $\\lambda \u003C 1$ they bootstrap, so off-policy plus bootstrapping plus function approximation is the deadly triad and the weights can diverge. This lesson carries the two one-step fixes to traces: GTD(λ) and GQ(λ) add a second weight vector and a gradient correction for true gradient descent on the projected Bellman error, while Emphatic TD(λ) reweights updates through a followon trace and interest to recover the on-policy stability. It closes with the implementation reality that traces are cheap because they are sparse, and with Retrace and V-trace — the clipped-ratio descendants that make off-policy traces work at deep-RL scale.\n",{"path":13382,"title":12700,"module":13383,"summary":13384},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks","Deep Reinforcement Learning","Deep Q-networks replace the linear value function with a neural network $Q(s,a;\\mathbf{w})$ and confront the fact that a nonlinear approximator, off-policy bootstrapping, and correlated online data — the deadly triad — make naive Q-learning diverge. DQN counters this empirically with two stabilizers: an experience replay buffer that decorrelates and reuses samples, and a periodically-frozen target network that fixes the bootstrap target. We derive the DQN loss and gradient, walk through the Atari convolutional architecture and its results, and then add the three refinements that define modern value-based deep RL — Double DQN, dueling networks, and prioritized experience replay.\n",{"path":13386,"title":13387,"module":13383,"summary":13388},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements","DQN Improvements: Double, Dueling, and Prioritized Replay","Three refinements that turn plain DQN into the standard modern value-based agent, each touching a different part of the system. Double DQN fixes the maximization bias in the target by splitting action selection from evaluation; dueling networks restructure the network around a state value and per-action advantages; prioritized replay changes which transitions are learned from. We close with Rainbow, which combines them, and the distributional view that predicts the whole return distribution rather than its mean.\n",{"path":13390,"title":13391,"module":13383,"summary":13392},"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo","Actor–Critic and GAE","Make the actor and the critic deep networks and the policy-gradient architecture becomes modern deep RL. We build the neural actor-critic, the advantage estimate that replaces the raw return, and Generalized Advantage Estimation as a λ-blend of n-step advantages, then the parallel-worker methods A3C and A2C that decorrelate on-policy data. The step-size constraints — trust regions, PPO, and the continuous-control family — follow in the next lesson.\n",{"path":13394,"title":13395,"module":13383,"summary":13396},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control","PPO and Continuous Control","Keeping the policy-gradient step from destroying the policy, and the algorithms that result. Trust-region optimization bounds each update by a KL constraint; PPO keeps that goal but replaces the second-order machinery with a first-order clip on the probability ratio, which is why it is the modern default and the optimizer inside RLHF. We then tour the off-policy continuous-control family — DDPG, TD3, and SAC — and where actor-critic went at scale, from OpenAI Five to language-model alignment.\n",{"path":13398,"title":13399,"module":13383,"summary":13400},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies","Case Studies: Learning to Play","The game-playing systems that turned reinforcement learning from a theory into a track record: Samuel's checkers player, TD-Gammon, Watson's Daily-Double wagering, a reinforcement-learning memory controller, DQN, and AlphaGo through AlphaGo Zero. Read as a set they draw one line — a value function, learned by self-play or interaction, refined by search, carried by a deep network — that runs from a 1959 checkers program to superhuman Go.\n",{"path":13402,"title":13403,"module":13383,"summary":13404},"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games","Reinforcement Learning Beyond Games","The same value-and-reward machinery, pointed at problems with no opponent. Web personalization as a contextual bandit and then a full MDP for life-time value; thermal soaring, where a glider learns to climb on turbulent air and reward design does most of the work; and the industrial-scale systems that carried the same design past Sutton & Barto — AlphaStar, OpenAI Five, GT Sophy, and RLHF, where the reward itself is learned from human preference.\n",{"path":13406,"title":13407,"module":13383,"summary":13408},"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers","Frontiers: Beyond the Standard MDP","The standard MDP fixes three things — state, reward, and single-step actions — and this lesson loosens two of them. We generalize the value function into a general value function that predicts any signal, and use those predictions as auxiliary tasks that shape representations; we extend actions in time with the options framework; and we treat state as a construction the agent builds from a stream of observations. Reward design and the open problems follow in the next lesson.\n",{"path":13410,"title":13411,"module":13383,"summary":13412},"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems","Reward Design and Open Problems","How to design a reward signal that encodes the intended goal — sparse reward, shaping, and reward hacking — and the problems the whole tabular, approximate, and deep arc leaves unsolved. We close with how the frontiers were pushed after Sutton & Barto: auxiliary tasks, learned options, intrinsic-motivation bonuses, learned world models, and offline RL, then the two concerns of reward hacking and safety that any real-world agent must address.\n",{"path":13414,"title":13415,"module":13416,"summary":13417},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow","Sharpening DQN: Improvements and the Distributional Idea","Modern Deep Reinforcement Learning","In the years after the 2015 DQN paper, a stream of focused improvements each fixed one weakness of the baseline without disturbing its frame. This lesson recaps five that keep the scalar $Q$-value — Double DQN, multi-step returns, dueling networks, prioritized replay, and NoisyNets, each changing a different slot of the same Q-learning loop — then develops the sixth, distributional RL, which changes the objective itself: learn the whole return distribution $Z(s,a)$. We build the distributional Bellman equation and the C51 categorical algorithm, projection step and all, worked end to end on real numbers. A companion lesson takes up QR-DQN, Rainbow, and the modern distributional line.\n",{"path":13419,"title":13420,"module":13416,"summary":13421},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2","Distributional RL and Rainbow","A companion to the DQN improvements lesson. C51 fixed the return atoms and learned their probabilities; QR-DQN does the reverse — fix the probabilities, learn the values — which removes the projection and trains with a quantile loss. We cover why the distribution helps even when you act on the mean, then assemble Rainbow: all six improvements in one Q-learning loop, with the component ablation that shows each one's real weight. The distributional line then runs on through IQN, FQF, and Agent57, the first agent to beat the human baseline on all 57 Atari games.\n",{"path":13423,"title":13424,"module":13416,"summary":13425},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control","Continuous Control: DDPG and TD3","When actions are real-valued, the $\\arg\\max_a Q(s,a)$ in Q-learning becomes an optimization problem on every step. This lesson builds the off-policy actor-critic family that sidesteps it: the deterministic policy gradient and DDPG, which replaces the max with a learned actor, and the three fixes of TD3 that counter the value overestimation DDPG inherits. A companion lesson takes up SAC's maximum-entropy objective and the methods built on this template.\n",{"path":13427,"title":13428,"module":13416,"summary":13429},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2","Continuous Control: SAC and Beyond","A companion to the DDPG and TD3 lesson. Where those actors are deterministic and explore with bolted-on noise, soft actor-critic (SAC) changes the objective itself: maximize return plus the entropy of the policy, so exploration becomes intrinsic and the agent stays robust. We develop the maximum-entropy objective, the reparameterized squashed-Gaussian actor, and automatic temperature tuning, then survey the methods built on this off-policy template — distributional critics (D4PG), critic ensembles (REDQ), and control from pixels (DrQ, RAD).\n",{"path":13431,"title":13432,"module":13416,"summary":13433},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl","Model-Based Deep RL: Sample Efficiency and PETS","A model turns experience into imagined planning. This lesson makes the sample-efficiency case for learning a dynamics model, works through why a learned model's errors compound over the planning horizon, and builds the most direct model-based method: PETS plans online with a probabilistic ensemble under model-predictive control, distrusting the model exactly where its members disagree. A companion lesson takes up latent world models (Dreamer) and MuZero.\n",{"path":13435,"title":13436,"module":13416,"summary":13437},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2","Model-Based Deep RL: World Models, Dreamer, and MuZero","A companion to the PETS lesson. PETS plans in the environment's native state space; these methods change what the model represents. World Models and Dreamer learn a compact latent state and do almost all their learning by imagining inside it, with value gradients flowing through the differentiable dynamics. MuZero predicts neither states nor pixels — only the reward, value, and policy that MCTS reads — and plans with search against that learned model, AlphaZero without the rules. We close with MBPO, TD-MPC, and EfficientZero.\n",{"path":13439,"title":13440,"module":13416,"summary":13441},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration","Exploration in Deep RL: Novelty as Reward","When the state space is enormous and reward is rare, ε-greedy amounts to a random walk that almost never reaches the first reward. This lesson scales the bandit's exploration ideas up to deep RL through the dominant approach — manufacture a reward for novelty and let the agent chase it: optimism and pseudo-counts from density models, and intrinsic motivation and curiosity (the Intrinsic Curiosity Module and Random Network Distillation). A companion lesson takes up posterior sampling, Go-Explore, and the modern methods.\n",{"path":13443,"title":13444,"module":13416,"summary":13445},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2","Exploration in Deep RL: Posterior Sampling and Go-Explore","A companion to the novelty-as-reward lesson. Pseudo-counts and curiosity reward the unfamiliar after the agent stumbles into it; this lesson covers two ideas that go further. Bootstrapped DQN keeps an ensemble that approximates a posterior over value functions and explores by committing to one sampled hypothesis per episode — the deep, directed exploration ε-greedy cannot manage. Go-Explore remembers and returns to the frontier, defeating detachment and derailment to solve Montezuma's Revenge. We close with episodic memory (Never Give Up), Agent57, and model-based exploration.\n",{"path":13447,"title":13448,"module":13416,"summary":13449},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl","Offline RL: The Problem and Value-Based Fixes","Offline reinforcement learning learns a policy from a fixed logged dataset with no further environment interaction — off-policy learning pushed to the extreme, and it breaks for the extreme version of the same reason. Bootstrapping queries the value function at out-of-distribution actions the data never covers, those errors are optimistic, and with no online feedback to correct them they compound through the Bellman backup. This lesson sets up the failure and off-policy evaluation, then builds the first two families of pessimistic fixes: policy constraint (BCQ) and conservative value estimation (CQL). A companion lesson takes up implicit methods, model-based offline RL, and Decision Transformer.\n",{"path":13451,"title":13452,"module":13416,"summary":13453},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2","Offline RL: Implicit Methods, Sequence Models, and Beyond","A companion to the offline-RL problem lesson. Policy constraint and conservative value estimation both still query a learned value function; implicit methods (IQL) avoid querying it off the data at all, using an in-sample expectile backup. We then build pessimism into a learned model (MOPO, COMBO) and drop bootstrapping entirely with Decision Transformer's return-conditioned sequence modeling, closing with offline-to-online fine-tuning, diffusion planners, and the offline view of RLHF. The one rule throughout: without online correction, be pessimistic about what you cannot verify.\n",{"path":13455,"title":13456,"module":13416,"summary":13457},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl","Imitation Learning: Cloning, DAgger, and Inverse RL","When a reward is hard to specify but an expert is easy to watch, learn from demonstrations instead. Behavioral cloning treats control as supervised learning of the expert's state-to-action map, and fails through compounding error: small mistakes carry the agent off the expert's distribution, where it was never trained. DAgger fixes the mismatch by querying the expert on the learner's own states. Inverse RL instead recovers the reward the expert seems to optimize — an ill-posed problem that maximum-entropy IRL disambiguates. A companion lesson casts imitation as adversarial occupancy matching (GAIL, AIRL).\n",{"path":13459,"title":13460,"module":13416,"summary":13461},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2","Imitation as Adversarial Matching: GAIL and AIRL","A companion to the imitation-learning lesson. If the point of recovering a reward is only to re-run RL and match the expert, you can skip the reward and match the behavior directly. GAIL casts imitation as a GAN — a discriminator separating expert from learner state-action pairs supplies the reward a policy-gradient method optimizes — matching occupancy measures without ever naming a reward. AIRL reads a transferable reward back out of the discriminator. We compare all four methods and close with reward models in RLHF, scaled cloning, and diffusion policies.\n",{"path":13463,"title":13464,"module":13416,"summary":13465},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl","Multi-Agent RL: Markov Games and Centralized Training","With more than one learning agent in an environment, each agent's world becomes non-stationary because the others are changing too. This lesson builds the Markov-game generalization of the MDP, diagnoses non-stationarity as the central obstacle, shows why the naive baselines fail, and develops the dominant fix — centralized training with decentralized execution (MADDPG, VDN, QMIX). A companion lesson takes up self-play, the landmark game-playing systems, and the equilibrium concepts that define what \"solved\" means.\n",{"path":13467,"title":13468,"module":13416,"summary":13469},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2","Multi-Agent RL: Self-Play and Solution Concepts","A companion to the Markov-games lesson. In the purely competitive setting, an agent can generate its own training curriculum by playing against copies of itself — self-play, the method behind AlphaGo, OpenAI Five, and AlphaStar. We develop why self-play produces an ever-improving opponent, the systems it built, and then the equilibrium solution concepts (Nash, correlated, coarse-correlated) that define what \"solved\" means once there is an opponent, closing with PSRO, MAPPO, and the language-model-agent frontier.\n",{"path":13471,"title":13472,"module":13416,"summary":13473},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl","Hierarchical RL: Options and the Option-Critic","Flat RL cannot explore a long horizon: reaching reward through hundreds of primitive actions is exponentially unlikely, and every credit-assignment update crawls one step at a time. Hierarchy breaks one hard long-horizon problem into many short ones. This lesson develops temporal abstraction — the options framework and its semi-Markov view, and learning options end to end with the option-critic. A companion lesson takes up goal-conditioned manager\u002Fworker hierarchies (FeUdal Networks and HIRO), hindsight relabeling, and unsupervised skill discovery.\n",{"path":13475,"title":13476,"module":13416,"summary":13477},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2","Hierarchical RL: Goal-Conditioned Hierarchies and Skills","A companion to the options lesson. Options package a behavior; goal-conditioned hierarchies instead give the top level an explicit language of goals — a manager proposes a target state or a latent direction, and a worker is rewarded for reaching it (FeUdal Networks, HIRO). We develop that architecture, the hindsight relabeling that lets it learn from sparse reward, and unsupervised skill discovery (DIAYN) that learns a repertoire of behaviors with no reward at all. The shared idea throughout: shorten the horizon by inserting a level that decides less often.\n",{"path":13479,"title":13480,"module":13416,"summary":13481},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models","RLHF and Language Models","A language model trained to predict the next token is fluent but not helpful, honest, or harmless — the objective it was optimized for is not the objective we want. RLHF closes that gap by turning the one thing humans do reliably, comparing two outputs, into a reward. We build the three-stage pipeline: supervised fine-tuning, a Bradley-Terry reward model fit to preference pairs, then PPO against that reward with a KL penalty keeping it near the reference policy. We then cover reward hacking and why the KL penalty matters, Direct Preference Optimization, which folds the reward model into a single classification loss, and the RLAIF and verifiable-reward variants. This pipeline is what makes the largest models usable as assistants.\n",{"path":13483,"title":13484,"module":13416,"summary":13485},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps","Partial Observability: POMDPs and the Belief State","Drop the assumption that the agent sees the state. It sees an observation, a partial and noisy function of a hidden state, and one observation is no longer a Markov signal. This lesson builds the POMDP tuple, shows that the belief state — the posterior over hidden states — is a sufficient statistic that turns a POMDP back into an MDP over beliefs, and works the Bayes-filter belief update step by step. A companion lesson explains why exact planning is intractable and develops the deep-RL answer of recurrent, history-based policies.\n",{"path":13487,"title":13488,"module":13416,"summary":13489},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2","Partial Observability: Planning and Recurrent Policies","A companion to the belief-state lesson. In principle a POMDP reduces to an MDP over beliefs; in practice two obstacles block that. Exact planning over the belief simplex is intractable — the value function is piecewise-linear-and-convex with a number of pieces that can explode — and computing the belief needs a model the agent rarely has. This lesson develops the intractability, the point-based approximations that address it, and the deep-RL answer: make the policy a function of history with a recurrent network (DRQN, R2D2), with frame-stacking, attention, and world-model latents as learned beliefs.\n",{"path":13491,"title":13492,"module":13416,"summary":13493},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl","Safe and Constrained RL: The CMDP and Policy Methods","Maximizing a scalar reward is not the same as behaving well: a capable optimizer will find and exploit any gap between the reward and what its designer actually meant, a failure called specification gaming or reward hacking. The remedy is to add explicit cost constraints — the constrained MDP — maximizing return subject to an expected-cost budget. This lesson builds the core toolkit: the CMDP itself, Lagrangian primal-dual methods that learn a multiplier on the constraint (RCPO), and constrained policy optimization (CPO) with its trust-region cost bound. A companion lesson covers risk-sensitivity, safe exploration, and the alignment framing.\n",{"path":13495,"title":13496,"module":13416,"summary":13497},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2","Safe RL: Risk, Safe Exploration, and Alignment","A companion to the constrained-MDP lesson. Constraining the mean cost is not enough: a policy safe on average can be catastrophic in the tail, and a policy safe at convergence can violate its limits wildly while learning. This lesson optimizes the tail with risk-sensitive objectives (CVaR), then makes exploration itself safe with shields, Lyapunov methods, and safety layers that project unsafe actions onto the feasible set — closing with benchmarks, safe RLHF, robustness, and the alignment framing that ties safety back to the problem of incompletely specified reward.\n",{"path":13499,"title":13500,"module":13416,"summary":13501},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization","Meta-RL and Generalization","An agent that masters one task often fails on the next; it has overfit to a single environment. This lesson treats fast adaptation as a meta-problem over a distribution of tasks: meta-train so that a few episodes at meta-test time suffice. We cover the two families — optimization-based (MAML learns an initialization) and context-based (RL-squared and PEARL infer a latent task) — the exploration cost of adaptation, and the parallel problem of generalization: why deep RL memorizes environments and what fixes it (domain randomization, procedural generation, augmentation, regularization). It closes on foundation models and sequence-model agents as the generalist endpoint.\n",{"path":13503,"title":13504,"module":13505,"summary":13506},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement","The Psychology of Reinforcement","Reinforcement Learning in Minds and Brains","Reinforcement learning is both an engineering method and a theory of how animals learn. The prediction\u002Fcontrol split of the algorithms mirrors the psychologist's split between classical and instrumental conditioning. We trace the correspondence: the Rescorla–Wagner model as a prediction-error rule that explains blocking, its real-time TD extension, Thorndike's Law of Effect behind trial-and-error control, and the habitual\u002Fgoal-directed distinction that maps onto model-free versus model-based learning.\n",{"path":13508,"title":13509,"module":13505,"summary":13510},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control","The Psychology of Reinforcement: Instrumental Control","Classical conditioning was prediction; instrumental conditioning is control. Thorndike's Law of Effect is trial-and-error control — selection plus association, search plus memory — and Skinner's shaping and schedules are reward engineering. The habitual\u002Fgoal-directed distinction maps onto model-free versus model-based control, dissociated by outcome devaluation and arbitrated by uncertainty. Delayed reinforcement is the credit-assignment problem, and the stimulus traces and secondary reinforcers of animal-learning theory are eligibility traces and value functions.\n",{"path":13512,"title":13513,"module":13505,"summary":13514},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error","Dopamine and the TD Error","The TD error was invented as an algorithm; a decade later it turned out to closely describe the firing of the brain's dopamine neurons. We follow Schultz's experiments — dopamine fires at an unpredicted reward, shifts to the earliest predictive cue, and dips below baseline when a predicted reward is withheld — and match each result to the TD error term by term. We then read the basal ganglia as a neural actor–critic with dopamine as its shared training signal, and close on addiction as a hijacking of that signal.\n",{"path":13516,"title":13517,"module":13505,"summary":13518},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain","Dopamine in the Brain: The Neural Actor–Critic","If phasic dopamine is a TD error, where does it go and what does it change? We follow the axons into the basal ganglia, read the corticostriatal synapse as the place where state, action, and error meet, and map the ventral and dorsal striatum onto the critic and the actor of an actor–critic. Addiction becomes a broken cancellation in the same learning signal, and distributional dopamine extends the scalar RPE into a population code.\n",{"path":13520,"title":13521,"module":13505,"summary":13522},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition","Animal Learning and Cognition","Three classic associative phenomena turn out to be reinforcement-learning mechanisms seen in behavior. Blocking says learning is driven by prediction error, not co-occurrence, and reduces to least-squares regression fitting a collinear feature. Higher-order conditioning and conditioned reinforcement make a value estimate a secondary reinforcer — bootstrapping in an animal. Delayed reinforcement is the credit-assignment problem, and the stimulus traces and goal gradients of Pavlov and Hull are eligibility traces and TD-learned value functions.\n",{"path":13524,"title":13525,"module":13505,"summary":13526},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning","Cognitive Maps and Model-Based Learning","Tolman's rats learned the layout of a maze with no reward, then used it the moment food appeared — latent learning, a cognitive map, and the behavioral face of model-based reinforcement learning. The map is learned by system identification (stimulus–stimulus associations), which fills in whether or not reward is present, and queried by planning, which re-solves a route from a single changed reward. The successor representation sits between cache and model, and hippocampal predictive maps and scaled-up world models carry the same idea into brain and machine.\n",{"path":13528,"title":13529,"module":13505,"summary":13530},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement","The Neuroscience of Reinforcement","The dopamine story is one contact point between reinforcement learning and the brain; this lesson fills in the surrounding neuroscience so the mapping stands on its own. We build a working primer of neurons, synapses, and neuromodulation; separate four signals that casual usage conflates — reward, reinforcement, value, and prediction error; and read the actor and critic as corticostriatal synapses updated by two- and three-factor rules, grounded in spike-timing-dependent and reward-modulated plasticity.\n",{"path":13532,"title":13533,"module":13505,"summary":13534},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems","The Brain's Several Learning Systems","The actor's three-factor rule has an ancestor in Klopf's hedonistic neuron — a single cell as a reinforcement-seeking agent — and a bacterium's run-and-twiddle shows the Law of Effect with no synapses at all. Teams of such neurons implement policy gradient collectively, the broadcast reward replacing backpropagation. And the brain is not only model-free: outcome devaluation, prefrontal value coding, and hippocampal forward sweeps localize a model-based system. The recurring conclusion is that the brain is several interacting learning systems, not one algorithm.\n",{"path":13536,"title":12692,"module":6,"summary":6},"\u002Freinforcement-learning",{"path":13538,"title":13539,"module":9887,"summary":13540},"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai","What Is Artificial Intelligence?","Eight definitions of AI fall into a two-by-two grid: think versus act, and measure success against human performance versus an ideal standard of rationality. We work through all four schools — the Turing test, cognitive modelling, the laws of thought, and the rational agent — and adopt the last as the frame for the whole course: AI is the study and design of rational agents.\n",{"path":13542,"title":13543,"module":9887,"summary":13544},"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai","The Foundations of AI","Where the rational-agent idea came from and what surrounds it. AI inherited its core tools from eight older disciplines — philosophy, mathematics, economics, neuroscience, psychology, computer engineering, control theory, and linguistics. Its history runs in cycles of boom and winter, from the 1956 Dartmouth workshop through expert systems to the statistical turn. And the deep-learning era — AlexNet, the Transformer, GPT-3, AlphaGo — is a new way of computing the agent function at scale, not a new definition of AI.\n",{"path":13546,"title":13547,"module":9887,"summary":13548},"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents","Intelligent Agents","An agent perceives an environment through sensors and acts on it through actuators; its behavior is an agent function mapping percept sequences to actions. A rational agent chooses, for each percept sequence, the action that maximizes its expected performance measure given its knowledge. We build the first half of the vocabulary the whole course rests on — the agent function, rationality, PEAS task specifications, and the six axes along which task environments vary.\n",{"path":13550,"title":13551,"module":9887,"summary":13552},"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures","Agent Architectures","How to build a program that computes a good agent function without storing an astronomically large lookup table. Four skeleton architectures in order of increasing power — simple reflex, model-based, goal-based, and utility-based — plus the learning agent that improves any of them, the scale of world representations (atomic, factored, structured) they rest on, and how a modern language-model agent fits the same frame.\n",{"path":13554,"title":13555,"module":13556,"summary":13557},"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search","Uninformed Search","Search","A goal-based agent that cannot see which action is best turns the problem into a state space — an initial state, a set of actions, a transition model, a goal test, and a path cost — and searches for a sequence of actions reaching the goal. We build the state-space formulation on the 8-puzzle and route-finding, give the one TREE-SEARCH \u002F GRAPH-SEARCH skeleton every algorithm specializes, and measure strategies by completeness, optimality, and complexity. This lesson develops the first two frontier disciplines — breadth-first and uniform-cost search; the rest follow in the next lesson.\n",{"path":13559,"title":13560,"module":13556,"summary":13561},"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared","Search Strategies Compared","Breadth-first and uniform-cost search pay for optimality in memory. This lesson develops the strategies that trade memory for depth: depth-first search, which keeps only the current path; depth-limited and iterative-deepening search, which fix DFS's failure on infinite paths; and bidirectional search, which meets in the middle for a square-root saving. It closes by lining up all six uninformed strategies against completeness, optimality, and complexity, and tracing where the algorithms came from and where they went.\n",{"path":13563,"title":13564,"module":13556,"summary":13565},"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search","Informed Search and A*","An informed search uses a heuristic $h(n)$, an estimate of the cost from a node to the goal, to decide what to expand next. Greedy best-first search follows the heuristic blindly and gives up optimality; A* corrects it by ranking nodes on $f(n) = g(n) + h(n)$, and is optimal when the heuristic is admissible (tree search) or consistent (graph search). This lesson defines the heuristic, builds best-first search, and proves why A* is optimal, with the contour picture that explains its pruning. Where good heuristics come from is the next lesson.\n",{"path":13567,"title":13568,"module":13556,"summary":13569},"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions","Heuristic Functions and Memory-Bounded Search","A* is only as good as its heuristic, so this lesson answers where good heuristics come from: relaxed problems, whose exact solution cost is an admissible heuristic, and pattern databases, which precompute subproblem costs. It measures heuristic quality with dominance and the effective branching factor, then tackles A*'s memory problem with IDA*, RBFS, and SMA*. It closes with modern heuristic search — weighted A*, learned and disjoint pattern-database heuristics, and bidirectional A*.\n",{"path":13571,"title":13572,"module":13556,"summary":13573},"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search","Local Search and Optimization","When the path to a goal is irrelevant and only the final state matters, we can discard the search tree entirely and keep just the current state, moving to a better neighbor at each step. This lesson builds the state-space landscape metaphor, works through hill climbing and the three obstacles that defeat it (local maxima, ridges, plateaus), then develops the first escapes: random restarts and simulated annealing with its temperature schedule. The population-based methods and continuous-space calculus follow in the next lesson.\n",{"path":13575,"title":13576,"module":13556,"summary":13577},"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search","Population and Continuous Search","Single-state local search escapes a trap by restarting or tolerating downhill moves. This lesson develops the alternatives that keep several states at once — local beam search, which shares successors across parallel threads, and genetic algorithms, which recombine two parents through crossover and mutation — then crosses into continuous spaces, where calculus replaces the finite neighbor set: gradient ascent, line search, and Newton's method. It closes with the industrial descendants of these methods and the loop they all share.\n",{"path":13579,"title":13580,"module":13556,"summary":13581},"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search","Adversarial Search and Games","When another agent plans against you, search becomes a game. We formalize two-player, zero-sum, perfect-information games as search problems, define the minimax value that optimal play backs up through the game tree, and give the MINIMAX algorithm that computes it. Alpha–beta pruning then cuts the cost of that search roughly in half in the exponent without changing the answer, and a heuristic evaluation function plus a cutoff test turns the exact algorithm into a real-time player that copes with the horizon effect.\n",{"path":13583,"title":13584,"module":13556,"summary":13585},"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information","Games of Chance and Imperfect Information","Minimax and alpha–beta assume a deterministic game both players can see in full. Drop either assumption and search must change. This lesson adds chance nodes and the expectiminimax value for games with dice, then belief-state reasoning for partially observable games — Kriegspiel and card games — where averaging over clairvoyance both helps and misleads. It closes with the line from Deep Blue's alpha–beta to AlphaGo's learned evaluation and Monte Carlo tree search, and the provable-pruning and self-play research around each end of that story.\n",{"path":13587,"title":13588,"module":13556,"summary":13589},"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction","Constraint Satisfaction Problems","A constraint satisfaction problem replaces the black-box state with a factored one: variables, domains, and constraints. That structure supports inference before any search runs. This lesson defines the CSP on map coloring, Sudoku, and scheduling, then develops constraint propagation: node and arc consistency, the AC-3 algorithm that makes a whole network arc-consistent, and the way one deleted value cascades across the graph to prune impossible options ahead of search.\n",{"path":13591,"title":13592,"module":13556,"summary":13593},"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure","CSP Search and Structure","Propagation prunes a CSP but rarely finishes it, so we search. This lesson builds backtracking search over partial assignments and the general-purpose heuristics that make it fast — MRV, degree, least-constraining-value, forward checking, MAC, and intelligent backtracking. It then shows how the shape of the constraint graph controls difficulty: tree-structured problems fall in linear time, cutset conditioning handles the rest, and min-conflicts local search solves a million queens in a constant number of steps.\n",{"path":13595,"title":13596,"module":13556,"summary":13597},"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty","Search Under Uncertainty","Classical search assumes the agent knows the state it is in and exactly what each action does. Drop the second assumption and a plan can no longer be a fixed sequence of actions. This lesson develops the first response: AND-OR search over nondeterministic actions, which returns a branching contingency plan rather than a straight line. We build it on the erratic vacuum world, show how OR nodes (the agent's choices) alternate with AND nodes (nature's outcomes), trace the recursion that finds a plan, and handle the case where the only solution is a cyclic \"try, try again.\"\n",{"path":13599,"title":13600,"module":13556,"summary":13601},"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search","Belief-State and Online Search","When the agent cannot see the full state, a plan can no longer test where it actually is — it must reason over the set of states it might be in. This lesson develops belief-state search, from sensorless (conformant) planning that coerces an unknown world into a goal, through the predict-observe-update cycle of contingent planning with percepts, to online search in unknown environments, where the agent must act in order to learn. It closes with LRTA*, which refines its own heuristic as it explores, one step from reinforcement learning.\n",{"path":13603,"title":13604,"module":13605,"summary":13606},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic","Logical Agents and Propositional Logic","Logic and Planning","A knowledge-based agent keeps a store of sentences and acts by asking it what to do. To make \"asking\" mean something we need entailment — the relation $KB \\models \\alpha$ that holds when every model of the knowledge base is a model of the query. Propositional logic gives a syntax and a truth-table semantics for which entailment is decidable. This first part builds the foundations: the agent loop, the Wumpus World, models and entailment, the connectives and truth tables, theorem proving by refutation, and the resolution rule with its CNF conversion — a single complete inference procedure for all of propositional logic.\n",{"path":13608,"title":13609,"module":13605,"summary":13610},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference","Propositional Inference and Logical Agents","Model checking and resolution decide entailment, but both can blow up. This part turns propositional logic into a practical engine and a working agent. Horn clauses give linear-time forward and backward chaining — the basis of logic programming. DPLL and WalkSAT make satisfiability testing fast in the common case. Then we make the agent situated: time-indexed fluents, the frame problem and its solution by successor-state axioms, a hybrid agent that deduces a safe map and plans a route through it, and SATPlan, which finds a plan by asking a SAT solver for a satisfying model.\n",{"path":13612,"title":13613,"module":13605,"summary":13614},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic","First-Order Logic","Propositional logic can only say that facts hold; it cannot talk about the objects a fact is about, or state a rule once and have it cover every object. First-order logic fixes this by committing to a world of objects, relations, and functions. This first part builds the language from the ground up: the ontology it commits to, the model that gives a sentence a truth value, the syntax of terms and sentences, the two quantifiers with their standard mistakes, and equality.\n",{"path":13616,"title":13617,"module":13605,"summary":13618},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use","First-Order Logic in Use","With the language of first-order logic in hand, this part is about using it well. Database semantics trades expressive power for the convenience of a single intended model; higher-order logic shows what first-order logic gives up for decidability. Then we put the language to work: the Tell\u002FAsk interface, the kinship domain axiomatized from scratch, and the seven-step knowledge-engineering process applied to a digital circuit.\n",{"path":13620,"title":13621,"module":13605,"summary":13622},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution","Inference in First-Order Logic","Propositional inference lifts to first-order logic once we can make terms match. Unification is that machinery: the algorithm that finds the substitution making two expressions identical, and the basis of generalized modus ponens. This first part builds the lifted inference rules and the two chaining algorithms they drive — forward chaining, the data-driven procedure behind production systems and Datalog, and backward chaining, the goal-driven procedure behind Prolog.\n",{"path":13624,"title":13625,"module":13605,"summary":13626},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution","First-Order Resolution","Chaining is complete only for Horn knowledge bases. General first-order sentences — with disjunctive conclusions and negations — need a single sound and complete rule: resolution. This part converts arbitrary sentences to CNF by skolemizing away the existentials, lifts the resolution rule with unification, and proves entailment by refuting the negated goal. The result is the proof procedure Gödel's completeness theorem guarantees will find any entailment, together with the search strategies that make it usable.\n",{"path":13628,"title":13629,"module":13605,"summary":13630},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning","Classical Planning","Classical planning represents a problem in a factored language, PDDL: states are sets of ground fluents, and actions are lifted schemas with a precondition and an effect. That structure turns planning into search — forward through states or backward through goals — and lets a program read heuristics straight off the schemas by relaxing the problem. This first part develops the representation, the two search directions, and the domain-independent heuristics that come from ignoring preconditions or delete lists.\n",{"path":13632,"title":13633,"module":13605,"summary":13634},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan","Planning Heuristics and GraphPlan","Every relaxation heuristic can be inaccurate, and none can tell how far apart subgoals sit. The planning graph is a polynomial-size structure that does better: leveled off the problem, it yields admissible distance estimates and a record of which actions and fluents cannot coexist. This part builds the graph, reads heuristics from it, extracts plans with GraphPlan, and closes with the other classical approaches — SATPlan and partial-order planning — and the representational trade that makes all of it work.\n",{"path":13636,"title":13637,"module":13605,"summary":13638},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world","Planning and Acting in the Real World","Classical planning's clean theory rests on four assumptions: time is ignored, actions are atomic, the world is deterministic and fully observable, and the agent is alone. This first part drops the first two. We add durations and resource constraints — turning a plan into a schedule, solved by the critical-path method and, once resources contend, by NP-hard job-shop scheduling — and let a planner reason at multiple levels of abstraction through high-level actions and their angelic reachable sets.\n",{"path":13640,"title":13641,"module":13605,"summary":13642},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty","Planning Under Uncertainty","Classical planning assumed the world was deterministic, fully observable, and the agent alone. This part drops the last two assumptions. When the agent cannot see or predict the world, planning moves into belief-state space: sensorless plans that coerce the world into the goal without sensing, contingent plans that branch on what is sensed, and online agents that monitor and replan when execution diverges. Then we add other agents — joint plans, the coordination problem, and the conventions that let a team act without constant negotiation.\n",{"path":13644,"title":13645,"module":13605,"summary":13646},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation","Knowledge Representation","First-order logic gives you the language; this lesson is about what to say in it. This first part builds the content: a general upper ontology from the top down, categories as first-class objects with taxonomies and inheritance, physical composition and the count-noun\u002Fmass-noun split, events and time reified through the event calculus, and belief modeled with modal logic — the machinery for representing the world an agent reasons about.\n",{"path":13648,"title":13649,"module":13605,"summary":13650},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults","Reasoning Systems and Default Logic","Having represented the world, this part is about reasoning with it at scale. Semantic networks give a graphical notation with fast inheritance; description logics keep subsumption and classification tractable by design. Then we confront the fact that most useful rules hold only by default: circumscription and default logic give a logical account of nonmonotonic reasoning, and truth maintenance systems retract conclusions cleanly when the beliefs beneath them change.\n",{"path":13652,"title":13653,"module":13654,"summary":13655},"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes","Quantifying Uncertainty","Uncertainty","Logic breaks down in any domain where the rules have exceptions you cannot enumerate — the qualification problem. Probability replaces truth values with degrees of belief that obey Kolmogorov's axioms, and the full joint distribution becomes a knowledge base from which any query is answered by summing entries: marginalization, conditioning, and normalization. Independence factors that joint into smaller pieces — the first step toward a calculus of rational belief that an agent can actually compute with.\n",{"path":13657,"title":13658,"module":13654,"summary":13659},"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes","Bayes' Rule and Naive Bayes","Bayes' rule inverts a causal model into a diagnostic one, turning \"how a cause produces its symptoms\" into \"which cause explains what I observed.\" Ignoring the prior is the base-rate fallacy behind overconfident test results. Conditional independence then lets several pieces of evidence combine by multiplying likelihood ratios instead of building an exponential joint, giving the naive Bayes model and pointing directly at Bayesian networks.\n",{"path":13661,"title":13662,"module":13654,"summary":13663},"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks","Bayesian Networks","A Bayesian network is a directed acyclic graph of random variables in which each node carries a conditional probability table for itself given its parents. That structure factors the full joint distribution into a product of local terms, turning an exponential table into a linear one, and it makes the conditional independences of the domain explicit. We build the canonical burglary–alarm network, read compactness and d-separation off the graph, run exact inference by variable elimination, and, where that is intractable, estimate answers by sampling.\n",{"path":13665,"title":13666,"module":13654,"summary":13667},"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks","Bayesian Networks: Inference and Relational Models","When exact inference is intractable, sampling estimates the posterior instead: prior and rejection sampling, likelihood weighting, and Gibbs\u002FMCMC, whose error shrinks as one over the square root of the sample count. The same graphical idea then lifts from a fixed set of variables to whole populations — relational and open-universe probability models write dependencies once and unroll them over objects — and we close by placing probability against the rule-based, Dempster–Shafer, and fuzzy alternatives it displaced.\n",{"path":13669,"title":13670,"module":13654,"summary":13671},"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time","Probabilistic Reasoning over Time","A world that changes needs a state variable at every point in time. The Markov assumption cuts the dependence on history down to the previous slice, leaving a transition model and a sensor model that define a temporal Bayesian network. Four recursive tasks fall out — filtering, prediction, smoothing, and the most likely explanation — each a message passed along the sequence. We ground them in hidden Markov models and their matrix form, sketch the Kalman filter for continuous state, and reach dynamic Bayesian networks with particle filtering as the general approximate method.\n",{"path":13673,"title":13674,"module":13654,"summary":13675},"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association","Reasoning over Time: Tracking and Data Association","Dynamic Bayesian networks generalize HMMs and Kalman filters to arbitrarily many state variables per slice, and when exact inference blows up, particle filtering approximates the belief state with a population of weighted samples that propagate, reweight, and resample. Tracking several objects at once adds the data-association problem — which observation came from which object — whose combinatorics defeat any exact filter, so particle filters and MCMC keep many hypotheses alive. We close with SLAM and learned state-space models.\n",{"path":13677,"title":13678,"module":13654,"summary":13679},"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions","Making Decisions: Utility Theory","A rational agent chooses the action that maximizes expected utility — the probability of each outcome weighted by how much the agent wants it. We derive the utility function from six axioms on preferences, so maximizing expected utility is forced by consistency rather than assumed; look at risk aversion in the utility-of-money curve; package one-shot choices into decision networks; and quantify what an observation is worth with the value of information.\n",{"path":13681,"title":13270,"module":13654,"summary":13682},"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes","When an agent must act repeatedly in a stochastic world, a fixed plan is useless — it needs a policy, an action for every state. The Markov decision process makes this precise with a transition model, a reward, and a discount factor; the Bellman equation characterizes the optimal state utilities, and value iteration and policy iteration solve it. Partial observability lifts the problem to belief states, and bandits, Monte-Carlo tree search, and scalable POMDP solvers extend it — this is the model-known half of reinforcement learning.\n",{"path":13684,"title":13685,"module":13654,"summary":13686},"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory","Decision Analysis: Multi-Attribute Utility and Decision Networks","Decision analysis takes the single-agent utility framework and makes it practical: utility over several attributes, dominance and additive value functions, influence diagrams that fold Bayesian networks together with decision and utility nodes, and the value of information that tells an agent which questions are worth asking. Structure in an agent's preferences — dominance, preferential and utility independence — collapses an exponential utility table into a few one-dimensional functions, the same move that made Bayesian networks compact.\n",{"path":13688,"title":13689,"module":13654,"summary":13690},"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design","Game Theory and Mechanism Design","When outcomes depend on other rational agents, single-agent utility maximization no longer suffices. Game theory studies decisions among agents — normal-form games, dominant strategies, Nash and maximin equilibria, and repeated games — and mechanism design runs the logic backwards, engineering rules (auctions, VCG) so that self-interested play produces a good collective outcome. Algorithmic game theory then asks whether equilibria can be computed, what selfishness costs society, and how the mechanisms deployed at internet scale actually behave.\n",{"path":13692,"title":13693,"module":13694,"summary":13695},"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples","Learning from Examples","Learning","An agent that improves with experience does not need its designer to anticipate every situation. Inductive learning takes that ambition and narrows it to one tractable problem: from labelled input-output pairs, recover a function that predicts the output for inputs never seen. This first part builds the foundation around a single organizing question — generalization — through decision trees and information gain, and the training\u002Fvalidation\u002Ftest discipline for evaluating and choosing hypotheses. A second part takes up the theory of learning and the main model families.\n",{"path":13697,"title":13698,"module":13694,"summary":13699},"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families","The Theory of Learning and Model Families","Cross-validation measures generalization but does not explain it. This part supplies the theory — PAC learning, sample complexity, and the VC dimension — that says when a hypothesis consistent with enough data is probably approximately correct, and why an unrestricted hypothesis space can never generalize. It then surveys the model families a practitioner reaches for: linear regression and gradient descent, the perceptron and logistic regression, support vector machines and the kernel trick, and ensembles by bagging and boosting — closing with what deep learning changed about the classical picture.\n",{"path":13701,"title":13702,"module":13694,"summary":13703},"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning","Learning Probabilistic Models","A [Bayesian network](\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks) is useless until its numbers are filled in, and those numbers come from data. This first part casts learning itself as probabilistic inference: hypotheses carry a prior, data update it to a posterior, and predictions average over what remains. From that frame fall the standard estimators — maximum likelihood by counting, MAP with a conjugate prior, full Bayesian updating — for the case where every variable is observed. A second part takes up the harder case of hidden variables and the EM algorithm.\n",{"path":13705,"title":13706,"module":13694,"summary":13707},"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization","Learning with Hidden Variables: The EM Algorithm","Complete data can be learned by counting; real data usually hide some variables — the disease behind the symptoms, the cluster behind the points. This part develops the expectation-maximization algorithm, which learns those models by alternating an expected completion of the missing data with a re-estimation of the parameters. It works the idea through mixtures of Gaussians, Bayesian networks, and hidden Markov models, proves the monotone-likelihood guarantee from the evidence lower bound, and traces the line from EM to variational inference and the variational autoencoder.\n",{"path":13709,"title":12692,"module":13694,"summary":13710},"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning","Reinforcement learning is an MDP with the model unknown: the agent knows neither how its actions move the world nor which states are rewarded, and must recover good behaviour from experienced transitions and rewards alone. This first part builds the classical tabular theory — passive learning (fix a policy, learn its value, by direct estimation, adaptive dynamic programming, and temporal differences) and active learning (choose actions, trade exploration against exploitation, and learn control with Q-learning and SARSA). A second part lifts it off the lookup table with function approximation and policy search.\n",{"path":13712,"title":13713,"module":13694,"summary":13714},"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search","Reinforcement Learning: Generalization and Policy Search","Tabular reinforcement learning stores one number per state, which is hopeless for backgammon or chess. This part lifts RL off the lookup table with function approximation, so that updating one state generalizes to related ones, then turns to policy search — representing and optimizing the policy directly, up to the REINFORCE policy gradient and correlated sampling. It closes with the bridge to deep reinforcement learning (deep Q-networks, actor-critic, PPO), the classic applications, and the hand-off to the dedicated RL subject.\n",{"path":13716,"title":13717,"module":13694,"summary":13718},"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning","Knowledge in Learning","Pure induction learns a function from labelled examples while knowing almost nothing to begin with. This first part brings prior knowledge into the loop by recasting learning as logical inference — hypotheses, examples, and classifications as sentences. It develops current-best-hypothesis search, the version space and its general\u002Fspecific boundary maintained by candidate elimination, and states the three entailment constraints that fix how background knowledge enters. A second part builds the three knowledge-based methods those constraints define.\n",{"path":13720,"title":13721,"module":13694,"summary":13722},"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods","Knowledge-Based Learning: EBL, Relevance, and ILP","Once learning is cast as logical inference, three methods follow from the three ways prior knowledge can enter. Explanation-based learning generalizes a single example by explaining it with the domain theory, gaining speed but nothing new. Relevance-based learning uses determinations to shrink the hypothesis space and converge from fewer examples. Inductive logic programming learns genuinely new first-order rules — top-down with FOIL, bottom-up by inverting resolution, even inventing new predicates — and connects to modern statistical relational and neuro-symbolic learning.\n",{"path":13724,"title":13725,"module":13726,"summary":13727},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception","Vision and Perception","Frontiers","Perception connects an agent to the physical world. We follow one modality — vision — from the physics of image formation (the pinhole camera, perspective projection, lenses, shading, color) through the early operations that turn a pixel array into edges, texture, and motion, and into recognition by appearance. The recurring problem is inversion: a camera collapses a 3-D world onto a 2-D grid, and an agent that wants to act must build the scene back up. Rebuilding the scene is the subject of the companion lesson.\n",{"path":13729,"title":13730,"module":13726,"summary":13731},"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world","Vision: Reconstructing the 3D World","A camera collapses a three-dimensional world onto a flat grid; this lesson inverts that collapse. We build the camera projection matrix (intrinsics and extrinsics), triangulate a point from two views, then work through the toolbox of depth cues — motion parallax, binocular stereopsis, multiple views, texture, shading, and contour — that turn an ambiguous image back into a scene. We add structural recognition (pictorial-structure \"cardboard people\"), the task-driven use of vision in cars and robots, and the shift from hand-built pipelines to learned deep-vision networks.\n",{"path":13733,"title":13734,"module":13726,"summary":13735},"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics","Robotics","A robot is an agent with a body: sensors that read the physical world and effectors that push back on it. This lesson grounds the abstract AI machinery in that body. We build up the hardware (range finders, proprioception, degrees of freedom), then cast perception as probabilistic filtering — the kinematic motion and sensor models, Monte Carlo localization, the extended Kalman filter, and simultaneous localization and mapping (SLAM). The companion lesson takes the estimated pose forward into planning and control.\n",{"path":13737,"title":13738,"module":13726,"summary":13739},"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control","Robotics: Planning and Control","A robot that knows where it is still has to decide how to move, and then make a slipping, sensing-imperfect body actually go there. This lesson takes the pose estimate forward: planning motion in configuration space with cell decomposition and sampling-based roadmaps (PRMs and RRTs), planning under uncertainty with most-likely-state and online replanning, closing the loop with P\u002FPD\u002FPID control and potential fields, and finally the software architectures — subsumption, three-layer, and pipeline — that assemble it all, plus the learning-based turn in modern robotics.\n",{"path":13741,"title":13742,"module":13726,"summary":13743},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai","Natural Language for AI Agents","Language is how agents acquire the knowledge already written down and how they communicate with the humans they serve. This lesson gives the classical AI account of language as a source of information: n-gram language models and the information-seeking tasks built on them — text classification, information retrieval (BM25, the inverted index, PageRank), and information extraction with finite-state templates and hidden Markov models. Throughout, we point to the dedicated NLP subject for the modern deep-learning treatment; the companion lesson takes up grammar, translation, and speech.\n",{"path":13745,"title":13746,"module":13726,"summary":13747},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech","Language for AI Agents: Grammar, Translation, and Speech","N-gram models see only a local window; they cannot say why \"black dog\" is well-formed English and \"dog black\" is not, because that is a fact about structure. This lesson takes up structure: phrase-structure and probabilistic context-free grammars, syntactic analysis by chart parsing and CYK, augmented grammars and compositional semantics, then the two major statistical successes — machine translation and speech recognition — cast as noisy-channel problems. It closes with the bridge from n-grams to transformers and where the classical account sits relative to modern NLP.\n",{"path":13749,"title":13750,"module":13726,"summary":13751},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future","Philosophy, Ethics, and the Future of AI","Two questions have shadowed the field since its founding: can machines act intelligently (weak AI), and can they really think (strong AI)? We work through Turing's objections and their rebuttals — the arguments from disability, mathematics, and informality — then the strong-AI debate: the mind-body problem, functionalism and the brain prosthesis, Searle's Chinese Room and the systems reply, and consciousness and qualia. The companion lesson turns from what AI can do to what it should, and closes the course.\n",{"path":13753,"title":13754,"module":13726,"summary":13755},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future","The Ethics and Future of AI","Having asked whether machines can act intelligently and really think, we turn to whether we should build them at all. This lesson works through the six ethical risks — lost jobs, autonomous weapons, surveillance and privacy, biased decisions, the safety of superintelligence, and the erosion of accountability — then the value-alignment problem in the LLM era, and where the classical agent components could go next. It closes the course by tying search, logic, probability, and learning into a single picture of intelligence as rational agency.\n",{"path":13757,"title":13758,"module":6,"summary":6},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":13760,"title":13761,"module":13762,"summary":13763},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart","Nuclear Composition and Ground-State Properties","Nuclear Properties","The nucleus is a bound assembly of Z protons and N neutrons packed to a radius R = R0 A^(1\u002F3) at a nearly constant density of about 10^17 kg\u002Fm^3. We fix the vocabulary of nuclides, derive nuclear size from mirror-nuclide and electron-scattering data, read the binding-energy-per-nucleon curve, and model it with the liquid-drop semiempirical mass formula.\n",{"path":13765,"title":13766,"module":13762,"summary":13767},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions","Nuclear Size, Shape, and Charge Distributions","Elastic electron scattering resolves the nucleus by its de Broglie wavelength. The measured cross section is the Mott point-charge cross section modulated by a form factor, and that form factor is the Fourier transform of the charge density. Diffraction minima fix the radius, the small-angle slope fixes the mean-square radius, and the fitted Woods-Saxon profile gives a central density and a skin thickness. Mirror-nucleus Coulomb energies, muonic-atom X-rays, and optical isotope shifts give independent radii that all track R = R0 A^(1\u002F3).\n",{"path":13769,"title":13770,"module":13762,"summary":13771},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy","Nuclear Masses, Mass Excess, and Separation Energies","The atomic mass unit fixes the scale, and the mass excess collects the small binding-driven deviation from the integer mass number. Penning-trap cyclotron frequencies now measure masses to parts in a billion, and every decay and reaction Q-value is a difference of these masses. One- and two-nucleon separation energies read the binding difference between neighbouring nuclides directly, showing the even-odd pairing stagger and the sharp drops at magic numbers, and their vanishing marks the neutron and proton drip lines that bound the chart of the nuclides.\n",{"path":13773,"title":13774,"module":13762,"summary":13775},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula","The Semi-Empirical Mass Formula and the Valley of Stability","Five physical terms reproduce nuclear binding across the chart: a volume term from saturation, a surface term from the deficit of edge neighbours, a Coulomb term from the electrostatic self-energy of a charged sphere, an asymmetry term from the Pauli cost of unequal proton and neutron filling, and a pairing term. The formula is quadratic in Z at fixed A, so isobars lie on a mass parabola whose minimum sets the most stable charge and whose slope dictates the direction of beta decay. The same competition between surface and Coulomb energy defines the fissility parameter and the onset of fission.\n",{"path":13777,"title":13778,"module":13762,"summary":13779},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles","Nuclear Spin, Magnetic Dipole, and Electric Quadrupole Moments","The ground state of a nucleus carries a definite spin and parity, a magnetic dipole moment of order the nuclear magneton, and, when its spin exceeds one-half, an electric quadrupole moment that measures its shape. The single-particle Schmidt lines predict the magnetic moment of an odd-A nucleus from the last unpaired nucleon, and the measured moments fall between them. The quadrupole moment distinguishes prolate from oblate deformation, and hyperfine structure is the experimental handle that fixes the spin and the moments from an atomic spectrum.\n",{"path":13781,"title":13782,"module":13783,"summary":13784},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview","The Nuclear Force and the Shell Model","The Nuclear Force","The strong force between nucleons is short-range, charge-independent, saturated, and repulsive at its core, about a hundred times stronger than Coulomb. Yukawa explained it as an exchange of massive mesons, tying the force's range to the meson mass through the uncertainty principle. Layered on top, an independent-particle shell model with strong spin-orbit coupling reproduces the magic numbers 2, 8, 20, 28, 50, 82, 126.\n",{"path":13786,"title":13787,"module":13783,"summary":13788},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron","The Deuteron and the Tensor Force","The deuteron is the only bound two-nucleon state: one shallow level at 2.22 MeV, no excited states. A square-well fit fixes a depth near 35 MeV over a 2 fm range, yet the wavefunction leaks so far past the edge that most of the probability lies outside the force. Its spin-1 ground state, magnetic moment close to the sum of the free-nucleon moments, and small but nonzero electric quadrupole moment together force a D-state admixture and a non-central tensor force.\n",{"path":13790,"title":13791,"module":13783,"summary":13792},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering","Nucleon-Nucleon Scattering and the Interaction's Structure","Scattering probes the nuclear force above threshold. Partial-wave analysis reduces low-energy data to a single s-wave phase shift, and the effective-range expansion packages that into a scattering length and an effective range. The triplet channel binds (the deuteron) while the singlet is only virtual, which together explain the anomalously large free neutron-proton cross section. Comparing pp, nn, and np results establishes charge symmetry and charge independence, and polarization experiments expose the spin-orbit and tensor pieces.\n",{"path":13794,"title":13795,"module":13783,"summary":13796},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin","Meson Exchange, the Yukawa Potential, and Isospin","Yukawa's massive-field propagator turns the range of the nuclear force into a meson mass: the exchanged quantum's Compton wavelength is the range. One-pion exchange fixes the long-range tail, complete with the tensor structure the deuteron demanded, while heavier mesons build the intermediate attraction and the repulsive core. Charge independence becomes an isospin symmetry, the force is diagonalized by the total isospin through a tau-dot-tau interaction, and the whole picture sits inside QCD as a residual color force between color-neutral nucleons.\n",{"path":13798,"title":13799,"module":13800,"summary":13801},"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model","The Fermi Gas Model","Nuclear Models","Treating the nucleus as two degenerate Fermi gases of protons and neutrons confined in a common well fixes the Fermi momentum near 250 MeV\u002Fc and the Fermi energy near 33 MeV from the nuclear density alone. The average kinetic energy per nucleon is about 20 MeV, the well depth is the Fermi energy plus the separation energy, and unequal proton and neutron Fermi levels reproduce the asymmetry term of the mass formula.\n",{"path":13803,"title":13804,"module":13800,"summary":13805},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates","The Liquid-Drop Model and Collective Deformation","Deforming a charged liquid drop into a spheroid raises its surface energy and lowers its Coulomb energy; the two effects compete through the deformation parameter to set a stability minimum and a fission barrier. The ratio of Coulomb to twice the surface energy is the fissility Z-squared over A, which crosses one near 49 and marks the point where the sphere is unstable. The same surface tension that restores small deformations quantizes into collective vibrations, carrying the static mass formula into dynamic collective motion.\n",{"path":13807,"title":13808,"module":13800,"summary":13809},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle","The Shell Model: Single-Particle States and Spin-Orbit Coupling","A harmonic-oscillator well reproduces the first three magic numbers but fails above twenty; adding a strong inverted spin-orbit term that drives the stretched j equals l plus one-half level down closes the gaps at 28, 50, 82, and 126. The filled shells couple to zero, so the last unpaired nucleon fixes the ground-state spin and parity, and its single-particle magnetic moment falls on the Schmidt lines. Configuration mixing sets the limits of the extreme single-particle model.\n",{"path":13811,"title":13812,"module":13800,"summary":13813},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations","The Collective Model: Rotations, Vibrations, and Deformed Nuclei","Deformed nuclei rotate with energies proportional to I times I plus one, giving the ground-state band its characteristic level ratios, while near-spherical nuclei vibrate in quantized surface phonons that build one- and two-phonon multiplets. The Nilsson model tracks single-particle levels as the well deforms, moments of inertia fall between the rigid and irrotational limits, backbending marks the sudden alignment of a broken pair, and giant resonances are the bulk dipole and quadrupole modes of the whole nucleus.\n",{"path":13815,"title":13816,"module":13817,"summary":13818},"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes","Radioactivity and Decay Modes","Radioactive Decay","Unstable nuclei decay at a rate proportional to how many remain, giving the exponential law N(t) = N0 e^(-lambda t) with half-life t = 0.693\u002Flambda. We work through the three common modes: alpha decay as Coulomb-barrier tunneling with the Geiger-Nuttall rule, beta decay whose continuous spectrum demands the neutrino, and gamma de-excitation, and follow a decay chain across the chart of nuclides.\n",{"path":13820,"title":13821,"module":13817,"summary":13822},"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium","Serial Decay, the Bateman Equations, and Radioactive Equilibrium","A radioactive parent that decays into a radioactive daughter obeys a coupled pair of rate equations whose solution is the Bateman formula. Depending on the half-life ordering the chain settles into secular equilibrium (equal activities), transient equilibrium (a fixed activity ratio), or no equilibrium. Constant production under irradiation drives the activity toward a saturation value equal to the production rate, competing decay modes split the total decay constant into partial constants, and the natural decay series in secular equilibrium underpin radiometric dating.\n",{"path":13824,"title":13825,"module":13826,"summary":13827},"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory","Alpha Decay and the Gamow Theory of Tunneling","Alpha Decay","The alpha Q-value turns positive above mass number 150 because the emitted helium-4 is exceptionally tightly bound. Emission proceeds by quantum tunneling through the Coulomb barrier: a WKB integral from the nuclear surface to the outer turning point gives the Gamow factor, and multiplying its penetrability by the assault frequency yields half-lives spanning more than twenty orders of magnitude. The leading term reproduces the Geiger-Nuttall relation, log t½ proportional to the daughter charge over the square root of Q.\n",{"path":13829,"title":13830,"module":13826,"summary":13831},"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance","Fine Structure, Angular Momentum, and Hindrance Factors","A single parent emits several alpha groups of slightly different energy, each feeding a distinct level of the daughter, so the alpha spectrum maps the daughter's low-lying states. Emission with orbital angular momentum L raises the barrier by a centrifugal term and is allowed only when angular-momentum and parity selection rules permit. Comparing the measured partial half-life to the Gamow estimate defines a hindrance factor near unity for even-even ground-state transitions and large for odd-A decays that must rearrange the unpaired nucleon.\n",{"path":13833,"title":13834,"module":13835,"summary":13836},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino","Beta Decay Energetics and the Neutrino","Beta Decay and the Weak Interaction","Beta decay converts a neutron into a proton or the reverse, adjusting Z at fixed A along an isobaric mass parabola. We write the three processes (beta-minus, beta-plus, electron capture), reduce every Q-value to a difference of neutral atomic masses, and read the continuous electron spectrum as the fingerprint of a third, nearly massless particle. Pauli's neutrino, its detection by Reines and Cowan, and the endpoint bound on its mass close the lesson.\n",{"path":13838,"title":13839,"module":13835,"summary":13840},"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay","Fermi's Theory: Kurie Plots and ft Values","Fermi treated beta decay as a point-contact weak transition and read its rate from the golden rule. The electron spectrum then follows from phase space and the Coulomb Fermi function; the Kurie plot straightens it to a line whose intercept is the endpoint. Integrating the spectrum gives the comparative half-life ft, whose logarithm sorts transitions into superallowed, allowed, and forbidden classes governed by the Fermi and Gamow-Teller selection rules.\n",{"path":13842,"title":13843,"module":13835,"summary":13844},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation","The Weak Interaction and Parity Violation","Beta decay violates mirror symmetry. The Wu experiment on polarized cobalt-60 showed electrons emitted preferentially against the nuclear spin, a pseudoscalar correlation forbidden if parity were conserved. The result fixes the weak charged current as left-handed V minus A, forces neutrinos to be left-handed and antineutrinos right-handed (measured by Goldhaber), and places beta decay within the electroweak theory as W-boson exchange turning a down quark into an up quark.\n",{"path":13846,"title":13847,"module":13835,"summary":13848},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass","Double Beta Decay and Neutrino Mass","For even-A isobars the pairing term splits the mass parabola into two curves, and a handful of even-even nuclides sit below their odd-odd neighbor yet above the next even-even one: single beta decay is forbidden but second-order double beta decay is allowed. The two-neutrino mode is a standard-model process with the longest measured lifetimes in nature; the neutrinoless mode would require the neutrino to be its own antiparticle and its rate measures the effective Majorana mass, the sharpest probe of the absolute neutrino mass scale.\n",{"path":13850,"title":13851,"module":13852,"summary":13853},"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation","Multipole Radiation and Selection Rules","Gamma Decay","Gamma decay carries a nucleus from an excited state to a lower one by emitting a photon of definite angular momentum and parity. We correct the photon energy for nuclear recoil, expand the radiation field into electric and magnetic multipoles, and read off how the transition rate collapses with each increase in multipole order. The Weisskopf single-particle estimates set the scale, and angular-momentum and parity conservation fix which multipole dominates.\n",{"path":13855,"title":13856,"module":13852,"summary":13857},"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers","Internal Conversion and Isomers","A nucleus can shed excitation energy without emitting a photon by handing it directly to an atomic electron. We define the internal-conversion coefficient, trace its growth with atomic number, multipole order, and decreasing energy, and treat the electron-only E0 transitions and internal pair formation. When the lowest allowed multipole is high and the energy low, the gamma rate falls so far that the excited state survives as a metastable isomer.\n",{"path":13859,"title":13860,"module":13852,"summary":13861},"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer","Angular Correlations and the Mössbauer Effect","Two gammas emitted in cascade are not independent in direction: detecting the first selects magnetic substates of the intermediate level and makes the second anisotropic, so the correlation function fixes the intermediate spin. The same nuclear resonance that recoil normally destroys is recovered when the emitter is locked in a lattice, giving the Mössbauer effect and its part-in-a-trillion resolution of isomer shifts and hyperfine fields.\n",{"path":13863,"title":13864,"module":13865,"summary":13866},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections","Nuclear Reactions, Fission, and Fusion","Nuclear Reactions","A nuclear reaction X(x, y)Y is governed by its Q value and its cross section, the effective target area for a given process. Splitting the curve of binding energy near iron in either direction releases energy: fission of heavy nuclei by neutron capture and a chain reaction, and fusion of light nuclei that powers the Sun and needs Lawson's density-confinement criterion to be practical.\n",{"path":13868,"title":13869,"module":13865,"summary":13870},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances","The Compound Nucleus and Resonance Reactions","Low-energy reactions proceed through a long-lived intermediate state whose decay forgets how it formed. Bohr's independence hypothesis factorizes the cross section into a formation step and a branching ratio, an isolated level gives the single-level Breit-Wigner line shape with total width Γ tied to the lifetime by Γτ = ħ, and at high excitation overlapping levels merge into a statistical continuum described by evaporation spectra and the Hauser-Feshbach average.\n",{"path":13872,"title":13873,"module":13865,"summary":13874},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model","Direct Reactions and the Optical Model","A complex optical potential replaces the many-body target by a single particle moving in an average field whose imaginary part removes flux into non-elastic channels, reproducing the diffraction pattern of elastic scattering. Direct reactions bypass the compound nucleus, transferring a nucleon in one step: stripping and pickup deposit or remove a single nucleon, the angle of the first peak in the distorted-wave angular distribution fixes the transferred orbital angular momentum, and its magnitude gives the spectroscopic factor.\n",{"path":13876,"title":13877,"module":13878,"summary":13879},"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics","The Fission Barrier and Fragment Energetics","Nuclear Fission","Fission is the large-amplitude collective deformation of a heavy nucleus into two fragments. The liquid-drop model sets a barrier from the competition between rising surface energy and falling Coulomb energy under quadrupole deformation, with the fissility parameter Z²\u002FA measuring how close a nucleus is to instability. Bohr-Wheeler theory separates spontaneous from neutron-induced fission, the fragment mass yield is double-humped and asymmetric, about 200 MeV is released per event, and shell corrections add a second minimum that produces fission isomers.\n",{"path":13881,"title":13882,"module":13878,"summary":13883},"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics","Chain Reactions and Reactor Physics","A self-sustaining chain reaction is a fixed point of neutron bookkeeping: the multiplication factor k counts the neutrons in one generation per neutron in the last, and criticality is k = 1. The four-factor formula tracks a neutron through fast fission, resonance escape, thermal utilization, and reproduction; moderation slows fission neutrons to the thermal energies where the fission cross section is largest; and the small delayed-neutron fraction sets the timescale that makes a reactor controllable. Breeding converts fertile U-238 and Th-232 into new fissile fuel.\n",{"path":13885,"title":13886,"module":13887,"summary":13888},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement","Fusion Reactions and Confinement","Fusion and Nucleosynthesis","Light nuclei release energy when they fuse because binding per nucleon rises steeply toward the iron peak, but the Coulomb barrier suppresses the rate at reactor temperatures. The thermonuclear rate is a convolution of the Maxwell distribution with the tunneling probability, sharply peaked at the Gamow energy. The deuterium-tritium reaction has the lowest barrier and largest cross section; sustained energy gain requires the Lawson triple product of density, temperature, and confinement time, reached by magnetic or inertial confinement.\n",{"path":13890,"title":13891,"module":13887,"summary":13892},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis","Stellar Nucleosynthesis","Main-sequence stars burn hydrogen to helium through the proton-proton chain and the CNO cycle, both releasing 26.7 MeV per helium nucleus. Helium burning bridges the mass-5 and mass-8 gaps by the triple-alpha process through the Beryllium-8 and Hoyle resonances, and successive carbon-to-silicon burning stages climb to the iron peak, where fusion stops. The elements beyond iron are built by slow and rapid neutron capture, and the solar neutrino flux confirms the reactions directly.\n",{"path":13894,"title":13895,"module":13887,"summary":13896},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis","Big-Bang Nucleosynthesis","In the first three minutes the expanding universe forged the light elements. The weak interaction froze the neutron-to-proton ratio near one in six when the reaction rate fell below the expansion rate, and free-neutron decay lowered it to about one in seven before the deuterium bottleneck broke. Almost every surviving neutron ended in helium-4, fixing the primordial helium mass fraction near 0.25, with trace deuterium, helium-3, and lithium-7. The deuterium abundance measures the cosmic baryon density.\n",{"path":13898,"title":13899,"module":13900,"summary":13901},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power","Stopping Power and the Range of Charged Particles","Radiation and Applications","A heavy charged particle loses energy in a dense sequence of small Coulomb collisions with atomic electrons, at a rate the Bethe-Bloch formula fixes from the particle's charge and speed and the medium's electron density and mean excitation energy. The rate scales as the inverse square of the speed, so most energy is deposited at the end of the track in the Bragg peak, and integrating the reciprocal rate gives a sharp range. Electrons differ: they also radiate, and above a critical energy bremsstrahlung dominates. Fast particles above the phase velocity of light in the medium emit Cherenkov radiation.\n",{"path":13903,"title":13904,"module":13900,"summary":13905},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions","Interactions of Photons and Neutrons","Photons are removed from a beam in single events, so their intensity falls exponentially with a linear attenuation coefficient built from three processes: the photoelectric effect at low energy, Compton scattering at intermediate energy, and pair production above twice the electron rest energy, each with its own atomic-number and energy dependence. Neutrons carry no charge and interact only with nuclei, moderating by elastic scattering and being captured with a cross section that rises as one over speed away from resonances.\n",{"path":13907,"title":13908,"module":13900,"summary":13909},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors","Radiation Detectors and Nuclear Spectroscopy","Every detector converts the energy a radiation deposits into a measurable electrical signal. Gas counters read the ionization directly, in three operating regions set by the applied voltage; scintillators convert the energy to light read out by a photomultiplier; semiconductor detectors collect electron-hole pairs and give the best energy resolution because so many carriers are made per event. The resolution is governed by the number of independent charge carriers, and the pulse-height spectrum of a gamma line shows a full-energy photopeak, a Compton continuum with its edge, and escape peaks.\n",{"path":13911,"title":13912,"module":13900,"summary":13913},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology","Dosimetry, Radiation Biology, and Protection","Absorbed dose is the energy deposited per unit mass, measured in gray. Equal absorbed doses do unequal biological damage because densely ionizing radiation deposits its energy along short tracks: weighting the dose by a radiation factor gives the equivalent dose, and weighting by tissue sensitivity gives the effective dose, both in sieverts. Deterministic effects have a threshold and a severity that grows with dose; stochastic effects are assumed to follow a linear-no-threshold probability. Natural background dominates the dose to the population, and protection rests on time, distance, and shielding.\n",{"path":13915,"title":13916,"module":13900,"summary":13917},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine","Applications — Dating, Analysis, and Nuclear Medicine","Charged particles lose energy continuously and stop at a well-defined range with a Bragg peak, while gamma rays are attenuated exponentially. These interactions define radiation detectors and dosimetry (gray and sievert) and drive the applications: neutron activation analysis, magnetic resonance imaging, PET, and radiometric dating with carbon-14 and long-lived rock clocks.\n",{"path":13919,"title":13920,"module":6,"summary":6},"\u002Fnuclear-physics","Nuclear Physics",{"path":13922,"title":13923,"module":9887,"summary":13924},"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp","What Is Natural Language Processing?","Natural language processing is the computational treatment of human language: reading it, representing it, and generating it. We set up why the problem is hard — ambiguity at every level, from sound to intent — trace the field from ELIZA's pattern-matching through statistical methods to today's neural models, lay out the linguistic levels and task families the course covers, and fix the vocabulary of tokens, types, and corpora the rest of the notes rely on.\n",{"path":13926,"title":13927,"module":9887,"summary":13928},"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization","Regular Expressions and Text Normalization","Before any model touches text, the text has to be found and cleaned. Regular expressions give an algebra for describing string patterns; tokenization, case folding, and stemming turn raw characters into the units a model counts; and byte-pair encoding builds a subword vocabulary that spells out any word. Measuring how far apart two strings are — minimum edit distance — is the next lesson.\n",{"path":13930,"title":13931,"module":9887,"summary":13932},"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance","Minimum Edit Distance","Much of language processing needs to measure how similar two strings are — a speller ranking corrections, a diff tool, a coreference resolver. Minimum edit distance counts the insertions, deletions, and substitutions that turn one string into another, computed by a dynamic-programming table. We fill the table for intention to execution, backtrace to recover the alignment, and see how the same machinery generalizes to weighted edits, Viterbi, and biological sequence alignment.\n",{"path":13934,"title":13935,"module":9887,"summary":13936},"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models","N-Gram Language Models","A language model assigns a probability to a sequence of words and, equivalently, predicts the next word from its history. The n-gram model makes this tractable by truncating the history to the last few words, estimates the resulting conditional probabilities by counting, and is scored by perplexity. We build the model from the chain rule, work a bigram example on a small corpus, and read perplexity as a branching factor. The next lesson covers the zero counts that break this model and the smoothing that repairs them.\n",{"path":13938,"title":13939,"module":9887,"summary":13940},"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff","Smoothing and Backoff","Every finite corpus is missing good word sequences it simply never saw, so a raw n-gram model assigns them probability zero and breaks. Smoothing repairs the zeros: add-one and add-k shave mass off seen events, backoff and interpolation fall back on shorter contexts, and Kneser-Ney — worked here by hand — replaces raw frequency with how many contexts a word completes. We close on web-scale stupid backoff and the neural models that dissolve the zero problem rather than patch it.\n",{"path":13942,"title":13943,"module":13944,"summary":13945},"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment","Naive Bayes and Sentiment Classification","Text Classification","Text classification assigns a category to a document — positive or negative, spam or not, one topic among many. Naive Bayes is a generative solution: apply Bayes' rule, assume the words are conditionally independent given the class, and the winning class is the one maximizing the product of a prior and per-word likelihoods. We train it by counting with add-one smoothing, work a full sentiment example by hand, sharpen it for sentiment (binary counts, negation, lexicons), and place it among the transformer classifiers that came after.\n",{"path":13947,"title":13948,"module":13944,"summary":13949},"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers","Evaluating Classifiers","A trained classifier is only useful once we can measure how good it is. We build the confusion matrix, see why accuracy misleads on unbalanced data, and define precision, recall, and the F-measure that balances them. Multi-class tasks need macro- versus micro-averaging; reliable estimates need cross-validation. We close on statistical significance — the paired bootstrap test for whether one system's lead over another is significant.\n",{"path":13951,"title":13952,"module":13944,"summary":13953},"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression","Logistic Regression","Logistic regression is the discriminative counterpart to naive Bayes: instead of modelling how a document is generated, it learns weights that directly separate the classes. We build it from the sigmoid, derive the cross-entropy loss from maximum likelihood, learn the weights by stochastic gradient descent, regularize to curb overfitting, and generalize to many classes with the softmax. The two-class model is already a one-neuron network, so this is the bridge to neural language models.\n",{"path":13955,"title":13956,"module":13944,"summary":13957},"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons","Sentiment and Affect Lexicons","A sentiment lexicon is a list of words annotated with the affective meaning they carry — positive or negative, or scores along valence, arousal, and dominance. We fix what \"emotion\" means (basic-emotion versus dimensional models), survey the standard lexicons, and then build lexicons three ways: by human labeling with best-worst scaling, by semi-supervised induction from seed words over an embedding space, and by supervised learning from starred reviews. We close on connotation frames, which record the sentiment a verb implies about each of its arguments.\n",{"path":13959,"title":13960,"module":13961,"summary":13962},"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings","Vector Semantics and Embeddings","Semantics","Vector semantics represents a word's meaning as a point in space, derived from the company the word keeps. This first part builds the count-based side: the distributional hypothesis, co-occurrence matrices in their term-document and word-word forms, cosine as the similarity measure, and the two weightings — tf-idf and PPMI — that fix what raw counts get wrong. The result is a sparse, interpretable vector for every word, and the setup for the dense embeddings of the next lesson.\n",{"path":13964,"title":13965,"module":13961,"summary":13966},"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings","Static Word Embeddings: word2vec and After","Count-based vectors are long and sparse; embeddings are the short, dense alternative. This lesson builds them with word2vec's skip-gram and negative sampling — a classifier whose learned weights are the vectors — derives its gradient, and works one update by hand. It then reads relations off the analogy parallelogram, surveys the papers that framed the static-embedding era (word2vec, GloVe, the SGNS-as-PPMI equivalence, fastText, ELMo), and closes on the biases embeddings inherit and the single-vector-per-word ceiling that contextual models break.\n",{"path":13968,"title":13969,"module":13961,"summary":13970},"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models","Neural Networks and Neural Language Models","A neural network is a stack of units, each a weighted sum passed through a non-linearity — a single unit on its own is logistic regression. We build the network up from that unit: the activation functions that give it power, the XOR problem that forces a hidden layer, the feedforward forward pass in matrix form, and the Bengio-style feedforward neural language model that concatenates word embeddings and predicts the next word with a softmax. Training is cross-entropy minimized by gradient descent, with backpropagation supplying the gradient. Embeddings let the model share statistical strength across similar words, avoiding the sparsity that limits n-gram models.\n",{"path":13972,"title":13973,"module":10344,"summary":13974},"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling","Sequence Labeling: POS and NER","Sequence labeling assigns one tag to every token in a sentence. This first part sets up the task through its two canonical cases — part-of-speech tagging over the Penn Treebank tagset, and named-entity recognition reframed as token labeling with the BIO scheme — then builds the hidden Markov model, the classic probabilistic tagger. The HMM tags by Bayesian inference: transition and emission probabilities under two Markov assumptions, reducing tagging to an argmax over tag sequences. That argmax is exponential to enumerate, which sets up the Viterbi decoder, the CRF, and neural taggers of the next lesson.\n",{"path":13976,"title":13977,"module":10344,"summary":13978},"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers","Viterbi Decoding, CRFs, and Neural Taggers","The HMM reduced tagging to an argmax over exponentially many tag sequences. This lesson builds the decoder that makes it tractable — the Viterbi dynamic program, worked through a full numeric trace on real WSJ probabilities — then keeps that same decoder while replacing the HMM's rigid tables. The linear-chain conditional random field is a discriminative log-linear model whose global feature functions can inspect any part of the input, which is why CRFs win for NER. Finally it traces the shift to neural taggers (biLSTM-CRF, character-aware NER, ELMo), where hand-built features become learned representations while the Viterbi decoder carries over unchanged.\n",{"path":13980,"title":13981,"module":10344,"summary":13982},"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms","RNNs and LSTMs","A feedforward neural language model sees a fixed window of words and can look no further back. The recurrent neural network removes that limit: it carries a hidden state across time, so each word is read in the context of everything before it. We build the RNN from its one recurrent equation, use it as a language model, train it by backpropagation through time, and diagnose the vanishing-gradient problem that makes plain RNNs forget. The LSTM fixes the forgetting with a cell state and three gates, and the encoder-decoder stacks two RNNs into a sequence-to-sequence model — and its single-vector bottleneck is the problem attention was invented to remove.\n",{"path":13984,"title":13985,"module":10826,"summary":13986},"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention","Transformers and Self-Attention","Recurrence forced language models to read one word at a time and to squeeze every dependency through a chain of hidden states. Self-attention removes the recurrence: at every layer each position compares itself to every other and reads a weighted mixture of them, in a single parallel step. This first part builds the attention operation from the ground up — the soft lookup, queries and keys and values, the scaled dot-product, the numeric trace, the matrix form, and the causal mask — and sets up the full transformer architecture that follows.\n",{"path":13988,"title":12538,"module":10826,"summary":13989},"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture","This part takes the scaled dot-product attention of the previous lesson and assembles the full transformer architecture around it: multi-head attention so several relations can be read at once, the transformer block of residual connections and layer norm that makes deep stacks trainable, positional embeddings that restore word order, the decoder-only language model, and the encoder, decoder, and encoder-decoder shapes — closing with the 2017 paper and the pre-norm, FlashAttention, and RoPE refinements that scaled it up.\n",{"path":13991,"title":12646,"module":10826,"summary":13992},"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models","A large language model is a decoder-only transformer trained on one objective — predict the next token. This first part assembles the inference side: the language-modeling head that turns a hidden state into a distribution over the vocabulary, autoregressive generation, and the decoding strategies — greedy, beam, and sampling with temperature, top-k, and nucleus — that read text back out of that distribution. Training the distribution at web scale comes next.\n",{"path":13994,"title":13995,"module":10826,"summary":13996},"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling","Large Language Models: Pretraining and Scaling","A language model's next-token distribution is only as good as the parameters behind it. This part is where those parameters come from: self-supervised pretraining on web-scale text with teacher forcing and cross-entropy, the scaling laws that make test loss a predictable power law in parameters, data, and compute, the KV cache that keeps long-context inference affordable, and how a finished model is evaluated by perplexity and benchmarks — closing with the Kaplan, Chinchilla, GPT-3, and emergence papers behind the scaling story.\n",{"path":13998,"title":13999,"module":10826,"summary":14000},"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting","Fine-Tuning and Prompting","A pretrained transformer is a general-purpose knowledge source; a task is what you do with it. There are two ways to adapt one, and this first part covers the one that updates the weights: fine-tuning. A bidirectional encoder like BERT is pretrained by masked language modeling, then a small task head is bolted on and the whole thing is trained on labelled data for classification, sequence labeling, or span-based question answering — with parameter-efficient variants (adapters, LoRA) that touch only a sliver of the weights. Prompting, the family that leaves the weights frozen, comes next.\n",{"path":14002,"title":14003,"module":10826,"summary":14004},"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment","Prompting and Alignment","Fine-tuning adapts a model by changing its weights. The second family of adaptation changes nothing: a large frozen model performs a task from an instruction and a few examples placed in its context. This part covers prompting and in-context learning, chain-of-thought that elicits reasoning, and the two training stages — instruction tuning and RLHF — that turn a fluent base predictor into an aligned assistant, closing with the BERT, LoRA, chain-of-thought, InstructGPT, and retrieval-augmentation papers behind the modern adaptation pipeline.\n",{"path":14006,"title":14007,"module":14008,"summary":14009},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing","Constituency Parsing","Linguistic Structure","A constituency parse groups a sentence into nested phrases described by a context-free grammar. We build the CFG formalism, read the phrase structure of English off a treebank, confront the structural ambiguity that makes parsing hard, convert to Chomsky normal form, and then solve it with CKY — the dynamic-programming chart that fills a triangular table bottom-up. Probabilistic and neural span parsers, evaluation, and shallow parsing follow in the companion lesson.\n",{"path":14011,"title":14012,"module":14008,"summary":14013},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation","CKY Scoring, Evaluation, and Shallow Parsing","The CKY chart returns every parse but does not say which is correct. Disambiguation needs a score on trees. This lesson attaches probabilities to a grammar (the PCFG and lexicalization), replaces the grammar with a neural span scorer over a pretrained encoder, states the self-attentive results that made it the state of the art, evaluates parsers against a treebank with PARSEVAL, and closes with chunking and shallow parsing for tasks that need only the flat phrases.\n",{"path":14015,"title":14016,"module":14008,"summary":14017},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing","Dependency Parsing","A dependency parse throws away phrases and keeps only directed, labeled arcs from heads to their dependents, so the subject and object of a verb hang off the verb directly. We fix the formalism (rooted trees, typed Universal-Dependency relations, projectivity), then build the first parser family: transition-based arc-standard and arc-eager parsing, a greedy stack-and-buffer machine trained from an oracle. Graph-based and neural dependency parsing follow in the companion lesson.\n",{"path":14019,"title":14020,"module":14008,"summary":14021},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing","Graph-Based and Neural Dependency Parsing","Greedy transition parsing commits locally; the graph-based family scores whole trees instead. This lesson scores every candidate head-dependent edge and extracts the maximum spanning tree with Chu-Liu\u002FEdmonds, develops the biaffine neural scorer that made graph-based parsing the accuracy leader, evaluates parsers with the unlabeled and labeled attachment scores (UAS and LAS), and closes on where the two parser families sit and what they feed downstream.\n",{"path":14023,"title":14024,"module":14008,"summary":14025},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd","Word Senses and Disambiguation","A word is not an atom of meaning: \"bass\" names a fish, a voice, and an instrument, and one static embedding blurs them into a single point. This lesson pulls those senses apart. We define polysemy and the relations that organize senses — synonymy, antonymy, hyponymy, meronymy — build them into WordNet's synset graph, measure similarity along that graph, and then solve the core of word sense disambiguation: the most-frequent-sense baseline, the Lesk gloss-overlap algorithm, feature-based classifiers, and the nearest-neighbor method over BERT embeddings. WSD variants, embeddings, and evaluation follow in the companion lesson.\n",{"path":14027,"title":14028,"module":14008,"summary":14029},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction","WSD in Practice and Word Sense Induction","Beyond core word sense disambiguation lie the variants and loose ends: the sense-inventory-free Word-in-Context task, retrofitting static embeddings to a thesaurus, discovering senses without a fixed inventory (word sense induction), the gloss-aware and bi-encoder neural systems that hold the state of the art, and how WSD and its cousins are evaluated. Together they connect one-vector-per-word embeddings to sense-aware contextual representations.\n",{"path":14031,"title":14032,"module":14008,"summary":14033},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction","Semantic Roles and Information Extraction","Semantic roles answer \"who did what to whom\" for a single event, abstracting away the syntax that expresses it. We show why syntax alone is not enough, generalize over diathesis alternations with thematic roles, number a predicate's arguments with PropBank and group predicates into frames with FrameNet, tag each argument automatically with semantic role labeling, and factor predicates into primitives. Information extraction scales the idea to a corpus in the companion lesson.\n",{"path":14035,"title":14036,"module":14008,"summary":14037},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates","Relations, Events, and Templates","Semantic roles answer \"who did what\" for one predicate; information extraction scales the idea to a whole corpus. This lesson turns unstructured text into structured data: relation extraction pulls entity-relation-entity triples out of sentences by patterns, supervision, and distant supervision; event and temporal extraction place those facts on a timeline; and template filling and knowledge-base population assemble them into a database a downstream system can query.\n",{"path":14039,"title":14040,"module":14008,"summary":14041},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse","Coreference and Discourse","A text is more than a bag of sentences: entities recur under different names. Coreference resolution links every mention to the discourse entity it evokes — the linguistic background of pronouns, definite NPs, and names; mention detection; the mention-pair, mention-ranking, and entity-based architectures; a neural end-to-end span model that scores candidate antecedents; features, evaluation by the CoNLL F1, gender bias, and the neural coreference lineage. Discourse coherence follows in the companion lesson.\n",{"path":14043,"title":14044,"module":14008,"summary":14045},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure","Coherence and Discourse Structure","Coherence is what makes a run of sentences a discourse rather than an arbitrary collection. This lesson develops coherence relations and Rhetorical Structure Theory trees, discourse-structure parsing, Centering and the entity grid for entity-based coherence, and representation-learning models of local coherence, measured in part over the coreference chains recovered in the companion lesson.\n",{"path":14047,"title":14048,"module":14008,"summary":14049},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics","Logical Representations of Meaning","A meaning representation turns a sentence into a formal structure a machine can check against a world and reason over. We set the desiderata a good representation must meet, ground truth in a model, build up first-order logic for sentences with its connectives, quantifiers, and inference, and reify events with the neo-Davidsonian event variable to escape fixed predicate arity. The compositional lambda calculus, quantifier scope, and description logics follow in the companion lesson.\n",{"path":14051,"title":14052,"module":14008,"summary":14053},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics","Compositional Semantics and Description Logics","How do you compute a logical form from a sentence automatically? This lesson builds the compositional machinery: the lambda calculus that assembles a formula from a parse tree one beta-reduction at a time, the quantifier-scope ambiguity a single syntax tree leaves open, and the decidable description logics — TBox, ABox, subsumption, role restrictions — behind the Web Ontology Language, closing with how the map from string to logical form can be learned.\n",{"path":14055,"title":14056,"module":14008,"summary":14057},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing","Semantic Parsing","Turning a sentence into a structured, executable meaning, the grammar-based way. We take the logical forms defined earlier and build them compositionally: a rule-based parser that walks a syntax tree applying lambda terms, then Combinatory Categorial Grammar (CCG), which fuses syntax and semantics so one lexicalized derivation produces both — including supertagging and A* parsing. Learned and neural semantic parsers follow in the companion lesson.\n",{"path":14059,"title":14060,"module":14008,"summary":14061},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing","Learned and Neural Semantic Parsing","Hand-writing a lexicon of lambda terms does not scale, so this lesson learns the parser instead. We cover the two supervision regimes (from logical forms and from denotations), Abstract Meaning Representation as a rooted concept graph, neural sequence-to-sequence parsing with constrained decoding and copy mechanisms, executable text-to-SQL and knowledge-based question answering, the practical systems that made learned parsers accurate, and how the task is evaluated.\n",{"path":14063,"title":14064,"module":14008,"summary":14065},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction","Information Extraction","Information extraction turns free text into a database, and the first step is relation extraction: pulling entity-relation-entity triples out of sentences. We cover all five families — hand-built patterns, supervised classifiers, semi-supervised bootstrapping, distant supervision, and unsupervised Open IE — with worked bootstrapping and distant-supervision traces, then the neural and LLM systems that extended them. Times, events, and templates follow in the companion lesson.\n",{"path":14067,"title":14068,"module":14008,"summary":14069},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates","Extracting Times, Events, and Templates","Once relation extraction has produced typed triples, the information-extraction pipeline still has to place facts in time and assemble them into records. This lesson detects and normalizes temporal expressions to ISO 8601 values, detects events and orders them on a timeline with the 13 Allen relations, and fills slot-and-filler templates — flat and hierarchical — for stereotyped situations, closing the loop from text to a queryable database.\n",{"path":14071,"title":14072,"module":14008,"summary":14073},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence","Discourse Coherence","A text is more than a set of sentences. What binds a run of sentences into a discourse is coherence, and one of its sources is structured relations between clauses. This lesson develops relational coherence — RST and the PDTB models of coherence relations — and discourse-structure parsing: EDU segmentation and shift-reduce RST parsing, then PDTB relation classification. Entity-based and global coherence follow in the companion lesson.\n",{"path":14075,"title":14076,"module":14008,"summary":14077},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence","Entity-Based and Global Coherence","A text coheres not only through relations between clauses but by staying about the same entities and the same topic, and by obeying the macro-structure of its genre. This lesson develops Centering Theory and the entity grid for entity-based coherence, representation-learning models of local coherence, and global coherence — topic segmentation, narrative and argumentation structure, and scientific discourse — then the neural models that learn each.\n",{"path":14079,"title":14080,"module":14008,"summary":14081},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars","Constituency Grammars","A constituency grammar is the declarative theory of sentence structure that a parser operates on. We build the context-free grammar formalism from its four parts, show how derivations become parse trees, and work through the phrase structure of English — noun phrases, verb phrases and their subcategorization frames, agreement, coordination, and long-distance dependencies. The treebank, normal-form, and lexicalized views follow in the companion lesson.\n",{"path":14083,"title":14084,"module":14008,"summary":14085},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars","Treebanks and Lexicalized Grammars","Where does a grammar come from, and how is it prepared for a parser? We read a context-free grammar off the Penn Treebank, normalize it to Chomsky Normal Form for the CKY chart, then invert the phrase-structure emphasis with lexicalized grammars — Combinatory Categorial Grammar and its slash categories — and close with the grammar's fate in the neural era: span scoring, self-attention, and grammar induction.\n",{"path":14087,"title":14088,"module":12634,"summary":14089},"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation","Machine Translation","Machine translation is the task that built the modern toolkit: the encoder-decoder was invented for it, attention was invented to fix its fixed-context bottleneck, and both were later folded into the general transformer. We work through why translation is hard (word order, morphology, lexical and structural divergences), the sequence-to-sequence model and its attention mechanism, transformer-based NMT with cross-attention, subword tokenization with a shared vocabulary, beam-search decoding, and evaluation by BLEU and its successors chrF, BERTScore, and COMET — closing on multilingual and low-resource translation and backtranslation.\n",{"path":14091,"title":14092,"module":12634,"summary":14093},"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation","Machine Translation: Decoding, Evaluation, and Scale","Having built the transformer translation model, we now decode from it and measure the output. Beam search turns the decoder's per-step distributions into a single output string; length normalization keeps it from favoring short translations. We then score translations automatically — BLEU with its n-gram precision, clipping, and brevity penalty, worked through by hand, then its successors chrF, BERTScore, and COMET — and close on the parts of MT that scale beyond one language pair: multilingual and low-resource translation, backtranslation, gender bias, and the lineage from the Transformer to massively multilingual models like NLLB-200.\n",{"path":14095,"title":14096,"module":12634,"summary":14097},"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering","Question Answering","A question-answering system takes a natural-language question and returns an answer, not a ranked list of documents. Almost every modern system is built on one pattern: retrieve then read. We start with the information-retrieval machinery that finds candidate text — tf-idf and BM25 term weighting, a worked ranking example, the inverted index, and dense embedding retrieval — then build the retriever-reader pipeline that extracts an answer span with BERT and trace a full retrieve-and-read example end to end.\n",{"path":14099,"title":14100,"module":12634,"summary":14101},"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms","Question Answering: Knowledge Bases and Language Models","The retrieve-and-read pipeline extracts an answer span from prose, but not all knowledge lives in prose. This part covers the rest of the QA stack: entity linking (Wikification) that grounds a question's entities to a knowledge base, knowledge-based QA by semantic parsing a question into an executable query, and the modern default — closed-book QA and retrieval-augmented generation with a large language model — closing on the DPR\u002FRAG\u002Ffusion-in-decoder lineage and how factoid answers are scored by exact match and F1.\n",{"path":14103,"title":14104,"module":12634,"summary":14105},"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots","Dialogue and Chatbots","Conversation is the most natural interface to a machine and one of the hardest to build. We set up what makes human dialogue work — turns, speech acts, grounding, and the local structure of adjacency pairs — then trace the two traditions that answer it: chatbots built to chat (ELIZA's pattern-matching, corpus retrieval, and seq2seq generation with its blandness problem) and task-oriented systems built to get something done (the GUS frame-and-slot architecture and the modern NLU \u002F state-tracker \u002F policy \u002F NLG pipeline that accumulates a frame across turns).\n",{"path":14107,"title":14108,"module":12634,"summary":14109},"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants","Dialogue Systems: LLM Assistants, Evaluation, and Design","Two dialogue traditions — chatbots built to chat and task-oriented frame systems built to get something done — met in the aligned LLM assistant. Instruction tuning plus RLHF fold chit-chat and task dialogue into one model; the LaMDA \u002F InstructGPT \u002F ChatGPT lineage fills in how. The lesson then turns to evaluation (human ratings and acute-eval for chatbots, task success and slot error rate for task systems), user-centered design with Wizard-of-Oz prototyping, and the ethical stakes of building agents people talk to.\n",{"path":14111,"title":14112,"module":12634,"summary":14113},"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization","Text Summarization","Summarization compresses a document to its essential meaning, by either selecting sentences to keep (extractive) or writing new ones (abstractive). This part fixes the task and its flavors — single vs. multi-document, generic vs. query-focused, extractive vs. abstractive — then works through extractive summarization in full: scoring by position and centrality, the TextRank\u002FLexRank graph algorithm run as PageRank over a sentence-similarity graph with a worked iteration, and supervised sentence selection.\n",{"path":14115,"title":14116,"module":12634,"summary":14117},"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation","Abstractive Summarization and Evaluation","Extractive methods can only reuse the source's own sentences; to compress within a sentence or paraphrase, a summarizer has to generate. This part covers abstractive summarization: the sequence-to-sequence approach, the pointer-generator's copy switch and coverage mechanism, pretrained summarizers (BART, PEGASUS) and zero-shot LLM prompting, the long-document and factuality problems, and ROUGE evaluation with a worked example and its limits — closing on the abstractive lineage from See 2017 through faithfulness metrics.\n",{"path":14119,"title":14120,"module":14121,"summary":14122},"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics","Phonetics","Speech","Before a recognizer can read speech it has to know what speech is. This first part covers the linguistic substrate: phones and their transcription in the IPA and ARPAbet; articulatory phonetics — how the vocal tract shapes airflow into consonants and vowels; and prosody — stress, tune, and the F0 contour. The acoustic side — the waveform, its spectrum, formants, and the spectrogram — is the second part.\n",{"path":14124,"title":14125,"module":14121,"summary":14126},"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics","Acoustic Phonetics","Articulation is the cause; the acoustic signal is the effect, and the effect is all a microphone ever gets. This part follows the sound out of the mouth: waves, sampling and the Nyquist limit, F0 and the pitch track, the mel scale, the spectrum and Fourier analysis, the source-filter model that explains why each vowel carries its own formants, and the spectrogram the log-mel front end of every ASR system sits directly on top of — closing with neural TTS, wav2vec, HuBERT, and Whisper, where phonetics went in neural speech.\n",{"path":14128,"title":14129,"module":14121,"summary":14130},"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition","Automatic Speech Recognition","Speech recognition maps an acoustic waveform to a string of words, and once the waveform is turned into a sequence of log-mel spectrogram frames the problem is the same sequence-to-sequence transduction the rest of the course already solved. This first part builds the feature front end (framing, the DFT, the mel filterbank, the log), then the modern architectures: the attention-based encoder-decoder, the CTC alignment trick that collapses repeated and blank frames, and RNN-T for streaming. Training-data advances, evaluation, TTS, and the other speech tasks come next.\n",{"path":14132,"title":14133,"module":14121,"summary":14134},"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications","ASR Evaluation and Speech Applications","A recognizer turns a waveform into text; this part scores that text and puts the same machinery to other uses. It opens with the self-supervised and weakly- supervised systems (wav2vec 2.0, HuBERT, Whisper) that made ASR error rates fall. Word error rate reuses the edit distance from the first module, run over words. Text-to-speech runs the whole pipeline in reverse — text to mel spectrogram to waveform. And a family of smaller tasks — wake-word detection, speaker recognition and diarization, language identification — reuse the same log-mel front end without the decoder.\n",{"path":14136,"title":14137,"module":6,"summary":6},"\u002Fnatural-language-processing","Natural Language Processing",{"path":14139,"title":14140,"module":9887,"summary":14141},"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo","From the Electron to the Particle Zoo","A timeline of the subject, from J. J. Thomson's electron in 1897 to the Higgs boson in 2012. The electron, photon, nucleus, proton, and neutron gave a tidy picture that Yukawa's meson prediction and the muon–pion confusion complicated; strange particles in cosmic rays and the accelerator-era flood of hadrons then produced a \"particle zoo\" that only the quark model organized.\n",{"path":14143,"title":14144,"module":9887,"summary":14145},"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts","Basic Concepts and Particle Classification","Every particle has an antiparticle of equal mass and opposite charge, a consequence of the Dirac equation confirmed by the positron. Feynman diagrams track interactions in spacetime; the material particles sort into leptons and the composite hadrons built from quarks, with baryons carrying three quarks and mesons a quark-antiquark pair.\n",{"path":14147,"title":14148,"module":9887,"summary":14149},"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers","Fundamental Interactions and Force Carriers","Four interactions account for every force in nature: strong, electromagnetic, weak, and gravitational, in decreasing strength. Each is carried by a boson — the gluon, photon, W and Z, and the graviton — with a range fixed by the carrier's mass through the Yukawa relation, and a coupling constant that itself varies with distance.\n",{"path":14151,"title":14152,"module":14153,"summary":14154},"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales","Natural Units and Scales","Units and Kinematics","Setting $\\hbar = c = 1$ collapses mass, momentum, and energy into a single unit, the GeV, and turns lengths and times into inverse energies through the conversion $\\hbar c = 197.3$ MeV·fm. This lesson fixes the natural-unit conventions used for the rest of the course, converts cross sections between barns and GeV$^{-2}$, and shows how to restore factors of $\\hbar$ and $c$ by dimensional analysis.\n",{"path":14156,"title":14157,"module":14153,"summary":14158},"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass","Four-Vectors and Invariant Mass","The energy and momentum of a particle form a four-vector whose square is the frame-independent quantity $p^2 = m^2$. This lesson develops the metric and four-vector products, the invariant mass of a multiparticle system, the center-of-momentum and laboratory frames, and the description of collinear boosts by rapidity, whose additivity replaces the awkward velocity-addition law.\n",{"path":14160,"title":14161,"module":14153,"summary":14162},"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam","Decay, Scattering, and Mandelstam Variables","Two-body decay in the rest frame fixes the daughter momenta from the three masses alone; production thresholds follow from the minimum invariant mass. This lesson works both, then introduces the Mandelstam invariants $s$, $t$, $u$ for $2\\to2$ scattering, proves the identity $s+t+u=\\sum m_i^2$, and maps the physical regions and the crossing that relates channels.\n",{"path":14164,"title":14165,"module":14153,"summary":14166},"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule","Cross Sections and the Golden Rule","The cross section measures how often a scattering happens and the decay width how fast a particle disintegrates. This lesson defines both, relates event rate to luminosity through $R=\\mathcal L\\,\\sigma$ and lifetime to width through $\\tau=\\hbar\u002F\\Gamma$, and states Fermi's golden rule with Lorentz-invariant phase space, giving the master formulas that turn an amplitude $\\mathcal M$ into a measurable rate for $1\\to2$ decay and $2\\to2$ scattering.\n",{"path":14168,"title":14169,"module":14170,"summary":14171},"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries","Conservation Laws and Symmetries","Symmetries and Conservation Laws","Which decays occur is decided by conservation laws, each tied by Noether's theorem to a symmetry of physical law. Energy, charge, baryon number, and lepton number are conserved universally; strangeness, isospin, and parity hold in the strong and electromagnetic interactions but break in the weak one, whose parity and CP violation distinguish matter from antimatter.\n",{"path":14173,"title":14174,"module":14170,"summary":14175},"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt","Discrete Symmetries — C, P, T, and CPT","Parity reflects space, charge conjugation swaps particle for antiparticle, and time reversal runs the clock backward. Each assigns multiplicative quantum numbers that act as selection rules — intrinsic parities, the photon's C = −1, the C-parity argument fixing the pion's two-photon decay. Their product CPT is a theorem of any local relativistic field theory, forcing particle and antiparticle to share mass and lifetime.\n",{"path":14177,"title":14178,"module":14170,"summary":14179},"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak","Parity Violation and the Weak Force","The tau–theta puzzle forced a choice: two particles with identical mass but opposite parity, or one particle whose decay violates parity. Lee and Yang proposed the latter, Wu's polarized cobalt-60 confirmed it, and the violation proved maximal. The charged weak force couples only to left-handed chirality — the Goldhaber experiment showed the neutrino is left-handed — which is why the mirror image of a weak decay is something nature never produces.\n",{"path":14181,"title":14182,"module":14170,"summary":14183},"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry","Isospin, SU(2), and Flavor SU(3)","The near-equal masses of the proton and neutron, and of the three pions, signal a continuous internal symmetry of the strong force: isospin, an SU(2) whose ladder operators move between the members of a multiplet. Adding strangeness enlarges it to an approximate SU(3) flavor symmetry, and the Gell-Mann–Nishijima relation Q = I3 + Y\u002F2 places every hadron on a weight diagram in the isospin–hypercharge plane — the language in which the quark model is written.\n",{"path":14185,"title":14186,"module":14187,"summary":14188},"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3","The Eightfold Way and SU(3) Flavor","The Quark Model","Gell-Mann and Ne'eman's classification of the hadrons into geometric multiplets, read as representations of an approximate flavor SU(3). The fundamental triplet (u, d, s) and its antitriplet combine into the meson nonet from 3⊗3̄ = 8⊕1 and the baryon octet and decuplet from 3⊗3⊗3, and the empty corner of the decuplet forecast the Ω⁻.\n",{"path":14190,"title":14191,"module":14187,"summary":14192},"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy","Meson Multiplets and Quantum Numbers","Mesons as quark–antiquark bound states. The spin singlet and triplet, orbital excitations, and the assignment of J^PC from the quark spins and orbital angular momentum, giving the pseudoscalar and vector nonets. The η–η' and ω–φ mixing problems, and the charmonium and bottomonium spectra read as heavy-quark positronium.\n",{"path":14194,"title":14195,"module":14187,"summary":14196},"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy","Baryon Multiplets, Spin, and the Color Puzzle","Baryons as three-quark states, with a wavefunction factored into space, spin, flavor, and color. The spin-3\u002F2 Δ⁺⁺ = uuu forces a totally symmetric state that the Pauli principle forbids, and the resolution is an antisymmetric color factor — the first evidence for color. The octet and decuplet spin content, and baryon magnetic moments as a quantitative test of the model.\n",{"path":14198,"title":14199,"module":14187,"summary":14200},"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics","Color, Confinement, and Exotic Hadrons","Color as the gauged SU(3) charge, and the requirement that every physical hadron be a color singlet — which selects q-qbar mesons and qqq baryons as the simplest states. The R-ratio of e⁺e⁻ annihilation measures three colors directly. Beyond the simplest singlets lie glueballs, tetraquarks, and pentaquarks, and the recent XYZ states, read as either compact multiquarks or loose hadronic molecules.\n",{"path":14202,"title":14203,"module":14204,"summary":14205},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation","The Klein-Gordon Equation","Relativistic Wave Equations","Quantizing the relativistic energy relation $E^2 = p^2 + m^2$ produces the Klein-Gordon equation for a scalar field. Its plane-wave solutions come in positive- and negative-energy branches, and the conserved density it supplies is not positive-definite — the two difficulties that first drove physicists to seek a first-order equation. The static Klein-Gordon equation with a point source gives the Yukawa potential, and the free equation gives the scalar propagator that later modules attach to exchanged lines.\n",{"path":14207,"title":14208,"module":14204,"summary":14209},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors","The Dirac Equation and Spinors","Dirac demanded a wave equation first order in time to fix the Klein-Gordon density problem. Factorizing $E^2 = p^2 + m^2$ into a linear form forces the coefficients to be anticommuting matrices — the gamma matrices of the Clifford algebra — so the wavefunction becomes a four-component spinor. The plane-wave solutions split into two particle and two antiparticle states, spin appears automatically with the correct $g = 2$ magnetic moment, and the chirality projectors that the weak interaction later needs fall straight out of the fifth gamma matrix.\n",{"path":14211,"title":14212,"module":14204,"summary":14213},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory","Antiparticles and Hole Theory","The negative-energy solutions of the Dirac equation refuse to go away, so they must mean something. Dirac read them as a filled sea of occupied negative-energy states whose holes are positive-energy antiparticles, predicting the positron before its discovery. The picture works for fermions but not bosons, and the Feynman-Stückelberg interpretation replaces it: an antiparticle is a negative-energy solution propagating backward in time, equivalent to a positive-energy antiparticle going forward. Crossing symmetry ties incoming particles to outgoing antiparticles in a single amplitude.\n",{"path":14215,"title":14216,"module":14217,"summary":14218},"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed","Feynman Rules for QED","Quantum Electrodynamics","Quantum electrodynamics computes a process by summing diagrams, each a term in a power series in the coupling. Every diagram translates into an amplitude by a fixed dictionary: spinors and polarization vectors for external lines, propagators for internal lines, and the vertex factor $ie\\gamma^\\mu$ for each photon-fermion junction. Squaring the amplitude and feeding it to Fermi's golden rule produces a cross section or decay rate, with each extra vertex costing one power of $\\alpha$.\n",{"path":14220,"title":14221,"module":14217,"summary":14222},"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes","Tree-Level QED Processes","The Feynman rules become numbers on the reference reactions of QED. Muon pair production $e^+e^-\\to\\mu^+\\mu^-$ sets the scale with its $1+\\cos^2\\theta$ distribution and $4\\pi\\alpha^2\u002F3s$ total cross section, and its ratio to hadron production counts colors. Compton scattering gives the Klein-Nishina formula and the Thomson limit; Bhabha scattering shows $s$- and $t$-channel interference. Casimir's trick turns every spin-averaged square into a trace of gamma matrices.\n",{"path":14224,"title":14225,"module":14217,"summary":14226},"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling","Renormalization and the Running Coupling","Beyond tree level, QED loops diverge. The three primitive one-loop diagrams — vacuum polarization, electron self-energy, and vertex correction — carry ultraviolet divergences that regularization exposes as logarithms of a cutoff. Renormalization absorbs them into the measured mass, charge, and field normalization, leaving finite predictions. The surviving physical content is that the coupling runs: vacuum polarization screens charge, so $\\alpha$ grows from $1\u002F137$ at low energy to about $1\u002F128$ at the $Z$ mass.\n",{"path":14228,"title":14229,"module":14217,"summary":14230},"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2","The Anomalous Magnetic Moment","The Dirac equation predicts $g=2$; loops shift it. Schwinger's one-loop vertex correction gives the anomaly $a=(g-2)\u002F2=\\alpha\u002F2\\pi$, and the QED series continues to five loops. The electron $a_e$ agrees with theory to better than a part in a billion, the most precise confrontation of theory and experiment in physics. The muon $a_\\mu$, heavier and so more sensitive to virtual heavy states, is dominated by hadronic uncertainty and sits at the center of a long-running comparison with the Standard Model prediction.\n",{"path":14232,"title":14233,"module":14234,"summary":14235},"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak","The V–A Charged Weak Current","The Weak Interaction","Fermi modelled beta decay as a four-fermion contact interaction, but a coupling with dimensions of inverse mass squared makes cross sections grow without bound and the theory fails near 300 GeV. The cure is a heavy mediator: the $W$ boson, whose propagator collapses to Fermi's contact term at low energy and fixes $G_F\u002F\\sqrt2 = g^2\u002F8M_W^2$. Parity violation dictates the current's form — vector minus axial-vector, coupling only to left-chiral fields — and universality of the coupling ties muon decay, beta decay, and pion decay to one constant. Pion decay's helicity suppression of the electron channel is the sharpest test.\n",{"path":14237,"title":14238,"module":14234,"summary":14239},"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays","The W and Z Bosons","The contact theory hides a massive mediator. The charged $W^\\pm$ carries the current that changes flavour; the neutral $Z^0$ carries a current that does not. Both were found at CERN's proton–antiproton collider in 1983 at the masses the electroweak theory demanded. Their decay widths partition into leptonic and hadronic channels, and the $Z$ carries a decisive extra: an invisible width from decays to neutrinos that counts the number of light generations at exactly three. Beta decay and muon decay are re-read at the parton level as $W$ exchange.\n",{"path":14241,"title":14242,"module":14234,"summary":14243},"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix","Quark Mixing and the CKM Matrix","The quark eigenstates the weak force acts on are not the mass eigenstates. Cabibbo captured this with one rotation angle; the GIM mechanism added a fourth quark to cancel dangerous flavour-changing neutral currents and predicted charm before its discovery. Three generations promote the rotation to the unitary Cabibbo–Kobayashi–Maskawa matrix — three angles and one irreducible complex phase, the sole source of Standard-Model CP violation. The Wolfenstein parametrization exposes its steep hierarchy, and unitarity closes into a triangle whose area measures the phase.\n",{"path":14245,"title":14246,"module":14234,"summary":14247},"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons","CP Violation in Kaons and B Mesons","The neutral kaon is its own laboratory for CP. Weak box diagrams mix $K^0$ and its antiparticle into short- and long-lived states that should be pure CP eigenstates decaying to two and three pions. In 1964 Cronin and Fitch caught the long-lived kaon decaying to two pions — CP is violated, at the two-per-mille level of $\\epsilon$. Direct violation ($\\epsilon'$) followed, and the $B$ factories turned the CKM phase into a large, clean time-dependent asymmetry measuring $\\sin 2\\beta$. The effect is real but far too small to explain why the universe is made of matter.\n",{"path":14249,"title":14250,"module":14251,"summary":14252},"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons","Color SU(3), Gluons, and the QCD Lagrangian","Quantum Chromodynamics","Color is the exact gauged SU(3) charge of the strong force. Gauging it forces eight massless gluons in the adjoint representation and, because the gauge group is non-abelian, three- and four-gluon self-couplings absent from QED. This lesson builds the QCD Lagrangian from the covariant derivative and the non-abelian field strength, states the Feynman rules with their color factors, and computes the Casimir invariants that set the strength of quark-gluon and gluon-gluon coupling.\n",{"path":14254,"title":14255,"module":14251,"summary":14256},"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement","Asymptotic Freedom and Confinement","The QCD beta function is negative: gluon self-interaction antiscreens color, so the coupling weakens at short distance (asymptotic freedom) and strengthens at long distance (confinement). This lesson computes the one-loop beta coefficient, solves for the running of alpha_s and the emergent scale Lambda_QCD, and reads the strong-coupling regime as the linear quark-antiquark potential of a color flux tube that breaks by pair creation.\n",{"path":14258,"title":14259,"module":14251,"summary":14260},"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons","Deep Inelastic Scattering and the Parton Model","Scattering electrons hard off a proton resolves pointlike constituents. This lesson sets up the deep-inelastic kinematics, defines the structure functions F1 and F2, and reads Bjorken scaling as the signature of free spin-half partons. The Callan-Gross relation fixes the parton spin, the structure function becomes a charge-weighted sum of parton distributions, and the slow logarithmic scaling violations expose the gluon through DGLAP evolution.\n",{"path":14262,"title":14263,"module":14251,"summary":14264},"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization","Jets, Hadronization, and Testing QCD","Quarks and gluons produced in a collision fragment into collimated sprays of hadrons — jets — whose directions track the underlying partons. This lesson reads two-jet events as the quark and antiquark of electron-positron annihilation, three-jet events as direct evidence of the radiated gluon, and the hadronization step as the flux tube breaking into color singlets. Jet algorithms and event-shape variables turn the pattern into precision measurements of alpha_s.\n",{"path":14266,"title":14267,"module":14268,"summary":14269},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1","The Electroweak Theory","Electroweak Unification and the Higgs","The electromagnetic and weak interactions are two faces of a single gauge theory built on $SU(2)_L \\times U(1)_Y$. Left-handed fermions sit in weak-isospin doublets and right-handed fermions in singlets, each carrying a hypercharge fixed by the Gell-Mann–Nishijima relation $Q = T_3 + Y\u002F2$. The four gauge fields $W^{1,2,3}$ and $B$ mix: the charged combinations $W^\\pm$ mediate the charged current, while $W^3$ and $B$ rotate through the Weinberg angle into the massless photon and the massive $Z$. The single angle $\\theta_W$ ties the couplings, the boson masses, and the neutral-current strengths together.\n",{"path":14271,"title":14272,"module":14268,"summary":14273},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking","Spontaneous Symmetry Breaking","A symmetry of the Lagrangian need not be a symmetry of the ground state. When the lowest-energy configuration sits away from the symmetric point, the symmetry is spontaneously broken and the vacuum is one of a degenerate family. Breaking a continuous global symmetry produces one massless scalar — a Goldstone boson — for every broken generator, the flat direction along the vacuum manifold. The Mexican-hat potential and the ferromagnet below its Curie point are the working pictures.\n",{"path":14275,"title":14276,"module":14268,"summary":14277},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism","The Higgs Mechanism","Gauging a spontaneously broken symmetry converts the would-be Goldstone bosons into the longitudinal polarizations of the gauge fields, which thereby acquire mass. Applied to $SU(2)_L \\times U(1)_Y$ with a single Higgs doublet, three of the four scalar degrees of freedom are eaten by the $W^\\pm$ and $Z$; the fourth survives as the physical Higgs boson, and the photon stays massless. Fermion masses come from Yukawa couplings to the same field, each mass proportional to its coupling times the vacuum expectation value $v \\approx 246$ GeV.\n",{"path":14279,"title":14280,"module":14268,"summary":14281},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery","The Higgs Boson","The Higgs boson is produced at the LHC chiefly through gluon fusion, with vector-boson fusion and associated production as cleaner but rarer channels. It decays most often to $b\\bar b$ and $WW^\\ast$, but the discovery rested on two rare clean modes, $H \\to \\gamma\\gamma$ and $H \\to ZZ^\\ast \\to 4\\ell$, whose narrow invariant-mass peaks emerged over smooth backgrounds. ATLAS and CMS announced a boson near 125 GeV in 2012; its measured spin-parity $0^+$ and its couplings, which scale with particle mass, identify it as the Standard Model Higgs.\n",{"path":14283,"title":14284,"module":14268,"summary":14285},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model","The Standard Model","The Standard Model combines the quark model, quantum chromodynamics, and the electroweak theory. SU(3) symmetry sorts the hadrons and predicted the omega; color explains why only colorless quark combinations exist; QCD gives asymptotic freedom and confinement; and spontaneous symmetry breaking through the Higgs field gives the weak bosons their mass.\n",{"path":14287,"title":14288,"module":14289,"summary":14290},"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations","Neutrino Oscillations","Neutrino Physics","Neutrinos are produced and detected in flavour states, but they propagate as mass states, and the two bases are misaligned. A flavour therefore evolves coherently into a superposition of other flavours with a probability set by the mass-squared splitting and the ratio L\u002FE. This lesson derives the two-flavour oscillation formula, applies it to the solar and atmospheric neutrino deficits, shows how the SNO neutral-current measurement resolved the solar problem, and works out the MSW resonance that amplifies mixing inside the Sun.\n",{"path":14292,"title":14293,"module":14289,"summary":14294},"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns","Neutrino Mass and the PMNS Matrix","Three-flavour mixing promotes the single oscillation angle to the unitary Pontecorvo–Maki–Nakagawa–Sakata matrix, parametrised by three angles and a Dirac CP phase. This lesson decomposes the PMNS matrix into three rotations, records the measured angles and mass-squared splittings, lays out the normal and inverted mass orderings, contrasts the large leptonic mixing with the near-diagonal CKM matrix, and collects the absolute-mass bounds from beta decay and cosmology.\n",{"path":14296,"title":14297,"module":14289,"summary":14298},"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments","Dirac, Majorana, and Neutrino Experiments","A neutral fermion can carry a mass term forbidden to every charged particle, so the neutrino may be its own antiparticle. This lesson contrasts the Dirac and Majorana mass terms and their state content, derives the seesaw mechanism that ties a tiny light mass to a heavy right-handed partner, presents neutrinoless double-beta decay as the decisive lepton-number test, surveys the reactor, accelerator, solar, and atmospheric sources on a baseline–energy map, and explains why neutrino mass is physics beyond the original Standard Model.\n",{"path":14300,"title":14301,"module":14302,"summary":14303},"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity","Accelerators, Colliders, and Luminosity","Accelerators and Detectors","Fixed-target machines waste energy in the center-of-mass motion of the whole system, so the reachable $\\sqrt s$ grows only as the square root of the beam energy, while colliders put the full beam energy into the collision. Circular electron machines are limited by synchrotron radiation scaling as $E^4\u002Fm^4R$; proton machines are limited by bending fields. Luminosity, set by beam current and focusing, converts a cross section into an event rate through $R=\\mathcal L\\,\\sigma$, and integrated luminosity sets the total event count.\n",{"path":14305,"title":14306,"module":14302,"summary":14307},"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems","Particle Detectors and Subsystems","A detector reads a collision by the energy particles deposit as they cross matter. Charged particles ionize at the Bethe-Bloch rate, radiate in the field of nuclei above a critical energy, and emit Cherenkov light above a velocity threshold; electrons and photons build electromagnetic showers over a radiation length, and hadrons build wider showers over a nuclear interaction length. The onion of tracker, electromagnetic and hadronic calorimeters, and outer muon chambers turns these processes into momentum, energy, and identity, with neutrinos inferred from missing transverse momentum.\n",{"path":14309,"title":14310,"module":14302,"summary":14311},"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made","From Collisions to Discoveries","A discovery is a peak that survives statistics. Events are reconstructed into invariant masses, a signal accumulates as a bump over a smooth background, and its significance is judged by a p-value; the field's threshold is five sigma. The expected yield is a product — luminosity times cross section times branching ratio times acceptance and efficiency — that must be balanced by a trigger and data-reduction chain against an overwhelming rate. Worked reconstructions of $Z\\to\\ell\\ell$, the $J\u002F\\psi$, and the Higgs show the same peak-over-background logic at three scales.\n",{"path":14313,"title":14314,"module":14314,"summary":14315},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model","Beyond the Standard Model","The Standard Model leaves the four interactions ununified and the neutrinos massless, both now known to be wrong. Grand unification predicts the couplings merge near ten-to-the-sixteen GeV and the proton decays; supersymmetry pairs each particle with a superpartner; and the confirmed oscillation of neutrinos proves they carry mass, the first crack in the model.\n",{"path":14317,"title":14318,"module":14314,"summary":14319},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories","Grand Unified Theories and Proton Decay","The Standard Model gauge group is a product of three factors with three independent couplings. A grand unified theory embeds them in a single simple group — SU(5) is the minimal choice — so that one coupling runs into all three and the fractional quark charges follow from a tracelessness condition. The same embedding places quarks and leptons in shared multiplets, mediates baryon-number violation through superheavy gauge bosons, and predicts the proton decays with a lifetime that Super-Kamiokande has pushed past ten-to-the-thirty-four years.\n",{"path":14321,"title":14322,"module":14314,"summary":14323},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry","Supersymmetry","Supersymmetry relates fermions and bosons, pairing every Standard Model particle with a superpartner whose spin differs by one half. The pairing makes the scalar and fermion loop corrections to the Higgs mass cancel, removing the quadratic sensitivity to high scales; it sharpens the meeting of the three gauge couplings; and, when R-parity is conserved, it leaves the lightest superpartner stable and neutral, a natural dark-matter candidate. The LHC has excluded gluinos and light squarks below roughly two TeV.\n",{"path":14325,"title":14326,"module":14314,"summary":14327},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness","The Hierarchy Problem and Naturalness","The electroweak scale sits sixteen orders of magnitude below the Planck scale, and nothing in the Standard Model protects that gap. The Higgs mass squared picks up quadratic corrections proportional to the highest scale in the theory, so keeping it at the observed value requires the bare mass and its counterterm to cancel to some thirty significant figures. Naturalness treats that cancellation as a symptom of missing physics. Supersymmetry, compositeness, and extra dimensions each remove the quadratic sensitivity, but the LHC has found none of them at the predicted scale.\n",{"path":14329,"title":14330,"module":14314,"summary":14331},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates","Dark Matter and Particle Candidates","Flat galactic rotation curves, gravitational lensing, the cosmic microwave background, and structure formation all require about five times more matter than the visible baryons, none of it interacting electromagnetically. A stable weakly interacting particle of roughly weak-scale mass freezes out of the early universe with close to the observed abundance — the WIMP miracle — and is the leading candidate, with axions and sterile neutrinos as alternatives. Direct, indirect, and collider searches have so far only tightened the limits.\n",{"path":14333,"title":14334,"module":14314,"summary":14335},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions","Matter-Antimatter Asymmetry and Open Questions","The universe is made of matter, with about one extra baryon for every billion photons and no antimatter regions. Sakharov identified the three conditions any dynamical explanation must meet: baryon-number violation, C and CP violation, and a departure from thermal equilibrium. The Standard Model contains all three in principle, but its CP violation falls short by some ten orders of magnitude, so baryogenesis requires new physics — leptogenesis being the leading route. A closing survey collects the open questions and the experiments aimed at them.\n",{"path":14337,"title":14338,"module":6,"summary":6},"\u002Fparticle-physics","Particle Physics",{"path":14340,"title":14341,"module":14342,"summary":14343},"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars","The Sun and the Life of Stars","Orientation","The Sun is the one star close enough to study in detail: its luminosity fixes a surface temperature of 5780 K, and the proton-proton fusion cycle in its 1.5-million-kelvin core supplies its power. Measuring other stars needs the magnitude scale, parallax, and the distance ladder; plotting luminosity against temperature builds the Hertzsprung-Russell diagram, on which a star's mass sets its lifetime and its evolutionary track off the main sequence.\n",{"path":14345,"title":14346,"module":14342,"summary":14347},"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states","Cataclysmic Events and the Final States of Stars","A star's death is set by its mass. In close binaries, matter poured across the Roche lobe onto a white dwarf produces novae and, at the Chandrasekhar limit of 1.4 solar masses, a Type Ia supernova; a massive star fusing to an iron core collapses into a Type II supernova. The remnant is a white dwarf held by electron degeneracy, a neutron star held by neutron degeneracy, or, above the neutron-star limit, a black hole inside its Schwarzschild radius.\n",{"path":14349,"title":14350,"module":14342,"summary":14351},"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology","Galaxies, Cosmology, and the Evolving Universe","Galaxies come in elliptical, spiral, and irregular forms, and their redshifts obey Hubble's law, evidence that space itself is expanding. The critical density and the density parameter decide whether the universe is open, flat, or closed; baryons, dark matter, and dark energy each contribute. The cosmic microwave background and primordial helium anchor the Big Bang, whose thermal history runs from inflation through nucleosynthesis to the atoms of today.\n",{"path":14353,"title":14354,"module":14355,"summary":14356},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus","Magnitudes, Fluxes, and the Distance Modulus","Observational Foundations","The brightness of a star reaches us as a radiant flux that falls off as the inverse square of distance. The magnitude scale encodes flux logarithmically through the Pogson ratio; the apparent and absolute magnitudes differ by the distance modulus, which converts a measured brightness into a distance. The bolometric correction folds a filtered magnitude into a total luminosity, and the difference of two magnitudes in different bands, the color index, measures surface temperature.\n",{"path":14358,"title":14359,"module":14355,"summary":14360},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification","Stellar Spectra and Spectral Classification","A stellar spectrum is a continuum crossed by absorption lines whose strengths are set by the temperature of the atmosphere. The Boltzmann factor governs how atoms populate excited states, and the Saha equation governs how they ionize; their product explains why each line, such as the hydrogen Balmer series, peaks in strength at a characteristic temperature. This behavior orders stars into the OBAFGKM sequence, and the luminosity classes of the MK system add a second dimension for surface gravity.\n",{"path":14362,"title":14363,"module":14355,"summary":14364},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum","Telescopes and Detectors Across the Spectrum","A telescope collects light in proportion to its collecting area and resolves detail down to the diffraction limit set by its aperture and the observing wavelength. The atmosphere blurs and blocks large parts of the spectrum, which drives the choice between ground and space and between refractors, reflectors, and radio dishes. CCDs record the light with high quantum efficiency, and interferometry synthesizes an aperture as large as the separation of two telescopes.\n",{"path":14366,"title":14367,"module":14355,"summary":14368},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder","The Cosmic Distance Ladder","No single method measures distances from the nearest stars to the far reaches of the universe. Instead a ladder of overlapping techniques, each calibrated by the one below it, extends the scale rung by rung: trigonometric parallax, main-sequence fitting, pulsating variables, the tip of the red-giant branch, the Tully-Fisher relation, and Type Ia supernovae. Each rung inherits the uncertainty of every rung beneath it, so the whole chain sets the accuracy of the Hubble constant.\n",{"path":14370,"title":14371,"module":14372,"summary":14373},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity","Blackbody Radiation and Specific Intensity","Radiation and Matter","Specific intensity is the fundamental measure of a radiation field: energy per unit area, time, frequency, and solid angle. It is conserved along a ray in empty space, and its angular moments give the mean intensity, flux, and radiation pressure. In thermal equilibrium the intensity equals the Planck function, whose limits and integrals reproduce the Rayleigh-Jeans law, the Wien law, Stefan-Boltzmann, and Wien's displacement law.\n",{"path":14375,"title":14376,"module":14372,"summary":14377},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation","Radiative Transfer and the Transfer Equation","Along a ray, matter adds intensity through emission and removes it through absorption. Measuring path length in optical depth turns this into the transfer equation, whose formal solution superposes an attenuated background on the source function integrated along the line of sight. In local thermodynamic equilibrium the source function is the Planck function, and the Eddington-Barbier relation shows that the emergent intensity samples the source function at optical depth of order unity, explaining absorption lines and solar limb darkening.\n",{"path":14379,"title":14380,"module":14372,"summary":14381},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening","Spectral-Line Formation and Broadening","A spectral line is a bound-bound transition whose strength is set by an oscillator strength and whose shape is set by three broadening mechanisms: the Lorentzian natural and collisional wings, the Gaussian thermal Doppler core, and their Voigt convolution. Equivalent width measures the total absorption, and the curve of growth relates it to the number of absorbers through a linear, saturated, and damping regime, turning line strengths into abundances.\n",{"path":14383,"title":14384,"module":14372,"summary":14385},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean","Opacity Sources and the Rosseland Mean","Stellar opacity comes from four processes: bound-bound line absorption, bound-free photoionization, free-free absorption, and electron scattering. The bound-free and free-free terms follow a Kramers law, electron scattering sets a frequency-flat floor, and the negative hydrogen ion dominates cool photospheres. The Rosseland mean averages these harmonically, weighting transparent frequencies because they carry the flux, and its value fixes the radiative temperature gradient and decides where a star becomes convective.\n",{"path":14387,"title":14388,"module":14389,"summary":14390},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem","Hydrostatic Equilibrium and the Virial Theorem","Stellar Structure","A star holds itself up by balancing the inward pull of gravity against an outward pressure gradient. This balance, hydrostatic equilibrium, fixes a lower bound on the central pressure and, combined with the gravitational potential energy, yields the virial theorem. The virial relation gives a star a negative heat capacity, so that losing energy makes it hotter, and sets the Kelvin-Helmholtz timescale over which contraction alone can power the Sun.\n",{"path":14392,"title":14393,"module":14389,"summary":14394},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure","The Equations of Stellar Structure","A static star is described by four coupled first-order differential equations in the interior mass or radius: mass conservation, hydrostatic equilibrium, energy generation, and energy transport. Closed with an equation of state, opacity, and reaction rates, and subject to central and surface boundary conditions, they determine the structure uniquely from mass and composition, the Vogt-Russell theorem. Energy moves by radiation until the temperature gradient exceeds the Schwarzschild limit, where convection takes over.\n",{"path":14396,"title":14397,"module":14389,"summary":14398},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes","The Equation of State and Polytropes","Stellar pressure comes from gas, radiation, and, at high density, degenerate electrons. When pressure depends on density as a power law, hydrostatic equilibrium reduces to the Lane-Emden equation, whose solutions describe polytropes of index n. The relativistic degenerate case, n equal to three, gives a mass independent of radius, the Chandrasekhar mass. Eddington's standard model treats a radiation-supported star as an n equal to three polytrope and yields the quartic relating radiation fraction to mass.\n",{"path":14400,"title":14401,"module":14389,"summary":14402},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model","The Standard Solar Model","The standard solar model integrates the structure equations for one solar mass and calibrates the composition and convection parameter to reproduce the Sun's observed luminosity, radius, and age. Helioseismology tests the model's sound speed through the Sun's acoustic p-mode oscillations, and the model predicts a neutrino flux by production channel. The measured deficit, the solar-neutrino problem, is resolved by matter-enhanced flavor oscillation, confirmed when SNO measured the total flux across all flavors.\n",{"path":14404,"title":14405,"module":14406,"summary":14407},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak","Thermonuclear Reaction Rates and the Gamow Peak","Nuclear Astrophysics","Stellar fusion proceeds only by quantum tunneling through the Coulomb barrier, because thermal energies are a thousand times smaller than the barrier height. The reaction rate is an integral over the Maxwell–Boltzmann distribution and the tunneling probability, whose product is sharply peaked at the Gamow energy. The astrophysical S-factor isolates the nuclear physics from the barrier penetration, and the steep temperature dependence follows from the width and position of the Gamow peak.\n",{"path":14409,"title":14410,"module":14406,"summary":14411},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno","Hydrogen Burning: pp Chains and the CNO Cycle","Four protons fuse into one helium-4 nucleus, releasing 26.7 MeV, through two competing networks. The pp chain begins with a weak-interaction bottleneck and branches three ways; the CNO cycle uses carbon, nitrogen, and oxygen as catalysts and is limited by nitrogen-14 proton capture. Their steep and gentle temperature dependences cross near 1.8e7 K, which divides pp-powered lower-main-sequence stars from CNO-powered upper-main-sequence stars.\n",{"path":14413,"title":14414,"module":14406,"summary":14415},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process","Helium Burning and the Triple-Alpha Process","Helium fuses to carbon in two steps through the unbound beryllium-8 nucleus and a resonant excited state of carbon-12, the Hoyle state, whose existence was predicted from the observed carbon abundance. The rate scales as roughly the fortieth power of temperature, and in a degenerate low-mass core this drives the runaway helium flash. A competing alpha capture on carbon-12 sets the carbon-to-oxygen ratio and the composition of the resulting white dwarf.\n",{"path":14417,"title":14418,"module":14406,"summary":14419},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis","Advanced Burning, the Iron Peak, and the s\u002Fr Processes","Massive stars burn carbon, neon, oxygen, and silicon in ever-shorter stages, building an onion-shell interior and reaching nuclear statistical equilibrium at the iron peak, where the binding-energy-per-nucleon curve turns over and fusion can release no more energy. Elements beyond iron form by neutron capture: the slow s-process in AGB stars tracks the valley of stability, while the rapid r-process in supernovae and neutron-star mergers builds the heaviest nuclei far from it.\n",{"path":14421,"title":14422,"module":14423,"summary":14424},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium","The Phases of the Interstellar Medium","The Interstellar Medium","The gas between the stars separates into distinct thermal phases, from cold molecular clouds at 10 K to a diffuse million-degree corona, held near a common pressure by a balance of photoelectric heating and radiative cooling. Neutral hydrogen is traced by the 21-cm hyperfine line, dust reddens and extinguishes starlight along a characteristic wavelength law, and the ultraviolet output of hot stars carves ionized Strömgren spheres out of the surrounding gas.\n",{"path":14426,"title":14427,"module":14423,"summary":14428},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse","Molecular Clouds and Gravitational Collapse","Stars form in cold, dense molecular clouds when self-gravity overcomes thermal and magnetic support. The virial theorem fixes the Jeans mass and length at which a clump becomes unstable, the free-fall time sets how fast it collapses, and a fragmentation cascade — cut off at a minimum mass by the onset of opacity — turns one cloud into a whole cluster, imprinting the stellar initial mass function.\n",{"path":14430,"title":14431,"module":14423,"summary":14432},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence","Protostars and Pre-Main-Sequence Evolution","A collapsing core becomes optically thick and forms a protostar that grows by accretion through a disk while driving bipolar outflows. The newborn star appears on the birthline and contracts down the fully convective Hayashi track, then crosses the radiative Henyey track to the zero-age main sequence, powered by gravitational contraction until hydrogen ignites. Below about 0.08 solar masses degeneracy halts contraction before ignition, dividing stars from brown dwarfs.\n",{"path":14434,"title":14435,"module":14436,"summary":14437},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure","The Main Sequence and Its Structure","Stellar Evolution","A star settles onto the zero-age main sequence when core hydrogen ignition halts contraction. Homology scaling of the structure equations reproduces the mass–luminosity relation, and the burning mode splits the sequence into an upper branch with a convective core and a lower branch with a convective envelope. The main-sequence lifetime falls steeply with mass, and the turnoff of a coeval cluster serves as a clock.\n",{"path":14439,"title":14440,"module":14436,"summary":14441},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution","Post-Main-Sequence Evolution of Low-Mass Stars","When a low-mass star exhausts core hydrogen, burning moves to a shell, the core contracts, and the envelope swells into a red giant. A degenerate helium core ignites in a flash, settles onto the horizontal branch, and after a second contraction the star climbs the asymptotic giant branch with two burning shells. Thermal pulses and dredge-up enrich the surface, and mass loss ejects a planetary nebula, leaving a carbon–oxygen white dwarf.\n",{"path":14443,"title":14444,"module":14436,"summary":14445},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars","The Evolution of Massive Stars","Stars above about eight solar masses burn through hydrogen, helium, carbon, neon, oxygen, and silicon in stages that grow shorter as neutrino losses accelerate contraction. The interior becomes an onion of concentric burning shells around an inert iron core. Radiation pressure near the Eddington limit drives fierce winds that can strip the hydrogen envelope entirely, and silicon burning builds an iron core toward the threshold of collapse.\n",{"path":14447,"title":14448,"module":14436,"summary":14449},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip","Stellar Pulsation and the Instability Strip","Radial pulsation is a standing sound wave whose period scales inversely with the square root of the mean density. The kappa mechanism, an opacity valve seated in the helium partial-ionization zone, turns a star into a heat engine that pumps the oscillation. Stars in the instability strip pulsate as Cepheids, RR Lyrae, and Mira variables, and the Cepheid period–luminosity relation calibrates the distance ladder.\n",{"path":14451,"title":12867,"module":14452,"summary":14453},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit","Stellar Death and Compact Remnants","A white dwarf is held up by the degeneracy pressure of its electrons, a quantum-mechanical stiffness that survives to zero temperature. Filling the Fermi sea sets a pressure that scales as density to the five-thirds power when the electrons are slow and only four-thirds when they are relativistic. The softer relativistic law produces the inverted mass-radius relation and a maximum mass, the Chandrasekhar limit near 1.4 solar masses, above which no cold equilibrium exists. Cooling and crystallization then turn the white-dwarf population into a clock for the Galactic disk.\n",{"path":14455,"title":14456,"module":14452,"summary":14457},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae","Core-Collapse Supernovae","When a massive star builds an iron core past the Chandrasekhar mass, degeneracy fails and the core collapses in less than a second. Photodisintegration and electron capture remove pressure support and neutronize the matter; the collapse halts abruptly at nuclear density, launching a shock that stalls and is revived by neutrino heating. The event is a Type II or stripped-envelope Ib\u002FIc supernova, and the neutrinos from SN 1987A confirmed the picture directly.\n",{"path":14459,"title":14460,"module":14452,"summary":14461},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia","Thermonuclear Supernovae","A carbon-oxygen white dwarf driven toward the Chandrasekhar mass ignites its degenerate fuel and unbinds itself in a thermonuclear runaway, the Type Ia supernova. The light curve is powered by the radioactive decay of nickel-56 to cobalt-56 to iron-56, and the Phillips relation between peak brightness and decline rate makes these events standardizable candles. Their near-uniform luminosity turns them into the distance indicators that revealed cosmic acceleration.\n",{"path":14463,"title":14464,"module":14452,"summary":14465},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars","Neutron Stars and Pulsars","A neutron star is held up by neutron degeneracy and the repulsive nuclear force, with a maximum mass, the Tolman-Oppenheimer-Volkoff limit, set by an uncertain dense-matter equation of state. Its rotating magnetic dipole sweeps a beam past Earth as a pulsar, and magnetic braking traces a track across the period-period- derivative diagram. Millisecond pulsars, magnetars, glitches, and the orbital decay of the Hulse-Taylor binary follow from the same structure.\n",{"path":14467,"title":14468,"module":14452,"summary":14469},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr","Black Holes, Schwarzschild and Kerr","Above the neutron-star mass limit gravity wins completely and the remnant is a black hole. The Schwarzschild solution gives the event horizon, gravitational redshift, and time dilation; the innermost stable circular orbit sets the efficiency of accretion. Rotating Kerr black holes drag spacetime and carry an ergosphere. Stellar-mass black holes are found in X-ray binaries, and the Event Horizon Telescope has imaged the shadow of a supermassive one.\n",{"path":14471,"title":14472,"module":14473,"summary":14474},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer","Binary Systems and Mass Transfer","Binaries and Gravitational Waves","Most stars are born in pairs, and a binary is the only setting where a stellar mass can be measured directly. Visual, spectroscopic, and eclipsing binaries each expose a different combination of the orbital elements, and together they calibrate the mass-luminosity relation. When one star swells to fill its Roche lobe, gas streams through the inner Lagrange point onto its companion. Conservative transfer widens or shrinks the orbit depending on the mass ratio, and the sign of that response explains the Algol paradox.\n",{"path":14476,"title":14477,"module":14473,"summary":14478},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects","Accreting Compact Objects","Gas falling onto a compact object converts gravitational binding energy into radiation with an efficiency set by the depth of the potential well, up to tens of percent of the rest mass for a neutron star or black hole. Angular momentum forces the flow into a disk, and viscous dissipation gives a temperature profile that falls as radius to the minus three-quarters, producing a multicolor blackbody spectrum. Radiation pressure caps the steady luminosity at the Eddington limit. Unstable nuclear burning of the accreted fuel powers classical novae on white dwarfs and Type I X-ray bursts on neutron stars.\n",{"path":14480,"title":14481,"module":14473,"summary":14482},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries","Gravitational Waves from Inspiraling Binaries","A time-varying mass quadrupole radiates gravitational waves, ripples in spacetime that stretch and squeeze a ring of free masses along two polarizations. The radiated power drains a binary's orbital energy, shrinking the orbit and sweeping the wave frequency upward in a chirp whose rate fixes the chirp mass. Laser interferometers with kilometre arms measure the resulting strain of order ten to the minus twenty-one. The first detection, GW150914, matched a template for two merging black holes near thirty solar masses each.\n",{"path":14484,"title":14485,"module":14473,"summary":14486},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts","Multimessenger Astronomy and Gamma-Ray Bursts","Gamma-ray bursts split into two populations: long bursts from the collapse of massive stars and short bursts from merging compact objects. The compactness problem forces the emitting plasma to move at ultra-relativistic speed, beaming the radiation into a narrow jet. The neutron-star merger GW170817 tied a gravitational chirp to a short gamma-ray burst, a radioactive kilonova, and a broadband afterglow, confirming that mergers forge r-process elements. A merger with a measured redshift is a standard siren that reads the Hubble constant from gravitational data alone.\n",{"path":14488,"title":14489,"module":14490,"summary":14491},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way","The Milky Way Galaxy","Galaxies and Dark Matter","The Galaxy resolves into a thin disk of gas and young stars, a central bar and bulge, and a diffuse old halo studded with globular clusters. Star counts and the reddening of distant light map these components, while the differential rotation of the disk — encoded in the Oort constants and the flat rotation curve — measures the enclosed mass and reveals more than the stars can account for. Spiral arms are density waves, not material structures, and the innermost stellar orbits around Sgr A* weigh a four-million-solar-mass black hole.\n",{"path":14493,"title":14494,"module":14490,"summary":14495},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification","Galaxy Morphology and Classification","Galaxies sort along the Hubble tuning fork from smooth ellipticals through lenticulars to grand-design and barred spirals, with irregulars off the end. The light of a spheroid follows the de Vaucouleurs quarter-power law while a disk fades exponentially, and the general Sérsic profile interpolates between them. Virial scaling relations — Tully–Fisher for disks, Faber–Jackson and the fundamental plane for spheroids — tie luminosity to internal motions, and the Schechter function fixes the abundance of galaxies as a function of luminosity.\n",{"path":14497,"title":14498,"module":14490,"summary":14499},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter","Galaxy Rotation Curves and Dark Matter","The rotation curves of disk galaxies stay flat far beyond the light, demanding an extended halo whose density falls as the inverse square of radius. Decomposing the curve into disk, bulge, and halo, and fitting isothermal or NFW profiles, quantifies the missing mass. Gravitational lensing weighs the same mass without dynamics, the mass-to-light ratio climbs from stars to clusters, and the Bullet Cluster separates the collisionless dark matter from the colliding gas — evidence that MOND strains to match.\n",{"path":14501,"title":14502,"module":14490,"summary":14503},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes","Active Galactic Nuclei","A small fraction of galaxies pour out enormous luminosity from a region smaller than the solar system. Accretion onto a supermassive black hole, limited by the Eddington balance of radiation pressure and gravity, powers the Seyferts, quasars, radio galaxies, and blazars — one engine seen from different angles through an obscuring torus. Relativistic jets produce apparent superluminal motion, reverberation mapping and stellar dynamics weigh the central mass, and the M–sigma relation ties that mass to the host bulge.\n",{"path":14505,"title":14506,"module":14490,"summary":14507},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure","Galaxy Clusters and Large-Scale Structure","Galaxies gather into groups and rich clusters bound by a common dark halo and filled with hot X-ray gas. Three independent probes — the virial theorem, the hydrostatic X-ray temperature, and gravitational lensing — agree on a mass that dwarfs the stars. On the largest scales galaxies trace a cosmic web of filaments, walls, and voids, quantified by the two-point correlation function, whose baryon acoustic oscillation bump provides a standard ruler for cosmology.\n",{"path":14509,"title":14510,"module":14511,"summary":14512},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law","The Expanding Universe and Hubble's Law","Cosmic Expansion and Dynamics","The universe is homogeneous and isotropic on large scales, so its expansion is captured by a single function of time, the scale factor. Comoving coordinates stay fixed while proper distances grow in proportion to the scale factor, producing Hubble's law and a cosmological redshift that measures stretched space rather than a Doppler shift. A Newtonian energy argument reproduces the dynamics, and the same finite, expanding cosmos resolves Olbers' paradox.\n",{"path":14514,"title":14515,"module":14511,"summary":14516},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift","The FRW Metric and Cosmological Redshift","The geometry of a homogeneous, isotropic universe is fixed by symmetry to the Robertson-Walker metric, with the entire freedom reduced to a scale factor and a single curvature constant selecting an open, flat, or closed space. From the metric the null geodesic of light gives comoving distance, the exact cosmological redshift, and the distinction between the proper distance we cannot measure and the redshift we can.\n",{"path":14518,"title":11585,"module":14511,"summary":14519},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics","The scale factor obeys the Friedmann equation, the acceleration equation, and the fluid equation, only two of which are independent. An equation of state fixes how each component behaves under expansion, so radiation dilutes as the inverse fourth power of the scale factor, matter as the inverse cube, and vacuum energy not at all. The critical density defines the density parameters, and the deceleration parameter encodes whether gravity or dark energy is winning.\n",{"path":14521,"title":14522,"module":14511,"summary":14523},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances","Cosmological Models and Distances","Integrating the Friedmann equation for particular mixtures gives the benchmark models, from the matter-only Einstein-de Sitter universe to the concordance Lambda-CDM, each with its own scale-factor history and age. Because the redshift is the only direct observable, several distance measures diverge at high redshift, and the angular-diameter distance even turns over so that the most distant objects look larger. The horizon and lookback time set what is causally and observationally reachable.\n",{"path":14525,"title":14526,"module":14511,"summary":14527},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe","Dark Energy and the Accelerating Universe","In 1998 two teams found that distant Type Ia supernovae are fainter than a decelerating universe predicts, revealing that the expansion is accelerating and that a component with negative pressure dominates the energy budget. The simplest candidate is the cosmological constant, or vacuum energy, with an equation of state near minus one. It works observationally but leaves two deep puzzles: why the vacuum energy is a hundred and twenty orders of magnitude smaller than expected, and why it is comparable to the matter density just now.\n",{"path":14529,"title":14530,"module":14531,"summary":14532},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe","The Thermal History of the Universe","The Hot Big Bang","Running the expansion backward compresses and heats the universe, so its past is a sequence of thermal epochs set by temperature. Temperature scales as the inverse scale factor; species stay in equilibrium while their interaction rate exceeds the expansion rate and freeze out when it drops below. The effective degrees of freedom count the relativistic species and step down through mass thresholds, and neutrino decoupling just before electron-positron annihilation leaves a relic neutrino background slightly cooler than the photons.\n",{"path":14534,"title":14535,"module":14531,"summary":14536},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis","Big Bang Nucleosynthesis","In the first three minutes the weak interactions freeze out the neutron-to-proton ratio, and once deuterium survives photodissociation a fast reaction network converts nearly all free neutrons into helium-4. The primordial abundances of deuterium, helium-3, helium-4, and lithium-7 depend on a single free parameter, the baryon-to-photon ratio, so measuring them fixes the baryon density. The predictions match observation across nine decades of abundance, with a persistent discrepancy in lithium-7.\n",{"path":14538,"title":14539,"module":14531,"summary":14540},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background","Recombination and the Cosmic Microwave Background","As the universe cooled through a few thousand kelvin the free electrons bound to protons, and the Saha equation tracks the falling ionization fraction. Once the plasma neutralized, photons stopped scattering and streamed freely from a spherical surface of last scattering at redshift about 1100. Those photons are the cosmic microwave background, an almost perfect blackbody at 2.725 kelvin with a dipole from our motion through it.\n",{"path":14542,"title":14543,"module":14531,"summary":14544},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters","CMB Anisotropies and Cosmological Parameters","The cosmic microwave background carries temperature fluctuations at the ten-parts-per-million level, imprinted by sound waves in the photon-baryon plasma before recombination. Decomposed into spherical harmonics, the fluctuations form an angular power spectrum whose acoustic peaks encode the geometry and contents of the universe: the first peak fixes spatial flatness, the odd-even peak ratio the baryon density, and the third peak the dark-matter density. Polarization adds an independent channel, and the Planck measurements pin the concordance parameters.\n",{"path":14546,"title":14547,"module":14531,"summary":14548},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation","Cosmic Inflation","The hot Big Bang leaves three initial-condition puzzles unexplained: why causally disconnected patches share a temperature, why the geometry is so nearly flat, and why no magnetic monopoles are seen. A brief epoch of accelerated expansion driven by a slowly rolling scalar field solves all three by stretching a small causal patch across the observable universe. The same accelerated expansion freezes quantum fluctuations into a near-scale-invariant spectrum of density perturbations, seeding all later structure.\n",{"path":14550,"title":14551,"module":14531,"summary":14552},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations","Structure Formation and the Growth of Perturbations","The near-uniform early universe grew its galaxies and clusters by gravitational instability acting on the tiny inflationary perturbations. In an expanding background the growth is slowed to a power law rather than the exponential of a static medium; perturbations stall during radiation domination and grow with the scale factor once matter dominates. The transfer function turns the primordial spectrum into the processed matter power spectrum, and cold dark matter builds structure from the bottom up.\n",{"path":14554,"title":14555,"module":14531,"summary":14556},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions","Dark Matter, Dark Energy, and Open Questions","Five independent lines of evidence converge on a universe whose energy budget is dominated by dark energy and dark matter, with ordinary baryons a small remainder. The candidate particles for dark matter range from WIMPs to axions to sterile neutrinos, each with its own detection strategy. The concordance model fits the data with six parameters but leaves the nature of dark energy, the Hubble tension, small-scale structure, and the matter-antimatter asymmetry unexplained.\n",{"path":14558,"title":14559,"module":6,"summary":6},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":14561,"title":14562,"module":6,"summary":6},"\u002Fcolophon","Colophon",{"path":281,"title":14564,"module":6,"summary":6},"Study Notes",[14566,14583,14597,14610,14644,14666,14701,14715,14741,14753,14771,14783],{"module":9887,"moduleNumber":825,"slug":14567,"lessons":14568},"foundations",[14569,14572,14574,14576,14578,14581],{"title":9886,"path":9885,"lessonNumber":825,"topics":14570,"summary":9888},[9887,14571],"Correctness & Induction",{"title":9891,"path":9890,"lessonNumber":831,"topics":14573,"summary":9892},[9887,14571],{"title":9895,"path":9894,"lessonNumber":837,"topics":14575,"summary":9896},[9895],{"title":9899,"path":9898,"lessonNumber":843,"topics":14577,"summary":9900},[9895],{"title":9903,"path":9902,"lessonNumber":849,"topics":14579,"summary":9904},[14580],"Recurrences",{"title":9907,"path":9906,"lessonNumber":855,"topics":14582,"summary":9908},[9907],{"module":9911,"moduleNumber":831,"slug":14584,"lessons":14585},"divide-and-conquer",[14586,14588,14591,14594],{"title":9910,"path":22,"lessonNumber":825,"topics":14587,"summary":9912},[9911,8970],{"title":9914,"path":148,"lessonNumber":831,"topics":14589,"summary":9915},[8970,14590],"Probabilistic Analysis",{"title":9918,"path":9917,"lessonNumber":837,"topics":14592,"summary":9919},[14593,9911],"Order Statistics",{"title":9922,"path":9921,"lessonNumber":843,"topics":14595,"summary":9923},[9911,14596],"Arithmetic",{"module":8937,"moduleNumber":837,"slug":14598,"lessons":14599},"sorting",[14600,14603,14605,14608],{"title":9925,"path":17,"lessonNumber":825,"topics":14601,"summary":9926},[14602,8970],"Heaps",{"title":9929,"path":9928,"lessonNumber":831,"topics":14604,"summary":9930},[8970],{"title":9932,"path":27,"lessonNumber":837,"topics":14606,"summary":9933},[14607],"Linear-Time Sorting",{"title":5,"path":8938,"lessonNumber":843,"topics":14609,"summary":8968},[5,8970],{"module":9938,"moduleNumber":843,"slug":14611,"lessons":14612},"data-structures",[14613,14616,14619,14621,14624,14626,14629,14632,14634,14637,14639,14642],{"title":9937,"path":9936,"lessonNumber":825,"topics":14614,"summary":9939},[14615],"Linear Structures",{"title":9942,"path":9941,"lessonNumber":831,"topics":14617,"summary":9943},[14618],"Hashing",{"title":9946,"path":9945,"lessonNumber":837,"topics":14620,"summary":9947},[9946],{"title":9950,"path":9949,"lessonNumber":843,"topics":14622,"summary":9951},[14623],"Balanced Trees",{"title":9954,"path":9953,"lessonNumber":849,"topics":14625,"summary":9955},[14623],{"title":9958,"path":9957,"lessonNumber":855,"topics":14627,"summary":9959},[14628,9907],"Disjoint Sets",{"title":9962,"path":9961,"lessonNumber":861,"topics":14630,"summary":9963},[14631],"Range Queries",{"title":9966,"path":9965,"lessonNumber":867,"topics":14633,"summary":9967},[9966],{"title":9970,"path":9969,"lessonNumber":873,"topics":14635,"summary":9971},[14636],"Probabilistic Structures",{"title":9973,"path":7198,"lessonNumber":879,"topics":14638,"summary":9974},[14623],{"title":9977,"path":9976,"lessonNumber":885,"topics":14640,"summary":9978},[14641,14618],"Streaming Algorithms",{"title":9981,"path":9980,"lessonNumber":891,"topics":14643,"summary":9982},[14641,14618],{"module":9986,"moduleNumber":849,"slug":14645,"lessons":14646},"sequences",[14647,14650,14652,14654,14657,14660,14662,14664],{"title":9985,"path":9984,"lessonNumber":825,"topics":14648,"summary":9987},[14649],"Array Techniques",{"title":9990,"path":9989,"lessonNumber":831,"topics":14651,"summary":9991},[14649],{"title":9994,"path":9993,"lessonNumber":837,"topics":14653,"summary":9995},[14649],{"title":9998,"path":9997,"lessonNumber":843,"topics":14655,"summary":9999},[14656],"Searching",{"title":10002,"path":10001,"lessonNumber":849,"topics":14658,"summary":10003},[14659],"Strings",{"title":10006,"path":10005,"lessonNumber":855,"topics":14661,"summary":10007},[14659],{"title":10010,"path":10009,"lessonNumber":861,"topics":14663,"summary":10011},[14659],{"title":10014,"path":10013,"lessonNumber":867,"topics":14665,"summary":10015},[14659],{"module":10019,"moduleNumber":855,"slug":14667,"lessons":14668},"graphs",[14669,14673,14675,14677,14679,14682,14684,14686,14688,14691,14693,14695,14697,14699],{"title":10018,"path":10017,"lessonNumber":825,"topics":14670,"summary":10020},[14671,14672],"Graph Representations","Graph Traversal",{"title":10023,"path":10022,"lessonNumber":831,"topics":14674,"summary":10024},[14672,10023],{"title":10027,"path":10026,"lessonNumber":837,"topics":14676,"summary":10028},[14672],{"title":10031,"path":10030,"lessonNumber":843,"topics":14678,"summary":10032},[10031],{"title":10035,"path":10034,"lessonNumber":849,"topics":14680,"summary":10036},[10031,14681],"Union-Find",{"title":10039,"path":10038,"lessonNumber":855,"topics":14683,"summary":10040},[10039],{"title":10043,"path":10042,"lessonNumber":861,"topics":14685,"summary":10044},[10039,10097],{"title":10047,"path":10046,"lessonNumber":867,"topics":14687,"summary":10048},[10047],{"title":10051,"path":10050,"lessonNumber":873,"topics":14689,"summary":10052},[10047,14690,10071],"Min Cut",{"title":10055,"path":10054,"lessonNumber":879,"topics":14692,"summary":10056},[10019],{"title":10059,"path":10058,"lessonNumber":885,"topics":14694,"summary":10060},[10019],{"title":10063,"path":10062,"lessonNumber":891,"topics":14696,"summary":10064},[10019],{"title":10067,"path":10066,"lessonNumber":897,"topics":14698,"summary":10068},[10019],{"title":10071,"path":10070,"lessonNumber":1359,"topics":14700,"summary":10072},[10019],{"module":10076,"moduleNumber":861,"slug":14702,"lessons":14703},"greedy",[14704,14706,14709,14711,14713],{"title":10075,"path":10074,"lessonNumber":825,"topics":14705,"summary":10077},[10076],{"title":10080,"path":10079,"lessonNumber":831,"topics":14707,"summary":10081},[14708],"Greedy",{"title":10084,"path":10083,"lessonNumber":837,"topics":14710,"summary":10085},[10076],{"title":10088,"path":10087,"lessonNumber":843,"topics":14712,"summary":10089},[14708],{"title":10092,"path":10091,"lessonNumber":849,"topics":14714,"summary":10093},[14708],{"module":10097,"moduleNumber":867,"slug":14716,"lessons":14717},"dynamic-programming",[14718,14720,14723,14725,14727,14729,14731,14733,14735,14737,14739],{"title":10096,"path":10095,"lessonNumber":825,"topics":14719,"summary":10098},[10097,14580],{"title":10101,"path":10100,"lessonNumber":831,"topics":14721,"summary":10102},[10097,14722],"String Structures",{"title":10105,"path":10104,"lessonNumber":837,"topics":14724,"summary":10106},[10097],{"title":10109,"path":10108,"lessonNumber":843,"topics":14726,"summary":10110},[10097],{"title":10113,"path":10112,"lessonNumber":849,"topics":14728,"summary":10114},[10097],{"title":10117,"path":10116,"lessonNumber":855,"topics":14730,"summary":10118},[10097],{"title":10121,"path":10120,"lessonNumber":861,"topics":14732,"summary":10122},[10097],{"title":10125,"path":10124,"lessonNumber":867,"topics":14734,"summary":10126},[10097],{"title":10129,"path":10128,"lessonNumber":873,"topics":14736,"summary":10130},[10097],{"title":10133,"path":10132,"lessonNumber":879,"topics":14738,"summary":10134},[10097],{"title":10137,"path":10136,"lessonNumber":885,"topics":14740,"summary":10138},[10097],{"module":10142,"moduleNumber":873,"slug":14742,"lessons":14743},"backtracking",[14744,14747,14749,14751],{"title":10141,"path":10140,"lessonNumber":825,"topics":14745,"summary":10143},[14746],"Backtracking",{"title":10146,"path":10145,"lessonNumber":831,"topics":14748,"summary":10147},[14746],{"title":10150,"path":10149,"lessonNumber":837,"topics":14750,"summary":10151},[14746],{"title":10154,"path":10153,"lessonNumber":843,"topics":14752,"summary":10155},[14746],{"module":10159,"moduleNumber":879,"slug":14754,"lessons":14755},"mathematical-algorithms",[14756,14759,14761,14763,14765,14767,14769],{"title":10158,"path":10157,"lessonNumber":825,"topics":14757,"summary":10160},[14758],"Number Theory",{"title":10163,"path":10162,"lessonNumber":831,"topics":14760,"summary":10164},[14758],{"title":10167,"path":10166,"lessonNumber":837,"topics":14762,"summary":10168},[14758],{"title":10171,"path":10170,"lessonNumber":843,"topics":14764,"summary":10172},[14758],{"title":10175,"path":10174,"lessonNumber":849,"topics":14766,"summary":10176},[14758],{"title":10179,"path":10178,"lessonNumber":855,"topics":14768,"summary":10180},[14758],{"title":10183,"path":10182,"lessonNumber":861,"topics":14770,"summary":10184},[14758],{"module":10188,"moduleNumber":885,"slug":14772,"lessons":14773},"computational-geometry",[14774,14777,14779,14781],{"title":10187,"path":10186,"lessonNumber":825,"topics":14775,"summary":10189},[14776],"Geometry",{"title":10192,"path":10191,"lessonNumber":831,"topics":14778,"summary":10193},[14776],{"title":10196,"path":10195,"lessonNumber":837,"topics":14780,"summary":10197},[14776],{"title":10200,"path":10199,"lessonNumber":843,"topics":14782,"summary":10201},[14776],{"module":10205,"moduleNumber":891,"slug":14784,"lessons":14785},"intractability",[14786,14788,14790,14794],{"title":10204,"path":10203,"lessonNumber":825,"topics":14787,"summary":10206},[10209],{"title":10209,"path":10208,"lessonNumber":831,"topics":14789,"summary":10210},[10209],{"title":10213,"path":10212,"lessonNumber":837,"topics":14791,"summary":10214},[14792,14793],"Approximation","Heuristics",{"title":10217,"path":10216,"lessonNumber":843,"topics":14795,"summary":10218},[14792,10209],"\u003Csvg style=\"width:100%;max-width:427.351px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 320.513 132.476\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg transform=\"translate(-30.708 -83.685)\">\u003Cpath d=\"M1.877 36.765L0.325 36.765L0.325 36.485Q0.551 36.485 0.700 36.451Q0.848 36.416 0.848 36.276L0.848 34.427Q0.848 34.239 0.800 34.155Q0.753 34.072 0.655 34.053Q0.558 34.034 0.346 34.034L0.346 33.754L1.402 33.679L1.402 36.276Q1.402 36.416 1.534 36.451Q1.665 36.485 1.877 36.485L1.877 36.765M0.606 32.458Q0.606 32.287 0.729 32.168Q0.852 32.048 1.023 32.048Q1.190 32.048 1.313 32.168Q1.436 32.287 1.436 32.458Q1.436 32.633 1.313 32.756Q1.190 32.879 1.023 32.879Q0.852 32.879 0.729 32.756Q0.606 32.633 0.606 32.458M4.205 36.765L2.571 36.765L2.571 36.485Q2.800 36.485 2.949 36.451Q3.097 36.416 3.097 36.276L3.097 34.427Q3.097 34.157 2.990 34.096Q2.882 34.034 2.571 34.034L2.571 33.754L3.631 33.679L3.631 34.328Q3.801 34.020 4.106 33.849Q4.410 33.679 4.755 33.679Q5.261 33.679 5.545 33.902Q5.828 34.126 5.828 34.622L5.828 36.276Q5.828 36.413 5.977 36.449Q6.126 36.485 6.351 36.485L6.351 36.765L4.721 36.765L4.721 36.485Q4.950 36.485 5.099 36.451Q5.247 36.416 5.247 36.276L5.247 34.636Q5.247 34.301 5.128 34.101Q5.008 33.901 4.694 33.901Q4.424 33.901 4.189 34.037Q3.955 34.174 3.817 34.408Q3.678 34.642 3.678 34.916L3.678 36.276Q3.678 36.413 3.829 36.449Q3.979 36.485 4.205 36.485L4.205 36.765M8.583 38.122L6.953 38.122L6.953 37.842Q7.182 37.842 7.331 37.807Q7.479 37.773 7.479 37.633L7.479 34.287Q7.479 34.116 7.342 34.075Q7.206 34.034 6.953 34.034L6.953 33.754L8.033 33.679L8.033 34.085Q8.255 33.884 8.542 33.781Q8.829 33.679 9.137 33.679Q9.564 33.679 9.928 33.892Q10.292 34.106 10.506 34.470Q10.719 34.834 10.719 35.254Q10.719 35.699 10.480 36.063Q10.241 36.427 9.848 36.630Q9.455 36.833 9.010 36.833Q8.744 36.833 8.496 36.733Q8.248 36.632 8.060 36.451L8.060 37.633Q8.060 37.770 8.209 37.806Q8.358 37.842 8.583 37.842L8.583 38.122M8.060 34.434L8.060 36.044Q8.194 36.297 8.436 36.454Q8.679 36.611 8.956 36.611Q9.284 36.611 9.537 36.410Q9.790 36.208 9.923 35.890Q10.056 35.572 10.056 35.254Q10.056 35.025 9.991 34.796Q9.926 34.567 9.798 34.369Q9.670 34.171 9.475 34.051Q9.280 33.932 9.048 33.932Q8.754 33.932 8.486 34.061Q8.217 34.191 8.060 34.434M11.929 35.931L11.929 34.427Q11.929 34.157 11.822 34.096Q11.714 34.034 11.403 34.034L11.403 33.754L12.510 33.679L12.510 35.911L12.510 35.931Q12.510 36.211 12.562 36.355Q12.613 36.498 12.755 36.555Q12.897 36.611 13.184 36.611Q13.437 36.611 13.642 36.471Q13.847 36.331 13.963 36.105Q14.079 35.880 14.079 35.630L14.079 34.427Q14.079 34.157 13.972 34.096Q13.864 34.034 13.553 34.034L13.553 33.754L14.660 33.679L14.660 36.092Q14.660 36.283 14.713 36.365Q14.766 36.447 14.867 36.466Q14.968 36.485 15.183 36.485L15.183 36.765L14.107 36.833L14.107 36.269Q13.997 36.451 13.852 36.574Q13.707 36.697 13.520 36.765Q13.334 36.833 13.133 36.833Q11.929 36.833 11.929 35.931M16.298 35.924L16.298 34.027L15.658 34.027L15.658 33.805Q15.976 33.805 16.193 33.595Q16.410 33.385 16.511 33.075Q16.612 32.766 16.612 32.458L16.879 32.458L16.879 33.747L17.955 33.747L17.955 34.027L16.879 34.027L16.879 35.911Q16.879 36.187 16.983 36.386Q17.087 36.584 17.347 36.584Q17.504 36.584 17.610 36.480Q17.716 36.375 17.766 36.222Q17.815 36.068 17.815 35.911L17.815 35.497L18.082 35.497L18.082 35.924Q18.082 36.150 17.983 36.360Q17.883 36.570 17.699 36.702Q17.514 36.833 17.285 36.833Q16.848 36.833 16.573 36.596Q16.298 36.358 16.298 35.924\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M-8.59-40.057H8.482V-57.13H-8.59Z\"\u002F>\u003Cg transform=\"translate(-3.986 -83.103)\">\u003Cpath d=\"M0.753 36.003L0.722 36.003Q0.859 36.300 1.156 36.476Q1.453 36.652 1.781 36.652Q2.144 36.652 2.371 36.474Q2.598 36.297 2.692 36.008Q2.786 35.719 2.786 35.357Q2.786 35.042 2.732 34.757Q2.677 34.472 2.504 34.266Q2.332 34.061 2.017 34.061Q1.744 34.061 1.561 34.128Q1.378 34.195 1.274 34.284Q1.170 34.372 1.074 34.482Q0.978 34.591 0.934 34.601L0.855 34.601Q0.783 34.584 0.766 34.513L0.766 32.195Q0.766 32.161 0.790 32.139Q0.814 32.117 0.848 32.117L0.876 32.117Q1.163 32.233 1.431 32.287Q1.699 32.342 1.976 32.342Q2.253 32.342 2.523 32.287Q2.793 32.233 3.073 32.117L3.097 32.117Q3.132 32.117 3.155 32.140Q3.179 32.164 3.179 32.195L3.179 32.264Q3.179 32.291 3.159 32.311Q2.885 32.626 2.501 32.802Q2.116 32.978 1.703 32.978Q1.364 32.978 1.047 32.892L1.047 34.174Q1.443 33.839 2.017 33.839Q2.421 33.839 2.757 34.049Q3.094 34.260 3.287 34.612Q3.480 34.964 3.480 35.364Q3.480 35.695 3.340 35.981Q3.200 36.266 2.956 36.476Q2.711 36.686 2.409 36.796Q2.106 36.905 1.788 36.905Q1.429 36.905 1.103 36.741Q0.777 36.577 0.582 36.285Q0.387 35.993 0.387 35.630Q0.387 35.480 0.493 35.374Q0.599 35.268 0.753 35.268Q0.906 35.268 1.011 35.372Q1.115 35.476 1.115 35.630Q1.115 35.787 1.011 35.895Q0.906 36.003 0.753 36.003M7.254 36.765L4.369 36.765L4.369 36.563Q4.369 36.533 4.396 36.505L5.644 35.288Q5.716 35.213 5.758 35.171Q5.801 35.128 5.880 35.049Q6.293 34.636 6.524 34.278Q6.755 33.921 6.755 33.497Q6.755 33.265 6.676 33.062Q6.597 32.858 6.456 32.708Q6.314 32.557 6.119 32.477Q5.924 32.397 5.692 32.397Q5.381 32.397 5.123 32.556Q4.864 32.715 4.735 32.992L4.755 32.992Q4.923 32.992 5.030 33.103Q5.138 33.214 5.138 33.378Q5.138 33.535 5.029 33.648Q4.919 33.761 4.755 33.761Q4.594 33.761 4.482 33.648Q4.369 33.535 4.369 33.378Q4.369 33.002 4.577 32.715Q4.786 32.428 5.121 32.272Q5.456 32.117 5.811 32.117Q6.235 32.117 6.614 32.275Q6.994 32.434 7.228 32.751Q7.462 33.067 7.462 33.497Q7.462 33.808 7.322 34.077Q7.182 34.345 6.977 34.550Q6.772 34.755 6.409 35.037Q6.047 35.319 5.938 35.415L5.083 36.143L5.726 36.143Q5.989 36.143 6.278 36.141Q6.567 36.140 6.785 36.131Q7.004 36.122 7.021 36.105Q7.083 36.040 7.120 35.873Q7.158 35.705 7.196 35.463L7.462 35.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M9.05-40.057h17.072V-57.13H9.051Z\"\u002F>\u003Cg transform=\"translate(13.654 -83.103)\">\u003Cpath d=\"M0.742 36.218Q0.862 36.375 1.053 36.474Q1.245 36.574 1.460 36.613Q1.675 36.652 1.898 36.652Q2.195 36.652 2.390 36.497Q2.585 36.341 2.675 36.087Q2.766 35.832 2.766 35.548Q2.766 35.254 2.674 35.003Q2.581 34.752 2.383 34.596Q2.185 34.441 1.891 34.441L1.375 34.441Q1.347 34.441 1.322 34.415Q1.296 34.390 1.296 34.366L1.296 34.294Q1.296 34.263 1.322 34.241Q1.347 34.219 1.375 34.219L1.816 34.188Q2.178 34.188 2.398 33.831Q2.619 33.473 2.619 33.084Q2.619 32.756 2.424 32.552Q2.229 32.349 1.898 32.349Q1.611 32.349 1.358 32.433Q1.105 32.516 0.941 32.704Q1.088 32.704 1.188 32.819Q1.289 32.933 1.289 33.084Q1.289 33.234 1.183 33.344Q1.077 33.453 0.920 33.453Q0.759 33.453 0.650 33.344Q0.541 33.234 0.541 33.084Q0.541 32.759 0.749 32.540Q0.958 32.322 1.274 32.219Q1.590 32.117 1.898 32.117Q2.216 32.117 2.544 32.221Q2.872 32.325 3.099 32.547Q3.326 32.769 3.326 33.084Q3.326 33.518 3.039 33.843Q2.752 34.167 2.318 34.314Q2.629 34.379 2.909 34.545Q3.190 34.711 3.367 34.969Q3.545 35.227 3.545 35.548Q3.545 35.958 3.301 36.268Q3.056 36.577 2.675 36.741Q2.294 36.905 1.898 36.905Q1.529 36.905 1.171 36.792Q0.814 36.680 0.570 36.430Q0.325 36.181 0.325 35.811Q0.325 35.640 0.442 35.528Q0.558 35.415 0.729 35.415Q0.838 35.415 0.929 35.466Q1.019 35.517 1.074 35.610Q1.129 35.702 1.129 35.811Q1.129 35.979 1.016 36.098Q0.903 36.218 0.742 36.218M7.254 36.765L4.724 36.765L4.724 36.485Q5.692 36.485 5.692 36.276L5.692 32.657Q5.299 32.845 4.676 32.845L4.676 32.564Q5.093 32.564 5.457 32.463Q5.821 32.363 6.078 32.117L6.204 32.117Q6.269 32.134 6.286 32.202L6.286 36.276Q6.286 36.485 7.254 36.485\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M26.691-40.057h17.072V-57.13H26.69Z\"\u002F>\u003Cg transform=\"translate(31.295 -83.103)\">\u003Cpath d=\"M2.263 35.617L0.219 35.617L0.219 35.336L2.550 32.164Q2.585 32.117 2.650 32.117L2.786 32.117Q2.831 32.117 2.858 32.144Q2.885 32.171 2.885 32.216L2.885 35.336L3.648 35.336L3.648 35.617L2.885 35.617L2.885 36.276Q2.885 36.485 3.641 36.485L3.641 36.765L1.508 36.765L1.508 36.485Q2.263 36.485 2.263 36.276L2.263 35.617M2.311 32.892L0.520 35.336L2.311 35.336L2.311 32.892M5.917 36.905Q5.281 36.905 4.917 36.560Q4.553 36.215 4.418 35.690Q4.283 35.165 4.283 34.540Q4.283 33.515 4.639 32.816Q4.994 32.117 5.917 32.117Q6.843 32.117 7.196 32.816Q7.548 33.515 7.548 34.540Q7.548 35.165 7.413 35.690Q7.278 36.215 6.915 36.560Q6.553 36.905 5.917 36.905M5.917 36.680Q6.355 36.680 6.568 36.305Q6.782 35.931 6.831 35.464Q6.881 34.998 6.881 34.420Q6.881 33.867 6.831 33.439Q6.782 33.012 6.570 32.677Q6.358 32.342 5.917 32.342Q5.575 32.342 5.372 32.549Q5.169 32.756 5.081 33.068Q4.994 33.381 4.972 33.697Q4.950 34.014 4.950 34.420Q4.950 34.837 4.972 35.179Q4.994 35.521 5.083 35.869Q5.172 36.218 5.377 36.449Q5.582 36.680 5.917 36.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M44.332-40.057h17.071V-57.13H44.332Z\"\u002F>\u003Cg transform=\"translate(48.936 -83.103)\">\u003Cpath d=\"M3.272 36.765L0.742 36.765L0.742 36.485Q1.710 36.485 1.710 36.276L1.710 32.657Q1.317 32.845 0.695 32.845L0.695 32.564Q1.112 32.564 1.476 32.463Q1.840 32.363 2.096 32.117L2.222 32.117Q2.287 32.134 2.304 32.202L2.304 36.276Q2.304 36.485 3.272 36.485L3.272 36.765M4.902 36.451Q5.022 36.567 5.199 36.609Q5.377 36.652 5.592 36.652Q5.832 36.652 6.042 36.543Q6.252 36.433 6.406 36.251Q6.560 36.068 6.659 35.835Q6.826 35.408 6.826 34.588Q6.676 34.882 6.413 35.061Q6.150 35.241 5.832 35.241Q5.398 35.241 5.051 35.032Q4.704 34.824 4.506 34.463Q4.307 34.102 4.307 33.679Q4.307 33.344 4.437 33.055Q4.567 32.766 4.798 32.552Q5.029 32.339 5.328 32.228Q5.627 32.117 5.958 32.117Q6.816 32.117 7.172 32.831Q7.527 33.545 7.527 34.502Q7.527 34.919 7.399 35.347Q7.271 35.774 7.014 36.129Q6.758 36.485 6.396 36.695Q6.033 36.905 5.592 36.905Q5.138 36.905 4.820 36.717Q4.502 36.529 4.502 36.105Q4.502 35.955 4.601 35.856Q4.700 35.757 4.851 35.757Q4.919 35.757 4.986 35.784Q5.052 35.811 5.097 35.856Q5.141 35.900 5.169 35.967Q5.196 36.034 5.196 36.105Q5.196 36.235 5.116 36.333Q5.035 36.430 4.902 36.451M5.873 35.015Q6.167 35.015 6.382 34.837Q6.597 34.660 6.705 34.384Q6.813 34.109 6.813 33.819Q6.813 33.774 6.811 33.747Q6.809 33.720 6.806 33.685Q6.809 33.675 6.811 33.668Q6.813 33.661 6.813 33.651Q6.813 33.149 6.614 32.749Q6.416 32.349 5.958 32.349Q5.391 32.349 5.198 32.708Q5.005 33.067 5.005 33.679Q5.005 34.065 5.059 34.348Q5.114 34.632 5.309 34.824Q5.504 35.015 5.873 35.015\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M61.972-40.057h17.072V-57.13H61.972Z\"\u002F>\u003Cg transform=\"translate(66.576 -83.103)\">\u003Cpath d=\"M1.382 36.557Q1.382 36.051 1.511 35.543Q1.641 35.036 1.879 34.574Q2.116 34.113 2.451 33.692L3.097 32.879L2.284 32.879Q1.699 32.879 1.303 32.887Q0.906 32.896 0.883 32.916Q0.780 33.033 0.701 33.559L0.435 33.559L0.681 32.035L0.947 32.035L0.947 32.055Q0.947 32.123 1.023 32.166Q1.098 32.209 1.176 32.216Q1.368 32.240 1.563 32.246Q1.758 32.253 1.949 32.255Q2.140 32.257 2.339 32.257L3.760 32.257L3.760 32.445Q3.750 32.493 3.740 32.503L2.684 33.826Q2.465 34.099 2.342 34.412Q2.219 34.724 2.161 35.073Q2.103 35.422 2.089 35.753Q2.075 36.085 2.075 36.557Q2.075 36.707 1.976 36.806Q1.877 36.905 1.730 36.905Q1.580 36.905 1.481 36.806Q1.382 36.707 1.382 36.557M5.363 36.557Q5.363 36.051 5.493 35.543Q5.623 35.036 5.861 34.574Q6.098 34.113 6.433 33.692L7.079 32.879L6.266 32.879Q5.681 32.879 5.285 32.887Q4.888 32.896 4.864 32.916Q4.762 33.033 4.683 33.559L4.417 33.559L4.663 32.035L4.929 32.035L4.929 32.055Q4.929 32.123 5.005 32.166Q5.080 32.209 5.158 32.216Q5.350 32.240 5.545 32.246Q5.739 32.253 5.931 32.255Q6.122 32.257 6.321 32.257L7.742 32.257L7.742 32.445Q7.732 32.493 7.722 32.503L6.666 33.826Q6.447 34.099 6.324 34.412Q6.201 34.724 6.143 35.073Q6.085 35.422 6.071 35.753Q6.057 36.085 6.057 36.557Q6.057 36.707 5.958 36.806Q5.859 36.905 5.712 36.905Q5.562 36.905 5.463 36.806Q5.363 36.707 5.363 36.557\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M79.613-40.057h17.072V-57.13H79.613Z\"\u002F>\u003Cg transform=\"translate(84.217 -83.103)\">\u003Cpath d=\"M3.272 36.765L0.387 36.765L0.387 36.563Q0.387 36.533 0.414 36.505L1.662 35.288Q1.734 35.213 1.776 35.171Q1.819 35.128 1.898 35.049Q2.311 34.636 2.542 34.278Q2.773 33.921 2.773 33.497Q2.773 33.265 2.694 33.062Q2.615 32.858 2.474 32.708Q2.332 32.557 2.137 32.477Q1.942 32.397 1.710 32.397Q1.399 32.397 1.141 32.556Q0.883 32.715 0.753 32.992L0.773 32.992Q0.941 32.992 1.048 33.103Q1.156 33.214 1.156 33.378Q1.156 33.535 1.047 33.648Q0.937 33.761 0.773 33.761Q0.613 33.761 0.500 33.648Q0.387 33.535 0.387 33.378Q0.387 33.002 0.595 32.715Q0.804 32.428 1.139 32.272Q1.474 32.117 1.829 32.117Q2.253 32.117 2.633 32.275Q3.012 32.434 3.246 32.751Q3.480 33.067 3.480 33.497Q3.480 33.808 3.340 34.077Q3.200 34.345 2.995 34.550Q2.790 34.755 2.427 35.037Q2.065 35.319 1.956 35.415L1.101 36.143L1.744 36.143Q2.007 36.143 2.296 36.141Q2.585 36.140 2.803 36.131Q3.022 36.122 3.039 36.105Q3.101 36.040 3.138 35.873Q3.176 35.705 3.214 35.463L3.480 35.463L3.272 36.765M4.307 35.688Q4.307 35.247 4.610 34.926Q4.912 34.605 5.363 34.413L5.124 34.273Q4.854 34.113 4.688 33.855Q4.523 33.597 4.523 33.299Q4.523 32.947 4.728 32.675Q4.933 32.404 5.254 32.260Q5.575 32.117 5.917 32.117Q6.238 32.117 6.561 32.233Q6.884 32.349 7.096 32.590Q7.308 32.831 7.308 33.166Q7.308 33.528 7.064 33.791Q6.820 34.055 6.440 34.232L6.840 34.468Q7.035 34.581 7.194 34.750Q7.353 34.919 7.440 35.128Q7.527 35.336 7.527 35.569Q7.527 35.972 7.293 36.276Q7.059 36.580 6.685 36.743Q6.310 36.905 5.917 36.905Q5.531 36.905 5.162 36.768Q4.793 36.632 4.550 36.355Q4.307 36.078 4.307 35.688M4.755 35.688Q4.755 35.975 4.924 36.198Q5.093 36.420 5.362 36.536Q5.630 36.652 5.917 36.652Q6.355 36.652 6.717 36.435Q7.079 36.218 7.079 35.811Q7.079 35.610 6.951 35.432Q6.823 35.254 6.645 35.155L5.623 34.560Q5.384 34.670 5.186 34.836Q4.988 35.001 4.871 35.217Q4.755 35.432 4.755 35.688M5.278 33.559L6.197 34.092Q6.505 33.932 6.707 33.699Q6.908 33.467 6.908 33.166Q6.908 32.927 6.763 32.737Q6.618 32.547 6.385 32.448Q6.153 32.349 5.917 32.349Q5.695 32.349 5.466 32.419Q5.237 32.489 5.080 32.646Q4.923 32.804 4.923 33.033Q4.923 33.347 5.278 33.559\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M97.254-40.057h17.071V-57.13H97.254Z\"\u002F>\u003Cg transform=\"translate(101.857 -83.103)\">\u003Cpath d=\"M1.935 36.905Q1.477 36.905 1.159 36.690Q0.842 36.474 0.660 36.122Q0.479 35.770 0.402 35.350Q0.325 34.930 0.325 34.502Q0.325 33.918 0.578 33.362Q0.831 32.807 1.301 32.462Q1.771 32.117 2.369 32.117Q2.779 32.117 3.063 32.315Q3.347 32.513 3.347 32.916Q3.347 33.012 3.301 33.091Q3.255 33.169 3.174 33.214Q3.094 33.258 3.005 33.258Q2.858 33.258 2.757 33.161Q2.656 33.063 2.656 32.916Q2.656 32.786 2.747 32.679Q2.838 32.571 2.971 32.571Q2.783 32.349 2.369 32.349Q2.055 32.349 1.781 32.513Q1.508 32.677 1.341 32.951Q1.153 33.241 1.088 33.607Q1.023 33.973 1.023 34.427Q1.173 34.133 1.438 33.955Q1.703 33.778 2.017 33.778Q2.448 33.778 2.797 33.984Q3.145 34.191 3.345 34.547Q3.545 34.902 3.545 35.329Q3.545 35.774 3.328 36.134Q3.111 36.495 2.738 36.700Q2.366 36.905 1.935 36.905M1.935 36.652Q2.311 36.652 2.515 36.469Q2.718 36.286 2.781 36.003Q2.844 35.719 2.844 35.329Q2.844 34.943 2.790 34.663Q2.735 34.383 2.540 34.191Q2.345 34 1.976 34Q1.686 34 1.474 34.176Q1.262 34.352 1.154 34.625Q1.047 34.899 1.047 35.182L1.047 35.323L1.047 35.364Q1.047 35.869 1.258 36.261Q1.470 36.652 1.935 36.652M4.724 36.218Q4.844 36.375 5.035 36.474Q5.227 36.574 5.442 36.613Q5.657 36.652 5.880 36.652Q6.177 36.652 6.372 36.497Q6.567 36.341 6.657 36.087Q6.748 35.832 6.748 35.548Q6.748 35.254 6.655 35.003Q6.563 34.752 6.365 34.596Q6.167 34.441 5.873 34.441L5.357 34.441Q5.329 34.441 5.304 34.415Q5.278 34.390 5.278 34.366L5.278 34.294Q5.278 34.263 5.304 34.241Q5.329 34.219 5.357 34.219L5.798 34.188Q6.160 34.188 6.380 33.831Q6.601 33.473 6.601 33.084Q6.601 32.756 6.406 32.552Q6.211 32.349 5.880 32.349Q5.592 32.349 5.340 32.433Q5.087 32.516 4.923 32.704Q5.070 32.704 5.170 32.819Q5.271 32.933 5.271 33.084Q5.271 33.234 5.165 33.344Q5.059 33.453 4.902 33.453Q4.741 33.453 4.632 33.344Q4.523 33.234 4.523 33.084Q4.523 32.759 4.731 32.540Q4.940 32.322 5.256 32.219Q5.572 32.117 5.880 32.117Q6.197 32.117 6.526 32.221Q6.854 32.325 7.081 32.547Q7.308 32.769 7.308 33.084Q7.308 33.518 7.021 33.843Q6.734 34.167 6.300 34.314Q6.611 34.379 6.891 34.545Q7.172 34.711 7.349 34.969Q7.527 35.227 7.527 35.548Q7.527 35.958 7.283 36.268Q7.038 36.577 6.657 36.741Q6.276 36.905 5.880 36.905Q5.510 36.905 5.153 36.792Q4.796 36.680 4.552 36.430Q4.307 36.181 4.307 35.811Q4.307 35.640 4.424 35.528Q4.540 35.415 4.711 35.415Q4.820 35.415 4.911 35.466Q5.001 35.517 5.056 35.610Q5.111 35.702 5.111 35.811Q5.111 35.979 4.998 36.098Q4.885 36.218 4.724 36.218\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M114.894-40.057h17.072V-57.13h-17.072Z\"\u002F>\u003Cg transform=\"translate(119.498 -83.103)\">\u003Cpath d=\"M3.272 36.765L0.742 36.765L0.742 36.485Q1.710 36.485 1.710 36.276L1.710 32.657Q1.317 32.845 0.695 32.845L0.695 32.564Q1.112 32.564 1.476 32.463Q1.840 32.363 2.096 32.117L2.222 32.117Q2.287 32.134 2.304 32.202L2.304 36.276Q2.304 36.485 3.272 36.485L3.272 36.765M7.254 36.765L4.724 36.765L4.724 36.485Q5.692 36.485 5.692 36.276L5.692 32.657Q5.299 32.845 4.676 32.845L4.676 32.564Q5.093 32.564 5.457 32.463Q5.821 32.363 6.078 32.117L6.204 32.117Q6.269 32.134 6.286 32.202L6.286 36.276Q6.286 36.485 7.254 36.485\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M132.535-40.057h17.071V-57.13h-17.071Z\"\u002F>\u003Cg transform=\"translate(137.138 -83.103)\">\u003Cpath d=\"M2.263 35.617L0.219 35.617L0.219 35.336L2.550 32.164Q2.585 32.117 2.650 32.117L2.786 32.117Q2.831 32.117 2.858 32.144Q2.885 32.171 2.885 32.216L2.885 35.336L3.648 35.336L3.648 35.617L2.885 35.617L2.885 36.276Q2.885 36.485 3.641 36.485L3.641 36.765L1.508 36.765L1.508 36.485Q2.263 36.485 2.263 36.276L2.263 35.617M2.311 32.892L0.520 35.336L2.311 35.336L2.311 32.892M4.735 36.003L4.704 36.003Q4.841 36.300 5.138 36.476Q5.435 36.652 5.763 36.652Q6.126 36.652 6.353 36.474Q6.580 36.297 6.674 36.008Q6.768 35.719 6.768 35.357Q6.768 35.042 6.714 34.757Q6.659 34.472 6.486 34.266Q6.314 34.061 5.999 34.061Q5.726 34.061 5.543 34.128Q5.360 34.195 5.256 34.284Q5.152 34.372 5.056 34.482Q4.960 34.591 4.916 34.601L4.837 34.601Q4.765 34.584 4.748 34.513L4.748 32.195Q4.748 32.161 4.772 32.139Q4.796 32.117 4.830 32.117L4.858 32.117Q5.145 32.233 5.413 32.287Q5.681 32.342 5.958 32.342Q6.235 32.342 6.505 32.287Q6.775 32.233 7.055 32.117L7.079 32.117Q7.113 32.117 7.137 32.140Q7.161 32.164 7.161 32.195L7.161 32.264Q7.161 32.291 7.141 32.311Q6.867 32.626 6.483 32.802Q6.098 32.978 5.685 32.978Q5.346 32.978 5.029 32.892L5.029 34.174Q5.425 33.839 5.999 33.839Q6.403 33.839 6.739 34.049Q7.076 34.260 7.269 34.612Q7.462 34.964 7.462 35.364Q7.462 35.695 7.322 35.981Q7.182 36.266 6.937 36.476Q6.693 36.686 6.391 36.796Q6.088 36.905 5.770 36.905Q5.411 36.905 5.085 36.741Q4.758 36.577 4.564 36.285Q4.369 35.993 4.369 35.630Q4.369 35.480 4.475 35.374Q4.581 35.268 4.735 35.268Q4.888 35.268 4.993 35.372Q5.097 35.476 5.097 35.630Q5.097 35.787 4.993 35.895Q4.888 36.003 4.735 36.003\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"M-9.16-37.78v-21.625h53.208v21.624Zm53.208-21.625\" style=\"stroke-width:.8\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(-.086 -100.841)\">\u003Cpath d=\"M1.928 36.765L0.325 36.765L0.325 36.485Q0.551 36.485 0.700 36.451Q0.848 36.416 0.848 36.276L0.848 32.657Q0.848 32.387 0.741 32.325Q0.633 32.264 0.325 32.264L0.325 31.983L1.402 31.908L1.402 36.276Q1.402 36.413 1.552 36.449Q1.703 36.485 1.928 36.485L1.928 36.765M2.482 35.282Q2.482 34.940 2.617 34.641Q2.752 34.342 2.991 34.118Q3.231 33.894 3.549 33.769Q3.866 33.644 4.198 33.644Q4.642 33.644 5.042 33.860Q5.442 34.075 5.676 34.453Q5.910 34.830 5.910 35.282Q5.910 35.623 5.769 35.907Q5.627 36.191 5.382 36.398Q5.138 36.604 4.829 36.719Q4.519 36.833 4.198 36.833Q3.767 36.833 3.366 36.632Q2.964 36.430 2.723 36.078Q2.482 35.726 2.482 35.282M4.198 36.584Q4.800 36.584 5.023 36.206Q5.247 35.828 5.247 35.196Q5.247 34.584 5.013 34.225Q4.779 33.867 4.198 33.867Q3.145 33.867 3.145 35.196Q3.145 35.828 3.371 36.206Q3.596 36.584 4.198 36.584M6.563 36.037Q6.563 35.705 6.787 35.478Q7.011 35.251 7.354 35.123Q7.698 34.994 8.071 34.942Q8.443 34.889 8.747 34.889L8.747 34.636Q8.747 34.431 8.640 34.251Q8.532 34.072 8.351 33.969Q8.170 33.867 7.961 33.867Q7.554 33.867 7.319 33.959Q7.407 33.996 7.454 34.080Q7.500 34.164 7.500 34.266Q7.500 34.362 7.454 34.441Q7.407 34.519 7.327 34.564Q7.247 34.608 7.158 34.608Q7.008 34.608 6.907 34.511Q6.806 34.413 6.806 34.266Q6.806 33.644 7.961 33.644Q8.173 33.644 8.423 33.708Q8.672 33.771 8.874 33.890Q9.075 34.010 9.202 34.195Q9.328 34.379 9.328 34.622L9.328 36.198Q9.328 36.314 9.390 36.410Q9.451 36.505 9.564 36.505Q9.674 36.505 9.738 36.411Q9.803 36.317 9.803 36.198L9.803 35.750L10.070 35.750L10.070 36.198Q10.070 36.468 9.843 36.633Q9.615 36.799 9.335 36.799Q9.127 36.799 8.990 36.645Q8.853 36.492 8.829 36.276Q8.682 36.543 8.400 36.688Q8.118 36.833 7.794 36.833Q7.517 36.833 7.233 36.758Q6.949 36.683 6.756 36.504Q6.563 36.324 6.563 36.037M7.178 36.037Q7.178 36.211 7.279 36.341Q7.380 36.471 7.536 36.541Q7.691 36.611 7.855 36.611Q8.074 36.611 8.282 36.514Q8.491 36.416 8.619 36.235Q8.747 36.054 8.747 35.828L8.747 35.100Q8.423 35.100 8.057 35.191Q7.691 35.282 7.435 35.494Q7.178 35.705 7.178 36.037M10.487 35.254Q10.487 34.916 10.627 34.625Q10.767 34.335 11.012 34.121Q11.256 33.908 11.560 33.793Q11.864 33.679 12.189 33.679Q12.459 33.679 12.722 33.778Q12.986 33.877 13.177 34.055L13.177 32.657Q13.177 32.387 13.069 32.325Q12.962 32.264 12.651 32.264L12.651 31.983L13.727 31.908L13.727 36.092Q13.727 36.280 13.782 36.363Q13.837 36.447 13.937 36.466Q14.038 36.485 14.254 36.485L14.254 36.765L13.146 36.833L13.146 36.416Q12.729 36.833 12.104 36.833Q11.673 36.833 11.300 36.621Q10.928 36.410 10.707 36.049Q10.487 35.688 10.487 35.254M12.162 36.611Q12.370 36.611 12.557 36.539Q12.743 36.468 12.897 36.331Q13.050 36.194 13.146 36.016L13.146 34.407Q13.061 34.260 12.915 34.140Q12.770 34.020 12.601 33.961Q12.432 33.901 12.251 33.901Q11.690 33.901 11.422 34.290Q11.154 34.680 11.154 35.261Q11.154 35.832 11.388 36.222Q11.622 36.611 12.162 36.611\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-.086 -100.841)\">\u003Cpath d=\"M17.566 35.282Q17.566 34.940 17.701 34.641Q17.836 34.342 18.076 34.118Q18.315 33.894 18.633 33.769Q18.951 33.644 19.282 33.644Q19.727 33.644 20.126 33.860Q20.526 34.075 20.761 34.453Q20.995 34.830 20.995 35.282Q20.995 35.623 20.853 35.907Q20.711 36.191 20.467 36.398Q20.222 36.604 19.913 36.719Q19.604 36.833 19.282 36.833Q18.852 36.833 18.450 36.632Q18.048 36.430 17.807 36.078Q17.566 35.726 17.566 35.282M19.282 36.584Q19.884 36.584 20.108 36.206Q20.332 35.828 20.332 35.196Q20.332 34.584 20.097 34.225Q19.863 33.867 19.282 33.867Q18.230 33.867 18.230 35.196Q18.230 35.828 18.455 36.206Q18.681 36.584 19.282 36.584M23.387 36.765L21.654 36.765L21.654 36.485Q21.880 36.485 22.029 36.451Q22.177 36.416 22.177 36.276L22.177 34.027L21.589 34.027L21.589 33.747L22.177 33.747L22.177 32.930Q22.177 32.612 22.355 32.364Q22.533 32.117 22.823 31.976Q23.114 31.836 23.425 31.836Q23.681 31.836 23.885 31.978Q24.088 32.120 24.088 32.363Q24.088 32.499 23.989 32.598Q23.890 32.698 23.753 32.698Q23.616 32.698 23.517 32.598Q23.418 32.499 23.418 32.363Q23.418 32.182 23.558 32.089Q23.480 32.062 23.380 32.062Q23.172 32.062 23.018 32.195Q22.864 32.328 22.784 32.532Q22.704 32.735 22.704 32.944L22.704 33.747L23.592 33.747L23.592 34.027L22.731 34.027L22.731 36.276Q22.731 36.485 23.387 36.485\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-.086 -100.841)\">\u003Cpath d=\"M28.610 36.765L27.041 36.765Q27.014 36.765 26.984 36.729Q26.955 36.693 26.955 36.652L26.986 36.539Q27.003 36.498 27.068 36.485Q27.362 36.485 27.566 36.392Q27.769 36.300 27.830 36.044L28.729 32.458Q28.736 32.441 28.741 32.412Q28.746 32.383 28.750 32.363Q28.750 32.308 28.692 32.291Q28.558 32.264 28.176 32.264Q28.083 32.240 28.083 32.151L28.111 32.041Q28.118 32 28.196 31.983L29.478 31.983Q29.522 31.983 29.558 32.011Q29.594 32.038 29.598 32.082L30.281 36.071L32.957 32.082Q33.033 31.983 33.132 31.983L34.355 31.983Q34.441 32.007 34.441 32.089L34.413 32.202Q34.407 32.246 34.335 32.264Q33.928 32.264 33.781 32.298Q33.661 32.332 33.614 32.510L32.670 36.290Q32.657 36.358 32.657 36.386Q32.657 36.440 32.711 36.457Q32.838 36.485 33.227 36.485Q33.320 36.509 33.320 36.591L33.292 36.703Q33.275 36.751 33.207 36.765L31.330 36.765Q31.300 36.765 31.274 36.729Q31.248 36.693 31.248 36.652L31.276 36.539Q31.293 36.498 31.361 36.485Q31.765 36.485 31.911 36.451Q32.031 36.416 32.076 36.239L33.067 32.270L30.120 36.666Q30.059 36.765 29.939 36.765Q29.820 36.765 29.799 36.666L29.057 32.342L28.118 36.092Q28.104 36.181 28.104 36.211Q28.104 36.386 28.258 36.435Q28.411 36.485 28.630 36.485Q28.723 36.512 28.723 36.591L28.692 36.703Q28.675 36.751 28.610 36.765\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-65.55 -41.005)\">\u003Cpath d=\"M0.260 36.758L0.260 35.695Q0.260 35.671 0.288 35.644Q0.315 35.617 0.339 35.617L0.448 35.617Q0.513 35.617 0.527 35.675Q0.623 36.109 0.869 36.360Q1.115 36.611 1.529 36.611Q1.870 36.611 2.123 36.478Q2.376 36.345 2.376 36.037Q2.376 35.880 2.282 35.765Q2.188 35.651 2.050 35.582Q1.911 35.514 1.744 35.476L1.163 35.377Q0.807 35.309 0.534 35.088Q0.260 34.868 0.260 34.526Q0.260 34.277 0.372 34.102Q0.483 33.928 0.669 33.829Q0.855 33.730 1.071 33.687Q1.286 33.644 1.529 33.644Q1.942 33.644 2.222 33.826L2.438 33.651Q2.448 33.648 2.455 33.646Q2.462 33.644 2.472 33.644L2.523 33.644Q2.550 33.644 2.574 33.668Q2.598 33.692 2.598 33.720L2.598 34.567Q2.598 34.588 2.574 34.615Q2.550 34.642 2.523 34.642L2.410 34.642Q2.383 34.642 2.357 34.617Q2.332 34.591 2.332 34.567Q2.332 34.331 2.226 34.167Q2.120 34.003 1.937 33.921Q1.754 33.839 1.522 33.839Q1.194 33.839 0.937 33.942Q0.681 34.044 0.681 34.321Q0.681 34.516 0.864 34.625Q1.047 34.735 1.276 34.776L1.850 34.882Q2.096 34.930 2.310 35.058Q2.523 35.186 2.660 35.389Q2.797 35.593 2.797 35.842Q2.797 36.355 2.431 36.594Q2.065 36.833 1.529 36.833Q1.033 36.833 0.701 36.539L0.435 36.813Q0.414 36.833 0.387 36.833L0.339 36.833Q0.315 36.833 0.288 36.806Q0.260 36.779 0.260 36.758M3.384 35.282Q3.384 34.940 3.519 34.641Q3.654 34.342 3.894 34.118Q4.133 33.894 4.451 33.769Q4.769 33.644 5.100 33.644Q5.545 33.644 5.945 33.860Q6.344 34.075 6.579 34.453Q6.813 34.830 6.813 35.282Q6.813 35.623 6.671 35.907Q6.529 36.191 6.285 36.398Q6.040 36.604 5.731 36.719Q5.422 36.833 5.100 36.833Q4.670 36.833 4.268 36.632Q3.866 36.430 3.625 36.078Q3.384 35.726 3.384 35.282M5.100 36.584Q5.702 36.584 5.926 36.206Q6.150 35.828 6.150 35.196Q6.150 34.584 5.915 34.225Q5.681 33.867 5.100 33.867Q4.048 33.867 4.048 35.196Q4.048 35.828 4.273 36.206Q4.499 36.584 5.100 36.584M9.157 36.765L7.421 36.765L7.421 36.485Q7.650 36.485 7.799 36.451Q7.947 36.416 7.947 36.276L7.947 34.427Q7.947 34.157 7.840 34.096Q7.732 34.034 7.421 34.034L7.421 33.754L8.450 33.679L8.450 34.386Q8.580 34.078 8.822 33.879Q9.065 33.679 9.383 33.679Q9.602 33.679 9.773 33.803Q9.944 33.928 9.944 34.140Q9.944 34.277 9.844 34.376Q9.745 34.475 9.612 34.475Q9.475 34.475 9.376 34.376Q9.277 34.277 9.277 34.140Q9.277 34 9.376 33.901Q9.086 33.901 8.886 34.097Q8.686 34.294 8.593 34.588Q8.501 34.882 8.501 35.162L8.501 36.276Q8.501 36.485 9.157 36.485L9.157 36.765M11.054 35.924L11.054 34.027L10.415 34.027L10.415 33.805Q10.733 33.805 10.950 33.595Q11.167 33.385 11.268 33.075Q11.369 32.766 11.369 32.458L11.635 32.458L11.635 33.747L12.712 33.747L12.712 34.027L11.635 34.027L11.635 35.911Q11.635 36.187 11.740 36.386Q11.844 36.584 12.104 36.584Q12.261 36.584 12.367 36.480Q12.473 36.375 12.522 36.222Q12.572 36.068 12.572 35.911L12.572 35.497L12.839 35.497L12.839 35.924Q12.839 36.150 12.739 36.360Q12.640 36.570 12.456 36.702Q12.271 36.833 12.042 36.833Q11.605 36.833 11.330 36.596Q11.054 36.358 11.054 35.924\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-65.55 -41.005)\">\u003Cpath d=\"M17.976 36.765L16.424 36.765L16.424 36.485Q16.650 36.485 16.799 36.451Q16.947 36.416 16.947 36.276L16.947 34.427Q16.947 34.239 16.899 34.155Q16.852 34.072 16.754 34.053Q16.657 34.034 16.445 34.034L16.445 33.754L17.501 33.679L17.501 36.276Q17.501 36.416 17.633 36.451Q17.764 36.485 17.976 36.485L17.976 36.765M16.705 32.458Q16.705 32.287 16.828 32.168Q16.951 32.048 17.122 32.048Q17.289 32.048 17.412 32.168Q17.535 32.287 17.535 32.458Q17.535 32.633 17.412 32.756Q17.289 32.879 17.122 32.879Q16.951 32.879 16.828 32.756Q16.705 32.633 16.705 32.458M20.304 36.765L18.670 36.765L18.670 36.485Q18.899 36.485 19.048 36.451Q19.196 36.416 19.196 36.276L19.196 34.427Q19.196 34.157 19.089 34.096Q18.981 34.034 18.670 34.034L18.670 33.754L19.730 33.679L19.730 34.328Q19.900 34.020 20.205 33.849Q20.509 33.679 20.854 33.679Q21.360 33.679 21.644 33.902Q21.927 34.126 21.927 34.622L21.927 36.276Q21.927 36.413 22.076 36.449Q22.225 36.485 22.450 36.485L22.450 36.765L20.820 36.765L20.820 36.485Q21.049 36.485 21.198 36.451Q21.346 36.416 21.346 36.276L21.346 34.636Q21.346 34.301 21.227 34.101Q21.107 33.901 20.793 33.901Q20.523 33.901 20.288 34.037Q20.054 34.174 19.916 34.408Q19.777 34.642 19.777 34.916L19.777 36.276Q19.777 36.413 19.928 36.449Q20.078 36.485 20.304 36.485\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-65.55 -41.005)\">\u003Cpath d=\"M27.416 36.765L25.782 36.765L25.782 36.485Q26.011 36.485 26.160 36.451Q26.309 36.416 26.309 36.276L26.309 34.427Q26.309 34.157 26.201 34.096Q26.093 34.034 25.782 34.034L25.782 33.754L26.842 33.679L26.842 34.328Q27.013 34.020 27.317 33.849Q27.621 33.679 27.966 33.679Q28.366 33.679 28.643 33.819Q28.920 33.959 29.005 34.307Q29.173 34.014 29.472 33.846Q29.771 33.679 30.116 33.679Q30.622 33.679 30.906 33.902Q31.190 34.126 31.190 34.622L31.190 36.276Q31.190 36.413 31.338 36.449Q31.487 36.485 31.712 36.485L31.712 36.765L30.082 36.765L30.082 36.485Q30.308 36.485 30.458 36.449Q30.608 36.413 30.608 36.276L30.608 34.636Q30.608 34.301 30.489 34.101Q30.369 33.901 30.055 33.901Q29.785 33.901 29.551 34.037Q29.316 34.174 29.178 34.408Q29.040 34.642 29.040 34.916L29.040 36.276Q29.040 36.413 29.188 36.449Q29.337 36.485 29.563 36.485L29.563 36.765L27.932 36.765L27.932 36.485Q28.161 36.485 28.310 36.451Q28.459 36.416 28.459 36.276L28.459 34.636Q28.459 34.301 28.339 34.101Q28.219 33.901 27.905 33.901Q27.635 33.901 27.401 34.037Q27.167 34.174 27.028 34.408Q26.890 34.642 26.890 34.916L26.890 36.276Q26.890 36.413 27.040 36.449Q27.191 36.485 27.416 36.485L27.416 36.765M32.259 35.230Q32.259 34.909 32.384 34.620Q32.509 34.331 32.734 34.108Q32.960 33.884 33.256 33.764Q33.551 33.644 33.869 33.644Q34.197 33.644 34.459 33.744Q34.720 33.843 34.896 34.025Q35.072 34.208 35.166 34.466Q35.260 34.724 35.260 35.056Q35.260 35.148 35.178 35.169L32.922 35.169L32.922 35.230Q32.922 35.818 33.206 36.201Q33.490 36.584 34.057 36.584Q34.378 36.584 34.647 36.391Q34.915 36.198 35.004 35.883Q35.011 35.842 35.086 35.828L35.178 35.828Q35.260 35.852 35.260 35.924Q35.260 35.931 35.253 35.958Q35.141 36.355 34.770 36.594Q34.399 36.833 33.975 36.833Q33.538 36.833 33.138 36.625Q32.738 36.416 32.499 36.049Q32.259 35.682 32.259 35.230M32.929 34.960L34.744 34.960Q34.744 34.683 34.647 34.431Q34.549 34.178 34.351 34.022Q34.153 33.867 33.869 33.867Q33.592 33.867 33.379 34.025Q33.165 34.184 33.047 34.439Q32.929 34.694 32.929 34.960M37.530 36.765L35.896 36.765L35.896 36.485Q36.125 36.485 36.274 36.451Q36.422 36.416 36.422 36.276L36.422 34.427Q36.422 34.157 36.315 34.096Q36.207 34.034 35.896 34.034L35.896 33.754L36.956 33.679L36.956 34.328Q37.127 34.020 37.431 33.849Q37.735 33.679 38.080 33.679Q38.480 33.679 38.757 33.819Q39.034 33.959 39.119 34.307Q39.287 34.014 39.586 33.846Q39.885 33.679 40.230 33.679Q40.736 33.679 41.020 33.902Q41.303 34.126 41.303 34.622L41.303 36.276Q41.303 36.413 41.452 36.449Q41.601 36.485 41.826 36.485L41.826 36.765L40.196 36.765L40.196 36.485Q40.421 36.485 40.572 36.449Q40.722 36.413 40.722 36.276L40.722 34.636Q40.722 34.301 40.603 34.101Q40.483 33.901 40.169 33.901Q39.899 33.901 39.664 34.037Q39.430 34.174 39.292 34.408Q39.153 34.642 39.153 34.916L39.153 36.276Q39.153 36.413 39.302 36.449Q39.451 36.485 39.676 36.485L39.676 36.765L38.046 36.765L38.046 36.485Q38.275 36.485 38.424 36.451Q38.572 36.416 38.572 36.276L38.572 34.636Q38.572 34.301 38.453 34.101Q38.333 33.901 38.019 33.901Q37.749 33.901 37.514 34.037Q37.280 34.174 37.142 34.408Q37.003 34.642 37.003 34.916L37.003 36.276Q37.003 36.413 37.154 36.449Q37.304 36.485 37.530 36.485L37.530 36.765M42.373 35.282Q42.373 34.940 42.508 34.641Q42.643 34.342 42.882 34.118Q43.122 33.894 43.440 33.769Q43.757 33.644 44.089 33.644Q44.533 33.644 44.933 33.860Q45.333 34.075 45.567 34.453Q45.801 34.830 45.801 35.282Q45.801 35.623 45.660 35.907Q45.518 36.191 45.273 36.398Q45.029 36.604 44.720 36.719Q44.410 36.833 44.089 36.833Q43.658 36.833 43.257 36.632Q42.855 36.430 42.614 36.078Q42.373 35.726 42.373 35.282M44.089 36.584Q44.691 36.584 44.914 36.206Q45.138 35.828 45.138 35.196Q45.138 34.584 44.904 34.225Q44.670 33.867 44.089 33.867Q43.036 33.867 43.036 35.196Q43.036 35.828 43.262 36.206Q43.487 36.584 44.089 36.584M48.146 36.765L46.410 36.765L46.410 36.485Q46.639 36.485 46.787 36.451Q46.936 36.416 46.936 36.276L46.936 34.427Q46.936 34.157 46.828 34.096Q46.721 34.034 46.410 34.034L46.410 33.754L47.439 33.679L47.439 34.386Q47.568 34.078 47.811 33.879Q48.054 33.679 48.372 33.679Q48.590 33.679 48.761 33.803Q48.932 33.928 48.932 34.140Q48.932 34.277 48.833 34.376Q48.734 34.475 48.601 34.475Q48.464 34.475 48.365 34.376Q48.266 34.277 48.266 34.140Q48.266 34 48.365 33.901Q48.074 33.901 47.874 34.097Q47.674 34.294 47.582 34.588Q47.490 34.882 47.490 35.162L47.490 36.276Q47.490 36.485 48.146 36.485L48.146 36.765M49.852 37.900Q49.982 37.968 50.118 37.968Q50.289 37.968 50.440 37.879Q50.590 37.790 50.701 37.645Q50.812 37.500 50.891 37.332L51.154 36.765L49.985 34.239Q49.910 34.092 49.780 34.060Q49.650 34.027 49.418 34.027L49.418 33.747L50.939 33.747L50.939 34.027Q50.590 34.027 50.590 34.174Q50.593 34.195 50.595 34.212Q50.597 34.229 50.597 34.239L51.455 36.098L52.227 34.427Q52.261 34.359 52.261 34.280Q52.261 34.167 52.178 34.097Q52.094 34.027 51.981 34.027L51.981 33.747L53.177 33.747L53.177 34.027Q52.959 34.027 52.786 34.131Q52.613 34.236 52.521 34.427L51.185 37.332Q51.014 37.702 50.744 37.948Q50.474 38.194 50.118 38.194Q49.848 38.194 49.629 38.028Q49.411 37.862 49.411 37.599Q49.411 37.462 49.503 37.373Q49.595 37.285 49.735 37.285Q49.872 37.285 49.961 37.373Q50.050 37.462 50.050 37.599Q50.050 37.702 49.997 37.780Q49.944 37.859 49.852 37.900\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M-8.59 2.622H8.482V-14.45H-8.59Z\"\u002F>\u003Cg transform=\"translate(-3.986 -40.424)\">\u003Cpath d=\"M0.742 36.218Q0.862 36.375 1.053 36.474Q1.245 36.574 1.460 36.613Q1.675 36.652 1.898 36.652Q2.195 36.652 2.390 36.497Q2.585 36.341 2.675 36.087Q2.766 35.832 2.766 35.548Q2.766 35.254 2.674 35.003Q2.581 34.752 2.383 34.596Q2.185 34.441 1.891 34.441L1.375 34.441Q1.347 34.441 1.322 34.415Q1.296 34.390 1.296 34.366L1.296 34.294Q1.296 34.263 1.322 34.241Q1.347 34.219 1.375 34.219L1.816 34.188Q2.178 34.188 2.398 33.831Q2.619 33.473 2.619 33.084Q2.619 32.756 2.424 32.552Q2.229 32.349 1.898 32.349Q1.611 32.349 1.358 32.433Q1.105 32.516 0.941 32.704Q1.088 32.704 1.188 32.819Q1.289 32.933 1.289 33.084Q1.289 33.234 1.183 33.344Q1.077 33.453 0.920 33.453Q0.759 33.453 0.650 33.344Q0.541 33.234 0.541 33.084Q0.541 32.759 0.749 32.540Q0.958 32.322 1.274 32.219Q1.590 32.117 1.898 32.117Q2.216 32.117 2.544 32.221Q2.872 32.325 3.099 32.547Q3.326 32.769 3.326 33.084Q3.326 33.518 3.039 33.843Q2.752 34.167 2.318 34.314Q2.629 34.379 2.909 34.545Q3.190 34.711 3.367 34.969Q3.545 35.227 3.545 35.548Q3.545 35.958 3.301 36.268Q3.056 36.577 2.675 36.741Q2.294 36.905 1.898 36.905Q1.529 36.905 1.171 36.792Q0.814 36.680 0.570 36.430Q0.325 36.181 0.325 35.811Q0.325 35.640 0.442 35.528Q0.558 35.415 0.729 35.415Q0.838 35.415 0.929 35.466Q1.019 35.517 1.074 35.610Q1.129 35.702 1.129 35.811Q1.129 35.979 1.016 36.098Q0.903 36.218 0.742 36.218M7.254 36.765L4.724 36.765L4.724 36.485Q5.692 36.485 5.692 36.276L5.692 32.657Q5.299 32.845 4.676 32.845L4.676 32.564Q5.093 32.564 5.457 32.463Q5.821 32.363 6.078 32.117L6.204 32.117Q6.269 32.134 6.286 32.202L6.286 36.276Q6.286 36.485 7.254 36.485\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M9.05 2.622h17.072V-14.45H9.051Z\"\u002F>\u003Cg transform=\"translate(13.654 -40.424)\">\u003Cpath d=\"M2.263 35.617L0.219 35.617L0.219 35.336L2.550 32.164Q2.585 32.117 2.650 32.117L2.786 32.117Q2.831 32.117 2.858 32.144Q2.885 32.171 2.885 32.216L2.885 35.336L3.648 35.336L3.648 35.617L2.885 35.617L2.885 36.276Q2.885 36.485 3.641 36.485L3.641 36.765L1.508 36.765L1.508 36.485Q2.263 36.485 2.263 36.276L2.263 35.617M2.311 32.892L0.520 35.336L2.311 35.336L2.311 32.892M5.917 36.905Q5.281 36.905 4.917 36.560Q4.553 36.215 4.418 35.690Q4.283 35.165 4.283 34.540Q4.283 33.515 4.639 32.816Q4.994 32.117 5.917 32.117Q6.843 32.117 7.196 32.816Q7.548 33.515 7.548 34.540Q7.548 35.165 7.413 35.690Q7.278 36.215 6.915 36.560Q6.553 36.905 5.917 36.905M5.917 36.680Q6.355 36.680 6.568 36.305Q6.782 35.931 6.831 35.464Q6.881 34.998 6.881 34.420Q6.881 33.867 6.831 33.439Q6.782 33.012 6.570 32.677Q6.358 32.342 5.917 32.342Q5.575 32.342 5.372 32.549Q5.169 32.756 5.081 33.068Q4.994 33.381 4.972 33.697Q4.950 34.014 4.950 34.420Q4.950 34.837 4.972 35.179Q4.994 35.521 5.083 35.869Q5.172 36.218 5.377 36.449Q5.582 36.680 5.917 36.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M26.692 2.622h17.071V-14.45H26.692Z\"\u002F>\u003Cg transform=\"translate(31.295 -40.424)\">\u003Cpath d=\"M0.753 36.003L0.722 36.003Q0.859 36.300 1.156 36.476Q1.453 36.652 1.781 36.652Q2.144 36.652 2.371 36.474Q2.598 36.297 2.692 36.008Q2.786 35.719 2.786 35.357Q2.786 35.042 2.732 34.757Q2.677 34.472 2.504 34.266Q2.332 34.061 2.017 34.061Q1.744 34.061 1.561 34.128Q1.378 34.195 1.274 34.284Q1.170 34.372 1.074 34.482Q0.978 34.591 0.934 34.601L0.855 34.601Q0.783 34.584 0.766 34.513L0.766 32.195Q0.766 32.161 0.790 32.139Q0.814 32.117 0.848 32.117L0.876 32.117Q1.163 32.233 1.431 32.287Q1.699 32.342 1.976 32.342Q2.253 32.342 2.523 32.287Q2.793 32.233 3.073 32.117L3.097 32.117Q3.132 32.117 3.155 32.140Q3.179 32.164 3.179 32.195L3.179 32.264Q3.179 32.291 3.159 32.311Q2.885 32.626 2.501 32.802Q2.116 32.978 1.703 32.978Q1.364 32.978 1.047 32.892L1.047 34.174Q1.443 33.839 2.017 33.839Q2.421 33.839 2.757 34.049Q3.094 34.260 3.287 34.612Q3.480 34.964 3.480 35.364Q3.480 35.695 3.340 35.981Q3.200 36.266 2.956 36.476Q2.711 36.686 2.409 36.796Q2.106 36.905 1.788 36.905Q1.429 36.905 1.103 36.741Q0.777 36.577 0.582 36.285Q0.387 35.993 0.387 35.630Q0.387 35.480 0.493 35.374Q0.599 35.268 0.753 35.268Q0.906 35.268 1.011 35.372Q1.115 35.476 1.115 35.630Q1.115 35.787 1.011 35.895Q0.906 36.003 0.753 36.003M7.254 36.765L4.369 36.765L4.369 36.563Q4.369 36.533 4.396 36.505L5.644 35.288Q5.716 35.213 5.758 35.171Q5.801 35.128 5.880 35.049Q6.293 34.636 6.524 34.278Q6.755 33.921 6.755 33.497Q6.755 33.265 6.676 33.062Q6.597 32.858 6.456 32.708Q6.314 32.557 6.119 32.477Q5.924 32.397 5.692 32.397Q5.381 32.397 5.123 32.556Q4.864 32.715 4.735 32.992L4.755 32.992Q4.923 32.992 5.030 33.103Q5.138 33.214 5.138 33.378Q5.138 33.535 5.029 33.648Q4.919 33.761 4.755 33.761Q4.594 33.761 4.482 33.648Q4.369 33.535 4.369 33.378Q4.369 33.002 4.577 32.715Q4.786 32.428 5.121 32.272Q5.456 32.117 5.811 32.117Q6.235 32.117 6.614 32.275Q6.994 32.434 7.228 32.751Q7.462 33.067 7.462 33.497Q7.462 33.808 7.322 34.077Q7.182 34.345 6.977 34.550Q6.772 34.755 6.409 35.037Q6.047 35.319 5.938 35.415L5.083 36.143L5.726 36.143Q5.989 36.143 6.278 36.141Q6.567 36.140 6.785 36.131Q7.004 36.122 7.021 36.105Q7.083 36.040 7.120 35.873Q7.158 35.705 7.196 35.463L7.462 35.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M17.302-35.79v16.842\"\u002F>\u003Cpath d=\"m17.302-16.442 1.35-3.585-1.35 1.18-1.35-1.18Z\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-51.266 2.43)\">\u003Cpath d=\"M0.260 36.758L0.260 35.695Q0.260 35.671 0.288 35.644Q0.315 35.617 0.339 35.617L0.448 35.617Q0.513 35.617 0.527 35.675Q0.623 36.109 0.869 36.360Q1.115 36.611 1.529 36.611Q1.870 36.611 2.123 36.478Q2.376 36.345 2.376 36.037Q2.376 35.880 2.282 35.765Q2.188 35.651 2.050 35.582Q1.911 35.514 1.744 35.476L1.163 35.377Q0.807 35.309 0.534 35.088Q0.260 34.868 0.260 34.526Q0.260 34.277 0.372 34.102Q0.483 33.928 0.669 33.829Q0.855 33.730 1.071 33.687Q1.286 33.644 1.529 33.644Q1.942 33.644 2.222 33.826L2.438 33.651Q2.448 33.648 2.455 33.646Q2.462 33.644 2.472 33.644L2.523 33.644Q2.550 33.644 2.574 33.668Q2.598 33.692 2.598 33.720L2.598 34.567Q2.598 34.588 2.574 34.615Q2.550 34.642 2.523 34.642L2.410 34.642Q2.383 34.642 2.357 34.617Q2.332 34.591 2.332 34.567Q2.332 34.331 2.226 34.167Q2.120 34.003 1.937 33.921Q1.754 33.839 1.522 33.839Q1.194 33.839 0.937 33.942Q0.681 34.044 0.681 34.321Q0.681 34.516 0.864 34.625Q1.047 34.735 1.276 34.776L1.850 34.882Q2.096 34.930 2.310 35.058Q2.523 35.186 2.660 35.389Q2.797 35.593 2.797 35.842Q2.797 36.355 2.431 36.594Q2.065 36.833 1.529 36.833Q1.033 36.833 0.701 36.539L0.435 36.813Q0.414 36.833 0.387 36.833L0.339 36.833Q0.315 36.833 0.288 36.806Q0.260 36.779 0.260 36.758M3.384 35.282Q3.384 34.940 3.519 34.641Q3.654 34.342 3.894 34.118Q4.133 33.894 4.451 33.769Q4.769 33.644 5.100 33.644Q5.545 33.644 5.945 33.860Q6.344 34.075 6.579 34.453Q6.813 34.830 6.813 35.282Q6.813 35.623 6.671 35.907Q6.529 36.191 6.285 36.398Q6.040 36.604 5.731 36.719Q5.422 36.833 5.100 36.833Q4.670 36.833 4.268 36.632Q3.866 36.430 3.625 36.078Q3.384 35.726 3.384 35.282M5.100 36.584Q5.702 36.584 5.926 36.206Q6.150 35.828 6.150 35.196Q6.150 34.584 5.915 34.225Q5.681 33.867 5.100 33.867Q4.048 33.867 4.048 35.196Q4.048 35.828 4.273 36.206Q4.499 36.584 5.100 36.584M9.157 36.765L7.421 36.765L7.421 36.485Q7.650 36.485 7.799 36.451Q7.947 36.416 7.947 36.276L7.947 34.427Q7.947 34.157 7.840 34.096Q7.732 34.034 7.421 34.034L7.421 33.754L8.450 33.679L8.450 34.386Q8.580 34.078 8.822 33.879Q9.065 33.679 9.383 33.679Q9.602 33.679 9.773 33.803Q9.944 33.928 9.944 34.140Q9.944 34.277 9.844 34.376Q9.745 34.475 9.612 34.475Q9.475 34.475 9.376 34.376Q9.277 34.277 9.277 34.140Q9.277 34 9.376 33.901Q9.086 33.901 8.886 34.097Q8.686 34.294 8.593 34.588Q8.501 34.882 8.501 35.162L8.501 36.276Q8.501 36.485 9.157 36.485L9.157 36.765M11.054 35.924L11.054 34.027L10.415 34.027L10.415 33.805Q10.733 33.805 10.950 33.595Q11.167 33.385 11.268 33.075Q11.369 32.766 11.369 32.458L11.635 32.458L11.635 33.747L12.712 33.747L12.712 34.027L11.635 34.027L11.635 35.911Q11.635 36.187 11.740 36.386Q11.844 36.584 12.104 36.584Q12.261 36.584 12.367 36.480Q12.473 36.375 12.522 36.222Q12.572 36.068 12.572 35.911L12.572 35.497L12.839 35.497L12.839 35.924Q12.839 36.150 12.739 36.360Q12.640 36.570 12.456 36.702Q12.271 36.833 12.042 36.833Q11.605 36.833 11.330 36.596Q11.054 36.358 11.054 35.924M13.608 35.230Q13.608 34.909 13.732 34.620Q13.857 34.331 14.083 34.108Q14.308 33.884 14.604 33.764Q14.900 33.644 15.217 33.644Q15.546 33.644 15.807 33.744Q16.069 33.843 16.245 34.025Q16.421 34.208 16.515 34.466Q16.609 34.724 16.609 35.056Q16.609 35.148 16.527 35.169L14.271 35.169L14.271 35.230Q14.271 35.818 14.554 36.201Q14.838 36.584 15.405 36.584Q15.727 36.584 15.995 36.391Q16.263 36.198 16.352 35.883Q16.359 35.842 16.434 35.828L16.527 35.828Q16.609 35.852 16.609 35.924Q16.609 35.931 16.602 35.958Q16.489 36.355 16.118 36.594Q15.747 36.833 15.323 36.833Q14.886 36.833 14.486 36.625Q14.086 36.416 13.847 36.049Q13.608 35.682 13.608 35.230M14.278 34.960L16.092 34.960Q16.092 34.683 15.995 34.431Q15.898 34.178 15.699 34.022Q15.501 33.867 15.217 33.867Q14.941 33.867 14.727 34.025Q14.513 34.184 14.395 34.439Q14.278 34.694 14.278 34.960M17.196 35.254Q17.196 34.916 17.337 34.625Q17.477 34.335 17.721 34.121Q17.966 33.908 18.270 33.793Q18.574 33.679 18.899 33.679Q19.169 33.679 19.432 33.778Q19.695 33.877 19.886 34.055L19.886 32.657Q19.886 32.387 19.779 32.325Q19.671 32.264 19.360 32.264L19.360 31.983L20.437 31.908L20.437 36.092Q20.437 36.280 20.491 36.363Q20.546 36.447 20.647 36.466Q20.748 36.485 20.963 36.485L20.963 36.765L19.856 36.833L19.856 36.416Q19.439 36.833 18.813 36.833Q18.383 36.833 18.010 36.621Q17.637 36.410 17.417 36.049Q17.196 35.688 17.196 35.254M18.871 36.611Q19.080 36.611 19.266 36.539Q19.452 36.468 19.606 36.331Q19.760 36.194 19.856 36.016L19.856 34.407Q19.770 34.260 19.625 34.140Q19.480 34.020 19.311 33.961Q19.141 33.901 18.960 33.901Q18.400 33.901 18.131 34.290Q17.863 34.680 17.863 35.261Q17.863 35.832 18.097 36.222Q18.331 36.611 18.871 36.611\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-51.266 2.43)\">\u003Cpath d=\"M26.081 36.765L24.345 36.765L24.345 36.485Q24.574 36.485 24.723 36.451Q24.871 36.416 24.871 36.276L24.871 34.427Q24.871 34.157 24.764 34.096Q24.656 34.034 24.345 34.034L24.345 33.754L25.374 33.679L25.374 34.386Q25.504 34.078 25.746 33.879Q25.989 33.679 26.307 33.679Q26.526 33.679 26.697 33.803Q26.868 33.928 26.868 34.140Q26.868 34.277 26.768 34.376Q26.669 34.475 26.536 34.475Q26.399 34.475 26.300 34.376Q26.201 34.277 26.201 34.140Q26.201 34 26.300 33.901Q26.010 33.901 25.810 34.097Q25.610 34.294 25.517 34.588Q25.425 34.882 25.425 35.162L25.425 36.276Q25.425 36.485 26.081 36.485L26.081 36.765M28.026 35.931L28.026 34.427Q28.026 34.157 27.919 34.096Q27.811 34.034 27.500 34.034L27.500 33.754L28.607 33.679L28.607 35.911L28.607 35.931Q28.607 36.211 28.659 36.355Q28.710 36.498 28.852 36.555Q28.994 36.611 29.281 36.611Q29.534 36.611 29.739 36.471Q29.944 36.331 30.060 36.105Q30.176 35.880 30.176 35.630L30.176 34.427Q30.176 34.157 30.069 34.096Q29.961 34.034 29.650 34.034L29.650 33.754L30.757 33.679L30.757 36.092Q30.757 36.283 30.810 36.365Q30.863 36.447 30.964 36.466Q31.065 36.485 31.280 36.485L31.280 36.765L30.204 36.833L30.204 36.269Q30.094 36.451 29.949 36.574Q29.804 36.697 29.617 36.765Q29.431 36.833 29.229 36.833Q28.026 36.833 28.026 35.931M33.550 36.765L31.916 36.765L31.916 36.485Q32.145 36.485 32.294 36.451Q32.442 36.416 32.442 36.276L32.442 34.427Q32.442 34.157 32.335 34.096Q32.227 34.034 31.916 34.034L31.916 33.754L32.975 33.679L32.975 34.328Q33.146 34.020 33.451 33.849Q33.755 33.679 34.100 33.679Q34.606 33.679 34.890 33.902Q35.173 34.126 35.173 34.622L35.173 36.276Q35.173 36.413 35.322 36.449Q35.471 36.485 35.696 36.485L35.696 36.765L34.066 36.765L34.066 36.485Q34.295 36.485 34.444 36.451Q34.592 36.416 34.592 36.276L34.592 34.636Q34.592 34.301 34.473 34.101Q34.353 33.901 34.038 33.901Q33.768 33.901 33.534 34.037Q33.300 34.174 33.162 34.408Q33.023 34.642 33.023 34.916L33.023 36.276Q33.023 36.413 33.174 36.449Q33.324 36.485 33.550 36.485L33.550 36.765M36.284 36.758L36.284 35.695Q36.284 35.671 36.311 35.644Q36.339 35.617 36.363 35.617L36.472 35.617Q36.537 35.617 36.551 35.675Q36.646 36.109 36.892 36.360Q37.139 36.611 37.552 36.611Q37.894 36.611 38.147 36.478Q38.400 36.345 38.400 36.037Q38.400 35.880 38.306 35.765Q38.212 35.651 38.073 35.582Q37.935 35.514 37.767 35.476L37.186 35.377Q36.831 35.309 36.558 35.088Q36.284 34.868 36.284 34.526Q36.284 34.277 36.395 34.102Q36.506 33.928 36.693 33.829Q36.879 33.730 37.094 33.687Q37.309 33.644 37.552 33.644Q37.966 33.644 38.246 33.826L38.461 33.651Q38.472 33.648 38.478 33.646Q38.485 33.644 38.496 33.644L38.547 33.644Q38.574 33.644 38.598 33.668Q38.622 33.692 38.622 33.720L38.622 34.567Q38.622 34.588 38.598 34.615Q38.574 34.642 38.547 34.642L38.434 34.642Q38.407 34.642 38.381 34.617Q38.355 34.591 38.355 34.567Q38.355 34.331 38.249 34.167Q38.143 34.003 37.961 33.921Q37.778 33.839 37.545 33.839Q37.217 33.839 36.961 33.942Q36.704 34.044 36.704 34.321Q36.704 34.516 36.887 34.625Q37.070 34.735 37.299 34.776L37.873 34.882Q38.120 34.930 38.333 35.058Q38.547 35.186 38.684 35.389Q38.820 35.593 38.820 35.842Q38.820 36.355 38.454 36.594Q38.089 36.833 37.552 36.833Q37.057 36.833 36.725 36.539L36.458 36.813Q36.438 36.833 36.411 36.833L36.363 36.833Q36.339 36.833 36.311 36.806Q36.284 36.779 36.284 36.758\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M-8.59 45.301H8.482V28.23H-8.59Z\"\u002F>\u003Cg transform=\"translate(-3.986 2.256)\">\u003Cpath d=\"M0.742 36.218Q0.862 36.375 1.053 36.474Q1.245 36.574 1.460 36.613Q1.675 36.652 1.898 36.652Q2.195 36.652 2.390 36.497Q2.585 36.341 2.675 36.087Q2.766 35.832 2.766 35.548Q2.766 35.254 2.674 35.003Q2.581 34.752 2.383 34.596Q2.185 34.441 1.891 34.441L1.375 34.441Q1.347 34.441 1.322 34.415Q1.296 34.390 1.296 34.366L1.296 34.294Q1.296 34.263 1.322 34.241Q1.347 34.219 1.375 34.219L1.816 34.188Q2.178 34.188 2.398 33.831Q2.619 33.473 2.619 33.084Q2.619 32.756 2.424 32.552Q2.229 32.349 1.898 32.349Q1.611 32.349 1.358 32.433Q1.105 32.516 0.941 32.704Q1.088 32.704 1.188 32.819Q1.289 32.933 1.289 33.084Q1.289 33.234 1.183 33.344Q1.077 33.453 0.920 33.453Q0.759 33.453 0.650 33.344Q0.541 33.234 0.541 33.084Q0.541 32.759 0.749 32.540Q0.958 32.322 1.274 32.219Q1.590 32.117 1.898 32.117Q2.216 32.117 2.544 32.221Q2.872 32.325 3.099 32.547Q3.326 32.769 3.326 33.084Q3.326 33.518 3.039 33.843Q2.752 34.167 2.318 34.314Q2.629 34.379 2.909 34.545Q3.190 34.711 3.367 34.969Q3.545 35.227 3.545 35.548Q3.545 35.958 3.301 36.268Q3.056 36.577 2.675 36.741Q2.294 36.905 1.898 36.905Q1.529 36.905 1.171 36.792Q0.814 36.680 0.570 36.430Q0.325 36.181 0.325 35.811Q0.325 35.640 0.442 35.528Q0.558 35.415 0.729 35.415Q0.838 35.415 0.929 35.466Q1.019 35.517 1.074 35.610Q1.129 35.702 1.129 35.811Q1.129 35.979 1.016 36.098Q0.903 36.218 0.742 36.218M7.254 36.765L4.724 36.765L4.724 36.485Q5.692 36.485 5.692 36.276L5.692 32.657Q5.299 32.845 4.676 32.845L4.676 32.564Q5.093 32.564 5.457 32.463Q5.821 32.363 6.078 32.117L6.204 32.117Q6.269 32.134 6.286 32.202L6.286 36.276Q6.286 36.485 7.254 36.485\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M9.05 45.301h17.072V28.23H9.051Z\"\u002F>\u003Cg transform=\"translate(13.654 2.256)\">\u003Cpath d=\"M2.263 35.617L0.219 35.617L0.219 35.336L2.550 32.164Q2.585 32.117 2.650 32.117L2.786 32.117Q2.831 32.117 2.858 32.144Q2.885 32.171 2.885 32.216L2.885 35.336L3.648 35.336L3.648 35.617L2.885 35.617L2.885 36.276Q2.885 36.485 3.641 36.485L3.641 36.765L1.508 36.765L1.508 36.485Q2.263 36.485 2.263 36.276L2.263 35.617M2.311 32.892L0.520 35.336L2.311 35.336L2.311 32.892M5.917 36.905Q5.281 36.905 4.917 36.560Q4.553 36.215 4.418 35.690Q4.283 35.165 4.283 34.540Q4.283 33.515 4.639 32.816Q4.994 32.117 5.917 32.117Q6.843 32.117 7.196 32.816Q7.548 33.515 7.548 34.540Q7.548 35.165 7.413 35.690Q7.278 36.215 6.915 36.560Q6.553 36.905 5.917 36.905M5.917 36.680Q6.355 36.680 6.568 36.305Q6.782 35.931 6.831 35.464Q6.881 34.998 6.881 34.420Q6.881 33.867 6.831 33.439Q6.782 33.012 6.570 32.677Q6.358 32.342 5.917 32.342Q5.575 32.342 5.372 32.549Q5.169 32.756 5.081 33.068Q4.994 33.381 4.972 33.697Q4.950 34.014 4.950 34.420Q4.950 34.837 4.972 35.179Q4.994 35.521 5.083 35.869Q5.172 36.218 5.377 36.449Q5.582 36.680 5.917 36.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M26.691 45.301h17.072V28.23H26.69Z\"\u002F>\u003Cg transform=\"translate(31.295 2.256)\">\u003Cpath d=\"M0.753 36.003L0.722 36.003Q0.859 36.300 1.156 36.476Q1.453 36.652 1.781 36.652Q2.144 36.652 2.371 36.474Q2.598 36.297 2.692 36.008Q2.786 35.719 2.786 35.357Q2.786 35.042 2.732 34.757Q2.677 34.472 2.504 34.266Q2.332 34.061 2.017 34.061Q1.744 34.061 1.561 34.128Q1.378 34.195 1.274 34.284Q1.170 34.372 1.074 34.482Q0.978 34.591 0.934 34.601L0.855 34.601Q0.783 34.584 0.766 34.513L0.766 32.195Q0.766 32.161 0.790 32.139Q0.814 32.117 0.848 32.117L0.876 32.117Q1.163 32.233 1.431 32.287Q1.699 32.342 1.976 32.342Q2.253 32.342 2.523 32.287Q2.793 32.233 3.073 32.117L3.097 32.117Q3.132 32.117 3.155 32.140Q3.179 32.164 3.179 32.195L3.179 32.264Q3.179 32.291 3.159 32.311Q2.885 32.626 2.501 32.802Q2.116 32.978 1.703 32.978Q1.364 32.978 1.047 32.892L1.047 34.174Q1.443 33.839 2.017 33.839Q2.421 33.839 2.757 34.049Q3.094 34.260 3.287 34.612Q3.480 34.964 3.480 35.364Q3.480 35.695 3.340 35.981Q3.200 36.266 2.956 36.476Q2.711 36.686 2.409 36.796Q2.106 36.905 1.788 36.905Q1.429 36.905 1.103 36.741Q0.777 36.577 0.582 36.285Q0.387 35.993 0.387 35.630Q0.387 35.480 0.493 35.374Q0.599 35.268 0.753 35.268Q0.906 35.268 1.011 35.372Q1.115 35.476 1.115 35.630Q1.115 35.787 1.011 35.895Q0.906 36.003 0.753 36.003M7.254 36.765L4.369 36.765L4.369 36.563Q4.369 36.533 4.396 36.505L5.644 35.288Q5.716 35.213 5.758 35.171Q5.801 35.128 5.880 35.049Q6.293 34.636 6.524 34.278Q6.755 33.921 6.755 33.497Q6.755 33.265 6.676 33.062Q6.597 32.858 6.456 32.708Q6.314 32.557 6.119 32.477Q5.924 32.397 5.692 32.397Q5.381 32.397 5.123 32.556Q4.864 32.715 4.735 32.992L4.755 32.992Q4.923 32.992 5.030 33.103Q5.138 33.214 5.138 33.378Q5.138 33.535 5.029 33.648Q4.919 33.761 4.755 33.761Q4.594 33.761 4.482 33.648Q4.369 33.535 4.369 33.378Q4.369 33.002 4.577 32.715Q4.786 32.428 5.121 32.272Q5.456 32.117 5.811 32.117Q6.235 32.117 6.614 32.275Q6.994 32.434 7.228 32.751Q7.462 33.067 7.462 33.497Q7.462 33.808 7.322 34.077Q7.182 34.345 6.977 34.550Q6.772 34.755 6.409 35.037Q6.047 35.319 5.938 35.415L5.083 36.143L5.726 36.143Q5.989 36.143 6.278 36.141Q6.567 36.140 6.785 36.131Q7.004 36.122 7.021 36.105Q7.083 36.040 7.120 35.873Q7.158 35.705 7.196 35.463L7.462 35.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M61.972 45.301h17.072V28.23H61.972Z\"\u002F>\u003Cg transform=\"translate(66.576 2.256)\">\u003Cpath d=\"M3.272 36.765L0.742 36.765L0.742 36.485Q1.710 36.485 1.710 36.276L1.710 32.657Q1.317 32.845 0.695 32.845L0.695 32.564Q1.112 32.564 1.476 32.463Q1.840 32.363 2.096 32.117L2.222 32.117Q2.287 32.134 2.304 32.202L2.304 36.276Q2.304 36.485 3.272 36.485L3.272 36.765M4.902 36.451Q5.022 36.567 5.199 36.609Q5.377 36.652 5.592 36.652Q5.832 36.652 6.042 36.543Q6.252 36.433 6.406 36.251Q6.560 36.068 6.659 35.835Q6.826 35.408 6.826 34.588Q6.676 34.882 6.413 35.061Q6.150 35.241 5.832 35.241Q5.398 35.241 5.051 35.032Q4.704 34.824 4.506 34.463Q4.307 34.102 4.307 33.679Q4.307 33.344 4.437 33.055Q4.567 32.766 4.798 32.552Q5.029 32.339 5.328 32.228Q5.627 32.117 5.958 32.117Q6.816 32.117 7.172 32.831Q7.527 33.545 7.527 34.502Q7.527 34.919 7.399 35.347Q7.271 35.774 7.014 36.129Q6.758 36.485 6.396 36.695Q6.033 36.905 5.592 36.905Q5.138 36.905 4.820 36.717Q4.502 36.529 4.502 36.105Q4.502 35.955 4.601 35.856Q4.700 35.757 4.851 35.757Q4.919 35.757 4.986 35.784Q5.052 35.811 5.097 35.856Q5.141 35.900 5.169 35.967Q5.196 36.034 5.196 36.105Q5.196 36.235 5.116 36.333Q5.035 36.430 4.902 36.451M5.873 35.015Q6.167 35.015 6.382 34.837Q6.597 34.660 6.705 34.384Q6.813 34.109 6.813 33.819Q6.813 33.774 6.811 33.747Q6.809 33.720 6.806 33.685Q6.809 33.675 6.811 33.668Q6.813 33.661 6.813 33.651Q6.813 33.149 6.614 32.749Q6.416 32.349 5.958 32.349Q5.391 32.349 5.198 32.708Q5.005 33.067 5.005 33.679Q5.005 34.065 5.059 34.348Q5.114 34.632 5.309 34.824Q5.504 35.015 5.873 35.015\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M79.613 45.301h17.072V28.23H79.613Z\"\u002F>\u003Cg transform=\"translate(84.217 2.256)\">\u003Cpath d=\"M3.272 36.765L0.387 36.765L0.387 36.563Q0.387 36.533 0.414 36.505L1.662 35.288Q1.734 35.213 1.776 35.171Q1.819 35.128 1.898 35.049Q2.311 34.636 2.542 34.278Q2.773 33.921 2.773 33.497Q2.773 33.265 2.694 33.062Q2.615 32.858 2.474 32.708Q2.332 32.557 2.137 32.477Q1.942 32.397 1.710 32.397Q1.399 32.397 1.141 32.556Q0.883 32.715 0.753 32.992L0.773 32.992Q0.941 32.992 1.048 33.103Q1.156 33.214 1.156 33.378Q1.156 33.535 1.047 33.648Q0.937 33.761 0.773 33.761Q0.613 33.761 0.500 33.648Q0.387 33.535 0.387 33.378Q0.387 33.002 0.595 32.715Q0.804 32.428 1.139 32.272Q1.474 32.117 1.829 32.117Q2.253 32.117 2.633 32.275Q3.012 32.434 3.246 32.751Q3.480 33.067 3.480 33.497Q3.480 33.808 3.340 34.077Q3.200 34.345 2.995 34.550Q2.790 34.755 2.427 35.037Q2.065 35.319 1.956 35.415L1.101 36.143L1.744 36.143Q2.007 36.143 2.296 36.141Q2.585 36.140 2.803 36.131Q3.022 36.122 3.039 36.105Q3.101 36.040 3.138 35.873Q3.176 35.705 3.214 35.463L3.480 35.463L3.272 36.765M4.307 35.688Q4.307 35.247 4.610 34.926Q4.912 34.605 5.363 34.413L5.124 34.273Q4.854 34.113 4.688 33.855Q4.523 33.597 4.523 33.299Q4.523 32.947 4.728 32.675Q4.933 32.404 5.254 32.260Q5.575 32.117 5.917 32.117Q6.238 32.117 6.561 32.233Q6.884 32.349 7.096 32.590Q7.308 32.831 7.308 33.166Q7.308 33.528 7.064 33.791Q6.820 34.055 6.440 34.232L6.840 34.468Q7.035 34.581 7.194 34.750Q7.353 34.919 7.440 35.128Q7.527 35.336 7.527 35.569Q7.527 35.972 7.293 36.276Q7.059 36.580 6.685 36.743Q6.310 36.905 5.917 36.905Q5.531 36.905 5.162 36.768Q4.793 36.632 4.550 36.355Q4.307 36.078 4.307 35.688M4.755 35.688Q4.755 35.975 4.924 36.198Q5.093 36.420 5.362 36.536Q5.630 36.652 5.917 36.652Q6.355 36.652 6.717 36.435Q7.079 36.218 7.079 35.811Q7.079 35.610 6.951 35.432Q6.823 35.254 6.645 35.155L5.623 34.560Q5.384 34.670 5.186 34.836Q4.988 35.001 4.871 35.217Q4.755 35.432 4.755 35.688M5.278 33.559L6.197 34.092Q6.505 33.932 6.707 33.699Q6.908 33.467 6.908 33.166Q6.908 32.927 6.763 32.737Q6.618 32.547 6.385 32.448Q6.153 32.349 5.917 32.349Q5.695 32.349 5.466 32.419Q5.237 32.489 5.080 32.646Q4.923 32.804 4.923 33.033Q4.923 33.347 5.278 33.559\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M97.254 45.301h17.071V28.23H97.254Z\"\u002F>\u003Cg transform=\"translate(101.857 2.256)\">\u003Cpath d=\"M1.382 36.557Q1.382 36.051 1.511 35.543Q1.641 35.036 1.879 34.574Q2.116 34.113 2.451 33.692L3.097 32.879L2.284 32.879Q1.699 32.879 1.303 32.887Q0.906 32.896 0.883 32.916Q0.780 33.033 0.701 33.559L0.435 33.559L0.681 32.035L0.947 32.035L0.947 32.055Q0.947 32.123 1.023 32.166Q1.098 32.209 1.176 32.216Q1.368 32.240 1.563 32.246Q1.758 32.253 1.949 32.255Q2.140 32.257 2.339 32.257L3.760 32.257L3.760 32.445Q3.750 32.493 3.740 32.503L2.684 33.826Q2.465 34.099 2.342 34.412Q2.219 34.724 2.161 35.073Q2.103 35.422 2.089 35.753Q2.075 36.085 2.075 36.557Q2.075 36.707 1.976 36.806Q1.877 36.905 1.730 36.905Q1.580 36.905 1.481 36.806Q1.382 36.707 1.382 36.557M5.363 36.557Q5.363 36.051 5.493 35.543Q5.623 35.036 5.861 34.574Q6.098 34.113 6.433 33.692L7.079 32.879L6.266 32.879Q5.681 32.879 5.285 32.887Q4.888 32.896 4.864 32.916Q4.762 33.033 4.683 33.559L4.417 33.559L4.663 32.035L4.929 32.035L4.929 32.055Q4.929 32.123 5.005 32.166Q5.080 32.209 5.158 32.216Q5.350 32.240 5.545 32.246Q5.739 32.253 5.931 32.255Q6.122 32.257 6.321 32.257L7.742 32.257L7.742 32.445Q7.732 32.493 7.722 32.503L6.666 33.826Q6.447 34.099 6.324 34.412Q6.201 34.724 6.143 35.073Q6.085 35.422 6.071 35.753Q6.057 36.085 6.057 36.557Q6.057 36.707 5.958 36.806Q5.859 36.905 5.712 36.905Q5.562 36.905 5.463 36.806Q5.363 36.707 5.363 36.557\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M132.535 45.301h17.071V28.23h-17.071Z\"\u002F>\u003Cg transform=\"translate(137.138 2.256)\">\u003Cpath d=\"M3.272 36.765L0.742 36.765L0.742 36.485Q1.710 36.485 1.710 36.276L1.710 32.657Q1.317 32.845 0.695 32.845L0.695 32.564Q1.112 32.564 1.476 32.463Q1.840 32.363 2.096 32.117L2.222 32.117Q2.287 32.134 2.304 32.202L2.304 36.276Q2.304 36.485 3.272 36.485L3.272 36.765M7.254 36.765L4.724 36.765L4.724 36.485Q5.692 36.485 5.692 36.276L5.692 32.657Q5.299 32.845 4.676 32.845L4.676 32.564Q5.093 32.564 5.457 32.463Q5.821 32.363 6.078 32.117L6.204 32.117Q6.269 32.134 6.286 32.202L6.286 36.276Q6.286 36.485 7.254 36.485\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M150.175 45.301h17.072V28.23h-17.072Z\"\u002F>\u003Cg transform=\"translate(154.779 2.256)\">\u003Cpath d=\"M2.263 35.617L0.219 35.617L0.219 35.336L2.550 32.164Q2.585 32.117 2.650 32.117L2.786 32.117Q2.831 32.117 2.858 32.144Q2.885 32.171 2.885 32.216L2.885 35.336L3.648 35.336L3.648 35.617L2.885 35.617L2.885 36.276Q2.885 36.485 3.641 36.485L3.641 36.765L1.508 36.765L1.508 36.485Q2.263 36.485 2.263 36.276L2.263 35.617M2.311 32.892L0.520 35.336L2.311 35.336L2.311 32.892M4.735 36.003L4.704 36.003Q4.841 36.300 5.138 36.476Q5.435 36.652 5.763 36.652Q6.126 36.652 6.353 36.474Q6.580 36.297 6.674 36.008Q6.768 35.719 6.768 35.357Q6.768 35.042 6.714 34.757Q6.659 34.472 6.486 34.266Q6.314 34.061 5.999 34.061Q5.726 34.061 5.543 34.128Q5.360 34.195 5.256 34.284Q5.152 34.372 5.056 34.482Q4.960 34.591 4.916 34.601L4.837 34.601Q4.765 34.584 4.748 34.513L4.748 32.195Q4.748 32.161 4.772 32.139Q4.796 32.117 4.830 32.117L4.858 32.117Q5.145 32.233 5.413 32.287Q5.681 32.342 5.958 32.342Q6.235 32.342 6.505 32.287Q6.775 32.233 7.055 32.117L7.079 32.117Q7.113 32.117 7.137 32.140Q7.161 32.164 7.161 32.195L7.161 32.264Q7.161 32.291 7.141 32.311Q6.867 32.626 6.483 32.802Q6.098 32.978 5.685 32.978Q5.346 32.978 5.029 32.892L5.029 34.174Q5.425 33.839 5.999 33.839Q6.403 33.839 6.739 34.049Q7.076 34.260 7.269 34.612Q7.462 34.964 7.462 35.364Q7.462 35.695 7.322 35.981Q7.182 36.266 6.937 36.476Q6.693 36.686 6.391 36.796Q6.088 36.905 5.770 36.905Q5.411 36.905 5.085 36.741Q4.758 36.577 4.564 36.285Q4.369 35.993 4.369 35.630Q4.369 35.480 4.475 35.374Q4.581 35.268 4.735 35.268Q4.888 35.268 4.993 35.372Q5.097 35.476 5.097 35.630Q5.097 35.787 4.993 35.895Q4.888 36.003 4.735 36.003\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M167.816 45.301h17.071V28.23h-17.071Z\"\u002F>\u003Cg transform=\"translate(172.42 2.256)\">\u003Cpath d=\"M1.935 36.905Q1.477 36.905 1.159 36.690Q0.842 36.474 0.660 36.122Q0.479 35.770 0.402 35.350Q0.325 34.930 0.325 34.502Q0.325 33.918 0.578 33.362Q0.831 32.807 1.301 32.462Q1.771 32.117 2.369 32.117Q2.779 32.117 3.063 32.315Q3.347 32.513 3.347 32.916Q3.347 33.012 3.301 33.091Q3.255 33.169 3.174 33.214Q3.094 33.258 3.005 33.258Q2.858 33.258 2.757 33.161Q2.656 33.063 2.656 32.916Q2.656 32.786 2.747 32.679Q2.838 32.571 2.971 32.571Q2.783 32.349 2.369 32.349Q2.055 32.349 1.781 32.513Q1.508 32.677 1.341 32.951Q1.153 33.241 1.088 33.607Q1.023 33.973 1.023 34.427Q1.173 34.133 1.438 33.955Q1.703 33.778 2.017 33.778Q2.448 33.778 2.797 33.984Q3.145 34.191 3.345 34.547Q3.545 34.902 3.545 35.329Q3.545 35.774 3.328 36.134Q3.111 36.495 2.738 36.700Q2.366 36.905 1.935 36.905M1.935 36.652Q2.311 36.652 2.515 36.469Q2.718 36.286 2.781 36.003Q2.844 35.719 2.844 35.329Q2.844 34.943 2.790 34.663Q2.735 34.383 2.540 34.191Q2.345 34 1.976 34Q1.686 34 1.474 34.176Q1.262 34.352 1.154 34.625Q1.047 34.899 1.047 35.182L1.047 35.323L1.047 35.364Q1.047 35.869 1.258 36.261Q1.470 36.652 1.935 36.652M4.724 36.218Q4.844 36.375 5.035 36.474Q5.227 36.574 5.442 36.613Q5.657 36.652 5.880 36.652Q6.177 36.652 6.372 36.497Q6.567 36.341 6.657 36.087Q6.748 35.832 6.748 35.548Q6.748 35.254 6.655 35.003Q6.563 34.752 6.365 34.596Q6.167 34.441 5.873 34.441L5.357 34.441Q5.329 34.441 5.304 34.415Q5.278 34.390 5.278 34.366L5.278 34.294Q5.278 34.263 5.304 34.241Q5.329 34.219 5.357 34.219L5.798 34.188Q6.160 34.188 6.380 33.831Q6.601 33.473 6.601 33.084Q6.601 32.756 6.406 32.552Q6.211 32.349 5.880 32.349Q5.592 32.349 5.340 32.433Q5.087 32.516 4.923 32.704Q5.070 32.704 5.170 32.819Q5.271 32.933 5.271 33.084Q5.271 33.234 5.165 33.344Q5.059 33.453 4.902 33.453Q4.741 33.453 4.632 33.344Q4.523 33.234 4.523 33.084Q4.523 32.759 4.731 32.540Q4.940 32.322 5.256 32.219Q5.572 32.117 5.880 32.117Q6.197 32.117 6.526 32.221Q6.854 32.325 7.081 32.547Q7.308 32.769 7.308 33.084Q7.308 33.518 7.021 33.843Q6.734 34.167 6.300 34.314Q6.611 34.379 6.891 34.545Q7.172 34.711 7.349 34.969Q7.527 35.227 7.527 35.548Q7.527 35.958 7.283 36.268Q7.038 36.577 6.657 36.741Q6.276 36.905 5.880 36.905Q5.510 36.905 5.153 36.792Q4.796 36.680 4.552 36.430Q4.307 36.181 4.307 35.811Q4.307 35.640 4.424 35.528Q4.540 35.415 4.711 35.415Q4.820 35.415 4.911 35.466Q5.001 35.517 5.056 35.610Q5.111 35.702 5.111 35.811Q5.111 35.979 4.998 36.098Q4.885 36.218 4.724 36.218\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M17.302 4.045v18.264\"\u002F>\u003Cpath d=\"m17.302 24.815 1.35-3.585-1.35 1.18-1.35-1.18Z\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(8.037 14.108)\">\u003Cpath d=\"M2.010 36.765L0.274 36.765L0.274 36.485Q0.503 36.485 0.652 36.451Q0.800 36.416 0.800 36.276L0.800 34.427Q0.800 34.157 0.693 34.096Q0.585 34.034 0.274 34.034L0.274 33.754L1.303 33.679L1.303 34.386Q1.433 34.078 1.675 33.879Q1.918 33.679 2.236 33.679Q2.455 33.679 2.626 33.803Q2.797 33.928 2.797 34.140Q2.797 34.277 2.697 34.376Q2.598 34.475 2.465 34.475Q2.328 34.475 2.229 34.376Q2.130 34.277 2.130 34.140Q2.130 34 2.229 33.901Q1.939 33.901 1.739 34.097Q1.539 34.294 1.446 34.588Q1.354 34.882 1.354 35.162L1.354 36.276Q1.354 36.485 2.010 36.485L2.010 36.765M3.955 35.931L3.955 34.427Q3.955 34.157 3.848 34.096Q3.740 34.034 3.429 34.034L3.429 33.754L4.536 33.679L4.536 35.911L4.536 35.931Q4.536 36.211 4.588 36.355Q4.639 36.498 4.781 36.555Q4.923 36.611 5.210 36.611Q5.463 36.611 5.668 36.471Q5.873 36.331 5.989 36.105Q6.105 35.880 6.105 35.630L6.105 34.427Q6.105 34.157 5.998 34.096Q5.890 34.034 5.579 34.034L5.579 33.754L6.686 33.679L6.686 36.092Q6.686 36.283 6.739 36.365Q6.792 36.447 6.893 36.466Q6.994 36.485 7.209 36.485L7.209 36.765L6.133 36.833L6.133 36.269Q6.023 36.451 5.878 36.574Q5.733 36.697 5.546 36.765Q5.360 36.833 5.158 36.833Q3.955 36.833 3.955 35.931M9.479 36.765L7.845 36.765L7.845 36.485Q8.074 36.485 8.223 36.451Q8.371 36.416 8.371 36.276L8.371 34.427Q8.371 34.157 8.264 34.096Q8.156 34.034 7.845 34.034L7.845 33.754L8.904 33.679L8.904 34.328Q9.075 34.020 9.380 33.849Q9.684 33.679 10.029 33.679Q10.535 33.679 10.819 33.902Q11.102 34.126 11.102 34.622L11.102 36.276Q11.102 36.413 11.251 36.449Q11.400 36.485 11.625 36.485L11.625 36.765L9.995 36.765L9.995 36.485Q10.224 36.485 10.373 36.451Q10.521 36.416 10.521 36.276L10.521 34.636Q10.521 34.301 10.402 34.101Q10.282 33.901 9.967 33.901Q9.697 33.901 9.463 34.037Q9.229 34.174 9.091 34.408Q8.952 34.642 8.952 34.916L8.952 36.276Q8.952 36.413 9.103 36.449Q9.253 36.485 9.479 36.485\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(8.037 14.108)\">\u003Cpath d=\"M17.925 36.765L15.395 36.765L15.395 36.485Q16.363 36.485 16.363 36.276L16.363 32.657Q15.970 32.845 15.348 32.845L15.348 32.564Q15.765 32.564 16.129 32.463Q16.493 32.363 16.749 32.117L16.875 32.117Q16.940 32.134 16.957 32.202L16.957 36.276Q16.957 36.485 17.925 36.485\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(69.78 14.108)\">\u003Cpath d=\"M2.010 36.765L0.274 36.765L0.274 36.485Q0.503 36.485 0.652 36.451Q0.800 36.416 0.800 36.276L0.800 34.427Q0.800 34.157 0.693 34.096Q0.585 34.034 0.274 34.034L0.274 33.754L1.303 33.679L1.303 34.386Q1.433 34.078 1.675 33.879Q1.918 33.679 2.236 33.679Q2.455 33.679 2.626 33.803Q2.797 33.928 2.797 34.140Q2.797 34.277 2.697 34.376Q2.598 34.475 2.465 34.475Q2.328 34.475 2.229 34.376Q2.130 34.277 2.130 34.140Q2.130 34 2.229 33.901Q1.939 33.901 1.739 34.097Q1.539 34.294 1.446 34.588Q1.354 34.882 1.354 35.162L1.354 36.276Q1.354 36.485 2.010 36.485L2.010 36.765M3.955 35.931L3.955 34.427Q3.955 34.157 3.848 34.096Q3.740 34.034 3.429 34.034L3.429 33.754L4.536 33.679L4.536 35.911L4.536 35.931Q4.536 36.211 4.588 36.355Q4.639 36.498 4.781 36.555Q4.923 36.611 5.210 36.611Q5.463 36.611 5.668 36.471Q5.873 36.331 5.989 36.105Q6.105 35.880 6.105 35.630L6.105 34.427Q6.105 34.157 5.998 34.096Q5.890 34.034 5.579 34.034L5.579 33.754L6.686 33.679L6.686 36.092Q6.686 36.283 6.739 36.365Q6.792 36.447 6.893 36.466Q6.994 36.485 7.209 36.485L7.209 36.765L6.133 36.833L6.133 36.269Q6.023 36.451 5.878 36.574Q5.733 36.697 5.546 36.765Q5.360 36.833 5.158 36.833Q3.955 36.833 3.955 35.931M9.479 36.765L7.845 36.765L7.845 36.485Q8.074 36.485 8.223 36.451Q8.371 36.416 8.371 36.276L8.371 34.427Q8.371 34.157 8.264 34.096Q8.156 34.034 7.845 34.034L7.845 33.754L8.904 33.679L8.904 34.328Q9.075 34.020 9.380 33.849Q9.684 33.679 10.029 33.679Q10.535 33.679 10.819 33.902Q11.102 34.126 11.102 34.622L11.102 36.276Q11.102 36.413 11.251 36.449Q11.400 36.485 11.625 36.485L11.625 36.765L9.995 36.765L9.995 36.485Q10.224 36.485 10.373 36.451Q10.521 36.416 10.521 36.276L10.521 34.636Q10.521 34.301 10.402 34.101Q10.282 33.901 9.967 33.901Q9.697 33.901 9.463 34.037Q9.229 34.174 9.091 34.408Q8.952 34.642 8.952 34.916L8.952 36.276Q8.952 36.413 9.103 36.449Q9.253 36.485 9.479 36.485\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(69.78 14.108)\">\u003Cpath d=\"M17.925 36.765L15.040 36.765L15.040 36.563Q15.040 36.533 15.067 36.505L16.315 35.288Q16.387 35.213 16.429 35.171Q16.472 35.128 16.551 35.049Q16.964 34.636 17.195 34.278Q17.426 33.921 17.426 33.497Q17.426 33.265 17.347 33.062Q17.268 32.858 17.127 32.708Q16.985 32.557 16.790 32.477Q16.595 32.397 16.363 32.397Q16.052 32.397 15.794 32.556Q15.536 32.715 15.406 32.992L15.426 32.992Q15.594 32.992 15.701 33.103Q15.809 33.214 15.809 33.378Q15.809 33.535 15.700 33.648Q15.590 33.761 15.426 33.761Q15.266 33.761 15.153 33.648Q15.040 33.535 15.040 33.378Q15.040 33.002 15.248 32.715Q15.457 32.428 15.792 32.272Q16.127 32.117 16.482 32.117Q16.906 32.117 17.286 32.275Q17.665 32.434 17.899 32.751Q18.133 33.067 18.133 33.497Q18.133 33.808 17.993 34.077Q17.853 34.345 17.648 34.550Q17.443 34.755 17.080 35.037Q16.718 35.319 16.609 35.415L15.754 36.143L16.397 36.143Q16.660 36.143 16.949 36.141Q17.238 36.140 17.456 36.131Q17.675 36.122 17.692 36.105Q17.754 36.040 17.791 35.873Q17.829 35.705 17.867 35.463L18.133 35.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(140.627 14.108)\">\u003Cpath d=\"M2.010 36.765L0.274 36.765L0.274 36.485Q0.503 36.485 0.652 36.451Q0.800 36.416 0.800 36.276L0.800 34.427Q0.800 34.157 0.693 34.096Q0.585 34.034 0.274 34.034L0.274 33.754L1.303 33.679L1.303 34.386Q1.433 34.078 1.675 33.879Q1.918 33.679 2.236 33.679Q2.455 33.679 2.626 33.803Q2.797 33.928 2.797 34.140Q2.797 34.277 2.697 34.376Q2.598 34.475 2.465 34.475Q2.328 34.475 2.229 34.376Q2.130 34.277 2.130 34.140Q2.130 34 2.229 33.901Q1.939 33.901 1.739 34.097Q1.539 34.294 1.446 34.588Q1.354 34.882 1.354 35.162L1.354 36.276Q1.354 36.485 2.010 36.485L2.010 36.765M3.955 35.931L3.955 34.427Q3.955 34.157 3.848 34.096Q3.740 34.034 3.429 34.034L3.429 33.754L4.536 33.679L4.536 35.911L4.536 35.931Q4.536 36.211 4.588 36.355Q4.639 36.498 4.781 36.555Q4.923 36.611 5.210 36.611Q5.463 36.611 5.668 36.471Q5.873 36.331 5.989 36.105Q6.105 35.880 6.105 35.630L6.105 34.427Q6.105 34.157 5.998 34.096Q5.890 34.034 5.579 34.034L5.579 33.754L6.686 33.679L6.686 36.092Q6.686 36.283 6.739 36.365Q6.792 36.447 6.893 36.466Q6.994 36.485 7.209 36.485L7.209 36.765L6.133 36.833L6.133 36.269Q6.023 36.451 5.878 36.574Q5.733 36.697 5.546 36.765Q5.360 36.833 5.158 36.833Q3.955 36.833 3.955 35.931M9.479 36.765L7.845 36.765L7.845 36.485Q8.074 36.485 8.223 36.451Q8.371 36.416 8.371 36.276L8.371 34.427Q8.371 34.157 8.264 34.096Q8.156 34.034 7.845 34.034L7.845 33.754L8.904 33.679L8.904 34.328Q9.075 34.020 9.380 33.849Q9.684 33.679 10.029 33.679Q10.535 33.679 10.819 33.902Q11.102 34.126 11.102 34.622L11.102 36.276Q11.102 36.413 11.251 36.449Q11.400 36.485 11.625 36.485L11.625 36.765L9.995 36.765L9.995 36.485Q10.224 36.485 10.373 36.451Q10.521 36.416 10.521 36.276L10.521 34.636Q10.521 34.301 10.402 34.101Q10.282 33.901 9.967 33.901Q9.697 33.901 9.463 34.037Q9.229 34.174 9.091 34.408Q8.952 34.642 8.952 34.916L8.952 36.276Q8.952 36.413 9.103 36.449Q9.253 36.485 9.479 36.485\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(140.627 14.108)\">\u003Cpath d=\"M15.395 36.218Q15.515 36.375 15.706 36.474Q15.898 36.574 16.113 36.613Q16.328 36.652 16.551 36.652Q16.848 36.652 17.043 36.497Q17.238 36.341 17.328 36.087Q17.419 35.832 17.419 35.548Q17.419 35.254 17.327 35.003Q17.234 34.752 17.036 34.596Q16.838 34.441 16.544 34.441L16.028 34.441Q16 34.441 15.975 34.415Q15.949 34.390 15.949 34.366L15.949 34.294Q15.949 34.263 15.975 34.241Q16 34.219 16.028 34.219L16.469 34.188Q16.831 34.188 17.051 33.831Q17.272 33.473 17.272 33.084Q17.272 32.756 17.077 32.552Q16.882 32.349 16.551 32.349Q16.264 32.349 16.011 32.433Q15.758 32.516 15.594 32.704Q15.741 32.704 15.841 32.819Q15.942 32.933 15.942 33.084Q15.942 33.234 15.836 33.344Q15.730 33.453 15.573 33.453Q15.412 33.453 15.303 33.344Q15.194 33.234 15.194 33.084Q15.194 32.759 15.402 32.540Q15.611 32.322 15.927 32.219Q16.243 32.117 16.551 32.117Q16.869 32.117 17.197 32.221Q17.525 32.325 17.752 32.547Q17.979 32.769 17.979 33.084Q17.979 33.518 17.692 33.843Q17.405 34.167 16.971 34.314Q17.282 34.379 17.562 34.545Q17.843 34.711 18.020 34.969Q18.198 35.227 18.198 35.548Q18.198 35.958 17.954 36.268Q17.709 36.577 17.328 36.741Q16.947 36.905 16.551 36.905Q16.182 36.905 15.824 36.792Q15.467 36.680 15.223 36.430Q14.978 36.181 14.978 35.811Q14.978 35.640 15.095 35.528Q15.211 35.415 15.382 35.415Q15.491 35.415 15.582 35.466Q15.672 35.517 15.727 35.610Q15.782 35.702 15.782 35.811Q15.782 35.979 15.669 36.098Q15.556 36.218 15.395 36.218\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(185.63 -40.93)\">\u003Cpath d=\"M2.010 36.765L0.274 36.765L0.274 36.485Q0.503 36.485 0.652 36.451Q0.800 36.416 0.800 36.276L0.800 34.427Q0.800 34.157 0.693 34.096Q0.585 34.034 0.274 34.034L0.274 33.754L1.303 33.679L1.303 34.386Q1.433 34.078 1.675 33.879Q1.918 33.679 2.236 33.679Q2.455 33.679 2.626 33.803Q2.797 33.928 2.797 34.140Q2.797 34.277 2.697 34.376Q2.598 34.475 2.465 34.475Q2.328 34.475 2.229 34.376Q2.130 34.277 2.130 34.140Q2.130 34 2.229 33.901Q1.939 33.901 1.739 34.097Q1.539 34.294 1.446 34.588Q1.354 34.882 1.354 35.162L1.354 36.276Q1.354 36.485 2.010 36.485L2.010 36.765M3.340 35.230Q3.340 34.909 3.465 34.620Q3.590 34.331 3.815 34.108Q4.041 33.884 4.336 33.764Q4.632 33.644 4.950 33.644Q5.278 33.644 5.540 33.744Q5.801 33.843 5.977 34.025Q6.153 34.208 6.247 34.466Q6.341 34.724 6.341 35.056Q6.341 35.148 6.259 35.169L4.003 35.169L4.003 35.230Q4.003 35.818 4.287 36.201Q4.571 36.584 5.138 36.584Q5.459 36.584 5.727 36.391Q5.996 36.198 6.085 35.883Q6.092 35.842 6.167 35.828L6.259 35.828Q6.341 35.852 6.341 35.924Q6.341 35.931 6.334 35.958Q6.221 36.355 5.851 36.594Q5.480 36.833 5.056 36.833Q4.618 36.833 4.218 36.625Q3.819 36.416 3.579 36.049Q3.340 35.682 3.340 35.230M4.010 34.960L5.825 34.960Q5.825 34.683 5.727 34.431Q5.630 34.178 5.432 34.022Q5.234 33.867 4.950 33.867Q4.673 33.867 4.459 34.025Q4.246 34.184 4.128 34.439Q4.010 34.694 4.010 34.960M8.573 38.122L6.943 38.122L6.943 37.842Q7.172 37.842 7.320 37.807Q7.469 37.773 7.469 37.633L7.469 34.287Q7.469 34.116 7.332 34.075Q7.196 34.034 6.943 34.034L6.943 33.754L8.023 33.679L8.023 34.085Q8.245 33.884 8.532 33.781Q8.819 33.679 9.127 33.679Q9.554 33.679 9.918 33.892Q10.282 34.106 10.496 34.470Q10.709 34.834 10.709 35.254Q10.709 35.699 10.470 36.063Q10.231 36.427 9.838 36.630Q9.445 36.833 9 36.833Q8.734 36.833 8.486 36.733Q8.238 36.632 8.050 36.451L8.050 37.633Q8.050 37.770 8.199 37.806Q8.347 37.842 8.573 37.842L8.573 38.122M8.050 34.434L8.050 36.044Q8.183 36.297 8.426 36.454Q8.669 36.611 8.946 36.611Q9.274 36.611 9.527 36.410Q9.779 36.208 9.913 35.890Q10.046 35.572 10.046 35.254Q10.046 35.025 9.981 34.796Q9.916 34.567 9.788 34.369Q9.660 34.171 9.465 34.051Q9.270 33.932 9.038 33.932Q8.744 33.932 8.476 34.061Q8.207 34.191 8.050 34.434\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(185.63 -40.93)\">\u003Cpath d=\"M11.532 35.230Q11.532 34.909 11.657 34.620Q11.782 34.331 12.008 34.108Q12.233 33.884 12.529 33.764Q12.824 33.644 13.142 33.644Q13.470 33.644 13.732 33.744Q13.993 33.843 14.169 34.025Q14.345 34.208 14.439 34.466Q14.533 34.724 14.533 35.056Q14.533 35.148 14.451 35.169L12.196 35.169L12.196 35.230Q12.196 35.818 12.479 36.201Q12.763 36.584 13.330 36.584Q13.652 36.584 13.920 36.391Q14.188 36.198 14.277 35.883Q14.284 35.842 14.359 35.828L14.451 35.828Q14.533 35.852 14.533 35.924Q14.533 35.931 14.527 35.958Q14.414 36.355 14.043 36.594Q13.672 36.833 13.248 36.833Q12.811 36.833 12.411 36.625Q12.011 36.416 11.772 36.049Q11.532 35.682 11.532 35.230M12.202 34.960L14.017 34.960Q14.017 34.683 13.920 34.431Q13.822 34.178 13.624 34.022Q13.426 33.867 13.142 33.867Q12.865 33.867 12.652 34.025Q12.438 34.184 12.320 34.439Q12.202 34.694 12.202 34.960M15.179 36.037Q15.179 35.705 15.403 35.478Q15.627 35.251 15.971 35.123Q16.314 34.994 16.687 34.942Q17.059 34.889 17.363 34.889L17.363 34.636Q17.363 34.431 17.256 34.251Q17.148 34.072 16.967 33.969Q16.786 33.867 16.577 33.867Q16.171 33.867 15.935 33.959Q16.024 33.996 16.070 34.080Q16.116 34.164 16.116 34.266Q16.116 34.362 16.070 34.441Q16.024 34.519 15.943 34.564Q15.863 34.608 15.774 34.608Q15.624 34.608 15.523 34.511Q15.422 34.413 15.422 34.266Q15.422 33.644 16.577 33.644Q16.789 33.644 17.039 33.708Q17.288 33.771 17.490 33.890Q17.692 34.010 17.818 34.195Q17.945 34.379 17.945 34.622L17.945 36.198Q17.945 36.314 18.006 36.410Q18.068 36.505 18.180 36.505Q18.290 36.505 18.355 36.411Q18.420 36.317 18.420 36.198L18.420 35.750L18.686 35.750L18.686 36.198Q18.686 36.468 18.459 36.633Q18.232 36.799 17.951 36.799Q17.743 36.799 17.606 36.645Q17.469 36.492 17.446 36.276Q17.299 36.543 17.017 36.688Q16.735 36.833 16.410 36.833Q16.133 36.833 15.849 36.758Q15.566 36.683 15.373 36.504Q15.179 36.324 15.179 36.037M15.795 36.037Q15.795 36.211 15.895 36.341Q15.996 36.471 16.152 36.541Q16.307 36.611 16.471 36.611Q16.690 36.611 16.899 36.514Q17.107 36.416 17.235 36.235Q17.363 36.054 17.363 35.828L17.363 35.100Q17.039 35.100 16.673 35.191Q16.307 35.282 16.051 35.494Q15.795 35.705 15.795 36.037M19.630 35.924L19.630 34.027L18.990 34.027L18.990 33.805Q19.308 33.805 19.525 33.595Q19.742 33.385 19.843 33.075Q19.944 32.766 19.944 32.458L20.211 32.458L20.211 33.747L21.287 33.747L21.287 34.027L20.211 34.027L20.211 35.911Q20.211 36.187 20.315 36.386Q20.419 36.584 20.679 36.584Q20.836 36.584 20.942 36.480Q21.048 36.375 21.098 36.222Q21.147 36.068 21.147 35.911L21.147 35.497L21.414 35.497L21.414 35.924Q21.414 36.150 21.315 36.360Q21.216 36.570 21.031 36.702Q20.846 36.833 20.617 36.833Q20.180 36.833 19.905 36.596Q19.630 36.358 19.630 35.924\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(185.63 -40.93)\">\u003Cpath d=\"M26.578 38.122L24.948 38.122L24.948 37.842Q25.177 37.842 25.326 37.807Q25.474 37.773 25.474 37.633L25.474 34.287Q25.474 34.116 25.338 34.075Q25.201 34.034 24.948 34.034L24.948 33.754L26.028 33.679L26.028 34.085Q26.250 33.884 26.537 33.781Q26.825 33.679 27.132 33.679Q27.559 33.679 27.923 33.892Q28.287 34.106 28.501 34.470Q28.715 34.834 28.715 35.254Q28.715 35.699 28.475 36.063Q28.236 36.427 27.843 36.630Q27.450 36.833 27.006 36.833Q26.739 36.833 26.491 36.733Q26.244 36.632 26.056 36.451L26.056 37.633Q26.056 37.770 26.204 37.806Q26.353 37.842 26.578 37.842L26.578 38.122M26.056 34.434L26.056 36.044Q26.189 36.297 26.432 36.454Q26.674 36.611 26.951 36.611Q27.279 36.611 27.532 36.410Q27.785 36.208 27.918 35.890Q28.052 35.572 28.052 35.254Q28.052 35.025 27.987 34.796Q27.922 34.567 27.794 34.369Q27.665 34.171 27.471 34.051Q27.276 33.932 27.043 33.932Q26.749 33.932 26.481 34.061Q26.213 34.191 26.056 34.434\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(185.63 -40.93)\">\u003Cpath d=\"M29.525 35.230Q29.525 34.909 29.650 34.620Q29.775 34.331 30.001 34.108Q30.226 33.884 30.522 33.764Q30.817 33.644 31.135 33.644Q31.463 33.644 31.725 33.744Q31.986 33.843 32.162 34.025Q32.338 34.208 32.432 34.466Q32.526 34.724 32.526 35.056Q32.526 35.148 32.444 35.169L30.189 35.169L30.189 35.230Q30.189 35.818 30.472 36.201Q30.756 36.584 31.323 36.584Q31.645 36.584 31.913 36.391Q32.181 36.198 32.270 35.883Q32.277 35.842 32.352 35.828L32.444 35.828Q32.526 35.852 32.526 35.924Q32.526 35.931 32.520 35.958Q32.407 36.355 32.036 36.594Q31.665 36.833 31.241 36.833Q30.804 36.833 30.404 36.625Q30.004 36.416 29.765 36.049Q29.525 35.682 29.525 35.230M30.195 34.960L32.010 34.960Q32.010 34.683 31.913 34.431Q31.815 34.178 31.617 34.022Q31.419 33.867 31.135 33.867Q30.858 33.867 30.645 34.025Q30.431 34.184 30.313 34.439Q30.195 34.694 30.195 34.960M34.864 36.765L33.128 36.765L33.128 36.485Q33.357 36.485 33.506 36.451Q33.654 36.416 33.654 36.276L33.654 34.427Q33.654 34.157 33.547 34.096Q33.439 34.034 33.128 34.034L33.128 33.754L34.157 33.679L34.157 34.386Q34.287 34.078 34.529 33.879Q34.772 33.679 35.090 33.679Q35.309 33.679 35.480 33.803Q35.650 33.928 35.650 34.140Q35.650 34.277 35.551 34.376Q35.452 34.475 35.319 34.475Q35.182 34.475 35.083 34.376Q34.984 34.277 34.984 34.140Q34.984 34 35.083 33.901Q34.793 33.901 34.593 34.097Q34.393 34.294 34.300 34.588Q34.208 34.882 34.208 35.162L34.208 36.276Q34.208 36.485 34.864 36.485\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(185.63 -40.93)\">\u003Cpath d=\"M40.609 36.765L39.006 36.765L39.006 36.485Q39.232 36.485 39.381 36.451Q39.529 36.416 39.529 36.276L39.529 32.657Q39.529 32.387 39.422 32.325Q39.314 32.264 39.006 32.264L39.006 31.983L40.083 31.908L40.083 36.276Q40.083 36.413 40.233 36.449Q40.384 36.485 40.609 36.485L40.609 36.765M41.163 35.282Q41.163 34.940 41.298 34.641Q41.433 34.342 41.672 34.118Q41.912 33.894 42.230 33.769Q42.547 33.644 42.879 33.644Q43.323 33.644 43.723 33.860Q44.123 34.075 44.357 34.453Q44.591 34.830 44.591 35.282Q44.591 35.623 44.450 35.907Q44.308 36.191 44.063 36.398Q43.819 36.604 43.510 36.719Q43.200 36.833 42.879 36.833Q42.448 36.833 42.047 36.632Q41.645 36.430 41.404 36.078Q41.163 35.726 41.163 35.282M42.879 36.584Q43.481 36.584 43.704 36.206Q43.928 35.828 43.928 35.196Q43.928 34.584 43.694 34.225Q43.460 33.867 42.879 33.867Q41.826 33.867 41.826 35.196Q41.826 35.828 42.052 36.206Q42.277 36.584 42.879 36.584M45.244 36.037Q45.244 35.705 45.468 35.478Q45.692 35.251 46.035 35.123Q46.379 34.994 46.752 34.942Q47.124 34.889 47.428 34.889L47.428 34.636Q47.428 34.431 47.321 34.251Q47.213 34.072 47.032 33.969Q46.851 33.867 46.642 33.867Q46.235 33.867 46 33.959Q46.088 33.996 46.135 34.080Q46.181 34.164 46.181 34.266Q46.181 34.362 46.135 34.441Q46.088 34.519 46.008 34.564Q45.928 34.608 45.839 34.608Q45.689 34.608 45.588 34.511Q45.487 34.413 45.487 34.266Q45.487 33.644 46.642 33.644Q46.854 33.644 47.104 33.708Q47.353 33.771 47.555 33.890Q47.756 34.010 47.883 34.195Q48.009 34.379 48.009 34.622L48.009 36.198Q48.009 36.314 48.071 36.410Q48.132 36.505 48.245 36.505Q48.355 36.505 48.419 36.411Q48.484 36.317 48.484 36.198L48.484 35.750L48.751 35.750L48.751 36.198Q48.751 36.468 48.524 36.633Q48.296 36.799 48.016 36.799Q47.808 36.799 47.671 36.645Q47.534 36.492 47.510 36.276Q47.363 36.543 47.081 36.688Q46.799 36.833 46.475 36.833Q46.198 36.833 45.914 36.758Q45.630 36.683 45.437 36.504Q45.244 36.324 45.244 36.037M45.859 36.037Q45.859 36.211 45.960 36.341Q46.061 36.471 46.217 36.541Q46.372 36.611 46.536 36.611Q46.755 36.611 46.963 36.514Q47.172 36.416 47.300 36.235Q47.428 36.054 47.428 35.828L47.428 35.100Q47.104 35.100 46.738 35.191Q46.372 35.282 46.116 35.494Q45.859 35.705 45.859 36.037M49.168 35.254Q49.168 34.916 49.308 34.625Q49.448 34.335 49.693 34.121Q49.937 33.908 50.241 33.793Q50.545 33.679 50.870 33.679Q51.140 33.679 51.403 33.778Q51.667 33.877 51.858 34.055L51.858 32.657Q51.858 32.387 51.750 32.325Q51.643 32.264 51.332 32.264L51.332 31.983L52.408 31.908L52.408 36.092Q52.408 36.280 52.463 36.363Q52.518 36.447 52.618 36.466Q52.719 36.485 52.935 36.485L52.935 36.765L51.827 36.833L51.827 36.416Q51.410 36.833 50.785 36.833Q50.354 36.833 49.981 36.621Q49.609 36.410 49.388 36.049Q49.168 35.688 49.168 35.254M50.843 36.611Q51.051 36.611 51.238 36.539Q51.424 36.468 51.578 36.331Q51.731 36.194 51.827 36.016L51.827 34.407Q51.742 34.260 51.596 34.140Q51.451 34.020 51.282 33.961Q51.113 33.901 50.932 33.901Q50.371 33.901 50.103 34.290Q49.835 34.680 49.835 35.261Q49.835 35.832 50.069 36.222Q50.303 36.611 50.843 36.611\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Run formation (phase 1). The unsorted file streams past in memory-sized loads of \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6833em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">M\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> records; each load is sorted internally and flushed back as one sorted run. A file of \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6833em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> records becomes \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:1em;vertical-align:-0.25em;\">\u003C\u002Fspan>\u003Cspan class=\"mopen\">⌈\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003Cspan class=\"mord\">\u002F\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">M\u003C\u002Fspan>\u003Cspan class=\"mclose\">⌉\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> runs.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:392.998px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 294.749 162.414\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M-65.403-37.064h42.679v-17.072h-42.68Z\"\u002F>\u003Cg transform=\"translate(-15.105 -65.856)\">\u003Cpath d=\"M-43.175 21.852L-43.175 20.348Q-43.175 20.078-43.283 20.017Q-43.391 19.955-43.702 19.955L-43.702 19.675L-42.594 19.600L-42.594 21.832L-42.594 21.852Q-42.594 22.132-42.543 22.276Q-42.492 22.419-42.350 22.476Q-42.208 22.532-41.921 22.532Q-41.668 22.532-41.463 22.392Q-41.258 22.252-41.142 22.026Q-41.025 21.801-41.025 21.551L-41.025 20.348Q-41.025 20.078-41.133 20.017Q-41.241 19.955-41.552 19.955L-41.552 19.675L-40.444 19.600L-40.444 22.013Q-40.444 22.204-40.391 22.286Q-40.338 22.368-40.238 22.387Q-40.137 22.406-39.921 22.406L-39.921 22.686L-40.998 22.754L-40.998 22.190Q-41.107 22.372-41.253 22.495Q-41.398 22.618-41.584 22.686Q-41.771 22.754-41.972 22.754Q-43.175 22.754-43.175 21.852M-37.652 22.686L-39.286 22.686L-39.286 22.406Q-39.057 22.406-38.908 22.372Q-38.759 22.337-38.759 22.197L-38.759 20.348Q-38.759 20.078-38.867 20.017Q-38.975 19.955-39.286 19.955L-39.286 19.675L-38.226 19.600L-38.226 20.249Q-38.055 19.941-37.751 19.770Q-37.447 19.600-37.102 19.600Q-36.596 19.600-36.312 19.823Q-36.028 20.047-36.028 20.543L-36.028 22.197Q-36.028 22.334-35.880 22.370Q-35.731 22.406-35.505 22.406L-35.505 22.686L-37.136 22.686L-37.136 22.406Q-36.907 22.406-36.758 22.372Q-36.609 22.337-36.609 22.197L-36.609 20.557Q-36.609 20.222-36.729 20.022Q-36.849 19.822-37.163 19.822Q-37.433 19.822-37.667 19.958Q-37.901 20.095-38.040 20.329Q-38.178 20.563-38.178 20.837L-38.178 22.197Q-38.178 22.334-38.028 22.370Q-37.877 22.406-37.652 22.406L-37.652 22.686M-34.918 22.679L-34.918 21.616Q-34.918 21.592-34.890 21.565Q-34.863 21.538-34.839 21.538L-34.730 21.538Q-34.665 21.538-34.651 21.596Q-34.555 22.030-34.309 22.281Q-34.063 22.532-33.649 22.532Q-33.308 22.532-33.055 22.399Q-32.802 22.266-32.802 21.958Q-32.802 21.801-32.896 21.686Q-32.990 21.572-33.128 21.503Q-33.267 21.435-33.434 21.397L-34.015 21.298Q-34.371 21.230-34.644 21.009Q-34.918 20.789-34.918 20.447Q-34.918 20.198-34.806 20.023Q-34.695 19.849-34.509 19.750Q-34.323 19.651-34.107 19.608Q-33.892 19.565-33.649 19.565Q-33.236 19.565-32.956 19.747L-32.740 19.572Q-32.730 19.569-32.723 19.567Q-32.716 19.565-32.706 19.565L-32.655 19.565Q-32.627 19.565-32.604 19.589Q-32.580 19.613-32.580 19.641L-32.580 20.488Q-32.580 20.509-32.604 20.536Q-32.627 20.563-32.655 20.563L-32.768 20.563Q-32.795 20.563-32.821 20.538Q-32.846 20.512-32.846 20.488Q-32.846 20.252-32.952 20.088Q-33.058 19.924-33.241 19.842Q-33.424 19.760-33.656 19.760Q-33.984 19.760-34.241 19.863Q-34.497 19.965-34.497 20.242Q-34.497 20.437-34.314 20.546Q-34.131 20.656-33.902 20.697L-33.328 20.803Q-33.082 20.851-32.868 20.979Q-32.655 21.107-32.518 21.310Q-32.381 21.514-32.381 21.763Q-32.381 22.276-32.747 22.515Q-33.113 22.754-33.649 22.754Q-34.145 22.754-34.477 22.460L-34.743 22.734Q-34.764 22.754-34.791 22.754L-34.839 22.754Q-34.863 22.754-34.890 22.727Q-34.918 22.700-34.918 22.679M-31.793 21.203Q-31.793 20.861-31.658 20.562Q-31.523 20.263-31.284 20.039Q-31.045 19.815-30.727 19.690Q-30.409 19.565-30.078 19.565Q-29.633 19.565-29.233 19.781Q-28.834 19.996-28.599 20.374Q-28.365 20.751-28.365 21.203Q-28.365 21.544-28.507 21.828Q-28.649 22.112-28.893 22.319Q-29.138 22.525-29.447 22.640Q-29.756 22.754-30.078 22.754Q-30.508 22.754-30.910 22.553Q-31.312 22.351-31.553 21.999Q-31.793 21.647-31.793 21.203M-30.078 22.505Q-29.476 22.505-29.252 22.127Q-29.028 21.749-29.028 21.117Q-29.028 20.505-29.262 20.146Q-29.497 19.788-30.078 19.788Q-31.130 19.788-31.130 21.117Q-31.130 21.749-30.905 22.127Q-30.679 22.505-30.078 22.505M-26.021 22.686L-27.757 22.686L-27.757 22.406Q-27.528 22.406-27.379 22.372Q-27.231 22.337-27.231 22.197L-27.231 20.348Q-27.231 20.078-27.338 20.017Q-27.446 19.955-27.757 19.955L-27.757 19.675L-26.728 19.600L-26.728 20.307Q-26.598 19.999-26.356 19.800Q-26.113 19.600-25.795 19.600Q-25.576 19.600-25.405 19.724Q-25.234 19.849-25.234 20.061Q-25.234 20.198-25.334 20.297Q-25.433 20.396-25.566 20.396Q-25.703 20.396-25.802 20.297Q-25.901 20.198-25.901 20.061Q-25.901 19.921-25.802 19.822Q-26.092 19.822-26.292 20.018Q-26.492 20.215-26.585 20.509Q-26.677 20.803-26.677 21.083L-26.677 22.197Q-26.677 22.406-26.021 22.406L-26.021 22.686M-24.124 21.845L-24.124 19.948L-24.763 19.948L-24.763 19.726Q-24.445 19.726-24.228 19.516Q-24.011 19.306-23.910 18.996Q-23.809 18.687-23.809 18.379L-23.543 18.379L-23.543 19.668L-22.466 19.668L-22.466 19.948L-23.543 19.948L-23.543 21.832Q-23.543 22.108-23.438 22.307Q-23.334 22.505-23.074 22.505Q-22.917 22.505-22.811 22.401Q-22.705 22.296-22.656 22.143Q-22.606 21.989-22.606 21.832L-22.606 21.418L-22.339 21.418L-22.339 21.845Q-22.339 22.071-22.439 22.281Q-22.538 22.491-22.722 22.623Q-22.907 22.754-23.136 22.754Q-23.573 22.754-23.848 22.517Q-24.124 22.279-24.124 21.845M-21.570 21.151Q-21.570 20.830-21.446 20.541Q-21.321 20.252-21.095 20.029Q-20.870 19.805-20.574 19.685Q-20.278 19.565-19.960 19.565Q-19.632 19.565-19.371 19.665Q-19.109 19.764-18.933 19.946Q-18.757 20.129-18.663 20.387Q-18.569 20.645-18.569 20.977Q-18.569 21.069-18.651 21.090L-20.907 21.090L-20.907 21.151Q-20.907 21.739-20.624 22.122Q-20.340 22.505-19.772 22.505Q-19.451 22.505-19.183 22.312Q-18.915 22.119-18.826 21.804Q-18.819 21.763-18.744 21.749L-18.651 21.749Q-18.569 21.773-18.569 21.845Q-18.569 21.852-18.576 21.879Q-18.689 22.276-19.060 22.515Q-19.431 22.754-19.855 22.754Q-20.292 22.754-20.692 22.546Q-21.092 22.337-21.331 21.970Q-21.570 21.603-21.570 21.151M-20.900 20.881L-19.085 20.881Q-19.085 20.604-19.183 20.352Q-19.280 20.099-19.479 19.943Q-19.677 19.788-19.960 19.788Q-20.237 19.788-20.451 19.946Q-20.665 20.105-20.783 20.360Q-20.900 20.615-20.900 20.881M-17.981 21.175Q-17.981 20.837-17.841 20.546Q-17.701 20.256-17.457 20.042Q-17.212 19.829-16.908 19.714Q-16.604 19.600-16.279 19.600Q-16.009 19.600-15.746 19.699Q-15.483 19.798-15.292 19.976L-15.292 18.578Q-15.292 18.308-15.399 18.246Q-15.507 18.185-15.818 18.185L-15.818 17.904L-14.741 17.829L-14.741 22.013Q-14.741 22.201-14.687 22.284Q-14.632 22.368-14.531 22.387Q-14.430 22.406-14.215 22.406L-14.215 22.686L-15.322 22.754L-15.322 22.337Q-15.739 22.754-16.365 22.754Q-16.795 22.754-17.168 22.542Q-17.541 22.331-17.761 21.970Q-17.981 21.609-17.981 21.175M-16.307 22.532Q-16.098 22.532-15.912 22.460Q-15.726 22.389-15.572 22.252Q-15.418 22.115-15.322 21.937L-15.322 20.328Q-15.408 20.181-15.553 20.061Q-15.698 19.941-15.867 19.882Q-16.037 19.822-16.218 19.822Q-16.778 19.822-17.047 20.211Q-17.315 20.601-17.315 21.182Q-17.315 21.753-17.081 22.143Q-16.847 22.532-16.307 22.532\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(-17.334 -86.373)\">\u003Cpath d=\"M-42.133 22.686L-43.685 22.686L-43.685 22.406Q-43.459 22.406-43.310 22.372Q-43.162 22.337-43.162 22.197L-43.162 20.348Q-43.162 20.160-43.210 20.076Q-43.257 19.993-43.355 19.974Q-43.452 19.955-43.664 19.955L-43.664 19.675L-42.608 19.600L-42.608 22.197Q-42.608 22.337-42.476 22.372Q-42.345 22.406-42.133 22.406L-42.133 22.686M-43.404 18.379Q-43.404 18.208-43.281 18.089Q-43.158 17.969-42.987 17.969Q-42.820 17.969-42.697 18.089Q-42.574 18.208-42.574 18.379Q-42.574 18.554-42.697 18.677Q-42.820 18.800-42.987 18.800Q-43.158 18.800-43.281 18.677Q-43.404 18.554-43.404 18.379M-39.805 22.686L-41.439 22.686L-41.439 22.406Q-41.210 22.406-41.061 22.372Q-40.913 22.337-40.913 22.197L-40.913 20.348Q-40.913 20.078-41.020 20.017Q-41.128 19.955-41.439 19.955L-41.439 19.675L-40.379 19.600L-40.379 20.249Q-40.209 19.941-39.904 19.770Q-39.600 19.600-39.255 19.600Q-38.749 19.600-38.465 19.823Q-38.182 20.047-38.182 20.543L-38.182 22.197Q-38.182 22.334-38.033 22.370Q-37.884 22.406-37.659 22.406L-37.659 22.686L-39.289 22.686L-39.289 22.406Q-39.060 22.406-38.911 22.372Q-38.763 22.337-38.763 22.197L-38.763 20.557Q-38.763 20.222-38.882 20.022Q-39.002 19.822-39.316 19.822Q-39.586 19.822-39.821 19.958Q-40.055 20.095-40.193 20.329Q-40.332 20.563-40.332 20.837L-40.332 22.197Q-40.332 22.334-40.181 22.370Q-40.031 22.406-39.805 22.406L-39.805 22.686M-35.427 24.043L-37.057 24.043L-37.057 23.763Q-36.828 23.763-36.679 23.728Q-36.531 23.694-36.531 23.554L-36.531 20.208Q-36.531 20.037-36.668 19.996Q-36.804 19.955-37.057 19.955L-37.057 19.675L-35.977 19.600L-35.977 20.006Q-35.755 19.805-35.468 19.702Q-35.181 19.600-34.873 19.600Q-34.446 19.600-34.082 19.813Q-33.718 20.027-33.504 20.391Q-33.291 20.755-33.291 21.175Q-33.291 21.620-33.530 21.984Q-33.769 22.348-34.162 22.551Q-34.555 22.754-35 22.754Q-35.266 22.754-35.514 22.654Q-35.762 22.553-35.950 22.372L-35.950 23.554Q-35.950 23.691-35.801 23.727Q-35.652 23.763-35.427 23.763L-35.427 24.043M-35.950 20.355L-35.950 21.965Q-35.816 22.218-35.574 22.375Q-35.331 22.532-35.054 22.532Q-34.726 22.532-34.473 22.331Q-34.220 22.129-34.087 21.811Q-33.954 21.493-33.954 21.175Q-33.954 20.946-34.019 20.717Q-34.084 20.488-34.212 20.290Q-34.340 20.092-34.535 19.972Q-34.730 19.853-34.962 19.853Q-35.256 19.853-35.524 19.982Q-35.793 20.112-35.950 20.355M-32.081 21.852L-32.081 20.348Q-32.081 20.078-32.188 20.017Q-32.296 19.955-32.607 19.955L-32.607 19.675L-31.500 19.600L-31.500 21.832L-31.500 21.852Q-31.500 22.132-31.448 22.276Q-31.397 22.419-31.255 22.476Q-31.113 22.532-30.826 22.532Q-30.573 22.532-30.368 22.392Q-30.163 22.252-30.047 22.026Q-29.931 21.801-29.931 21.551L-29.931 20.348Q-29.931 20.078-30.038 20.017Q-30.146 19.955-30.457 19.955L-30.457 19.675L-29.350 19.600L-29.350 22.013Q-29.350 22.204-29.297 22.286Q-29.244 22.368-29.143 22.387Q-29.042 22.406-28.827 22.406L-28.827 22.686L-29.903 22.754L-29.903 22.190Q-30.013 22.372-30.158 22.495Q-30.303 22.618-30.490 22.686Q-30.676 22.754-30.877 22.754Q-32.081 22.754-32.081 21.852M-27.712 21.845L-27.712 19.948L-28.352 19.948L-28.352 19.726Q-28.034 19.726-27.817 19.516Q-27.600 19.306-27.499 18.996Q-27.398 18.687-27.398 18.379L-27.131 18.379L-27.131 19.668L-26.055 19.668L-26.055 19.948L-27.131 19.948L-27.131 21.832Q-27.131 22.108-27.027 22.307Q-26.923 22.505-26.663 22.505Q-26.506 22.505-26.400 22.401Q-26.294 22.296-26.244 22.143Q-26.195 21.989-26.195 21.832L-26.195 21.418L-25.928 21.418L-25.928 21.845Q-25.928 22.071-26.027 22.281Q-26.127 22.491-26.311 22.623Q-26.496 22.754-26.725 22.754Q-27.162 22.754-27.437 22.517Q-27.712 22.279-27.712 21.845\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-17.334 -86.373)\">\u003Cpath d=\"M-20.286 24.436Q-20.836 24.036-21.207 23.481Q-21.578 22.925-21.759 22.279Q-21.940 21.633-21.940 20.936Q-21.940 20.423-21.840 19.928Q-21.739 19.432-21.534 18.981Q-21.329 18.530-21.016 18.138Q-20.703 17.747-20.286 17.443Q-20.276 17.439-20.269 17.438Q-20.262 17.436-20.252 17.436L-20.184 17.436Q-20.149 17.436-20.127 17.460Q-20.105 17.484-20.105 17.521Q-20.105 17.566-20.132 17.583Q-20.481 17.884-20.734 18.268Q-20.987 18.653-21.139 19.094Q-21.291 19.535-21.363 19.991Q-21.435 20.447-21.435 20.936Q-21.435 21.937-21.125 22.824Q-20.816 23.711-20.132 24.296Q-20.105 24.313-20.105 24.357Q-20.105 24.395-20.127 24.419Q-20.149 24.443-20.184 24.443L-20.252 24.443Q-20.259 24.439-20.267 24.438Q-20.276 24.436-20.286 24.436\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-17.334 -86.373)\">\u003Cpath d=\"M-17.493 22.686L-19.058 22.686Q-19.092 22.686-19.118 22.650Q-19.144 22.614-19.144 22.573L-19.116 22.460Q-19.072 22.413-19.031 22.406Q-18.737 22.406-18.533 22.313Q-18.330 22.221-18.269 21.965L-17.329 18.212Q-17.493 18.185-17.923 18.185Q-18.016 18.161-18.016 18.072L-17.988 17.962Q-17.961 17.915-17.903 17.904L-16.659 17.904Q-16.601 17.915-16.573 17.962L-14.789 21.616L-14.034 18.578Q-14.013 18.516-14.013 18.458Q-14.013 18.284-14.162 18.234Q-14.311 18.185-14.536 18.185Q-14.628 18.161-14.628 18.072L-14.601 17.962Q-14.574 17.915-14.516 17.904L-12.954 17.904Q-12.919 17.904-12.896 17.937Q-12.872 17.969-12.872 18.010L-12.899 18.123Q-12.926 18.178-12.978 18.185Q-13.627 18.185-13.747 18.625L-14.741 22.624Q-14.775 22.679-14.823 22.686L-14.943 22.686Q-15.001 22.676-15.022 22.624L-17.079 18.424L-17.981 22.013Q-17.995 22.102-17.995 22.132Q-17.995 22.307-17.841 22.356Q-17.688 22.406-17.469 22.406Q-17.380 22.430-17.380 22.512L-17.407 22.624Q-17.445 22.679-17.493 22.686\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-17.334 -86.373)\">\u003Cpath d=\"M-11.885 24.443L-11.954 24.443Q-11.988 24.443-12.010 24.417Q-12.032 24.392-12.032 24.357Q-12.032 24.313-12.001 24.296Q-11.646 23.992-11.396 23.602Q-11.147 23.212-10.995 22.780Q-10.843 22.348-10.773 21.879Q-10.703 21.411-10.703 20.936Q-10.703 20.457-10.773 19.991Q-10.843 19.524-10.997 19.089Q-11.150 18.653-11.402 18.265Q-11.653 17.877-12.001 17.583Q-12.032 17.566-12.032 17.521Q-12.032 17.487-12.010 17.462Q-11.988 17.436-11.954 17.436L-11.885 17.436Q-11.875 17.436-11.866 17.438Q-11.858 17.439-11.848 17.443Q-11.304 17.843-10.932 18.396Q-10.559 18.950-10.378 19.596Q-10.197 20.242-10.197 20.936Q-10.197 21.637-10.378 22.284Q-10.559 22.932-10.933 23.486Q-11.308 24.040-11.848 24.436Q-11.858 24.436-11.866 24.438Q-11.875 24.439-11.885 24.443\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M8.574-2.921h42.68v-17.072H8.573Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(64.658 -31.888)\">\u003Cpath d=\"M-42 22.686L-43.736 22.686L-43.736 22.406Q-43.507 22.406-43.358 22.372Q-43.210 22.337-43.210 22.197L-43.210 20.348Q-43.210 20.078-43.317 20.017Q-43.425 19.955-43.736 19.955L-43.736 19.675L-42.707 19.600L-42.707 20.307Q-42.577 19.999-42.335 19.800Q-42.092 19.600-41.774 19.600Q-41.555 19.600-41.384 19.724Q-41.213 19.849-41.213 20.061Q-41.213 20.198-41.313 20.297Q-41.412 20.396-41.545 20.396Q-41.682 20.396-41.781 20.297Q-41.880 20.198-41.880 20.061Q-41.880 19.921-41.781 19.822Q-42.071 19.822-42.271 20.018Q-42.471 20.215-42.564 20.509Q-42.656 20.803-42.656 21.083L-42.656 22.197Q-42.656 22.406-42 22.406L-42 22.686M-40.055 21.852L-40.055 20.348Q-40.055 20.078-40.162 20.017Q-40.270 19.955-40.581 19.955L-40.581 19.675L-39.474 19.600L-39.474 21.832L-39.474 21.852Q-39.474 22.132-39.422 22.276Q-39.371 22.419-39.229 22.476Q-39.087 22.532-38.800 22.532Q-38.547 22.532-38.342 22.392Q-38.137 22.252-38.021 22.026Q-37.905 21.801-37.905 21.551L-37.905 20.348Q-37.905 20.078-38.012 20.017Q-38.120 19.955-38.431 19.955L-38.431 19.675L-37.324 19.600L-37.324 22.013Q-37.324 22.204-37.271 22.286Q-37.218 22.368-37.117 22.387Q-37.016 22.406-36.801 22.406L-36.801 22.686L-37.877 22.754L-37.877 22.190Q-37.987 22.372-38.132 22.495Q-38.277 22.618-38.464 22.686Q-38.650 22.754-38.852 22.754Q-40.055 22.754-40.055 21.852M-34.531 22.686L-36.165 22.686L-36.165 22.406Q-35.936 22.406-35.787 22.372Q-35.639 22.337-35.639 22.197L-35.639 20.348Q-35.639 20.078-35.746 20.017Q-35.854 19.955-36.165 19.955L-36.165 19.675L-35.106 19.600L-35.106 20.249Q-34.935 19.941-34.630 19.770Q-34.326 19.600-33.981 19.600Q-33.475 19.600-33.191 19.823Q-32.908 20.047-32.908 20.543L-32.908 22.197Q-32.908 22.334-32.759 22.370Q-32.610 22.406-32.385 22.406L-32.385 22.686L-34.015 22.686L-34.015 22.406Q-33.786 22.406-33.637 22.372Q-33.489 22.337-33.489 22.197L-33.489 20.557Q-33.489 20.222-33.608 20.022Q-33.728 19.822-34.043 19.822Q-34.313 19.822-34.547 19.958Q-34.781 20.095-34.919 20.329Q-35.058 20.563-35.058 20.837L-35.058 22.197Q-35.058 22.334-34.907 22.370Q-34.757 22.406-34.531 22.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(64.658 -31.888)\">\u003Cpath d=\"M-26.085 22.686L-28.615 22.686L-28.615 22.406Q-27.647 22.406-27.647 22.197L-27.647 18.578Q-28.040 18.766-28.662 18.766L-28.662 18.485Q-28.245 18.485-27.881 18.384Q-27.517 18.284-27.261 18.038L-27.135 18.038Q-27.070 18.055-27.053 18.123L-27.053 22.197Q-27.053 22.406-26.085 22.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M8.574 19.841h42.68V2.77H8.573Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(64.658 -9.125)\">\u003Cpath d=\"M-42 22.686L-43.736 22.686L-43.736 22.406Q-43.507 22.406-43.358 22.372Q-43.210 22.337-43.210 22.197L-43.210 20.348Q-43.210 20.078-43.317 20.017Q-43.425 19.955-43.736 19.955L-43.736 19.675L-42.707 19.600L-42.707 20.307Q-42.577 19.999-42.335 19.800Q-42.092 19.600-41.774 19.600Q-41.555 19.600-41.384 19.724Q-41.213 19.849-41.213 20.061Q-41.213 20.198-41.313 20.297Q-41.412 20.396-41.545 20.396Q-41.682 20.396-41.781 20.297Q-41.880 20.198-41.880 20.061Q-41.880 19.921-41.781 19.822Q-42.071 19.822-42.271 20.018Q-42.471 20.215-42.564 20.509Q-42.656 20.803-42.656 21.083L-42.656 22.197Q-42.656 22.406-42 22.406L-42 22.686M-40.055 21.852L-40.055 20.348Q-40.055 20.078-40.162 20.017Q-40.270 19.955-40.581 19.955L-40.581 19.675L-39.474 19.600L-39.474 21.832L-39.474 21.852Q-39.474 22.132-39.422 22.276Q-39.371 22.419-39.229 22.476Q-39.087 22.532-38.800 22.532Q-38.547 22.532-38.342 22.392Q-38.137 22.252-38.021 22.026Q-37.905 21.801-37.905 21.551L-37.905 20.348Q-37.905 20.078-38.012 20.017Q-38.120 19.955-38.431 19.955L-38.431 19.675L-37.324 19.600L-37.324 22.013Q-37.324 22.204-37.271 22.286Q-37.218 22.368-37.117 22.387Q-37.016 22.406-36.801 22.406L-36.801 22.686L-37.877 22.754L-37.877 22.190Q-37.987 22.372-38.132 22.495Q-38.277 22.618-38.464 22.686Q-38.650 22.754-38.852 22.754Q-40.055 22.754-40.055 21.852M-34.531 22.686L-36.165 22.686L-36.165 22.406Q-35.936 22.406-35.787 22.372Q-35.639 22.337-35.639 22.197L-35.639 20.348Q-35.639 20.078-35.746 20.017Q-35.854 19.955-36.165 19.955L-36.165 19.675L-35.106 19.600L-35.106 20.249Q-34.935 19.941-34.630 19.770Q-34.326 19.600-33.981 19.600Q-33.475 19.600-33.191 19.823Q-32.908 20.047-32.908 20.543L-32.908 22.197Q-32.908 22.334-32.759 22.370Q-32.610 22.406-32.385 22.406L-32.385 22.686L-34.015 22.686L-34.015 22.406Q-33.786 22.406-33.637 22.372Q-33.489 22.337-33.489 22.197L-33.489 20.557Q-33.489 20.222-33.608 20.022Q-33.728 19.822-34.043 19.822Q-34.313 19.822-34.547 19.958Q-34.781 20.095-34.919 20.329Q-35.058 20.563-35.058 20.837L-35.058 22.197Q-35.058 22.334-34.907 22.370Q-34.757 22.406-34.531 22.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(64.658 -9.125)\">\u003Cpath d=\"M-26.085 22.686L-28.970 22.686L-28.970 22.484Q-28.970 22.454-28.943 22.426L-27.695 21.209Q-27.623 21.134-27.581 21.092Q-27.538 21.049-27.459 20.970Q-27.046 20.557-26.815 20.199Q-26.584 19.842-26.584 19.418Q-26.584 19.186-26.663 18.983Q-26.742 18.779-26.883 18.629Q-27.025 18.478-27.220 18.398Q-27.415 18.318-27.647 18.318Q-27.958 18.318-28.216 18.477Q-28.474 18.636-28.604 18.913L-28.584 18.913Q-28.416 18.913-28.309 19.024Q-28.201 19.135-28.201 19.299Q-28.201 19.456-28.310 19.569Q-28.420 19.682-28.584 19.682Q-28.744 19.682-28.857 19.569Q-28.970 19.456-28.970 19.299Q-28.970 18.923-28.762 18.636Q-28.553 18.349-28.218 18.193Q-27.883 18.038-27.528 18.038Q-27.104 18.038-26.724 18.196Q-26.345 18.355-26.111 18.672Q-25.877 18.988-25.877 19.418Q-25.877 19.729-26.017 19.998Q-26.157 20.266-26.362 20.471Q-26.567 20.676-26.930 20.958Q-27.292 21.240-27.401 21.336L-28.256 22.064L-27.613 22.064Q-27.350 22.064-27.061 22.062Q-26.772 22.061-26.554 22.052Q-26.335 22.043-26.318 22.026Q-26.256 21.961-26.219 21.794Q-26.181 21.626-26.143 21.384L-25.877 21.384\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M8.574 42.603h42.68V25.532H8.573Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(64.658 13.636)\">\u003Cpath d=\"M-42 22.686L-43.736 22.686L-43.736 22.406Q-43.507 22.406-43.358 22.372Q-43.210 22.337-43.210 22.197L-43.210 20.348Q-43.210 20.078-43.317 20.017Q-43.425 19.955-43.736 19.955L-43.736 19.675L-42.707 19.600L-42.707 20.307Q-42.577 19.999-42.335 19.800Q-42.092 19.600-41.774 19.600Q-41.555 19.600-41.384 19.724Q-41.213 19.849-41.213 20.061Q-41.213 20.198-41.313 20.297Q-41.412 20.396-41.545 20.396Q-41.682 20.396-41.781 20.297Q-41.880 20.198-41.880 20.061Q-41.880 19.921-41.781 19.822Q-42.071 19.822-42.271 20.018Q-42.471 20.215-42.564 20.509Q-42.656 20.803-42.656 21.083L-42.656 22.197Q-42.656 22.406-42 22.406L-42 22.686M-40.055 21.852L-40.055 20.348Q-40.055 20.078-40.162 20.017Q-40.270 19.955-40.581 19.955L-40.581 19.675L-39.474 19.600L-39.474 21.832L-39.474 21.852Q-39.474 22.132-39.422 22.276Q-39.371 22.419-39.229 22.476Q-39.087 22.532-38.800 22.532Q-38.547 22.532-38.342 22.392Q-38.137 22.252-38.021 22.026Q-37.905 21.801-37.905 21.551L-37.905 20.348Q-37.905 20.078-38.012 20.017Q-38.120 19.955-38.431 19.955L-38.431 19.675L-37.324 19.600L-37.324 22.013Q-37.324 22.204-37.271 22.286Q-37.218 22.368-37.117 22.387Q-37.016 22.406-36.801 22.406L-36.801 22.686L-37.877 22.754L-37.877 22.190Q-37.987 22.372-38.132 22.495Q-38.277 22.618-38.464 22.686Q-38.650 22.754-38.852 22.754Q-40.055 22.754-40.055 21.852M-34.531 22.686L-36.165 22.686L-36.165 22.406Q-35.936 22.406-35.787 22.372Q-35.639 22.337-35.639 22.197L-35.639 20.348Q-35.639 20.078-35.746 20.017Q-35.854 19.955-36.165 19.955L-36.165 19.675L-35.106 19.600L-35.106 20.249Q-34.935 19.941-34.630 19.770Q-34.326 19.600-33.981 19.600Q-33.475 19.600-33.191 19.823Q-32.908 20.047-32.908 20.543L-32.908 22.197Q-32.908 22.334-32.759 22.370Q-32.610 22.406-32.385 22.406L-32.385 22.686L-34.015 22.686L-34.015 22.406Q-33.786 22.406-33.637 22.372Q-33.489 22.337-33.489 22.197L-33.489 20.557Q-33.489 20.222-33.608 20.022Q-33.728 19.822-34.043 19.822Q-34.313 19.822-34.547 19.958Q-34.781 20.095-34.919 20.329Q-35.058 20.563-35.058 20.837L-35.058 22.197Q-35.058 22.334-34.907 22.370Q-34.757 22.406-34.531 22.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(64.658 13.636)\">\u003Cpath d=\"M-28.615 22.139Q-28.495 22.296-28.304 22.395Q-28.112 22.495-27.897 22.534Q-27.682 22.573-27.459 22.573Q-27.162 22.573-26.967 22.418Q-26.772 22.262-26.682 22.008Q-26.591 21.753-26.591 21.469Q-26.591 21.175-26.683 20.924Q-26.776 20.673-26.974 20.517Q-27.172 20.362-27.466 20.362L-27.982 20.362Q-28.010 20.362-28.035 20.336Q-28.061 20.311-28.061 20.287L-28.061 20.215Q-28.061 20.184-28.035 20.162Q-28.010 20.140-27.982 20.140L-27.541 20.109Q-27.179 20.109-26.959 19.752Q-26.738 19.394-26.738 19.005Q-26.738 18.677-26.933 18.473Q-27.128 18.270-27.459 18.270Q-27.746 18.270-27.999 18.354Q-28.252 18.437-28.416 18.625Q-28.269 18.625-28.169 18.740Q-28.068 18.854-28.068 19.005Q-28.068 19.155-28.174 19.265Q-28.280 19.374-28.437 19.374Q-28.598 19.374-28.707 19.265Q-28.816 19.155-28.816 19.005Q-28.816 18.680-28.608 18.461Q-28.399 18.243-28.083 18.140Q-27.767 18.038-27.459 18.038Q-27.141 18.038-26.813 18.142Q-26.485 18.246-26.258 18.468Q-26.031 18.690-26.031 19.005Q-26.031 19.439-26.318 19.764Q-26.605 20.088-27.039 20.235Q-26.728 20.300-26.448 20.466Q-26.167 20.632-25.990 20.890Q-25.812 21.148-25.812 21.469Q-25.812 21.879-26.056 22.189Q-26.301 22.498-26.682 22.662Q-27.063 22.826-27.459 22.826Q-27.828 22.826-28.186 22.713Q-28.543 22.601-28.787 22.351Q-29.032 22.102-29.032 21.732Q-29.032 21.561-28.915 21.449Q-28.799 21.336-28.628 21.336Q-28.519 21.336-28.428 21.387Q-28.338 21.438-28.283 21.531Q-28.228 21.623-28.228 21.732Q-28.228 21.900-28.341 22.019Q-28.454 22.139-28.615 22.139\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M8.574 65.365h42.68V48.294H8.573Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(64.658 36.399)\">\u003Cpath d=\"M-42 22.686L-43.736 22.686L-43.736 22.406Q-43.507 22.406-43.358 22.372Q-43.210 22.337-43.210 22.197L-43.210 20.348Q-43.210 20.078-43.317 20.017Q-43.425 19.955-43.736 19.955L-43.736 19.675L-42.707 19.600L-42.707 20.307Q-42.577 19.999-42.335 19.800Q-42.092 19.600-41.774 19.600Q-41.555 19.600-41.384 19.724Q-41.213 19.849-41.213 20.061Q-41.213 20.198-41.313 20.297Q-41.412 20.396-41.545 20.396Q-41.682 20.396-41.781 20.297Q-41.880 20.198-41.880 20.061Q-41.880 19.921-41.781 19.822Q-42.071 19.822-42.271 20.018Q-42.471 20.215-42.564 20.509Q-42.656 20.803-42.656 21.083L-42.656 22.197Q-42.656 22.406-42 22.406L-42 22.686M-40.055 21.852L-40.055 20.348Q-40.055 20.078-40.162 20.017Q-40.270 19.955-40.581 19.955L-40.581 19.675L-39.474 19.600L-39.474 21.832L-39.474 21.852Q-39.474 22.132-39.422 22.276Q-39.371 22.419-39.229 22.476Q-39.087 22.532-38.800 22.532Q-38.547 22.532-38.342 22.392Q-38.137 22.252-38.021 22.026Q-37.905 21.801-37.905 21.551L-37.905 20.348Q-37.905 20.078-38.012 20.017Q-38.120 19.955-38.431 19.955L-38.431 19.675L-37.324 19.600L-37.324 22.013Q-37.324 22.204-37.271 22.286Q-37.218 22.368-37.117 22.387Q-37.016 22.406-36.801 22.406L-36.801 22.686L-37.877 22.754L-37.877 22.190Q-37.987 22.372-38.132 22.495Q-38.277 22.618-38.464 22.686Q-38.650 22.754-38.852 22.754Q-40.055 22.754-40.055 21.852M-34.531 22.686L-36.165 22.686L-36.165 22.406Q-35.936 22.406-35.787 22.372Q-35.639 22.337-35.639 22.197L-35.639 20.348Q-35.639 20.078-35.746 20.017Q-35.854 19.955-36.165 19.955L-36.165 19.675L-35.106 19.600L-35.106 20.249Q-34.935 19.941-34.630 19.770Q-34.326 19.600-33.981 19.600Q-33.475 19.600-33.191 19.823Q-32.908 20.047-32.908 20.543L-32.908 22.197Q-32.908 22.334-32.759 22.370Q-32.610 22.406-32.385 22.406L-32.385 22.686L-34.015 22.686L-34.015 22.406Q-33.786 22.406-33.637 22.372Q-33.489 22.337-33.489 22.197L-33.489 20.557Q-33.489 20.222-33.608 20.022Q-33.728 19.822-34.043 19.822Q-34.313 19.822-34.547 19.958Q-34.781 20.095-34.919 20.329Q-35.058 20.563-35.058 20.837L-35.058 22.197Q-35.058 22.334-34.907 22.370Q-34.757 22.406-34.531 22.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(64.658 36.399)\">\u003Cpath d=\"M-27.094 21.538L-29.138 21.538L-29.138 21.257L-26.807 18.085Q-26.772 18.038-26.707 18.038L-26.571 18.038Q-26.526 18.038-26.499 18.065Q-26.472 18.092-26.472 18.137L-26.472 21.257L-25.709 21.257L-25.709 21.538L-26.472 21.538L-26.472 22.197Q-26.472 22.406-25.716 22.406L-25.716 22.686L-27.849 22.686L-27.849 22.406Q-27.094 22.406-27.094 22.197L-27.094 21.538M-27.046 18.813L-28.837 21.257L-27.046 21.257\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-44.064-36.864c0 22.75 29.687 25.407 49.363 25.407\"\u002F>\u003Cpath d=\"m7.804-11.457-3.584-1.35 1.179 1.35-1.18 1.351Z\"\u002F>\u003Cpath fill=\"none\" d=\"M-44.064-36.864c0 27.806 24.631 48.17 49.363 48.17\"\u002F>\u003Cpath d=\"M7.804 11.306 4.22 9.955l1.179 1.35-1.18 1.351Z\"\u002F>\u003Cpath fill=\"none\" d=\"M-44.064-36.864c0 34.51 17.929 70.931 49.363 70.931\"\u002F>\u003Cpath d=\"m7.804 34.067-3.584-1.35 1.179 1.35-1.18 1.351Z\"\u002F>\u003Cpath fill=\"none\" d=\"M-44.064-36.864c0 41.92 10.517 93.694 49.363 93.694\"\u002F>\u003Cpath d=\"M7.804 56.83 4.22 55.479l1.179 1.35-1.18 1.351Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(54.379 -50.48)\">\u003Cpath d=\"M-43.750 22.679L-43.750 21.616Q-43.750 21.592-43.722 21.565Q-43.695 21.538-43.671 21.538L-43.562 21.538Q-43.497 21.538-43.483 21.596Q-43.387 22.030-43.141 22.281Q-42.895 22.532-42.481 22.532Q-42.140 22.532-41.887 22.399Q-41.634 22.266-41.634 21.958Q-41.634 21.801-41.728 21.686Q-41.822 21.572-41.960 21.503Q-42.099 21.435-42.266 21.397L-42.847 21.298Q-43.203 21.230-43.476 21.009Q-43.750 20.789-43.750 20.447Q-43.750 20.198-43.638 20.023Q-43.527 19.849-43.341 19.750Q-43.155 19.651-42.939 19.608Q-42.724 19.565-42.481 19.565Q-42.068 19.565-41.788 19.747L-41.572 19.572Q-41.562 19.569-41.555 19.567Q-41.548 19.565-41.538 19.565L-41.487 19.565Q-41.460 19.565-41.436 19.589Q-41.412 19.613-41.412 19.641L-41.412 20.488Q-41.412 20.509-41.436 20.536Q-41.460 20.563-41.487 20.563L-41.600 20.563Q-41.627 20.563-41.653 20.538Q-41.678 20.512-41.678 20.488Q-41.678 20.252-41.784 20.088Q-41.890 19.924-42.073 19.842Q-42.256 19.760-42.488 19.760Q-42.816 19.760-43.073 19.863Q-43.329 19.965-43.329 20.242Q-43.329 20.437-43.146 20.546Q-42.963 20.656-42.734 20.697L-42.160 20.803Q-41.914 20.851-41.700 20.979Q-41.487 21.107-41.350 21.310Q-41.213 21.514-41.213 21.763Q-41.213 22.276-41.579 22.515Q-41.945 22.754-42.481 22.754Q-42.977 22.754-43.309 22.460L-43.575 22.734Q-43.596 22.754-43.623 22.754L-43.671 22.754Q-43.695 22.754-43.722 22.727Q-43.750 22.700-43.750 22.679M-40.626 21.203Q-40.626 20.861-40.491 20.562Q-40.356 20.263-40.116 20.039Q-39.877 19.815-39.559 19.690Q-39.241 19.565-38.910 19.565Q-38.465 19.565-38.065 19.781Q-37.666 19.996-37.431 20.374Q-37.197 20.751-37.197 21.203Q-37.197 21.544-37.339 21.828Q-37.481 22.112-37.725 22.319Q-37.970 22.525-38.279 22.640Q-38.588 22.754-38.910 22.754Q-39.340 22.754-39.742 22.553Q-40.144 22.351-40.385 21.999Q-40.626 21.647-40.626 21.203M-38.910 22.505Q-38.308 22.505-38.084 22.127Q-37.860 21.749-37.860 21.117Q-37.860 20.505-38.095 20.146Q-38.329 19.788-38.910 19.788Q-39.962 19.788-39.962 21.117Q-39.962 21.749-39.737 22.127Q-39.511 22.505-38.910 22.505M-34.853 22.686L-36.589 22.686L-36.589 22.406Q-36.360 22.406-36.211 22.372Q-36.063 22.337-36.063 22.197L-36.063 20.348Q-36.063 20.078-36.170 20.017Q-36.278 19.955-36.589 19.955L-36.589 19.675L-35.560 19.600L-35.560 20.307Q-35.430 19.999-35.188 19.800Q-34.945 19.600-34.627 19.600Q-34.408 19.600-34.237 19.724Q-34.066 19.849-34.066 20.061Q-34.066 20.198-34.166 20.297Q-34.265 20.396-34.398 20.396Q-34.535 20.396-34.634 20.297Q-34.733 20.198-34.733 20.061Q-34.733 19.921-34.634 19.822Q-34.924 19.822-35.124 20.018Q-35.324 20.215-35.417 20.509Q-35.509 20.803-35.509 21.083L-35.509 22.197Q-35.509 22.406-34.853 22.406L-34.853 22.686M-32.956 21.845L-32.956 19.948L-33.595 19.948L-33.595 19.726Q-33.277 19.726-33.060 19.516Q-32.843 19.306-32.742 18.996Q-32.641 18.687-32.641 18.379L-32.375 18.379L-32.375 19.668L-31.298 19.668L-31.298 19.948L-32.375 19.948L-32.375 21.832Q-32.375 22.108-32.270 22.307Q-32.166 22.505-31.906 22.505Q-31.749 22.505-31.643 22.401Q-31.537 22.296-31.488 22.143Q-31.438 21.989-31.438 21.832L-31.438 21.418L-31.171 21.418L-31.171 21.845Q-31.171 22.071-31.271 22.281Q-31.370 22.491-31.554 22.623Q-31.739 22.754-31.968 22.754Q-32.405 22.754-32.680 22.517Q-32.956 22.279-32.956 21.845M-30.402 21.151Q-30.402 20.830-30.278 20.541Q-30.153 20.252-29.927 20.029Q-29.702 19.805-29.406 19.685Q-29.110 19.565-28.793 19.565Q-28.464 19.565-28.203 19.665Q-27.941 19.764-27.765 19.946Q-27.589 20.129-27.495 20.387Q-27.401 20.645-27.401 20.977Q-27.401 21.069-27.483 21.090L-29.739 21.090L-29.739 21.151Q-29.739 21.739-29.456 22.122Q-29.172 22.505-28.605 22.505Q-28.283 22.505-28.015 22.312Q-27.747 22.119-27.658 21.804Q-27.651 21.763-27.576 21.749L-27.483 21.749Q-27.401 21.773-27.401 21.845Q-27.401 21.852-27.408 21.879Q-27.521 22.276-27.892 22.515Q-28.263 22.754-28.687 22.754Q-29.124 22.754-29.524 22.546Q-29.924 22.337-30.163 21.970Q-30.402 21.603-30.402 21.151M-29.732 20.881L-27.918 20.881Q-27.918 20.604-28.015 20.352Q-28.112 20.099-28.311 19.943Q-28.509 19.788-28.793 19.788Q-29.069 19.788-29.283 19.946Q-29.497 20.105-29.615 20.360Q-29.732 20.615-29.732 20.881M-26.814 21.175Q-26.814 20.837-26.673 20.546Q-26.533 20.256-26.289 20.042Q-26.044 19.829-25.740 19.714Q-25.436 19.600-25.111 19.600Q-24.841 19.600-24.578 19.699Q-24.315 19.798-24.124 19.976L-24.124 18.578Q-24.124 18.308-24.231 18.246Q-24.339 18.185-24.650 18.185L-24.650 17.904L-23.573 17.829L-23.573 22.013Q-23.573 22.201-23.519 22.284Q-23.464 22.368-23.363 22.387Q-23.262 22.406-23.047 22.406L-23.047 22.686L-24.154 22.754L-24.154 22.337Q-24.571 22.754-25.197 22.754Q-25.627 22.754-26 22.542Q-26.373 22.331-26.593 21.970Q-26.814 21.609-26.814 21.175M-25.139 22.532Q-24.930 22.532-24.744 22.460Q-24.558 22.389-24.404 22.252Q-24.250 22.115-24.154 21.937L-24.154 20.328Q-24.240 20.181-24.385 20.061Q-24.530 19.941-24.699 19.882Q-24.869 19.822-25.050 19.822Q-25.610 19.822-25.879 20.211Q-26.147 20.601-26.147 21.182Q-26.147 21.753-25.913 22.143Q-25.679 22.532-25.139 22.532\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.379 -50.48)\">\u003Cpath d=\"M-17.929 22.686L-19.665 22.686L-19.665 22.406Q-19.436 22.406-19.287 22.372Q-19.139 22.337-19.139 22.197L-19.139 20.348Q-19.139 20.078-19.246 20.017Q-19.354 19.955-19.665 19.955L-19.665 19.675L-18.636 19.600L-18.636 20.307Q-18.506 19.999-18.264 19.800Q-18.021 19.600-17.703 19.600Q-17.484 19.600-17.313 19.724Q-17.142 19.849-17.142 20.061Q-17.142 20.198-17.242 20.297Q-17.341 20.396-17.474 20.396Q-17.611 20.396-17.710 20.297Q-17.809 20.198-17.809 20.061Q-17.809 19.921-17.710 19.822Q-18 19.822-18.200 20.018Q-18.400 20.215-18.493 20.509Q-18.585 20.803-18.585 21.083L-18.585 22.197Q-18.585 22.406-17.929 22.406L-17.929 22.686M-15.984 21.852L-15.984 20.348Q-15.984 20.078-16.091 20.017Q-16.199 19.955-16.510 19.955L-16.510 19.675L-15.403 19.600L-15.403 21.832L-15.403 21.852Q-15.403 22.132-15.351 22.276Q-15.300 22.419-15.158 22.476Q-15.016 22.532-14.729 22.532Q-14.476 22.532-14.271 22.392Q-14.066 22.252-13.950 22.026Q-13.834 21.801-13.834 21.551L-13.834 20.348Q-13.834 20.078-13.941 20.017Q-14.049 19.955-14.360 19.955L-14.360 19.675L-13.253 19.600L-13.253 22.013Q-13.253 22.204-13.200 22.286Q-13.147 22.368-13.046 22.387Q-12.945 22.406-12.730 22.406L-12.730 22.686L-13.806 22.754L-13.806 22.190Q-13.916 22.372-14.061 22.495Q-14.206 22.618-14.393 22.686Q-14.579 22.754-14.781 22.754Q-15.984 22.754-15.984 21.852M-10.460 22.686L-12.094 22.686L-12.094 22.406Q-11.865 22.406-11.716 22.372Q-11.568 22.337-11.568 22.197L-11.568 20.348Q-11.568 20.078-11.675 20.017Q-11.783 19.955-12.094 19.955L-12.094 19.675L-11.035 19.600L-11.035 20.249Q-10.864 19.941-10.559 19.770Q-10.255 19.600-9.910 19.600Q-9.404 19.600-9.120 19.823Q-8.837 20.047-8.837 20.543L-8.837 22.197Q-8.837 22.334-8.688 22.370Q-8.539 22.406-8.314 22.406L-8.314 22.686L-9.944 22.686L-9.944 22.406Q-9.715 22.406-9.566 22.372Q-9.418 22.337-9.418 22.197L-9.418 20.557Q-9.418 20.222-9.537 20.022Q-9.657 19.822-9.972 19.822Q-10.242 19.822-10.476 19.958Q-10.710 20.095-10.848 20.329Q-10.987 20.563-10.987 20.837L-10.987 22.197Q-10.987 22.334-10.836 22.370Q-10.686 22.406-10.460 22.406L-10.460 22.686M-7.726 22.679L-7.726 21.616Q-7.726 21.592-7.699 21.565Q-7.671 21.538-7.647 21.538L-7.538 21.538Q-7.473 21.538-7.459 21.596Q-7.364 22.030-7.118 22.281Q-6.871 22.532-6.458 22.532Q-6.116 22.532-5.863 22.399Q-5.610 22.266-5.610 21.958Q-5.610 21.801-5.704 21.686Q-5.798 21.572-5.937 21.503Q-6.075 21.435-6.243 21.397L-6.824 21.298Q-7.179 21.230-7.452 21.009Q-7.726 20.789-7.726 20.447Q-7.726 20.198-7.615 20.023Q-7.504 19.849-7.317 19.750Q-7.131 19.651-6.916 19.608Q-6.701 19.565-6.458 19.565Q-6.044 19.565-5.764 19.747L-5.549 19.572Q-5.538 19.569-5.532 19.567Q-5.525 19.565-5.514 19.565L-5.463 19.565Q-5.436 19.565-5.412 19.589Q-5.388 19.613-5.388 19.641L-5.388 20.488Q-5.388 20.509-5.412 20.536Q-5.436 20.563-5.463 20.563L-5.576 20.563Q-5.603 20.563-5.629 20.538Q-5.655 20.512-5.655 20.488Q-5.655 20.252-5.761 20.088Q-5.867 19.924-6.049 19.842Q-6.232 19.760-6.465 19.760Q-6.793 19.760-7.049 19.863Q-7.305 19.965-7.305 20.242Q-7.305 20.437-7.123 20.546Q-6.940 20.656-6.711 20.697L-6.137 20.803Q-5.890 20.851-5.677 20.979Q-5.463 21.107-5.326 21.310Q-5.190 21.514-5.190 21.763Q-5.190 22.276-5.555 22.515Q-5.921 22.754-6.458 22.754Q-6.953 22.754-7.285 22.460L-7.552 22.734Q-7.572 22.754-7.599 22.754L-7.647 22.754Q-7.671 22.754-7.699 22.727Q-7.726 22.700-7.726 22.679\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M93.932 8.46h42.68V-8.612h-42.68Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(142.433 -21.012)\">\u003Cpath d=\"M-42.068 22.686L-43.702 22.686L-43.702 22.406Q-43.473 22.406-43.324 22.372Q-43.175 22.337-43.175 22.197L-43.175 20.348Q-43.175 20.078-43.283 20.017Q-43.391 19.955-43.702 19.955L-43.702 19.675L-42.642 19.600L-42.642 20.249Q-42.471 19.941-42.167 19.770Q-41.863 19.600-41.518 19.600Q-41.118 19.600-40.841 19.740Q-40.564 19.880-40.479 20.228Q-40.311 19.935-40.012 19.767Q-39.713 19.600-39.368 19.600Q-38.862 19.600-38.578 19.823Q-38.294 20.047-38.294 20.543L-38.294 22.197Q-38.294 22.334-38.146 22.370Q-37.997 22.406-37.772 22.406L-37.772 22.686L-39.402 22.686L-39.402 22.406Q-39.176 22.406-39.026 22.370Q-38.876 22.334-38.876 22.197L-38.876 20.557Q-38.876 20.222-38.995 20.022Q-39.115 19.822-39.429 19.822Q-39.699 19.822-39.933 19.958Q-40.168 20.095-40.306 20.329Q-40.444 20.563-40.444 20.837L-40.444 22.197Q-40.444 22.334-40.296 22.370Q-40.147 22.406-39.921 22.406L-39.921 22.686L-41.552 22.686L-41.552 22.406Q-41.323 22.406-41.174 22.372Q-41.025 22.337-41.025 22.197L-41.025 20.557Q-41.025 20.222-41.145 20.022Q-41.265 19.822-41.579 19.822Q-41.849 19.822-42.083 19.958Q-42.317 20.095-42.456 20.329Q-42.594 20.563-42.594 20.837L-42.594 22.197Q-42.594 22.334-42.444 22.370Q-42.293 22.406-42.068 22.406L-42.068 22.686M-37.225 21.151Q-37.225 20.830-37.100 20.541Q-36.975 20.252-36.750 20.029Q-36.524 19.805-36.228 19.685Q-35.933 19.565-35.615 19.565Q-35.287 19.565-35.025 19.665Q-34.764 19.764-34.588 19.946Q-34.412 20.129-34.318 20.387Q-34.224 20.645-34.224 20.977Q-34.224 21.069-34.306 21.090L-36.562 21.090L-36.562 21.151Q-36.562 21.739-36.278 22.122Q-35.994 22.505-35.427 22.505Q-35.106 22.505-34.837 22.312Q-34.569 22.119-34.480 21.804Q-34.473 21.763-34.398 21.749L-34.306 21.749Q-34.224 21.773-34.224 21.845Q-34.224 21.852-34.231 21.879Q-34.343 22.276-34.714 22.515Q-35.085 22.754-35.509 22.754Q-35.946 22.754-36.346 22.546Q-36.746 22.337-36.985 21.970Q-37.225 21.603-37.225 21.151M-36.555 20.881L-34.740 20.881Q-34.740 20.604-34.837 20.352Q-34.935 20.099-35.133 19.943Q-35.331 19.788-35.615 19.788Q-35.892 19.788-36.105 19.946Q-36.319 20.105-36.437 20.360Q-36.555 20.615-36.555 20.881M-31.886 22.686L-33.622 22.686L-33.622 22.406Q-33.393 22.406-33.244 22.372Q-33.096 22.337-33.096 22.197L-33.096 20.348Q-33.096 20.078-33.203 20.017Q-33.311 19.955-33.622 19.955L-33.622 19.675L-32.593 19.600L-32.593 20.307Q-32.463 19.999-32.221 19.800Q-31.978 19.600-31.660 19.600Q-31.441 19.600-31.271 19.724Q-31.100 19.849-31.100 20.061Q-31.100 20.198-31.199 20.297Q-31.298 20.396-31.431 20.396Q-31.568 20.396-31.667 20.297Q-31.766 20.198-31.766 20.061Q-31.766 19.921-31.667 19.822Q-31.958 19.822-32.158 20.018Q-32.357 20.215-32.450 20.509Q-32.542 20.803-32.542 21.083L-32.542 22.197Q-32.542 22.406-31.886 22.406L-31.886 22.686M-30.556 23.219Q-30.556 22.973-30.360 22.789Q-30.163 22.604-29.907 22.525Q-30.043 22.413-30.115 22.252Q-30.187 22.091-30.187 21.910Q-30.187 21.589-29.975 21.343Q-30.310 21.045-30.310 20.635Q-30.310 20.174-29.920 19.887Q-29.531 19.600-29.052 19.600Q-28.581 19.600-28.246 19.846Q-28.071 19.692-27.861 19.610Q-27.651 19.528-27.422 19.528Q-27.258 19.528-27.137 19.635Q-27.015 19.743-27.015 19.907Q-27.015 20.003-27.087 20.075Q-27.159 20.146-27.251 20.146Q-27.350 20.146-27.420 20.073Q-27.490 19.999-27.490 19.900Q-27.490 19.846-27.477 19.815L-27.470 19.801Q-27.463 19.781-27.454 19.770Q-27.446 19.760-27.442 19.753Q-27.798 19.753-28.085 19.976Q-27.798 20.269-27.798 20.635Q-27.798 20.950-27.982 21.182Q-28.167 21.415-28.456 21.543Q-28.745 21.671-29.052 21.671Q-29.254 21.671-29.445 21.621Q-29.637 21.572-29.814 21.462Q-29.907 21.589-29.907 21.732Q-29.907 21.914-29.779 22.049Q-29.650 22.184-29.466 22.184L-28.834 22.184Q-28.386 22.184-28.017 22.255Q-27.647 22.327-27.388 22.556Q-27.128 22.785-27.128 23.219Q-27.128 23.540-27.424 23.742Q-27.719 23.944-28.123 24.033Q-28.526 24.122-28.840 24.122Q-29.158 24.122-29.562 24.033Q-29.965 23.944-30.261 23.742Q-30.556 23.540-30.556 23.219M-30.102 23.219Q-30.102 23.448-29.883 23.597Q-29.664 23.746-29.372 23.814Q-29.080 23.882-28.840 23.882Q-28.676 23.882-28.468 23.846Q-28.259 23.811-28.053 23.730Q-27.846 23.650-27.714 23.522Q-27.583 23.394-27.583 23.219Q-27.583 22.867-27.964 22.773Q-28.345 22.679-28.847 22.679L-29.466 22.679Q-29.705 22.679-29.903 22.830Q-30.102 22.980-30.102 23.219M-29.052 21.432Q-28.386 21.432-28.386 20.635Q-28.386 19.835-29.052 19.835Q-29.722 19.835-29.722 20.635Q-29.722 21.432-29.052 21.432M-26.574 21.151Q-26.574 20.830-26.449 20.541Q-26.325 20.252-26.099 20.029Q-25.874 19.805-25.578 19.685Q-25.282 19.565-24.964 19.565Q-24.636 19.565-24.375 19.665Q-24.113 19.764-23.937 19.946Q-23.761 20.129-23.667 20.387Q-23.573 20.645-23.573 20.977Q-23.573 21.069-23.655 21.090L-25.911 21.090L-25.911 21.151Q-25.911 21.739-25.627 22.122Q-25.344 22.505-24.776 22.505Q-24.455 22.505-24.187 22.312Q-23.918 22.119-23.830 21.804Q-23.823 21.763-23.748 21.749L-23.655 21.749Q-23.573 21.773-23.573 21.845Q-23.573 21.852-23.580 21.879Q-23.693 22.276-24.064 22.515Q-24.435 22.754-24.858 22.754Q-25.296 22.754-25.696 22.546Q-26.096 22.337-26.335 21.970Q-26.574 21.603-26.574 21.151M-25.904 20.881L-24.089 20.881Q-24.089 20.604-24.187 20.352Q-24.284 20.099-24.482 19.943Q-24.681 19.788-24.964 19.788Q-25.241 19.788-25.455 19.946Q-25.668 20.105-25.786 20.360Q-25.904 20.615-25.904 20.881M-22.985 21.175Q-22.985 20.837-22.845 20.546Q-22.705 20.256-22.461 20.042Q-22.216 19.829-21.912 19.714Q-21.608 19.600-21.283 19.600Q-21.013 19.600-20.750 19.699Q-20.487 19.798-20.295 19.976L-20.295 18.578Q-20.295 18.308-20.403 18.246Q-20.511 18.185-20.822 18.185L-20.822 17.904L-19.745 17.829L-19.745 22.013Q-19.745 22.201-19.690 22.284Q-19.636 22.368-19.535 22.387Q-19.434 22.406-19.219 22.406L-19.219 22.686L-20.326 22.754L-20.326 22.337Q-20.743 22.754-21.369 22.754Q-21.799 22.754-22.172 22.542Q-22.544 22.331-22.765 21.970Q-22.985 21.609-22.985 21.175M-21.311 22.532Q-21.102 22.532-20.916 22.460Q-20.730 22.389-20.576 22.252Q-20.422 22.115-20.326 21.937L-20.326 20.328Q-20.412 20.181-20.557 20.061Q-20.702 19.941-20.871 19.882Q-21.041 19.822-21.222 19.822Q-21.782 19.822-22.051 20.211Q-22.319 20.601-22.319 21.182Q-22.319 21.753-22.085 22.143Q-21.851 22.532-21.311 22.532\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(142.433 -21.012)\">\u003Cpath d=\"M-14.257 22.686L-15.847 22.686L-15.847 22.406Q-15.204 22.406-15.047 22.006L-13.403 17.791Q-13.369 17.696-13.256 17.696L-13.174 17.696Q-13.064 17.696-13.023 17.791L-11.304 22.197Q-11.236 22.337-11.046 22.372Q-10.856 22.406-10.583 22.406L-10.583 22.686L-12.582 22.686L-12.582 22.406Q-12.018 22.406-12.018 22.231Q-12.018 22.214-12.020 22.207Q-12.022 22.201-12.025 22.197L-12.446 21.131L-14.404 21.131L-14.746 22.006Q-14.760 22.006-14.760 22.084Q-14.760 22.245-14.597 22.325Q-14.435 22.406-14.257 22.406L-14.257 22.686M-13.423 18.612L-14.291 20.851L-12.548 20.851\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M93.932 53.985h42.68V36.913h-42.68Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(142.589 24.512)\">\u003Cpath d=\"M-42.068 22.686L-43.702 22.686L-43.702 22.406Q-43.473 22.406-43.324 22.372Q-43.175 22.337-43.175 22.197L-43.175 20.348Q-43.175 20.078-43.283 20.017Q-43.391 19.955-43.702 19.955L-43.702 19.675L-42.642 19.600L-42.642 20.249Q-42.471 19.941-42.167 19.770Q-41.863 19.600-41.518 19.600Q-41.118 19.600-40.841 19.740Q-40.564 19.880-40.479 20.228Q-40.311 19.935-40.012 19.767Q-39.713 19.600-39.368 19.600Q-38.862 19.600-38.578 19.823Q-38.294 20.047-38.294 20.543L-38.294 22.197Q-38.294 22.334-38.146 22.370Q-37.997 22.406-37.772 22.406L-37.772 22.686L-39.402 22.686L-39.402 22.406Q-39.176 22.406-39.026 22.370Q-38.876 22.334-38.876 22.197L-38.876 20.557Q-38.876 20.222-38.995 20.022Q-39.115 19.822-39.429 19.822Q-39.699 19.822-39.933 19.958Q-40.168 20.095-40.306 20.329Q-40.444 20.563-40.444 20.837L-40.444 22.197Q-40.444 22.334-40.296 22.370Q-40.147 22.406-39.921 22.406L-39.921 22.686L-41.552 22.686L-41.552 22.406Q-41.323 22.406-41.174 22.372Q-41.025 22.337-41.025 22.197L-41.025 20.557Q-41.025 20.222-41.145 20.022Q-41.265 19.822-41.579 19.822Q-41.849 19.822-42.083 19.958Q-42.317 20.095-42.456 20.329Q-42.594 20.563-42.594 20.837L-42.594 22.197Q-42.594 22.334-42.444 22.370Q-42.293 22.406-42.068 22.406L-42.068 22.686M-37.225 21.151Q-37.225 20.830-37.100 20.541Q-36.975 20.252-36.750 20.029Q-36.524 19.805-36.228 19.685Q-35.933 19.565-35.615 19.565Q-35.287 19.565-35.025 19.665Q-34.764 19.764-34.588 19.946Q-34.412 20.129-34.318 20.387Q-34.224 20.645-34.224 20.977Q-34.224 21.069-34.306 21.090L-36.562 21.090L-36.562 21.151Q-36.562 21.739-36.278 22.122Q-35.994 22.505-35.427 22.505Q-35.106 22.505-34.837 22.312Q-34.569 22.119-34.480 21.804Q-34.473 21.763-34.398 21.749L-34.306 21.749Q-34.224 21.773-34.224 21.845Q-34.224 21.852-34.231 21.879Q-34.343 22.276-34.714 22.515Q-35.085 22.754-35.509 22.754Q-35.946 22.754-36.346 22.546Q-36.746 22.337-36.985 21.970Q-37.225 21.603-37.225 21.151M-36.555 20.881L-34.740 20.881Q-34.740 20.604-34.837 20.352Q-34.935 20.099-35.133 19.943Q-35.331 19.788-35.615 19.788Q-35.892 19.788-36.105 19.946Q-36.319 20.105-36.437 20.360Q-36.555 20.615-36.555 20.881M-31.886 22.686L-33.622 22.686L-33.622 22.406Q-33.393 22.406-33.244 22.372Q-33.096 22.337-33.096 22.197L-33.096 20.348Q-33.096 20.078-33.203 20.017Q-33.311 19.955-33.622 19.955L-33.622 19.675L-32.593 19.600L-32.593 20.307Q-32.463 19.999-32.221 19.800Q-31.978 19.600-31.660 19.600Q-31.441 19.600-31.271 19.724Q-31.100 19.849-31.100 20.061Q-31.100 20.198-31.199 20.297Q-31.298 20.396-31.431 20.396Q-31.568 20.396-31.667 20.297Q-31.766 20.198-31.766 20.061Q-31.766 19.921-31.667 19.822Q-31.958 19.822-32.158 20.018Q-32.357 20.215-32.450 20.509Q-32.542 20.803-32.542 21.083L-32.542 22.197Q-32.542 22.406-31.886 22.406L-31.886 22.686M-30.556 23.219Q-30.556 22.973-30.360 22.789Q-30.163 22.604-29.907 22.525Q-30.043 22.413-30.115 22.252Q-30.187 22.091-30.187 21.910Q-30.187 21.589-29.975 21.343Q-30.310 21.045-30.310 20.635Q-30.310 20.174-29.920 19.887Q-29.531 19.600-29.052 19.600Q-28.581 19.600-28.246 19.846Q-28.071 19.692-27.861 19.610Q-27.651 19.528-27.422 19.528Q-27.258 19.528-27.137 19.635Q-27.015 19.743-27.015 19.907Q-27.015 20.003-27.087 20.075Q-27.159 20.146-27.251 20.146Q-27.350 20.146-27.420 20.073Q-27.490 19.999-27.490 19.900Q-27.490 19.846-27.477 19.815L-27.470 19.801Q-27.463 19.781-27.454 19.770Q-27.446 19.760-27.442 19.753Q-27.798 19.753-28.085 19.976Q-27.798 20.269-27.798 20.635Q-27.798 20.950-27.982 21.182Q-28.167 21.415-28.456 21.543Q-28.745 21.671-29.052 21.671Q-29.254 21.671-29.445 21.621Q-29.637 21.572-29.814 21.462Q-29.907 21.589-29.907 21.732Q-29.907 21.914-29.779 22.049Q-29.650 22.184-29.466 22.184L-28.834 22.184Q-28.386 22.184-28.017 22.255Q-27.647 22.327-27.388 22.556Q-27.128 22.785-27.128 23.219Q-27.128 23.540-27.424 23.742Q-27.719 23.944-28.123 24.033Q-28.526 24.122-28.840 24.122Q-29.158 24.122-29.562 24.033Q-29.965 23.944-30.261 23.742Q-30.556 23.540-30.556 23.219M-30.102 23.219Q-30.102 23.448-29.883 23.597Q-29.664 23.746-29.372 23.814Q-29.080 23.882-28.840 23.882Q-28.676 23.882-28.468 23.846Q-28.259 23.811-28.053 23.730Q-27.846 23.650-27.714 23.522Q-27.583 23.394-27.583 23.219Q-27.583 22.867-27.964 22.773Q-28.345 22.679-28.847 22.679L-29.466 22.679Q-29.705 22.679-29.903 22.830Q-30.102 22.980-30.102 23.219M-29.052 21.432Q-28.386 21.432-28.386 20.635Q-28.386 19.835-29.052 19.835Q-29.722 19.835-29.722 20.635Q-29.722 21.432-29.052 21.432M-26.574 21.151Q-26.574 20.830-26.449 20.541Q-26.325 20.252-26.099 20.029Q-25.874 19.805-25.578 19.685Q-25.282 19.565-24.964 19.565Q-24.636 19.565-24.375 19.665Q-24.113 19.764-23.937 19.946Q-23.761 20.129-23.667 20.387Q-23.573 20.645-23.573 20.977Q-23.573 21.069-23.655 21.090L-25.911 21.090L-25.911 21.151Q-25.911 21.739-25.627 22.122Q-25.344 22.505-24.776 22.505Q-24.455 22.505-24.187 22.312Q-23.918 22.119-23.830 21.804Q-23.823 21.763-23.748 21.749L-23.655 21.749Q-23.573 21.773-23.573 21.845Q-23.573 21.852-23.580 21.879Q-23.693 22.276-24.064 22.515Q-24.435 22.754-24.858 22.754Q-25.296 22.754-25.696 22.546Q-26.096 22.337-26.335 21.970Q-26.574 21.603-26.574 21.151M-25.904 20.881L-24.089 20.881Q-24.089 20.604-24.187 20.352Q-24.284 20.099-24.482 19.943Q-24.681 19.788-24.964 19.788Q-25.241 19.788-25.455 19.946Q-25.668 20.105-25.786 20.360Q-25.904 20.615-25.904 20.881M-22.985 21.175Q-22.985 20.837-22.845 20.546Q-22.705 20.256-22.461 20.042Q-22.216 19.829-21.912 19.714Q-21.608 19.600-21.283 19.600Q-21.013 19.600-20.750 19.699Q-20.487 19.798-20.295 19.976L-20.295 18.578Q-20.295 18.308-20.403 18.246Q-20.511 18.185-20.822 18.185L-20.822 17.904L-19.745 17.829L-19.745 22.013Q-19.745 22.201-19.690 22.284Q-19.636 22.368-19.535 22.387Q-19.434 22.406-19.219 22.406L-19.219 22.686L-20.326 22.754L-20.326 22.337Q-20.743 22.754-21.369 22.754Q-21.799 22.754-22.172 22.542Q-22.544 22.331-22.765 21.970Q-22.985 21.609-22.985 21.175M-21.311 22.532Q-21.102 22.532-20.916 22.460Q-20.730 22.389-20.576 22.252Q-20.422 22.115-20.326 21.937L-20.326 20.328Q-20.412 20.181-20.557 20.061Q-20.702 19.941-20.871 19.882Q-21.041 19.822-21.222 19.822Q-21.782 19.822-22.051 20.211Q-22.319 20.601-22.319 21.182Q-22.319 21.753-22.085 22.143Q-21.851 22.532-21.311 22.532\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(142.589 24.512)\">\u003Cpath d=\"M-12.781 22.686L-15.754 22.686L-15.754 22.406Q-15.033 22.406-15.033 22.197L-15.033 18.396Q-15.033 18.185-15.754 18.185L-15.754 17.904L-12.996 17.904Q-12.729 17.904-12.423 17.979Q-12.118 18.055-11.858 18.202Q-11.598 18.349-11.436 18.578Q-11.273 18.807-11.273 19.101Q-11.273 19.531-11.660 19.813Q-12.046 20.095-12.528 20.187Q-12.220 20.187-11.871 20.352Q-11.523 20.516-11.294 20.794Q-11.065 21.073-11.065 21.391Q-11.065 21.797-11.328 22.091Q-11.591 22.385-11.989 22.536Q-12.388 22.686-12.781 22.686M-14.390 20.314L-14.390 22.197Q-14.390 22.337-14.302 22.372Q-14.213 22.406-14.025 22.406L-12.996 22.406Q-12.709 22.406-12.432 22.279Q-12.155 22.153-11.984 21.919Q-11.813 21.685-11.813 21.391Q-11.813 21.175-11.895 20.979Q-11.977 20.782-12.128 20.632Q-12.278 20.481-12.475 20.398Q-12.671 20.314-12.887 20.314L-14.390 20.314M-14.390 18.396L-14.390 20.088L-13.208 20.088Q-12.921 20.088-12.640 19.969Q-12.360 19.849-12.181 19.622Q-12.001 19.394-12.001 19.101Q-12.001 18.851-12.140 18.637Q-12.278 18.424-12.507 18.304Q-12.736 18.185-12.996 18.185L-14.025 18.185Q-14.213 18.185-14.302 18.219Q-14.390 18.253-14.390 18.396\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M51.453-11.457c17.086 0 25.193 11.381 39.204 11.381\"\u002F>\u003Cpath d=\"m93.163-.076-3.585-1.35 1.179 1.35-1.179 1.35Z\"\u002F>\u003Cpath fill=\"none\" d=\"M51.453 11.306c17.086 0 25.193-11.382 39.204-11.382\"\u002F>\u003Cpath d=\"m93.163-.076-3.585-1.35 1.179 1.35-1.179 1.35Z\"\u002F>\u003Cpath fill=\"none\" d=\"M51.453 34.067c17.086 0 25.193 11.382 39.204 11.382\"\u002F>\u003Cpath d=\"m93.163 45.449-3.585-1.351 1.179 1.35-1.179 1.351Z\"\u002F>\u003Cpath fill=\"none\" d=\"M51.453 56.83c17.086 0 25.193-11.381 39.204-11.381\"\u002F>\u003Cpath d=\"m93.163 45.449-3.585-1.351 1.179 1.35-1.179 1.351Z\"\u002F>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M173.6 31.222h42.679V14.151h-42.68Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(220.3 1.75)\">\u003Cpath d=\"M-43.750 22.679L-43.750 21.616Q-43.750 21.592-43.722 21.565Q-43.695 21.538-43.671 21.538L-43.562 21.538Q-43.497 21.538-43.483 21.596Q-43.387 22.030-43.141 22.281Q-42.895 22.532-42.481 22.532Q-42.140 22.532-41.887 22.399Q-41.634 22.266-41.634 21.958Q-41.634 21.801-41.728 21.686Q-41.822 21.572-41.960 21.503Q-42.099 21.435-42.266 21.397L-42.847 21.298Q-43.203 21.230-43.476 21.009Q-43.750 20.789-43.750 20.447Q-43.750 20.198-43.638 20.023Q-43.527 19.849-43.341 19.750Q-43.155 19.651-42.939 19.608Q-42.724 19.565-42.481 19.565Q-42.068 19.565-41.788 19.747L-41.572 19.572Q-41.562 19.569-41.555 19.567Q-41.548 19.565-41.538 19.565L-41.487 19.565Q-41.460 19.565-41.436 19.589Q-41.412 19.613-41.412 19.641L-41.412 20.488Q-41.412 20.509-41.436 20.536Q-41.460 20.563-41.487 20.563L-41.600 20.563Q-41.627 20.563-41.653 20.538Q-41.678 20.512-41.678 20.488Q-41.678 20.252-41.784 20.088Q-41.890 19.924-42.073 19.842Q-42.256 19.760-42.488 19.760Q-42.816 19.760-43.073 19.863Q-43.329 19.965-43.329 20.242Q-43.329 20.437-43.146 20.546Q-42.963 20.656-42.734 20.697L-42.160 20.803Q-41.914 20.851-41.700 20.979Q-41.487 21.107-41.350 21.310Q-41.213 21.514-41.213 21.763Q-41.213 22.276-41.579 22.515Q-41.945 22.754-42.481 22.754Q-42.977 22.754-43.309 22.460L-43.575 22.734Q-43.596 22.754-43.623 22.754L-43.671 22.754Q-43.695 22.754-43.722 22.727Q-43.750 22.700-43.750 22.679M-40.626 21.203Q-40.626 20.861-40.491 20.562Q-40.356 20.263-40.116 20.039Q-39.877 19.815-39.559 19.690Q-39.241 19.565-38.910 19.565Q-38.465 19.565-38.065 19.781Q-37.666 19.996-37.431 20.374Q-37.197 20.751-37.197 21.203Q-37.197 21.544-37.339 21.828Q-37.481 22.112-37.725 22.319Q-37.970 22.525-38.279 22.640Q-38.588 22.754-38.910 22.754Q-39.340 22.754-39.742 22.553Q-40.144 22.351-40.385 21.999Q-40.626 21.647-40.626 21.203M-38.910 22.505Q-38.308 22.505-38.084 22.127Q-37.860 21.749-37.860 21.117Q-37.860 20.505-38.095 20.146Q-38.329 19.788-38.910 19.788Q-39.962 19.788-39.962 21.117Q-39.962 21.749-39.737 22.127Q-39.511 22.505-38.910 22.505M-34.853 22.686L-36.589 22.686L-36.589 22.406Q-36.360 22.406-36.211 22.372Q-36.063 22.337-36.063 22.197L-36.063 20.348Q-36.063 20.078-36.170 20.017Q-36.278 19.955-36.589 19.955L-36.589 19.675L-35.560 19.600L-35.560 20.307Q-35.430 19.999-35.188 19.800Q-34.945 19.600-34.627 19.600Q-34.408 19.600-34.237 19.724Q-34.066 19.849-34.066 20.061Q-34.066 20.198-34.166 20.297Q-34.265 20.396-34.398 20.396Q-34.535 20.396-34.634 20.297Q-34.733 20.198-34.733 20.061Q-34.733 19.921-34.634 19.822Q-34.924 19.822-35.124 20.018Q-35.324 20.215-35.417 20.509Q-35.509 20.803-35.509 21.083L-35.509 22.197Q-35.509 22.406-34.853 22.406L-34.853 22.686M-32.956 21.845L-32.956 19.948L-33.595 19.948L-33.595 19.726Q-33.277 19.726-33.060 19.516Q-32.843 19.306-32.742 18.996Q-32.641 18.687-32.641 18.379L-32.375 18.379L-32.375 19.668L-31.298 19.668L-31.298 19.948L-32.375 19.948L-32.375 21.832Q-32.375 22.108-32.270 22.307Q-32.166 22.505-31.906 22.505Q-31.749 22.505-31.643 22.401Q-31.537 22.296-31.488 22.143Q-31.438 21.989-31.438 21.832L-31.438 21.418L-31.171 21.418L-31.171 21.845Q-31.171 22.071-31.271 22.281Q-31.370 22.491-31.554 22.623Q-31.739 22.754-31.968 22.754Q-32.405 22.754-32.680 22.517Q-32.956 22.279-32.956 21.845M-30.402 21.151Q-30.402 20.830-30.278 20.541Q-30.153 20.252-29.927 20.029Q-29.702 19.805-29.406 19.685Q-29.110 19.565-28.793 19.565Q-28.464 19.565-28.203 19.665Q-27.941 19.764-27.765 19.946Q-27.589 20.129-27.495 20.387Q-27.401 20.645-27.401 20.977Q-27.401 21.069-27.483 21.090L-29.739 21.090L-29.739 21.151Q-29.739 21.739-29.456 22.122Q-29.172 22.505-28.605 22.505Q-28.283 22.505-28.015 22.312Q-27.747 22.119-27.658 21.804Q-27.651 21.763-27.576 21.749L-27.483 21.749Q-27.401 21.773-27.401 21.845Q-27.401 21.852-27.408 21.879Q-27.521 22.276-27.892 22.515Q-28.263 22.754-28.687 22.754Q-29.124 22.754-29.524 22.546Q-29.924 22.337-30.163 21.970Q-30.402 21.603-30.402 21.151M-29.732 20.881L-27.918 20.881Q-27.918 20.604-28.015 20.352Q-28.112 20.099-28.311 19.943Q-28.509 19.788-28.793 19.788Q-29.069 19.788-29.283 19.946Q-29.497 20.105-29.615 20.360Q-29.732 20.615-29.732 20.881M-26.814 21.175Q-26.814 20.837-26.673 20.546Q-26.533 20.256-26.289 20.042Q-26.044 19.829-25.740 19.714Q-25.436 19.600-25.111 19.600Q-24.841 19.600-24.578 19.699Q-24.315 19.798-24.124 19.976L-24.124 18.578Q-24.124 18.308-24.231 18.246Q-24.339 18.185-24.650 18.185L-24.650 17.904L-23.573 17.829L-23.573 22.013Q-23.573 22.201-23.519 22.284Q-23.464 22.368-23.363 22.387Q-23.262 22.406-23.047 22.406L-23.047 22.686L-24.154 22.754L-24.154 22.337Q-24.571 22.754-25.197 22.754Q-25.627 22.754-26 22.542Q-26.373 22.331-26.593 21.970Q-26.814 21.609-26.814 21.175M-25.139 22.532Q-24.930 22.532-24.744 22.460Q-24.558 22.389-24.404 22.252Q-24.250 22.115-24.154 21.937L-24.154 20.328Q-24.240 20.181-24.385 20.061Q-24.530 19.941-24.699 19.882Q-24.869 19.822-25.050 19.822Q-25.610 19.822-25.879 20.211Q-26.147 20.601-26.147 21.182Q-26.147 21.753-25.913 22.143Q-25.679 22.532-25.139 22.532\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(220.3 1.75)\">\u003Cpath d=\"M-17.549 24.436Q-18.099 24.036-18.470 23.481Q-18.841 22.925-19.022 22.279Q-19.203 21.633-19.203 20.936Q-19.203 20.423-19.103 19.928Q-19.002 19.432-18.797 18.981Q-18.592 18.530-18.279 18.138Q-17.966 17.747-17.549 17.443Q-17.539 17.439-17.532 17.438Q-17.525 17.436-17.515 17.436L-17.447 17.436Q-17.412 17.436-17.390 17.460Q-17.368 17.484-17.368 17.521Q-17.368 17.566-17.395 17.583Q-17.744 17.884-17.997 18.268Q-18.250 18.653-18.402 19.094Q-18.554 19.535-18.626 19.991Q-18.698 20.447-18.698 20.936Q-18.698 21.937-18.388 22.824Q-18.079 23.711-17.395 24.296Q-17.368 24.313-17.368 24.357Q-17.368 24.395-17.390 24.419Q-17.412 24.443-17.447 24.443L-17.515 24.443Q-17.522 24.439-17.530 24.438Q-17.539 24.436-17.549 24.436\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(220.3 1.75)\">\u003Cpath d=\"M-14.756 22.686L-16.321 22.686Q-16.355 22.686-16.381 22.650Q-16.407 22.614-16.407 22.573L-16.379 22.460Q-16.335 22.413-16.294 22.406Q-16 22.406-15.796 22.313Q-15.593 22.221-15.532 21.965L-14.592 18.212Q-14.756 18.185-15.186 18.185Q-15.279 18.161-15.279 18.072L-15.251 17.962Q-15.224 17.915-15.166 17.904L-13.922 17.904Q-13.864 17.915-13.836 17.962L-12.052 21.616L-11.297 18.578Q-11.276 18.516-11.276 18.458Q-11.276 18.284-11.425 18.234Q-11.574 18.185-11.799 18.185Q-11.891 18.161-11.891 18.072L-11.864 17.962Q-11.837 17.915-11.779 17.904L-10.217 17.904Q-10.182 17.904-10.159 17.937Q-10.135 17.969-10.135 18.010L-10.162 18.123Q-10.189 18.178-10.241 18.185Q-10.890 18.185-11.010 18.625L-12.004 22.624Q-12.038 22.679-12.086 22.686L-12.206 22.686Q-12.264 22.676-12.285 22.624L-14.342 18.424L-15.244 22.013Q-15.258 22.102-15.258 22.132Q-15.258 22.307-15.104 22.356Q-14.951 22.406-14.732 22.406Q-14.643 22.430-14.643 22.512L-14.670 22.624Q-14.708 22.679-14.756 22.686\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(220.3 1.75)\">\u003Cpath d=\"M-9.147 24.443L-9.216 24.443Q-9.250 24.443-9.272 24.417Q-9.294 24.392-9.294 24.357Q-9.294 24.313-9.263 24.296Q-8.908 23.992-8.658 23.602Q-8.409 23.212-8.257 22.780Q-8.105 22.348-8.035 21.879Q-7.965 21.411-7.965 20.936Q-7.965 20.457-8.035 19.991Q-8.105 19.524-8.259 19.089Q-8.412 18.653-8.664 18.265Q-8.915 17.877-9.263 17.583Q-9.294 17.566-9.294 17.521Q-9.294 17.487-9.272 17.462Q-9.250 17.436-9.216 17.436L-9.147 17.436Q-9.137 17.436-9.128 17.438Q-9.120 17.439-9.110 17.443Q-8.566 17.843-8.194 18.396Q-7.821 18.950-7.640 19.596Q-7.459 20.242-7.459 20.936Q-7.459 21.637-7.640 22.284Q-7.821 22.932-8.195 23.486Q-8.570 24.040-9.110 24.436Q-9.120 24.436-9.128 24.438Q-9.137 24.439-9.147 24.443\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M136.811-.076c16.821 0 19.768 22.762 33.513 22.762\"\u002F>\u003Cpath d=\"m172.83 22.686-3.585-1.35 1.18 1.35-1.18 1.351Z\"\u002F>\u003Cpath fill=\"none\" d=\"M136.811 45.449c16.821 0 19.768-22.763 33.513-22.763\"\u002F>\u003Cpath d=\"m172.83 22.686-3.585-1.35 1.18 1.35-1.18 1.351Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M-43.791 21.151Q-43.791 20.830-43.666 20.541Q-43.541 20.252-43.315 20.029Q-43.090 19.805-42.794 19.685Q-42.499 19.565-42.181 19.565Q-41.853 19.565-41.591 19.665Q-41.330 19.764-41.154 19.946Q-40.978 20.129-40.884 20.387Q-40.790 20.645-40.790 20.977Q-40.790 21.069-40.872 21.090L-43.127 21.090L-43.127 21.151Q-43.127 21.739-42.844 22.122Q-42.560 22.505-41.993 22.505Q-41.671 22.505-41.403 22.312Q-41.135 22.119-41.046 21.804Q-41.039 21.763-40.964 21.749L-40.872 21.749Q-40.790 21.773-40.790 21.845Q-40.790 21.852-40.796 21.879Q-40.909 22.276-41.280 22.515Q-41.651 22.754-42.075 22.754Q-42.512 22.754-42.912 22.546Q-43.312 22.337-43.551 21.970Q-43.791 21.603-43.791 21.151M-43.121 20.881L-41.306 20.881Q-41.306 20.604-41.403 20.352Q-41.501 20.099-41.699 19.943Q-41.897 19.788-42.181 19.788Q-42.458 19.788-42.671 19.946Q-42.885 20.105-43.003 20.360Q-43.121 20.615-43.121 20.881M-40.144 21.958Q-40.144 21.626-39.920 21.399Q-39.696 21.172-39.352 21.044Q-39.009 20.915-38.636 20.863Q-38.264 20.810-37.960 20.810L-37.960 20.557Q-37.960 20.352-38.067 20.172Q-38.175 19.993-38.356 19.890Q-38.537 19.788-38.746 19.788Q-39.152 19.788-39.388 19.880Q-39.299 19.917-39.253 20.001Q-39.207 20.085-39.207 20.187Q-39.207 20.283-39.253 20.362Q-39.299 20.440-39.380 20.485Q-39.460 20.529-39.549 20.529Q-39.699 20.529-39.800 20.432Q-39.901 20.334-39.901 20.187Q-39.901 19.565-38.746 19.565Q-38.534 19.565-38.284 19.629Q-38.035 19.692-37.833 19.811Q-37.631 19.931-37.505 20.116Q-37.378 20.300-37.378 20.543L-37.378 22.119Q-37.378 22.235-37.317 22.331Q-37.255 22.426-37.143 22.426Q-37.033 22.426-36.968 22.332Q-36.903 22.238-36.903 22.119L-36.903 21.671L-36.637 21.671L-36.637 22.119Q-36.637 22.389-36.864 22.554Q-37.091 22.720-37.372 22.720Q-37.580 22.720-37.717 22.566Q-37.854 22.413-37.877 22.197Q-38.024 22.464-38.306 22.609Q-38.588 22.754-38.913 22.754Q-39.190 22.754-39.474 22.679Q-39.757 22.604-39.950 22.425Q-40.144 22.245-40.144 21.958M-39.528 21.958Q-39.528 22.132-39.428 22.262Q-39.327 22.392-39.171 22.462Q-39.016 22.532-38.852 22.532Q-38.633 22.532-38.424 22.435Q-38.216 22.337-38.088 22.156Q-37.960 21.975-37.960 21.749L-37.960 21.021Q-38.284 21.021-38.650 21.112Q-39.016 21.203-39.272 21.415Q-39.528 21.626-39.528 21.958M-36.220 21.175Q-36.220 20.847-36.085 20.546Q-35.950 20.246-35.714 20.025Q-35.478 19.805-35.174 19.685Q-34.870 19.565-34.545 19.565Q-34.039 19.565-33.690 19.668Q-33.342 19.770-33.342 20.146Q-33.342 20.293-33.439 20.394Q-33.537 20.495-33.684 20.495Q-33.837 20.495-33.937 20.396Q-34.036 20.297-34.036 20.146Q-34.036 19.958-33.896 19.866Q-34.097 19.815-34.538 19.815Q-34.894 19.815-35.123 20.011Q-35.352 20.208-35.452 20.517Q-35.553 20.827-35.553 21.175Q-35.553 21.524-35.427 21.830Q-35.300 22.136-35.046 22.320Q-34.791 22.505-34.436 22.505Q-34.213 22.505-34.029 22.421Q-33.844 22.337-33.709 22.182Q-33.574 22.026-33.516 21.818Q-33.502 21.763-33.448 21.763L-33.335 21.763Q-33.304 21.763-33.282 21.787Q-33.260 21.811-33.260 21.845L-33.260 21.866Q-33.345 22.153-33.533 22.351Q-33.721 22.549-33.986 22.652Q-34.251 22.754-34.545 22.754Q-34.976 22.754-35.364 22.548Q-35.752 22.341-35.986 21.978Q-36.220 21.616-36.220 21.175\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M-31.186 22.686L-32.820 22.686L-32.820 22.406Q-32.591 22.406-32.442 22.372Q-32.293 22.337-32.293 22.197L-32.293 18.578Q-32.293 18.308-32.401 18.246Q-32.509 18.185-32.820 18.185L-32.820 17.904L-31.740 17.829L-31.740 20.215Q-31.634 20.030-31.456 19.888Q-31.278 19.747-31.070 19.673Q-30.861 19.600-30.636 19.600Q-30.130 19.600-29.846 19.823Q-29.562 20.047-29.562 20.543L-29.562 22.197Q-29.562 22.334-29.414 22.370Q-29.265 22.406-29.039 22.406L-29.039 22.686L-30.670 22.686L-30.670 22.406Q-30.441 22.406-30.292 22.372Q-30.143 22.337-30.143 22.197L-30.143 20.557Q-30.143 20.222-30.263 20.022Q-30.383 19.822-30.697 19.822Q-30.967 19.822-31.201 19.958Q-31.435 20.095-31.574 20.329Q-31.712 20.563-31.712 20.837L-31.712 22.197Q-31.712 22.334-31.562 22.370Q-31.411 22.406-31.186 22.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M-25.698 21.958Q-25.698 21.626-25.475 21.399Q-25.251 21.172-24.907 21.044Q-24.564 20.915-24.191 20.863Q-23.819 20.810-23.514 20.810L-23.514 20.557Q-23.514 20.352-23.622 20.172Q-23.730 19.993-23.911 19.890Q-24.092 19.788-24.300 19.788Q-24.707 19.788-24.943 19.880Q-24.854 19.917-24.808 20.001Q-24.762 20.085-24.762 20.187Q-24.762 20.283-24.808 20.362Q-24.854 20.440-24.935 20.485Q-25.015 20.529-25.104 20.529Q-25.254 20.529-25.355 20.432Q-25.456 20.334-25.456 20.187Q-25.456 19.565-24.300 19.565Q-24.089 19.565-23.839 19.629Q-23.590 19.692-23.388 19.811Q-23.186 19.931-23.060 20.116Q-22.933 20.300-22.933 20.543L-22.933 22.119Q-22.933 22.235-22.872 22.331Q-22.810 22.426-22.697 22.426Q-22.588 22.426-22.523 22.332Q-22.458 22.238-22.458 22.119L-22.458 21.671L-22.192 21.671L-22.192 22.119Q-22.192 22.389-22.419 22.554Q-22.646 22.720-22.926 22.720Q-23.135 22.720-23.272 22.566Q-23.408 22.413-23.432 22.197Q-23.579 22.464-23.861 22.609Q-24.143 22.754-24.468 22.754Q-24.745 22.754-25.029 22.679Q-25.312 22.604-25.505 22.425Q-25.698 22.245-25.698 21.958M-25.083 21.958Q-25.083 22.132-24.982 22.262Q-24.882 22.392-24.726 22.462Q-24.571 22.532-24.406 22.532Q-24.188 22.532-23.979 22.435Q-23.771 22.337-23.643 22.156Q-23.514 21.975-23.514 21.749L-23.514 21.021Q-23.839 21.021-24.205 21.112Q-24.571 21.203-24.827 21.415Q-25.083 21.626-25.083 21.958M-20.025 22.686L-21.761 22.686L-21.761 22.406Q-21.532 22.406-21.383 22.372Q-21.235 22.337-21.235 22.197L-21.235 20.348Q-21.235 20.078-21.342 20.017Q-21.450 19.955-21.761 19.955L-21.761 19.675L-20.732 19.600L-20.732 20.307Q-20.602 19.999-20.360 19.800Q-20.117 19.600-19.799 19.600Q-19.580 19.600-19.409 19.724Q-19.238 19.849-19.238 20.061Q-19.238 20.198-19.338 20.297Q-19.437 20.396-19.570 20.396Q-19.707 20.396-19.806 20.297Q-19.905 20.198-19.905 20.061Q-19.905 19.921-19.806 19.822Q-20.096 19.822-20.296 20.018Q-20.496 20.215-20.589 20.509Q-20.681 20.803-20.681 21.083L-20.681 22.197Q-20.681 22.406-20.025 22.406L-20.025 22.686M-16.904 22.686L-18.640 22.686L-18.640 22.406Q-18.411 22.406-18.263 22.372Q-18.114 22.337-18.114 22.197L-18.114 20.348Q-18.114 20.078-18.222 20.017Q-18.329 19.955-18.640 19.955L-18.640 19.675L-17.612 19.600L-17.612 20.307Q-17.482 19.999-17.239 19.800Q-16.996 19.600-16.678 19.600Q-16.460 19.600-16.289 19.724Q-16.118 19.849-16.118 20.061Q-16.118 20.198-16.217 20.297Q-16.316 20.396-16.449 20.396Q-16.586 20.396-16.685 20.297Q-16.784 20.198-16.784 20.061Q-16.784 19.921-16.685 19.822Q-16.976 19.822-17.176 20.018Q-17.376 20.215-17.468 20.509Q-17.560 20.803-17.560 21.083L-17.560 22.197Q-17.560 22.406-16.904 22.406L-16.904 22.686M-15.574 21.203Q-15.574 20.861-15.439 20.562Q-15.304 20.263-15.065 20.039Q-14.826 19.815-14.508 19.690Q-14.190 19.565-13.859 19.565Q-13.414 19.565-13.014 19.781Q-12.614 19.996-12.380 20.374Q-12.146 20.751-12.146 21.203Q-12.146 21.544-12.288 21.828Q-12.430 22.112-12.674 22.319Q-12.919 22.525-13.228 22.640Q-13.537 22.754-13.859 22.754Q-14.289 22.754-14.691 22.553Q-15.092 22.351-15.333 21.999Q-15.574 21.647-15.574 21.203M-13.859 22.505Q-13.257 22.505-13.033 22.127Q-12.809 21.749-12.809 21.117Q-12.809 20.505-13.043 20.146Q-13.278 19.788-13.859 19.788Q-14.911 19.788-14.911 21.117Q-14.911 21.749-14.686 22.127Q-14.460 22.505-13.859 22.505\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M-10.362 22.659L-11.343 20.160Q-11.404 20.017-11.522 19.982Q-11.640 19.948-11.856 19.948L-11.856 19.668L-10.376 19.668L-10.376 19.948Q-10.755 19.948-10.755 20.109Q-10.755 20.119-10.741 20.160L-10.027 21.992L-9.354 20.287Q-9.384 20.215-9.384 20.187Q-9.384 20.160-9.412 20.160Q-9.473 20.013-9.591 19.981Q-9.709 19.948-9.921 19.948L-9.921 19.668L-8.523 19.668L-8.523 19.948Q-8.899 19.948-8.899 20.109Q-8.899 20.140-8.892 20.160L-8.137 22.098L-7.450 20.348Q-7.429 20.297-7.429 20.242Q-7.429 20.102-7.542 20.025Q-7.655 19.948-7.795 19.948L-7.795 19.668L-6.575 19.668L-6.575 19.948Q-6.780 19.948-6.935 20.054Q-7.091 20.160-7.163 20.348L-8.068 22.659Q-8.103 22.754-8.215 22.754L-8.284 22.754Q-8.393 22.754-8.431 22.659L-9.213 20.656L-10 22.659Q-10.034 22.754-10.147 22.754L-10.215 22.754Q-10.324 22.754-10.362 22.659\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M-1.679 22.686L-3.282 22.686L-3.282 22.406Q-3.056 22.406-2.907 22.372Q-2.759 22.337-2.759 22.197L-2.759 18.578Q-2.759 18.308-2.866 18.246Q-2.974 18.185-3.282 18.185L-3.282 17.904L-2.205 17.829L-2.205 22.197Q-2.205 22.334-2.055 22.370Q-1.904 22.406-1.679 22.406L-1.679 22.686M-1.026 21.958Q-1.026 21.626-0.802 21.399Q-0.578 21.172-0.234 21.044Q0.109 20.915 0.482 20.863Q0.854 20.810 1.158 20.810L1.158 20.557Q1.158 20.352 1.051 20.172Q0.943 19.993 0.762 19.890Q0.581 19.788 0.372 19.788Q-0.035 19.788-0.270 19.880Q-0.182 19.917-0.135 20.001Q-0.089 20.085-0.089 20.187Q-0.089 20.283-0.135 20.362Q-0.182 20.440-0.262 20.485Q-0.342 20.529-0.431 20.529Q-0.581 20.529-0.682 20.432Q-0.783 20.334-0.783 20.187Q-0.783 19.565 0.372 19.565Q0.584 19.565 0.834 19.629Q1.083 19.692 1.285 19.811Q1.486 19.931 1.613 20.116Q1.739 20.300 1.739 20.543L1.739 22.119Q1.739 22.235 1.801 22.331Q1.862 22.426 1.975 22.426Q2.085 22.426 2.150 22.332Q2.214 22.238 2.214 22.119L2.214 21.671L2.481 21.671L2.481 22.119Q2.481 22.389 2.254 22.554Q2.026 22.720 1.746 22.720Q1.538 22.720 1.401 22.566Q1.264 22.413 1.240 22.197Q1.093 22.464 0.811 22.609Q0.529 22.754 0.205 22.754Q-0.072 22.754-0.356 22.679Q-0.640 22.604-0.833 22.425Q-1.026 22.245-1.026 21.958M-0.411 21.958Q-0.411 22.132-0.310 22.262Q-0.209 22.392-0.053 22.462Q0.102 22.532 0.266 22.532Q0.485 22.532 0.693 22.435Q0.902 22.337 1.030 22.156Q1.158 21.975 1.158 21.749L1.158 21.021Q0.834 21.021 0.468 21.112Q0.102 21.203-0.154 21.415Q-0.411 21.626-0.411 21.958\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M3.023 23.821Q3.153 23.889 3.290 23.889Q3.461 23.889 3.611 23.800Q3.762 23.711 3.873 23.566Q3.984 23.421 4.062 23.253L4.326 22.686L3.157 20.160Q3.082 20.013 2.952 19.981Q2.822 19.948 2.589 19.948L2.589 19.668L4.110 19.668L4.110 19.948Q3.762 19.948 3.762 20.095Q3.765 20.116 3.767 20.133Q3.769 20.150 3.769 20.160L4.626 22.019L5.399 20.348Q5.433 20.280 5.433 20.201Q5.433 20.088 5.349 20.018Q5.266 19.948 5.153 19.948L5.153 19.668L6.349 19.668L6.349 19.948Q6.130 19.948 5.958 20.052Q5.785 20.157 5.693 20.348L4.356 23.253Q4.186 23.623 3.916 23.869Q3.645 24.115 3.290 24.115Q3.020 24.115 2.801 23.949Q2.582 23.783 2.582 23.520Q2.582 23.383 2.675 23.294Q2.767 23.206 2.907 23.206Q3.044 23.206 3.133 23.294Q3.222 23.383 3.222 23.520Q3.222 23.623 3.169 23.701Q3.116 23.780 3.023 23.821\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M6.633 21.151Q6.633 20.830 6.758 20.541Q6.883 20.252 7.109 20.029Q7.334 19.805 7.630 19.685Q7.925 19.565 8.243 19.565Q8.571 19.565 8.833 19.665Q9.094 19.764 9.270 19.946Q9.446 20.129 9.540 20.387Q9.634 20.645 9.634 20.977Q9.634 21.069 9.552 21.090L7.297 21.090L7.297 21.151Q7.297 21.739 7.580 22.122Q7.864 22.505 8.431 22.505Q8.753 22.505 9.021 22.312Q9.289 22.119 9.378 21.804Q9.385 21.763 9.460 21.749L9.552 21.749Q9.634 21.773 9.634 21.845Q9.634 21.852 9.628 21.879Q9.515 22.276 9.144 22.515Q8.773 22.754 8.349 22.754Q7.912 22.754 7.512 22.546Q7.112 22.337 6.873 21.970Q6.633 21.603 6.633 21.151M7.303 20.881L9.118 20.881Q9.118 20.604 9.021 20.352Q8.923 20.099 8.725 19.943Q8.527 19.788 8.243 19.788Q7.966 19.788 7.753 19.946Q7.539 20.105 7.421 20.360Q7.303 20.615 7.303 20.881M11.972 22.686L10.236 22.686L10.236 22.406Q10.465 22.406 10.614 22.372Q10.762 22.337 10.762 22.197L10.762 20.348Q10.762 20.078 10.655 20.017Q10.547 19.955 10.236 19.955L10.236 19.675L11.265 19.600L11.265 20.307Q11.395 19.999 11.637 19.800Q11.880 19.600 12.198 19.600Q12.417 19.600 12.588 19.724Q12.758 19.849 12.758 20.061Q12.758 20.198 12.659 20.297Q12.560 20.396 12.427 20.396Q12.290 20.396 12.191 20.297Q12.092 20.198 12.092 20.061Q12.092 19.921 12.191 19.822Q11.901 19.822 11.701 20.018Q11.501 20.215 11.408 20.509Q11.316 20.803 11.316 21.083L11.316 22.197Q11.316 22.406 11.972 22.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M17.666 22.686L16.114 22.686L16.114 22.406Q16.340 22.406 16.489 22.372Q16.637 22.337 16.637 22.197L16.637 20.348Q16.637 20.160 16.589 20.076Q16.542 19.993 16.444 19.974Q16.347 19.955 16.135 19.955L16.135 19.675L17.191 19.600L17.191 22.197Q17.191 22.337 17.323 22.372Q17.454 22.406 17.666 22.406L17.666 22.686M16.395 18.379Q16.395 18.208 16.518 18.089Q16.641 17.969 16.812 17.969Q16.979 17.969 17.102 18.089Q17.225 18.208 17.225 18.379Q17.225 18.554 17.102 18.677Q16.979 18.800 16.812 18.800Q16.641 18.800 16.518 18.677Q16.395 18.554 16.395 18.379M18.312 22.679L18.312 21.616Q18.312 21.592 18.339 21.565Q18.367 21.538 18.391 21.538L18.500 21.538Q18.565 21.538 18.579 21.596Q18.674 22.030 18.921 22.281Q19.167 22.532 19.580 22.532Q19.922 22.532 20.175 22.399Q20.428 22.266 20.428 21.958Q20.428 21.801 20.334 21.686Q20.240 21.572 20.101 21.503Q19.963 21.435 19.796 21.397L19.214 21.298Q18.859 21.230 18.586 21.009Q18.312 20.789 18.312 20.447Q18.312 20.198 18.423 20.023Q18.534 19.849 18.721 19.750Q18.907 19.651 19.122 19.608Q19.338 19.565 19.580 19.565Q19.994 19.565 20.274 19.747L20.489 19.572Q20.500 19.569 20.506 19.567Q20.513 19.565 20.524 19.565L20.575 19.565Q20.602 19.565 20.626 19.589Q20.650 19.613 20.650 19.641L20.650 20.488Q20.650 20.509 20.626 20.536Q20.602 20.563 20.575 20.563L20.462 20.563Q20.435 20.563 20.409 20.538Q20.383 20.512 20.383 20.488Q20.383 20.252 20.277 20.088Q20.172 19.924 19.989 19.842Q19.806 19.760 19.573 19.760Q19.245 19.760 18.989 19.863Q18.733 19.965 18.733 20.242Q18.733 20.437 18.915 20.546Q19.098 20.656 19.327 20.697L19.902 20.803Q20.148 20.851 20.361 20.979Q20.575 21.107 20.712 21.310Q20.848 21.514 20.848 21.763Q20.848 22.276 20.483 22.515Q20.117 22.754 19.580 22.754Q19.085 22.754 18.753 22.460L18.486 22.734Q18.466 22.754 18.439 22.754L18.391 22.754Q18.367 22.754 18.339 22.727Q18.312 22.700 18.312 22.679\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M24.135 21.203Q24.135 20.861 24.270 20.562Q24.405 20.263 24.645 20.039Q24.884 19.815 25.202 19.690Q25.520 19.565 25.851 19.565Q26.296 19.565 26.695 19.781Q27.095 19.996 27.330 20.374Q27.564 20.751 27.564 21.203Q27.564 21.544 27.422 21.828Q27.280 22.112 27.036 22.319Q26.791 22.525 26.482 22.640Q26.173 22.754 25.851 22.754Q25.421 22.754 25.019 22.553Q24.617 22.351 24.376 21.999Q24.135 21.647 24.135 21.203M25.851 22.505Q26.453 22.505 26.677 22.127Q26.901 21.749 26.901 21.117Q26.901 20.505 26.666 20.146Q26.432 19.788 25.851 19.788Q24.799 19.788 24.799 21.117Q24.799 21.749 25.024 22.127Q25.250 22.505 25.851 22.505M29.840 22.686L28.206 22.686L28.206 22.406Q28.435 22.406 28.584 22.372Q28.733 22.337 28.733 22.197L28.733 20.348Q28.733 20.078 28.625 20.017Q28.517 19.955 28.206 19.955L28.206 19.675L29.266 19.600L29.266 20.249Q29.437 19.941 29.741 19.770Q30.045 19.600 30.390 19.600Q30.896 19.600 31.180 19.823Q31.464 20.047 31.464 20.543L31.464 22.197Q31.464 22.334 31.612 22.370Q31.761 22.406 31.987 22.406L31.987 22.686L30.356 22.686L30.356 22.406Q30.585 22.406 30.734 22.372Q30.883 22.337 30.883 22.197L30.883 20.557Q30.883 20.222 30.763 20.022Q30.643 19.822 30.329 19.822Q30.059 19.822 29.825 19.958Q29.591 20.095 29.452 20.329Q29.314 20.563 29.314 20.837L29.314 22.197Q29.314 22.334 29.464 22.370Q29.614 22.406 29.840 22.406L29.840 22.686M32.533 21.151Q32.533 20.830 32.658 20.541Q32.783 20.252 33.008 20.029Q33.234 19.805 33.530 19.685Q33.825 19.565 34.143 19.565Q34.471 19.565 34.733 19.665Q34.994 19.764 35.170 19.946Q35.346 20.129 35.440 20.387Q35.534 20.645 35.534 20.977Q35.534 21.069 35.452 21.090L33.196 21.090L33.196 21.151Q33.196 21.739 33.480 22.122Q33.764 22.505 34.331 22.505Q34.653 22.505 34.921 22.312Q35.189 22.119 35.278 21.804Q35.285 21.763 35.360 21.749L35.452 21.749Q35.534 21.773 35.534 21.845Q35.534 21.852 35.528 21.879Q35.415 22.276 35.044 22.515Q34.673 22.754 34.249 22.754Q33.812 22.754 33.412 22.546Q33.012 22.337 32.773 21.970Q32.533 21.603 32.533 21.151M33.203 20.881L35.018 20.881Q35.018 20.604 34.921 20.352Q34.823 20.099 34.625 19.943Q34.427 19.788 34.143 19.788Q33.866 19.788 33.653 19.946Q33.439 20.105 33.321 20.360Q33.203 20.615 33.203 20.881\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M38.828 22.679L38.828 21.616Q38.828 21.592 38.856 21.565Q38.883 21.538 38.907 21.538L39.016 21.538Q39.081 21.538 39.095 21.596Q39.191 22.030 39.437 22.281Q39.683 22.532 40.097 22.532Q40.438 22.532 40.691 22.399Q40.944 22.266 40.944 21.958Q40.944 21.801 40.850 21.686Q40.756 21.572 40.618 21.503Q40.479 21.435 40.312 21.397L39.731 21.298Q39.375 21.230 39.102 21.009Q38.828 20.789 38.828 20.447Q38.828 20.198 38.940 20.023Q39.051 19.849 39.237 19.750Q39.423 19.651 39.639 19.608Q39.854 19.565 40.097 19.565Q40.510 19.565 40.790 19.747L41.006 19.572Q41.016 19.569 41.023 19.567Q41.030 19.565 41.040 19.565L41.091 19.565Q41.118 19.565 41.142 19.589Q41.166 19.613 41.166 19.641L41.166 20.488Q41.166 20.509 41.142 20.536Q41.118 20.563 41.091 20.563L40.978 20.563Q40.951 20.563 40.925 20.538Q40.900 20.512 40.900 20.488Q40.900 20.252 40.794 20.088Q40.688 19.924 40.505 19.842Q40.322 19.760 40.090 19.760Q39.762 19.760 39.505 19.863Q39.249 19.965 39.249 20.242Q39.249 20.437 39.432 20.546Q39.615 20.656 39.844 20.697L40.418 20.803Q40.664 20.851 40.878 20.979Q41.091 21.107 41.228 21.310Q41.365 21.514 41.365 21.763Q41.365 22.276 40.999 22.515Q40.633 22.754 40.097 22.754Q39.601 22.754 39.269 22.460L39.003 22.734Q38.982 22.754 38.955 22.754L38.907 22.754Q38.883 22.754 38.856 22.727Q38.828 22.700 38.828 22.679M41.952 21.151Q41.952 20.830 42.077 20.541Q42.202 20.252 42.428 20.029Q42.653 19.805 42.949 19.685Q43.244 19.565 43.562 19.565Q43.890 19.565 44.152 19.665Q44.413 19.764 44.589 19.946Q44.765 20.129 44.859 20.387Q44.953 20.645 44.953 20.977Q44.953 21.069 44.871 21.090L42.616 21.090L42.616 21.151Q42.616 21.739 42.899 22.122Q43.183 22.505 43.750 22.505Q44.072 22.505 44.340 22.312Q44.608 22.119 44.697 21.804Q44.704 21.763 44.779 21.749L44.871 21.749Q44.953 21.773 44.953 21.845Q44.953 21.852 44.947 21.879Q44.834 22.276 44.463 22.515Q44.092 22.754 43.668 22.754Q43.231 22.754 42.831 22.546Q42.431 22.337 42.192 21.970Q41.952 21.603 41.952 21.151M42.622 20.881L44.437 20.881Q44.437 20.604 44.340 20.352Q44.243 20.099 44.044 19.943Q43.846 19.788 43.562 19.788Q43.285 19.788 43.072 19.946Q42.858 20.105 42.740 20.360Q42.622 20.615 42.622 20.881M47.165 22.754Q46.734 22.754 46.358 22.542Q45.982 22.331 45.762 21.970Q45.541 21.609 45.541 21.175Q45.541 20.731 45.779 20.370Q46.016 20.010 46.403 19.805Q46.789 19.600 47.230 19.600Q47.548 19.600 47.831 19.755Q48.115 19.911 48.300 20.187L48.546 19.600L48.782 19.600L48.782 23.554Q48.782 23.691 48.932 23.727Q49.082 23.763 49.308 23.763L49.308 24.043L47.678 24.043L47.678 23.763Q47.903 23.763 48.052 23.728Q48.201 23.694 48.201 23.554L48.201 22.293Q48.002 22.512 47.731 22.633Q47.459 22.754 47.165 22.754M47.216 22.532Q47.548 22.532 47.819 22.327Q48.091 22.122 48.231 21.797L48.231 20.663Q48.173 20.440 48.042 20.258Q47.910 20.075 47.720 19.964Q47.531 19.853 47.305 19.853Q46.977 19.853 46.726 20.049Q46.474 20.246 46.341 20.553Q46.208 20.861 46.208 21.182Q46.208 21.483 46.324 21.799Q46.440 22.115 46.669 22.324Q46.898 22.532 47.216 22.532M50.316 21.852L50.316 20.348Q50.316 20.078 50.209 20.017Q50.101 19.955 49.790 19.955L49.790 19.675L50.897 19.600L50.897 21.832L50.897 21.852Q50.897 22.132 50.949 22.276Q51 22.419 51.142 22.476Q51.284 22.532 51.571 22.532Q51.824 22.532 52.029 22.392Q52.234 22.252 52.350 22.026Q52.466 21.801 52.466 21.551L52.466 20.348Q52.466 20.078 52.358 20.017Q52.251 19.955 51.940 19.955L51.940 19.675L53.047 19.600L53.047 22.013Q53.047 22.204 53.100 22.286Q53.153 22.368 53.254 22.387Q53.355 22.406 53.570 22.406L53.570 22.686L52.493 22.754L52.493 22.190Q52.384 22.372 52.239 22.495Q52.094 22.618 51.907 22.686Q51.721 22.754 51.519 22.754Q50.316 22.754 50.316 21.852M54.117 21.151Q54.117 20.830 54.242 20.541Q54.367 20.252 54.592 20.029Q54.818 19.805 55.113 19.685Q55.409 19.565 55.727 19.565Q56.055 19.565 56.316 19.665Q56.578 19.764 56.754 19.946Q56.930 20.129 57.024 20.387Q57.118 20.645 57.118 20.977Q57.118 21.069 57.036 21.090L54.780 21.090L54.780 21.151Q54.780 21.739 55.064 22.122Q55.347 22.505 55.915 22.505Q56.236 22.505 56.504 22.312Q56.773 22.119 56.862 21.804Q56.868 21.763 56.944 21.749L57.036 21.749Q57.118 21.773 57.118 21.845Q57.118 21.852 57.111 21.879Q56.998 22.276 56.628 22.515Q56.257 22.754 55.833 22.754Q55.395 22.754 54.995 22.546Q54.596 22.337 54.356 21.970Q54.117 21.603 54.117 21.151M54.787 20.881L56.602 20.881Q56.602 20.604 56.504 20.352Q56.407 20.099 56.209 19.943Q56.011 19.788 55.727 19.788Q55.450 19.788 55.236 19.946Q55.023 20.105 54.905 20.360Q54.787 20.615 54.787 20.881M59.388 22.686L57.754 22.686L57.754 22.406Q57.983 22.406 58.131 22.372Q58.280 22.337 58.280 22.197L58.280 20.348Q58.280 20.078 58.172 20.017Q58.065 19.955 57.754 19.955L57.754 19.675L58.813 19.600L58.813 20.249Q58.984 19.941 59.288 19.770Q59.593 19.600 59.938 19.600Q60.444 19.600 60.727 19.823Q61.011 20.047 61.011 20.543L61.011 22.197Q61.011 22.334 61.160 22.370Q61.308 22.406 61.534 22.406L61.534 22.686L59.904 22.686L59.904 22.406Q60.133 22.406 60.281 22.372Q60.430 22.337 60.430 22.197L60.430 20.557Q60.430 20.222 60.310 20.022Q60.191 19.822 59.876 19.822Q59.606 19.822 59.372 19.958Q59.138 20.095 59 20.329Q58.861 20.563 58.861 20.837L58.861 22.197Q58.861 22.334 59.012 22.370Q59.162 22.406 59.388 22.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M62.454 21.845L62.454 19.948L61.815 19.948L61.815 19.726Q62.133 19.726 62.350 19.516Q62.567 19.306 62.667 18.996Q62.768 18.687 62.768 18.379L63.035 18.379L63.035 19.668L64.112 19.668L64.112 19.948L63.035 19.948L63.035 21.832Q63.035 22.108 63.139 22.307Q63.243 22.505 63.503 22.505Q63.660 22.505 63.766 22.401Q63.872 22.296 63.922 22.143Q63.971 21.989 63.971 21.832L63.971 21.418L64.238 21.418L64.238 21.845Q64.238 22.071 64.139 22.281Q64.040 22.491 63.855 22.623Q63.671 22.754 63.442 22.754Q63.004 22.754 62.729 22.517Q62.454 22.279 62.454 21.845M66.665 22.686L65.113 22.686L65.113 22.406Q65.339 22.406 65.487 22.372Q65.636 22.337 65.636 22.197L65.636 20.348Q65.636 20.160 65.588 20.076Q65.540 19.993 65.443 19.974Q65.345 19.955 65.134 19.955L65.134 19.675L66.190 19.600L66.190 22.197Q66.190 22.337 66.321 22.372Q66.453 22.406 66.665 22.406L66.665 22.686M65.393 18.379Q65.393 18.208 65.516 18.089Q65.639 17.969 65.810 17.969Q65.978 17.969 66.101 18.089Q66.224 18.208 66.224 18.379Q66.224 18.554 66.101 18.677Q65.978 18.800 65.810 18.800Q65.639 18.800 65.516 18.677Q65.393 18.554 65.393 18.379M67.369 21.958Q67.369 21.626 67.593 21.399Q67.817 21.172 68.160 21.044Q68.504 20.915 68.876 20.863Q69.249 20.810 69.553 20.810L69.553 20.557Q69.553 20.352 69.445 20.172Q69.338 19.993 69.156 19.890Q68.975 19.788 68.767 19.788Q68.360 19.788 68.124 19.880Q68.213 19.917 68.259 20.001Q68.305 20.085 68.305 20.187Q68.305 20.283 68.259 20.362Q68.213 20.440 68.133 20.485Q68.052 20.529 67.964 20.529Q67.813 20.529 67.712 20.432Q67.612 20.334 67.612 20.187Q67.612 19.565 68.767 19.565Q68.979 19.565 69.228 19.629Q69.478 19.692 69.679 19.811Q69.881 19.931 70.008 20.116Q70.134 20.300 70.134 20.543L70.134 22.119Q70.134 22.235 70.196 22.331Q70.257 22.426 70.370 22.426Q70.479 22.426 70.544 22.332Q70.609 22.238 70.609 22.119L70.609 21.671L70.876 21.671L70.876 22.119Q70.876 22.389 70.648 22.554Q70.421 22.720 70.141 22.720Q69.932 22.720 69.796 22.566Q69.659 22.413 69.635 22.197Q69.488 22.464 69.206 22.609Q68.924 22.754 68.599 22.754Q68.322 22.754 68.039 22.679Q67.755 22.604 67.562 22.425Q67.369 22.245 67.369 21.958M67.984 21.958Q67.984 22.132 68.085 22.262Q68.186 22.392 68.341 22.462Q68.497 22.532 68.661 22.532Q68.880 22.532 69.088 22.435Q69.297 22.337 69.425 22.156Q69.553 21.975 69.553 21.749L69.553 21.021Q69.228 21.021 68.863 21.112Q68.497 21.203 68.240 21.415Q67.984 21.626 67.984 21.958M72.961 22.686L71.358 22.686L71.358 22.406Q71.583 22.406 71.732 22.372Q71.881 22.337 71.881 22.197L71.881 18.578Q71.881 18.308 71.773 18.246Q71.665 18.185 71.358 18.185L71.358 17.904L72.434 17.829L72.434 22.197Q72.434 22.334 72.585 22.370Q72.735 22.406 72.961 22.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.282 56.764)\">\u003Cpath d=\"M77.905 24.043L76.275 24.043L76.275 23.763Q76.504 23.763 76.653 23.728Q76.801 23.694 76.801 23.554L76.801 20.208Q76.801 20.037 76.665 19.996Q76.528 19.955 76.275 19.955L76.275 19.675L77.355 19.600L77.355 20.006Q77.577 19.805 77.864 19.702Q78.152 19.600 78.459 19.600Q78.886 19.600 79.250 19.813Q79.614 20.027 79.828 20.391Q80.042 20.755 80.042 21.175Q80.042 21.620 79.802 21.984Q79.563 22.348 79.170 22.551Q78.777 22.754 78.333 22.754Q78.066 22.754 77.818 22.654Q77.571 22.553 77.383 22.372L77.383 23.554Q77.383 23.691 77.531 23.727Q77.680 23.763 77.905 23.763L77.905 24.043M77.383 20.355L77.383 21.965Q77.516 22.218 77.759 22.375Q78.001 22.532 78.278 22.532Q78.606 22.532 78.859 22.331Q79.112 22.129 79.245 21.811Q79.379 21.493 79.379 21.175Q79.379 20.946 79.314 20.717Q79.249 20.488 79.121 20.290Q78.992 20.092 78.798 19.972Q78.603 19.853 78.370 19.853Q78.076 19.853 77.808 19.982Q77.540 20.112 77.383 20.355M80.736 21.958Q80.736 21.626 80.959 21.399Q81.183 21.172 81.527 21.044Q81.870 20.915 82.243 20.863Q82.615 20.810 82.920 20.810L82.920 20.557Q82.920 20.352 82.812 20.172Q82.704 19.993 82.523 19.890Q82.342 19.788 82.134 19.788Q81.727 19.788 81.491 19.880Q81.580 19.917 81.626 20.001Q81.672 20.085 81.672 20.187Q81.672 20.283 81.626 20.362Q81.580 20.440 81.499 20.485Q81.419 20.529 81.330 20.529Q81.180 20.529 81.079 20.432Q80.978 20.334 80.978 20.187Q80.978 19.565 82.134 19.565Q82.345 19.565 82.595 19.629Q82.844 19.692 83.046 19.811Q83.248 19.931 83.374 20.116Q83.501 20.300 83.501 20.543L83.501 22.119Q83.501 22.235 83.562 22.331Q83.624 22.426 83.737 22.426Q83.846 22.426 83.911 22.332Q83.976 22.238 83.976 22.119L83.976 21.671L84.242 21.671L84.242 22.119Q84.242 22.389 84.015 22.554Q83.788 22.720 83.508 22.720Q83.299 22.720 83.162 22.566Q83.026 22.413 83.002 22.197Q82.855 22.464 82.573 22.609Q82.291 22.754 81.966 22.754Q81.689 22.754 81.405 22.679Q81.122 22.604 80.929 22.425Q80.736 22.245 80.736 21.958M81.351 21.958Q81.351 22.132 81.452 22.262Q81.552 22.392 81.708 22.462Q81.864 22.532 82.028 22.532Q82.246 22.532 82.455 22.435Q82.663 22.337 82.791 22.156Q82.920 21.975 82.920 21.749L82.920 21.021Q82.595 21.021 82.229 21.112Q81.864 21.203 81.607 21.415Q81.351 21.626 81.351 21.958M84.659 22.679L84.659 21.616Q84.659 21.592 84.687 21.565Q84.714 21.538 84.738 21.538L84.847 21.538Q84.912 21.538 84.926 21.596Q85.022 22.030 85.268 22.281Q85.514 22.532 85.927 22.532Q86.269 22.532 86.522 22.399Q86.775 22.266 86.775 21.958Q86.775 21.801 86.681 21.686Q86.587 21.572 86.449 21.503Q86.310 21.435 86.143 21.397L85.562 21.298Q85.206 21.230 84.933 21.009Q84.659 20.789 84.659 20.447Q84.659 20.198 84.770 20.023Q84.882 19.849 85.068 19.750Q85.254 19.651 85.469 19.608Q85.685 19.565 85.927 19.565Q86.341 19.565 86.621 19.747L86.837 19.572Q86.847 19.569 86.854 19.567Q86.861 19.565 86.871 19.565L86.922 19.565Q86.949 19.565 86.973 19.589Q86.997 19.613 86.997 19.641L86.997 20.488Q86.997 20.509 86.973 20.536Q86.949 20.563 86.922 20.563L86.809 20.563Q86.782 20.563 86.756 20.538Q86.731 20.512 86.731 20.488Q86.731 20.252 86.625 20.088Q86.519 19.924 86.336 19.842Q86.153 19.760 85.921 19.760Q85.593 19.760 85.336 19.863Q85.080 19.965 85.080 20.242Q85.080 20.437 85.263 20.546Q85.446 20.656 85.675 20.697L86.249 20.803Q86.495 20.851 86.708 20.979Q86.922 21.107 87.059 21.310Q87.196 21.514 87.196 21.763Q87.196 22.276 86.830 22.515Q86.464 22.754 85.927 22.754Q85.432 22.754 85.100 22.460L84.834 22.734Q84.813 22.754 84.786 22.754L84.738 22.754Q84.714 22.754 84.687 22.727Q84.659 22.700 84.659 22.679M87.824 22.679L87.824 21.616Q87.824 21.592 87.852 21.565Q87.879 21.538 87.903 21.538L88.012 21.538Q88.077 21.538 88.091 21.596Q88.187 22.030 88.433 22.281Q88.679 22.532 89.093 22.532Q89.434 22.532 89.687 22.399Q89.940 22.266 89.940 21.958Q89.940 21.801 89.846 21.686Q89.752 21.572 89.614 21.503Q89.475 21.435 89.308 21.397L88.727 21.298Q88.371 21.230 88.098 21.009Q87.824 20.789 87.824 20.447Q87.824 20.198 87.936 20.023Q88.047 19.849 88.233 19.750Q88.419 19.651 88.635 19.608Q88.850 19.565 89.093 19.565Q89.506 19.565 89.786 19.747L90.002 19.572Q90.012 19.569 90.019 19.567Q90.026 19.565 90.036 19.565L90.087 19.565Q90.114 19.565 90.138 19.589Q90.162 19.613 90.162 19.641L90.162 20.488Q90.162 20.509 90.138 20.536Q90.114 20.563 90.087 20.563L89.974 20.563Q89.947 20.563 89.921 20.538Q89.896 20.512 89.896 20.488Q89.896 20.252 89.790 20.088Q89.684 19.924 89.501 19.842Q89.318 19.760 89.086 19.760Q88.758 19.760 88.501 19.863Q88.245 19.965 88.245 20.242Q88.245 20.437 88.428 20.546Q88.611 20.656 88.840 20.697L89.414 20.803Q89.660 20.851 89.874 20.979Q90.087 21.107 90.224 21.310Q90.361 21.514 90.361 21.763Q90.361 22.276 89.995 22.515Q89.629 22.754 89.093 22.754Q88.597 22.754 88.265 22.460L87.999 22.734Q87.978 22.754 87.951 22.754L87.903 22.754Q87.879 22.754 87.852 22.727Q87.824 22.700 87.824 22.679\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">External merge sort. Phase 1 sorts memory-sized loads into \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:1em;vertical-align:-0.25em;\">\u003C\u002Fspan>\u003Cspan class=\"mopen\">⌈\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003Cspan class=\"mord\">\u002F\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">M\u003C\u002Fspan>\u003Cspan class=\"mclose\">⌉\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> runs; phase 2 folds them \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6944em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.0315em;\">k\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> at a time, each pass a full sequential sweep, until a single sorted run of length \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6833em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> remains.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:340.854px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 255.640 105.857\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(17.786 -82.928)\">\u003Cpath d=\"M-58.592 18.852L-58.859 18.852L-58.859 14.744Q-58.859 14.474-58.966 14.412Q-59.074 14.351-59.385 14.351L-59.385 14.070L-58.305 13.995L-58.305 16.165Q-58.096 15.974-57.811 15.870Q-57.526 15.766-57.228 15.766Q-56.910 15.766-56.613 15.887Q-56.316 16.008-56.093 16.224Q-55.871 16.439-55.745 16.724Q-55.618 17.010-55.618 17.341Q-55.618 17.786-55.858 18.150Q-56.097 18.514-56.490 18.717Q-56.883 18.920-57.327 18.920Q-57.522 18.920-57.712 18.864Q-57.901 18.808-58.062 18.703Q-58.223 18.599-58.363 18.438L-58.592 18.852M-58.277 16.507L-58.277 18.124Q-58.141 18.384-57.900 18.541Q-57.659 18.698-57.382 18.698Q-57.088 18.698-56.876 18.591Q-56.664 18.483-56.531 18.291Q-56.398 18.100-56.339 17.861Q-56.281 17.622-56.281 17.341Q-56.281 16.982-56.375 16.678Q-56.469 16.374-56.697 16.181Q-56.924 15.988-57.290 15.988Q-57.590 15.988-57.857 16.124Q-58.124 16.261-58.277 16.507\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(17.786 -82.928)\">\u003Cpath d=\"M-54.808 17.317Q-54.808 16.996-54.683 16.707Q-54.558 16.418-54.332 16.195Q-54.107 15.971-53.811 15.851Q-53.516 15.731-53.198 15.731Q-52.870 15.731-52.608 15.831Q-52.347 15.930-52.171 16.112Q-51.995 16.295-51.901 16.553Q-51.807 16.811-51.807 17.143Q-51.807 17.235-51.889 17.256L-54.144 17.256L-54.144 17.317Q-54.144 17.905-53.861 18.288Q-53.577 18.671-53.010 18.671Q-52.688 18.671-52.420 18.478Q-52.152 18.285-52.063 17.970Q-52.056 17.929-51.981 17.915L-51.889 17.915Q-51.807 17.939-51.807 18.011Q-51.807 18.018-51.813 18.045Q-51.926 18.442-52.297 18.681Q-52.668 18.920-53.092 18.920Q-53.529 18.920-53.929 18.712Q-54.329 18.503-54.568 18.136Q-54.808 17.769-54.808 17.317M-54.138 17.047L-52.323 17.047Q-52.323 16.770-52.420 16.518Q-52.518 16.265-52.716 16.109Q-52.914 15.954-53.198 15.954Q-53.475 15.954-53.688 16.112Q-53.902 16.271-54.020 16.526Q-54.138 16.781-54.138 17.047M-49.421 18.852L-51.154 18.852L-51.154 18.572Q-50.928 18.572-50.779 18.538Q-50.631 18.503-50.631 18.363L-50.631 16.114L-51.219 16.114L-51.219 15.834L-50.631 15.834L-50.631 15.017Q-50.631 14.699-50.453 14.451Q-50.275 14.204-49.985 14.063Q-49.694 13.923-49.383 13.923Q-49.127 13.923-48.924 14.065Q-48.720 14.207-48.720 14.450Q-48.720 14.586-48.819 14.685Q-48.918 14.785-49.055 14.785Q-49.192 14.785-49.291 14.685Q-49.390 14.586-49.390 14.450Q-49.390 14.269-49.250 14.176Q-49.329 14.149-49.428 14.149Q-49.636 14.149-49.790 14.282Q-49.944 14.415-50.024 14.619Q-50.104 14.822-50.104 15.031L-50.104 15.834L-49.216 15.834L-49.216 16.114L-50.077 16.114L-50.077 18.363Q-50.077 18.572-49.421 18.572L-49.421 18.852M-48.782 17.369Q-48.782 17.027-48.647 16.728Q-48.512 16.429-48.272 16.205Q-48.033 15.981-47.715 15.856Q-47.397 15.731-47.066 15.731Q-46.622 15.731-46.222 15.947Q-45.822 16.162-45.588 16.540Q-45.353 16.917-45.353 17.369Q-45.353 17.710-45.495 17.994Q-45.637 18.278-45.882 18.485Q-46.126 18.691-46.435 18.806Q-46.745 18.920-47.066 18.920Q-47.497 18.920-47.898 18.719Q-48.300 18.517-48.541 18.165Q-48.782 17.813-48.782 17.369M-47.066 18.671Q-46.464 18.671-46.240 18.293Q-46.017 17.915-46.017 17.283Q-46.017 16.671-46.251 16.312Q-46.485 15.954-47.066 15.954Q-48.119 15.954-48.119 17.283Q-48.119 17.915-47.893 18.293Q-47.667 18.671-47.066 18.671M-43.009 18.852L-44.745 18.852L-44.745 18.572Q-44.516 18.572-44.367 18.538Q-44.219 18.503-44.219 18.363L-44.219 16.514Q-44.219 16.244-44.326 16.183Q-44.434 16.121-44.745 16.121L-44.745 15.841L-43.716 15.766L-43.716 16.473Q-43.586 16.165-43.344 15.966Q-43.101 15.766-42.783 15.766Q-42.564 15.766-42.394 15.890Q-42.223 16.015-42.223 16.227Q-42.223 16.364-42.322 16.463Q-42.421 16.562-42.554 16.562Q-42.691 16.562-42.790 16.463Q-42.889 16.364-42.889 16.227Q-42.889 16.087-42.790 15.988Q-43.081 15.988-43.280 16.184Q-43.480 16.381-43.573 16.675Q-43.665 16.969-43.665 17.249L-43.665 18.363Q-43.665 18.572-43.009 18.572L-43.009 18.852M-41.679 17.317Q-41.679 16.996-41.554 16.707Q-41.430 16.418-41.204 16.195Q-40.978 15.971-40.683 15.851Q-40.387 15.731-40.069 15.731Q-39.741 15.731-39.480 15.831Q-39.218 15.930-39.042 16.112Q-38.866 16.295-38.772 16.553Q-38.678 16.811-38.678 17.143Q-38.678 17.235-38.760 17.256L-41.016 17.256L-41.016 17.317Q-41.016 17.905-40.732 18.288Q-40.449 18.671-39.881 18.671Q-39.560 18.671-39.292 18.478Q-39.023 18.285-38.935 17.970Q-38.928 17.929-38.852 17.915L-38.760 17.915Q-38.678 17.939-38.678 18.011Q-38.678 18.018-38.685 18.045Q-38.798 18.442-39.169 18.681Q-39.539 18.920-39.963 18.920Q-40.401 18.920-40.801 18.712Q-41.201 18.503-41.440 18.136Q-41.679 17.769-41.679 17.317M-41.009 17.047L-39.194 17.047Q-39.194 16.770-39.292 16.518Q-39.389 16.265-39.587 16.109Q-39.786 15.954-40.069 15.954Q-40.346 15.954-40.560 16.112Q-40.773 16.271-40.891 16.526Q-41.009 16.781-41.009 17.047\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M-19.879-46.59c0-6.285-5.095-11.38-11.381-11.38s-11.381 5.095-11.381 11.38 5.095 11.381 11.381 11.381 11.381-5.095 11.381-11.38Zm-11.381 0\"\u002F>\u003Cg transform=\"translate(23.828 -62.541)\">\u003Cpath d=\"M-55.806 18.852L-58.838 18.852L-58.838 18.536Q-57.687 18.536-57.687 18.241L-57.687 13.517Q-58.175 13.750-58.896 13.750L-58.896 13.434Q-57.766 13.434-57.204 12.858L-57.059 12.858Q-57.024 12.858-56.991 12.891Q-56.958 12.924-56.958 12.959L-56.958 18.241Q-56.958 18.536-55.806 18.536L-55.806 18.852M-52.396 17.375L-54.835 17.375L-54.835 17.059L-52.009 12.911Q-51.965 12.858-51.900 12.858L-51.746 12.858Q-51.706 12.858-51.673 12.891Q-51.640 12.924-51.640 12.968L-51.640 17.059L-50.739 17.059L-50.739 17.375L-51.640 17.375L-51.640 18.241Q-51.640 18.536-50.739 18.536L-50.739 18.852L-53.293 18.852L-53.293 18.536Q-52.932 18.536-52.664 18.481Q-52.396 18.426-52.396 18.241L-52.396 17.375M-52.339 13.886L-54.501 17.059L-52.339 17.059\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-42.641-15.291c0-6.286-5.096-11.382-11.381-11.382s-11.381 5.096-11.381 11.382 5.095 11.38 11.38 11.38S-42.64-9.005-42.64-15.29Zm-11.381 0\"\u002F>\u003Cg transform=\"translate(1.065 -31.243)\">\u003Cpath d=\"M-55.806 18.852L-59.256 18.852L-59.256 18.619Q-59.256 18.606-59.225 18.575L-57.771 16.998Q-57.305 16.501-57.052 16.196Q-56.799 15.890-56.608 15.479Q-56.417 15.068-56.417 14.629Q-56.417 14.040-56.740 13.607Q-57.063 13.174-57.643 13.174Q-57.907 13.174-58.153 13.284Q-58.399 13.394-58.575 13.581Q-58.751 13.768-58.847 14.018L-58.768 14.018Q-58.566 14.018-58.423 14.154Q-58.280 14.290-58.280 14.506Q-58.280 14.712-58.423 14.851Q-58.566 14.989-58.768 14.989Q-58.970 14.989-59.113 14.846Q-59.256 14.704-59.256 14.506Q-59.256 14.044-59.019 13.671Q-58.781 13.297-58.381 13.078Q-57.982 12.858-57.533 12.858Q-57.010 12.858-56.556 13.073Q-56.101 13.289-55.828 13.688Q-55.556 14.088-55.556 14.629Q-55.556 15.024-55.727 15.378Q-55.899 15.732-56.164 16.011Q-56.430 16.290-56.881 16.675Q-57.331 17.059-57.410 17.134L-58.434 18.096L-57.617 18.096Q-56.966 18.096-56.529 18.085Q-56.092 18.074-56.061 18.052Q-55.991 17.969-55.936 17.729Q-55.881 17.490-55.841 17.222L-55.556 17.222L-55.806 18.852M-51.188 18.852L-54.637 18.852L-54.637 18.619Q-54.637 18.606-54.607 18.575L-53.152 16.998Q-52.686 16.501-52.433 16.196Q-52.181 15.890-51.990 15.479Q-51.798 15.068-51.798 14.629Q-51.798 14.040-52.121 13.607Q-52.444 13.174-53.025 13.174Q-53.288 13.174-53.534 13.284Q-53.780 13.394-53.956 13.581Q-54.132 13.768-54.229 14.018L-54.150 14.018Q-53.947 14.018-53.805 14.154Q-53.662 14.290-53.662 14.506Q-53.662 14.712-53.805 14.851Q-53.947 14.989-54.150 14.989Q-54.352 14.989-54.494 14.846Q-54.637 14.704-54.637 14.506Q-54.637 14.044-54.400 13.671Q-54.163 13.297-53.763 13.078Q-53.363 12.858-52.915 12.858Q-52.392 12.858-51.937 13.073Q-51.482 13.289-51.210 13.688Q-50.937 14.088-50.937 14.629Q-50.937 15.024-51.109 15.378Q-51.280 15.732-51.546 16.011Q-51.812 16.290-52.262 16.675Q-52.713 17.059-52.792 17.134L-53.816 18.096L-52.998 18.096Q-52.348 18.096-51.911 18.085Q-51.473 18.074-51.442 18.052Q-51.372 17.969-51.317 17.729Q-51.262 17.490-51.223 17.222L-50.937 17.222\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M2.883-15.291c0-6.286-5.095-11.382-11.38-11.382S-19.88-21.577-19.88-15.29s5.096 11.38 11.381 11.38S2.883-9.005 2.883-15.29Zm-11.38 0\"\u002F>\u003Cg transform=\"translate(46.59 -31.243)\">\u003Cpath d=\"M-55.806 18.852L-58.838 18.852L-58.838 18.536Q-57.687 18.536-57.687 18.241L-57.687 13.517Q-58.175 13.750-58.896 13.750L-58.896 13.434Q-57.766 13.434-57.204 12.858L-57.059 12.858Q-57.024 12.858-56.991 12.891Q-56.958 12.924-56.958 12.959L-56.958 18.241Q-56.958 18.536-55.806 18.536L-55.806 18.852M-54.708 17.485Q-54.708 16.927-54.347 16.514Q-53.987 16.101-53.411 15.829L-53.780 15.596Q-54.084 15.394-54.270 15.064Q-54.457 14.734-54.457 14.378Q-54.457 13.724-53.952 13.291Q-53.446 12.858-52.783 12.858Q-52.383 12.858-51.998 13.018Q-51.614 13.179-51.366 13.484Q-51.117 13.790-51.117 14.207Q-51.117 15.038-52.185 15.596L-51.631 15.943Q-51.284 16.171-51.073 16.540Q-50.862 16.910-50.862 17.323Q-50.862 17.701-51.021 18.019Q-51.179 18.338-51.456 18.571Q-51.733 18.804-52.075 18.927Q-52.418 19.050-52.783 19.050Q-53.249 19.050-53.695 18.863Q-54.141 18.676-54.424 18.322Q-54.708 17.969-54.708 17.485M-54.185 17.485Q-54.185 18.030-53.765 18.397Q-53.345 18.764-52.783 18.764Q-52.453 18.764-52.128 18.632Q-51.803 18.500-51.594 18.246Q-51.385 17.991-51.385 17.648Q-51.385 17.384-51.522 17.160Q-51.658 16.936-51.891 16.782L-53.134 16Q-53.596 16.237-53.890 16.624Q-54.185 17.011-54.185 17.485M-53.574 14.730L-52.458 15.433Q-52.234 15.310-52.029 15.121Q-51.825 14.932-51.704 14.699Q-51.583 14.466-51.583 14.207Q-51.583 13.899-51.755 13.649Q-51.926 13.398-52.203 13.258Q-52.480 13.117-52.792 13.117Q-53.240 13.117-53.613 13.363Q-53.987 13.609-53.987 14.036Q-53.987 14.440-53.574 14.730\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-42.641 16.006c0-6.285-5.096-11.38-11.381-11.38s-11.381 5.095-11.381 11.38 5.095 11.381 11.38 11.381 11.382-5.095 11.382-11.38Zm-11.381 0\"\u002F>\u003Cg transform=\"translate(1.065 .055)\">\u003Cpath d=\"M-58.812 18.131L-58.856 18.131Q-58.654 18.448-58.267 18.606Q-57.880 18.764-57.454 18.764Q-56.918 18.764-56.679 18.329Q-56.439 17.894-56.439 17.314Q-56.439 16.734-56.685 16.294Q-56.931 15.855-57.463 15.855L-58.083 15.855Q-58.109 15.855-58.142 15.826Q-58.175 15.798-58.175 15.776L-58.175 15.675Q-58.175 15.644-58.146 15.620Q-58.118 15.596-58.083 15.596L-57.564 15.556Q-57.098 15.556-56.852 15.084Q-56.606 14.611-56.606 14.093Q-56.606 13.666-56.819 13.392Q-57.032 13.117-57.454 13.117Q-57.797 13.117-58.122 13.247Q-58.447 13.376-58.632 13.631L-58.606 13.631Q-58.403 13.631-58.267 13.772Q-58.131 13.913-58.131 14.110Q-58.131 14.308-58.265 14.442Q-58.399 14.576-58.597 14.576Q-58.799 14.576-58.937 14.442Q-59.076 14.308-59.076 14.110Q-59.076 13.521-58.573 13.190Q-58.069 12.858-57.454 12.858Q-57.076 12.858-56.674 12.998Q-56.272 13.139-56.004 13.418Q-55.736 13.697-55.736 14.093Q-55.736 14.642-56.090 15.079Q-56.443 15.517-56.984 15.701Q-56.593 15.780-56.248 16.004Q-55.903 16.228-55.692 16.569Q-55.481 16.910-55.481 17.305Q-55.481 17.687-55.644 18.010Q-55.806 18.333-56.098 18.569Q-56.391 18.804-56.738 18.927Q-57.085 19.050-57.454 19.050Q-57.902 19.050-58.333 18.889Q-58.764 18.729-59.045 18.402Q-59.326 18.074-59.326 17.617Q-59.326 17.402-59.179 17.259Q-59.032 17.116-58.812 17.116Q-58.601 17.116-58.456 17.261Q-58.311 17.406-58.311 17.617Q-58.311 17.828-58.458 17.980Q-58.606 18.131-58.812 18.131M-51.188 18.852L-54.220 18.852L-54.220 18.536Q-53.068 18.536-53.068 18.241L-53.068 13.517Q-53.556 13.750-54.277 13.750L-54.277 13.434Q-53.148 13.434-52.585 12.858L-52.440 12.858Q-52.405 12.858-52.372 12.891Q-52.339 12.924-52.339 12.959L-52.339 18.241Q-52.339 18.536-51.188 18.536\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m-38.071-37.224-9.14 12.567M-24.449-37.224l9.14 12.567M-54.022-3.71v8.135\"\u002F>\u003Cg fill=\"var(--tk-good)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(89.34 -63.087)\">\u003Cpath d=\"M-59.440 17.317Q-59.440 16.996-59.315 16.707Q-59.190 16.418-58.964 16.195Q-58.739 15.971-58.443 15.851Q-58.148 15.731-57.830 15.731Q-57.502 15.731-57.240 15.831Q-56.979 15.930-56.803 16.112Q-56.627 16.295-56.533 16.553Q-56.439 16.811-56.439 17.143Q-56.439 17.235-56.521 17.256L-58.776 17.256L-58.776 17.317Q-58.776 17.905-58.493 18.288Q-58.209 18.671-57.642 18.671Q-57.320 18.671-57.052 18.478Q-56.784 18.285-56.695 17.970Q-56.688 17.929-56.613 17.915L-56.521 17.915Q-56.439 17.939-56.439 18.011Q-56.439 18.018-56.445 18.045Q-56.558 18.442-56.929 18.681Q-57.300 18.920-57.724 18.920Q-58.161 18.920-58.561 18.712Q-58.961 18.503-59.200 18.136Q-59.440 17.769-59.440 17.317M-58.770 17.047L-56.955 17.047Q-56.955 16.770-57.052 16.518Q-57.150 16.265-57.348 16.109Q-57.546 15.954-57.830 15.954Q-58.107 15.954-58.320 16.112Q-58.534 16.271-58.652 16.526Q-58.770 16.781-58.770 17.047M-54.169 18.852L-55.803 18.852L-55.803 18.572Q-55.574 18.572-55.425 18.538Q-55.276 18.503-55.276 18.363L-55.276 16.514Q-55.276 16.244-55.384 16.183Q-55.492 16.121-55.803 16.121L-55.803 15.841L-54.743 15.766L-54.743 16.415Q-54.572 16.107-54.268 15.936Q-53.964 15.766-53.619 15.766Q-53.219 15.766-52.942 15.906Q-52.665 16.046-52.580 16.394Q-52.412 16.101-52.113 15.933Q-51.814 15.766-51.469 15.766Q-50.963 15.766-50.679 15.989Q-50.396 16.213-50.396 16.709L-50.396 18.363Q-50.396 18.500-50.247 18.536Q-50.098 18.572-49.873 18.572L-49.873 18.852L-51.503 18.852L-51.503 18.572Q-51.277 18.572-51.127 18.536Q-50.977 18.500-50.977 18.363L-50.977 16.723Q-50.977 16.388-51.096 16.188Q-51.216 15.988-51.530 15.988Q-51.800 15.988-52.035 16.124Q-52.269 16.261-52.407 16.495Q-52.546 16.729-52.546 17.003L-52.546 18.363Q-52.546 18.500-52.397 18.536Q-52.248 18.572-52.023 18.572L-52.023 18.852L-53.653 18.852L-53.653 18.572Q-53.424 18.572-53.275 18.538Q-53.127 18.503-53.127 18.363L-53.127 16.723Q-53.127 16.388-53.246 16.188Q-53.366 15.988-53.680 15.988Q-53.950 15.988-54.184 16.124Q-54.419 16.261-54.557 16.495Q-54.695 16.729-54.695 17.003L-54.695 18.363Q-54.695 18.500-54.545 18.536Q-54.395 18.572-54.169 18.572L-54.169 18.852M-47.668 18.852L-49.220 18.852L-49.220 18.572Q-48.994 18.572-48.846 18.538Q-48.697 18.503-48.697 18.363L-48.697 16.514Q-48.697 16.326-48.745 16.242Q-48.793 16.159-48.890 16.140Q-48.987 16.121-49.199 16.121L-49.199 15.841L-48.143 15.766L-48.143 18.363Q-48.143 18.503-48.012 18.538Q-47.880 18.572-47.668 18.572L-47.668 18.852M-48.940 14.545Q-48.940 14.374-48.817 14.255Q-48.693 14.135-48.523 14.135Q-48.355 14.135-48.232 14.255Q-48.109 14.374-48.109 14.545Q-48.109 14.720-48.232 14.843Q-48.355 14.966-48.523 14.966Q-48.693 14.966-48.817 14.843Q-48.940 14.720-48.940 14.545M-46.496 18.011L-46.496 16.114L-47.135 16.114L-47.135 15.892Q-46.817 15.892-46.600 15.682Q-46.383 15.472-46.282 15.162Q-46.181 14.853-46.181 14.545L-45.915 14.545L-45.915 15.834L-44.838 15.834L-44.838 16.114L-45.915 16.114L-45.915 17.998Q-45.915 18.274-45.810 18.473Q-45.706 18.671-45.446 18.671Q-45.289 18.671-45.183 18.567Q-45.077 18.462-45.028 18.309Q-44.978 18.155-44.978 17.998L-44.978 17.584L-44.712 17.584L-44.712 18.011Q-44.712 18.237-44.811 18.447Q-44.910 18.657-45.094 18.789Q-45.279 18.920-45.508 18.920Q-45.945 18.920-46.221 18.683Q-46.496 18.445-46.496 18.011\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(89.34 -63.087)\">\u003Cpath d=\"M-38.178 18.852L-40.708 18.852L-40.708 18.572Q-39.740 18.572-39.740 18.363L-39.740 14.744Q-40.133 14.932-40.755 14.932L-40.755 14.651Q-40.338 14.651-39.974 14.550Q-39.610 14.450-39.354 14.204L-39.228 14.204Q-39.163 14.221-39.146 14.289L-39.146 18.363Q-39.146 18.572-38.178 18.572L-38.178 18.852M-35.205 17.704L-37.249 17.704L-37.249 17.423L-34.918 14.251Q-34.883 14.204-34.818 14.204L-34.682 14.204Q-34.637 14.204-34.610 14.231Q-34.583 14.258-34.583 14.303L-34.583 17.423L-33.820 17.423L-33.820 17.704L-34.583 17.704L-34.583 18.363Q-34.583 18.572-33.827 18.572L-33.827 18.852L-35.960 18.852L-35.960 18.572Q-35.205 18.572-35.205 18.363L-35.205 17.704M-35.157 14.979L-36.948 17.423L-35.157 17.423\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-4.23-46.59h24.327\"\u002F>\u003Cpath d=\"m23.084-46.59-4.17-1.576 1.383 1.576-1.382 1.577Z\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(77.95 -41.005)\">\u003Cpath d=\"M-57.649 18.852L-59.385 18.852L-59.385 18.572Q-59.156 18.572-59.007 18.538Q-58.859 18.503-58.859 18.363L-58.859 16.514Q-58.859 16.244-58.966 16.183Q-59.074 16.121-59.385 16.121L-59.385 15.841L-58.356 15.766L-58.356 16.473Q-58.226 16.165-57.984 15.966Q-57.741 15.766-57.423 15.766Q-57.204 15.766-57.033 15.890Q-56.862 16.015-56.862 16.227Q-56.862 16.364-56.962 16.463Q-57.061 16.562-57.194 16.562Q-57.331 16.562-57.430 16.463Q-57.529 16.364-57.529 16.227Q-57.529 16.087-57.430 15.988Q-57.720 15.988-57.920 16.184Q-58.120 16.381-58.213 16.675Q-58.305 16.969-58.305 17.249L-58.305 18.363Q-58.305 18.572-57.649 18.572L-57.649 18.852M-55.704 18.018L-55.704 16.514Q-55.704 16.244-55.811 16.183Q-55.919 16.121-56.230 16.121L-56.230 15.841L-55.123 15.766L-55.123 17.998L-55.123 18.018Q-55.123 18.298-55.071 18.442Q-55.020 18.585-54.878 18.642Q-54.736 18.698-54.449 18.698Q-54.196 18.698-53.991 18.558Q-53.786 18.418-53.670 18.192Q-53.554 17.967-53.554 17.717L-53.554 16.514Q-53.554 16.244-53.661 16.183Q-53.769 16.121-54.080 16.121L-54.080 15.841L-52.973 15.766L-52.973 18.179Q-52.973 18.370-52.920 18.452Q-52.867 18.534-52.766 18.553Q-52.665 18.572-52.450 18.572L-52.450 18.852L-53.526 18.920L-53.526 18.356Q-53.636 18.538-53.781 18.661Q-53.926 18.784-54.113 18.852Q-54.299 18.920-54.501 18.920Q-55.704 18.920-55.704 18.018M-50.180 18.852L-51.814 18.852L-51.814 18.572Q-51.585 18.572-51.436 18.538Q-51.288 18.503-51.288 18.363L-51.288 16.514Q-51.288 16.244-51.395 16.183Q-51.503 16.121-51.814 16.121L-51.814 15.841L-50.755 15.766L-50.755 16.415Q-50.584 16.107-50.279 15.936Q-49.975 15.766-49.630 15.766Q-49.124 15.766-48.840 15.989Q-48.557 16.213-48.557 16.709L-48.557 18.363Q-48.557 18.500-48.408 18.536Q-48.259 18.572-48.034 18.572L-48.034 18.852L-49.664 18.852L-49.664 18.572Q-49.435 18.572-49.286 18.538Q-49.138 18.503-49.138 18.363L-49.138 16.723Q-49.138 16.388-49.257 16.188Q-49.377 15.988-49.692 15.988Q-49.962 15.988-50.196 16.124Q-50.430 16.261-50.568 16.495Q-50.707 16.729-50.707 17.003L-50.707 18.363Q-50.707 18.500-50.556 18.536Q-50.406 18.572-50.180 18.572\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.95 -41.005)\">\u003Cpath d=\"M-44.264 18.305Q-44.144 18.462-43.953 18.561Q-43.761 18.661-43.546 18.700Q-43.331 18.739-43.108 18.739Q-42.811 18.739-42.616 18.584Q-42.421 18.428-42.331 18.174Q-42.240 17.919-42.240 17.635Q-42.240 17.341-42.332 17.090Q-42.425 16.839-42.623 16.683Q-42.821 16.528-43.115 16.528L-43.631 16.528Q-43.659 16.528-43.684 16.502Q-43.710 16.477-43.710 16.453L-43.710 16.381Q-43.710 16.350-43.684 16.328Q-43.659 16.306-43.631 16.306L-43.190 16.275Q-42.828 16.275-42.608 15.918Q-42.387 15.560-42.387 15.171Q-42.387 14.843-42.582 14.639Q-42.777 14.436-43.108 14.436Q-43.395 14.436-43.648 14.520Q-43.901 14.603-44.065 14.791Q-43.918 14.791-43.818 14.906Q-43.717 15.020-43.717 15.171Q-43.717 15.321-43.823 15.431Q-43.929 15.540-44.086 15.540Q-44.247 15.540-44.356 15.431Q-44.465 15.321-44.465 15.171Q-44.465 14.846-44.257 14.627Q-44.048 14.409-43.732 14.306Q-43.416 14.204-43.108 14.204Q-42.790 14.204-42.462 14.308Q-42.134 14.412-41.907 14.634Q-41.680 14.856-41.680 15.171Q-41.680 15.605-41.967 15.930Q-42.254 16.254-42.688 16.401Q-42.377 16.466-42.097 16.632Q-41.816 16.798-41.639 17.056Q-41.461 17.314-41.461 17.635Q-41.461 18.045-41.705 18.355Q-41.950 18.664-42.331 18.828Q-42.712 18.992-43.108 18.992Q-43.477 18.992-43.835 18.879Q-44.192 18.767-44.436 18.517Q-44.681 18.268-44.681 17.898Q-44.681 17.727-44.564 17.615Q-44.448 17.502-44.277 17.502Q-44.168 17.502-44.077 17.553Q-43.987 17.604-43.932 17.697Q-43.877 17.789-43.877 17.898Q-43.877 18.066-43.990 18.185Q-44.103 18.305-44.264 18.305\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.95 -41.005)\">\u003Cpath d=\"M-38.106 19.385Q-38.106 19.139-37.909 18.955Q-37.712 18.770-37.456 18.691Q-37.593 18.579-37.665 18.418Q-37.736 18.257-37.736 18.076Q-37.736 17.755-37.525 17.509Q-37.859 17.211-37.859 16.801Q-37.859 16.340-37.470 16.053Q-37.080 15.766-36.602 15.766Q-36.130 15.766-35.795 16.012Q-35.621 15.858-35.410 15.776Q-35.200 15.694-34.971 15.694Q-34.807 15.694-34.686 15.801Q-34.565 15.909-34.565 16.073Q-34.565 16.169-34.636 16.241Q-34.708 16.312-34.800 16.312Q-34.900 16.312-34.970 16.239Q-35.040 16.165-35.040 16.066Q-35.040 16.012-35.026 15.981L-35.019 15.967Q-35.012 15.947-35.004 15.936Q-34.995 15.926-34.992 15.919Q-35.347 15.919-35.634 16.142Q-35.347 16.435-35.347 16.801Q-35.347 17.116-35.532 17.348Q-35.716 17.581-36.005 17.709Q-36.294 17.837-36.602 17.837Q-36.803 17.837-36.995 17.787Q-37.186 17.738-37.364 17.628Q-37.456 17.755-37.456 17.898Q-37.456 18.080-37.328 18.215Q-37.200 18.350-37.015 18.350L-36.383 18.350Q-35.935 18.350-35.566 18.421Q-35.197 18.493-34.937 18.722Q-34.677 18.951-34.677 19.385Q-34.677 19.706-34.973 19.908Q-35.269 20.110-35.672 20.199Q-36.075 20.288-36.390 20.288Q-36.708 20.288-37.111 20.199Q-37.514 20.110-37.810 19.908Q-38.106 19.706-38.106 19.385M-37.651 19.385Q-37.651 19.614-37.432 19.763Q-37.213 19.912-36.921 19.980Q-36.629 20.048-36.390 20.048Q-36.226 20.048-36.017 20.012Q-35.809 19.977-35.602 19.896Q-35.395 19.816-35.264 19.688Q-35.132 19.560-35.132 19.385Q-35.132 19.033-35.513 18.939Q-35.894 18.845-36.397 18.845L-37.015 18.845Q-37.254 18.845-37.453 18.996Q-37.651 19.146-37.651 19.385M-36.602 17.598Q-35.935 17.598-35.935 16.801Q-35.935 16.001-36.602 16.001Q-37.272 16.001-37.272 16.801Q-37.272 17.598-36.602 17.598M-32.466 18.852L-34.018 18.852L-34.018 18.572Q-33.792 18.572-33.643 18.538Q-33.495 18.503-33.495 18.363L-33.495 16.514Q-33.495 16.326-33.543 16.242Q-33.590 16.159-33.688 16.140Q-33.785 16.121-33.997 16.121L-33.997 15.841L-32.941 15.766L-32.941 18.363Q-32.941 18.503-32.809 18.538Q-32.678 18.572-32.466 18.572L-32.466 18.852M-33.737 14.545Q-33.737 14.374-33.614 14.255Q-33.491 14.135-33.320 14.135Q-33.153 14.135-33.030 14.255Q-32.907 14.374-32.907 14.545Q-32.907 14.720-33.030 14.843Q-33.153 14.966-33.320 14.966Q-33.491 14.966-33.614 14.843Q-33.737 14.720-33.737 14.545M-30.231 18.825L-31.358 16.326Q-31.430 16.179-31.560 16.147Q-31.690 16.114-31.919 16.114L-31.919 15.834L-30.405 15.834L-30.405 16.114Q-30.757 16.114-30.757 16.261Q-30.757 16.306-30.747 16.326L-29.882 18.244L-29.103 16.514Q-29.068 16.446-29.068 16.367Q-29.068 16.254-29.152 16.184Q-29.236 16.114-29.356 16.114L-29.356 15.834L-28.159 15.834L-28.159 16.114Q-28.378 16.114-28.549 16.217Q-28.720 16.319-28.809 16.514L-29.844 18.825Q-29.892 18.920-29.998 18.920L-30.077 18.920Q-30.183 18.920-30.231 18.825\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.95 -41.005)\">\u003Cpath d=\"M-27.870 17.317Q-27.870 16.996-27.745 16.707Q-27.620 16.418-27.394 16.195Q-27.169 15.971-26.873 15.851Q-26.578 15.731-26.260 15.731Q-25.932 15.731-25.670 15.831Q-25.409 15.930-25.233 16.112Q-25.057 16.295-24.963 16.553Q-24.869 16.811-24.869 17.143Q-24.869 17.235-24.951 17.256L-27.206 17.256L-27.206 17.317Q-27.206 17.905-26.923 18.288Q-26.639 18.671-26.072 18.671Q-25.750 18.671-25.482 18.478Q-25.214 18.285-25.125 17.970Q-25.118 17.929-25.043 17.915L-24.951 17.915Q-24.869 17.939-24.869 18.011Q-24.869 18.018-24.875 18.045Q-24.988 18.442-25.359 18.681Q-25.730 18.920-26.154 18.920Q-26.591 18.920-26.991 18.712Q-27.391 18.503-27.630 18.136Q-27.870 17.769-27.870 17.317M-27.200 17.047L-25.385 17.047Q-25.385 16.770-25.482 16.518Q-25.580 16.265-25.778 16.109Q-25.976 15.954-26.260 15.954Q-26.537 15.954-26.750 16.112Q-26.964 16.271-27.082 16.526Q-27.200 16.781-27.200 17.047M-24.281 18.845L-24.281 17.782Q-24.281 17.758-24.253 17.731Q-24.226 17.704-24.202 17.704L-24.093 17.704Q-24.028 17.704-24.014 17.762Q-23.918 18.196-23.672 18.447Q-23.426 18.698-23.013 18.698Q-22.671 18.698-22.418 18.565Q-22.165 18.432-22.165 18.124Q-22.165 17.967-22.259 17.852Q-22.353 17.738-22.491 17.669Q-22.630 17.601-22.797 17.563L-23.378 17.464Q-23.734 17.396-24.007 17.175Q-24.281 16.955-24.281 16.613Q-24.281 16.364-24.170 16.189Q-24.059 16.015-23.872 15.916Q-23.686 15.817-23.471 15.774Q-23.255 15.731-23.013 15.731Q-22.599 15.731-22.319 15.913L-22.103 15.738Q-22.093 15.735-22.086 15.733Q-22.080 15.731-22.069 15.731L-22.018 15.731Q-21.991 15.731-21.967 15.755Q-21.943 15.779-21.943 15.807L-21.943 16.654Q-21.943 16.675-21.967 16.702Q-21.991 16.729-22.018 16.729L-22.131 16.729Q-22.158 16.729-22.184 16.704Q-22.209 16.678-22.209 16.654Q-22.209 16.418-22.315 16.254Q-22.421 16.090-22.604 16.008Q-22.787 15.926-23.019 15.926Q-23.348 15.926-23.604 16.029Q-23.860 16.131-23.860 16.408Q-23.860 16.603-23.677 16.712Q-23.495 16.822-23.266 16.863L-22.691 16.969Q-22.445 17.017-22.232 17.145Q-22.018 17.273-21.881 17.476Q-21.745 17.680-21.745 17.929Q-21.745 18.442-22.110 18.681Q-22.476 18.920-23.013 18.920Q-23.508 18.920-23.840 18.626L-24.106 18.900Q-24.127 18.920-24.154 18.920L-24.202 18.920Q-24.226 18.920-24.253 18.893Q-24.281 18.866-24.281 18.845\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.95 -41.005)\">\u003Cpath d=\"M-15.399 18.852L-17.929 18.852L-17.929 18.572Q-16.961 18.572-16.961 18.363L-16.961 14.744Q-17.354 14.932-17.976 14.932L-17.976 14.651Q-17.559 14.651-17.195 14.550Q-16.831 14.450-16.575 14.204L-16.449 14.204Q-16.384 14.221-16.367 14.289L-16.367 18.363Q-16.367 18.572-15.399 18.572L-15.399 18.852M-13.769 18.538Q-13.649 18.654-13.472 18.696Q-13.294 18.739-13.079 18.739Q-12.839 18.739-12.629 18.630Q-12.419 18.520-12.265 18.338Q-12.111 18.155-12.012 17.922Q-11.845 17.495-11.845 16.675Q-11.995 16.969-12.258 17.148Q-12.521 17.328-12.839 17.328Q-13.273 17.328-13.620 17.119Q-13.967 16.911-14.165 16.550Q-14.364 16.189-14.364 15.766Q-14.364 15.431-14.234 15.142Q-14.104 14.853-13.873 14.639Q-13.642 14.426-13.343 14.315Q-13.044 14.204-12.713 14.204Q-11.855 14.204-11.499 14.918Q-11.144 15.632-11.144 16.589Q-11.144 17.006-11.272 17.434Q-11.400 17.861-11.657 18.216Q-11.913 18.572-12.275 18.782Q-12.638 18.992-13.079 18.992Q-13.533 18.992-13.851 18.804Q-14.169 18.616-14.169 18.192Q-14.169 18.042-14.070 17.943Q-13.971 17.844-13.820 17.844Q-13.752 17.844-13.685 17.871Q-13.619 17.898-13.574 17.943Q-13.530 17.987-13.502 18.054Q-13.475 18.121-13.475 18.192Q-13.475 18.322-13.555 18.420Q-13.636 18.517-13.769 18.538M-12.798 17.102Q-12.504 17.102-12.289 16.924Q-12.074 16.747-11.966 16.471Q-11.858 16.196-11.858 15.906Q-11.858 15.861-11.860 15.834Q-11.862 15.807-11.865 15.772Q-11.862 15.762-11.860 15.755Q-11.858 15.748-11.858 15.738Q-11.858 15.236-12.057 14.836Q-12.255 14.436-12.713 14.436Q-13.280 14.436-13.473 14.795Q-13.666 15.154-13.666 15.766Q-13.666 16.152-13.612 16.435Q-13.557 16.719-13.362 16.911Q-13.167 17.102-12.798 17.102\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(168.271 -82.928)\">\u003Cpath d=\"M-59.340 18.124Q-59.340 17.792-59.117 17.565Q-58.893 17.338-58.549 17.210Q-58.206 17.081-57.833 17.029Q-57.461 16.976-57.156 16.976L-57.156 16.723Q-57.156 16.518-57.264 16.338Q-57.372 16.159-57.553 16.056Q-57.734 15.954-57.942 15.954Q-58.349 15.954-58.585 16.046Q-58.496 16.083-58.450 16.167Q-58.404 16.251-58.404 16.353Q-58.404 16.449-58.450 16.528Q-58.496 16.606-58.577 16.651Q-58.657 16.695-58.746 16.695Q-58.896 16.695-58.997 16.598Q-59.098 16.500-59.098 16.353Q-59.098 15.731-57.942 15.731Q-57.731 15.731-57.481 15.795Q-57.232 15.858-57.030 15.977Q-56.828 16.097-56.702 16.282Q-56.575 16.466-56.575 16.709L-56.575 18.285Q-56.575 18.401-56.514 18.497Q-56.452 18.592-56.339 18.592Q-56.230 18.592-56.165 18.498Q-56.100 18.404-56.100 18.285L-56.100 17.837L-55.834 17.837L-55.834 18.285Q-55.834 18.555-56.061 18.720Q-56.288 18.886-56.568 18.886Q-56.777 18.886-56.914 18.732Q-57.050 18.579-57.074 18.363Q-57.221 18.630-57.503 18.775Q-57.785 18.920-58.110 18.920Q-58.387 18.920-58.671 18.845Q-58.954 18.770-59.147 18.591Q-59.340 18.411-59.340 18.124M-58.725 18.124Q-58.725 18.298-58.624 18.428Q-58.524 18.558-58.368 18.628Q-58.213 18.698-58.048 18.698Q-57.830 18.698-57.621 18.601Q-57.413 18.503-57.285 18.322Q-57.156 18.141-57.156 17.915L-57.156 17.187Q-57.481 17.187-57.847 17.278Q-58.213 17.369-58.469 17.581Q-58.725 17.792-58.725 18.124M-53.619 18.852L-55.352 18.852L-55.352 18.572Q-55.126 18.572-54.977 18.538Q-54.829 18.503-54.829 18.363L-54.829 16.114L-55.417 16.114L-55.417 15.834L-54.829 15.834L-54.829 15.017Q-54.829 14.699-54.651 14.451Q-54.473 14.204-54.183 14.063Q-53.892 13.923-53.581 13.923Q-53.325 13.923-53.121 14.065Q-52.918 14.207-52.918 14.450Q-52.918 14.586-53.017 14.685Q-53.116 14.785-53.253 14.785Q-53.390 14.785-53.489 14.685Q-53.588 14.586-53.588 14.450Q-53.588 14.269-53.448 14.176Q-53.526 14.149-53.626 14.149Q-53.834 14.149-53.988 14.282Q-54.142 14.415-54.222 14.619Q-54.302 14.822-54.302 15.031L-54.302 15.834L-53.414 15.834L-53.414 16.114L-54.275 16.114L-54.275 18.363Q-54.275 18.572-53.619 18.572L-53.619 18.852M-52.412 18.011L-52.412 16.114L-53.051 16.114L-53.051 15.892Q-52.734 15.892-52.516 15.682Q-52.299 15.472-52.199 15.162Q-52.098 14.853-52.098 14.545L-51.831 14.545L-51.831 15.834L-50.755 15.834L-50.755 16.114L-51.831 16.114L-51.831 17.998Q-51.831 18.274-51.727 18.473Q-51.623 18.671-51.363 18.671Q-51.206 18.671-51.100 18.567Q-50.994 18.462-50.944 18.309Q-50.895 18.155-50.895 17.998L-50.895 17.584L-50.628 17.584L-50.628 18.011Q-50.628 18.237-50.727 18.447Q-50.826 18.657-51.011 18.789Q-51.195 18.920-51.424 18.920Q-51.862 18.920-52.137 18.683Q-52.412 18.445-52.412 18.011M-49.859 17.317Q-49.859 16.996-49.734 16.707Q-49.609 16.418-49.384 16.195Q-49.158 15.971-48.863 15.851Q-48.567 15.731-48.249 15.731Q-47.921 15.731-47.660 15.831Q-47.398 15.930-47.222 16.112Q-47.046 16.295-46.952 16.553Q-46.858 16.811-46.858 17.143Q-46.858 17.235-46.940 17.256L-49.196 17.256L-49.196 17.317Q-49.196 17.905-48.912 18.288Q-48.629 18.671-48.061 18.671Q-47.740 18.671-47.472 18.478Q-47.203 18.285-47.114 17.970Q-47.108 17.929-47.032 17.915L-46.940 17.915Q-46.858 17.939-46.858 18.011Q-46.858 18.018-46.865 18.045Q-46.978 18.442-47.348 18.681Q-47.719 18.920-48.143 18.920Q-48.581 18.920-48.981 18.712Q-49.380 18.503-49.620 18.136Q-49.859 17.769-49.859 17.317M-49.189 17.047L-47.374 17.047Q-47.374 16.770-47.472 16.518Q-47.569 16.265-47.767 16.109Q-47.965 15.954-48.249 15.954Q-48.526 15.954-48.740 16.112Q-48.953 16.271-49.071 16.526Q-49.189 16.781-49.189 17.047M-44.520 18.852L-46.256 18.852L-46.256 18.572Q-46.027 18.572-45.879 18.538Q-45.730 18.503-45.730 18.363L-45.730 16.514Q-45.730 16.244-45.838 16.183Q-45.945 16.121-46.256 16.121L-46.256 15.841L-45.228 15.766L-45.228 16.473Q-45.098 16.165-44.855 15.966Q-44.612 15.766-44.295 15.766Q-44.076 15.766-43.905 15.890Q-43.734 16.015-43.734 16.227Q-43.734 16.364-43.833 16.463Q-43.932 16.562-44.066 16.562Q-44.202 16.562-44.301 16.463Q-44.401 16.364-44.401 16.227Q-44.401 16.087-44.301 15.988Q-44.592 15.988-44.792 16.184Q-44.992 16.381-45.084 16.675Q-45.176 16.969-45.176 17.249L-45.176 18.363Q-45.176 18.572-44.520 18.572\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M128.075-46.59c0-6.285-5.095-11.38-11.38-11.38s-11.382 5.095-11.382 11.38 5.096 11.381 11.381 11.381 11.381-5.095 11.381-11.38Zm-11.38 0\"\u002F>\u003Cg transform=\"translate(171.782 -62.541)\">\u003Cpath d=\"M-55.806 18.852L-58.838 18.852L-58.838 18.536Q-57.687 18.536-57.687 18.241L-57.687 13.517Q-58.175 13.750-58.896 13.750L-58.896 13.434Q-57.766 13.434-57.204 12.858L-57.059 12.858Q-57.024 12.858-56.991 12.891Q-56.958 12.924-56.958 12.959L-56.958 18.241Q-56.958 18.536-55.806 18.536L-55.806 18.852M-54.708 17.485Q-54.708 16.927-54.347 16.514Q-53.987 16.101-53.411 15.829L-53.780 15.596Q-54.084 15.394-54.270 15.064Q-54.457 14.734-54.457 14.378Q-54.457 13.724-53.952 13.291Q-53.446 12.858-52.783 12.858Q-52.383 12.858-51.998 13.018Q-51.614 13.179-51.366 13.484Q-51.117 13.790-51.117 14.207Q-51.117 15.038-52.185 15.596L-51.631 15.943Q-51.284 16.171-51.073 16.540Q-50.862 16.910-50.862 17.323Q-50.862 17.701-51.021 18.019Q-51.179 18.338-51.456 18.571Q-51.733 18.804-52.075 18.927Q-52.418 19.050-52.783 19.050Q-53.249 19.050-53.695 18.863Q-54.141 18.676-54.424 18.322Q-54.708 17.969-54.708 17.485M-54.185 17.485Q-54.185 18.030-53.765 18.397Q-53.345 18.764-52.783 18.764Q-52.453 18.764-52.128 18.632Q-51.803 18.500-51.594 18.246Q-51.385 17.991-51.385 17.648Q-51.385 17.384-51.522 17.160Q-51.658 16.936-51.891 16.782L-53.134 16Q-53.596 16.237-53.890 16.624Q-54.185 17.011-54.185 17.485M-53.574 14.730L-52.458 15.433Q-52.234 15.310-52.029 15.121Q-51.825 14.932-51.704 14.699Q-51.583 14.466-51.583 14.207Q-51.583 13.899-51.755 13.649Q-51.926 13.398-52.203 13.258Q-52.480 13.117-52.792 13.117Q-53.240 13.117-53.613 13.363Q-53.987 13.609-53.987 14.036Q-53.987 14.440-53.574 14.730\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M105.313-15.291c0-6.286-5.095-11.382-11.381-11.382S82.55-21.577 82.55-15.29s5.095 11.38 11.38 11.38c6.287 0 11.382-5.095 11.382-11.38Zm-11.381 0\"\u002F>\u003Cg transform=\"translate(149.02 -31.243)\">\u003Cpath d=\"M-55.806 18.852L-59.256 18.852L-59.256 18.619Q-59.256 18.606-59.225 18.575L-57.771 16.998Q-57.305 16.501-57.052 16.196Q-56.799 15.890-56.608 15.479Q-56.417 15.068-56.417 14.629Q-56.417 14.040-56.740 13.607Q-57.063 13.174-57.643 13.174Q-57.907 13.174-58.153 13.284Q-58.399 13.394-58.575 13.581Q-58.751 13.768-58.847 14.018L-58.768 14.018Q-58.566 14.018-58.423 14.154Q-58.280 14.290-58.280 14.506Q-58.280 14.712-58.423 14.851Q-58.566 14.989-58.768 14.989Q-58.970 14.989-59.113 14.846Q-59.256 14.704-59.256 14.506Q-59.256 14.044-59.019 13.671Q-58.781 13.297-58.381 13.078Q-57.982 12.858-57.533 12.858Q-57.010 12.858-56.556 13.073Q-56.101 13.289-55.828 13.688Q-55.556 14.088-55.556 14.629Q-55.556 15.024-55.727 15.378Q-55.899 15.732-56.164 16.011Q-56.430 16.290-56.881 16.675Q-57.331 17.059-57.410 17.134L-58.434 18.096L-57.617 18.096Q-56.966 18.096-56.529 18.085Q-56.092 18.074-56.061 18.052Q-55.991 17.969-55.936 17.729Q-55.881 17.490-55.841 17.222L-55.556 17.222L-55.806 18.852M-51.188 18.852L-54.637 18.852L-54.637 18.619Q-54.637 18.606-54.607 18.575L-53.152 16.998Q-52.686 16.501-52.433 16.196Q-52.181 15.890-51.990 15.479Q-51.798 15.068-51.798 14.629Q-51.798 14.040-52.121 13.607Q-52.444 13.174-53.025 13.174Q-53.288 13.174-53.534 13.284Q-53.780 13.394-53.956 13.581Q-54.132 13.768-54.229 14.018L-54.150 14.018Q-53.947 14.018-53.805 14.154Q-53.662 14.290-53.662 14.506Q-53.662 14.712-53.805 14.851Q-53.947 14.989-54.150 14.989Q-54.352 14.989-54.494 14.846Q-54.637 14.704-54.637 14.506Q-54.637 14.044-54.400 13.671Q-54.163 13.297-53.763 13.078Q-53.363 12.858-52.915 12.858Q-52.392 12.858-51.937 13.073Q-51.482 13.289-51.210 13.688Q-50.937 14.088-50.937 14.629Q-50.937 15.024-51.109 15.378Q-51.280 15.732-51.546 16.011Q-51.812 16.290-52.262 16.675Q-52.713 17.059-52.792 17.134L-53.816 18.096L-52.998 18.096Q-52.348 18.096-51.911 18.085Q-51.473 18.074-51.442 18.052Q-51.372 17.969-51.317 17.729Q-51.262 17.490-51.223 17.222L-50.937 17.222\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M150.838-15.291c0-6.286-5.096-11.382-11.382-11.382s-11.38 5.096-11.38 11.382 5.095 11.38 11.38 11.38 11.382-5.095 11.382-11.38Zm-11.382 0\"\u002F>\u003Cg transform=\"translate(194.544 -31.243)\">\u003Cpath d=\"M-55.806 18.852L-58.838 18.852L-58.838 18.536Q-57.687 18.536-57.687 18.241L-57.687 13.517Q-58.175 13.750-58.896 13.750L-58.896 13.434Q-57.766 13.434-57.204 12.858L-57.059 12.858Q-57.024 12.858-56.991 12.891Q-56.958 12.924-56.958 12.959L-56.958 18.241Q-56.958 18.536-55.806 18.536L-55.806 18.852M-54.031 18.465Q-53.785 18.764-53.178 18.764Q-52.897 18.764-52.658 18.626Q-52.418 18.487-52.240 18.265Q-52.062 18.043-51.952 17.780Q-51.719 17.204-51.719 16.088Q-51.886 16.453-52.192 16.677Q-52.497 16.901-52.880 16.901Q-53.416 16.901-53.831 16.622Q-54.246 16.343-54.477 15.877Q-54.708 15.411-54.708 14.884Q-54.708 14.471-54.560 14.102Q-54.413 13.732-54.150 13.456Q-53.886 13.179-53.517 13.018Q-53.148 12.858-52.734 12.858Q-52.176 12.858-51.803 13.150Q-51.429 13.442-51.225 13.906Q-51.021 14.370-50.942 14.886Q-50.862 15.402-50.862 15.934Q-50.862 16.650-51.130 17.373Q-51.399 18.096-51.921 18.573Q-52.444 19.050-53.170 19.050Q-53.719 19.050-54.097 18.801Q-54.475 18.553-54.475 18.035Q-54.475 17.916-54.418 17.813Q-54.360 17.709-54.259 17.650Q-54.158 17.591-54.031 17.591Q-53.846 17.591-53.723 17.723Q-53.600 17.854-53.600 18.035Q-53.600 18.210-53.728 18.338Q-53.855 18.465-54.031 18.465M-52.836 16.637Q-52.466 16.637-52.218 16.395Q-51.970 16.154-51.853 15.796Q-51.737 15.437-51.737 15.064Q-51.737 14.954-51.746 14.901Q-51.741 14.888-51.739 14.877Q-51.737 14.866-51.737 14.849Q-51.737 14.194-51.952 13.655Q-52.168 13.117-52.734 13.117Q-53.095 13.117-53.323 13.267Q-53.552 13.416-53.668 13.673Q-53.785 13.930-53.818 14.211Q-53.851 14.493-53.851 14.866L-53.851 14.901Q-53.851 15.227-53.824 15.514Q-53.798 15.802-53.699 16.061Q-53.600 16.321-53.389 16.479Q-53.178 16.637-52.836 16.637\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M105.313 16.006c0-6.285-5.095-11.38-11.381-11.38S82.55 9.72 82.55 16.005s5.095 11.381 11.38 11.381c6.287 0 11.382-5.095 11.382-11.38Zm-11.381 0\"\u002F>\u003Cg transform=\"translate(149.02 .055)\">\u003Cpath d=\"M-58.812 18.131L-58.856 18.131Q-58.654 18.448-58.267 18.606Q-57.880 18.764-57.454 18.764Q-56.918 18.764-56.679 18.329Q-56.439 17.894-56.439 17.314Q-56.439 16.734-56.685 16.294Q-56.931 15.855-57.463 15.855L-58.083 15.855Q-58.109 15.855-58.142 15.826Q-58.175 15.798-58.175 15.776L-58.175 15.675Q-58.175 15.644-58.146 15.620Q-58.118 15.596-58.083 15.596L-57.564 15.556Q-57.098 15.556-56.852 15.084Q-56.606 14.611-56.606 14.093Q-56.606 13.666-56.819 13.392Q-57.032 13.117-57.454 13.117Q-57.797 13.117-58.122 13.247Q-58.447 13.376-58.632 13.631L-58.606 13.631Q-58.403 13.631-58.267 13.772Q-58.131 13.913-58.131 14.110Q-58.131 14.308-58.265 14.442Q-58.399 14.576-58.597 14.576Q-58.799 14.576-58.937 14.442Q-59.076 14.308-59.076 14.110Q-59.076 13.521-58.573 13.190Q-58.069 12.858-57.454 12.858Q-57.076 12.858-56.674 12.998Q-56.272 13.139-56.004 13.418Q-55.736 13.697-55.736 14.093Q-55.736 14.642-56.090 15.079Q-56.443 15.517-56.984 15.701Q-56.593 15.780-56.248 16.004Q-55.903 16.228-55.692 16.569Q-55.481 16.910-55.481 17.305Q-55.481 17.687-55.644 18.010Q-55.806 18.333-56.098 18.569Q-56.391 18.804-56.738 18.927Q-57.085 19.050-57.454 19.050Q-57.902 19.050-58.333 18.889Q-58.764 18.729-59.045 18.402Q-59.326 18.074-59.326 17.617Q-59.326 17.402-59.179 17.259Q-59.032 17.116-58.812 17.116Q-58.601 17.116-58.456 17.261Q-58.311 17.406-58.311 17.617Q-58.311 17.828-58.458 17.980Q-58.606 18.131-58.812 18.131M-51.188 18.852L-54.220 18.852L-54.220 18.536Q-53.068 18.536-53.068 18.241L-53.068 13.517Q-53.556 13.750-54.277 13.750L-54.277 13.434Q-53.148 13.434-52.585 12.858L-52.440 12.858Q-52.405 12.858-52.372 12.891Q-52.339 12.924-52.339 12.959L-52.339 18.241Q-52.339 18.536-51.188 18.536\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m109.883-37.224-9.14 12.567M123.506-37.224l9.14 12.567M93.932-3.71v8.135\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M65.48-23.827h22.532\"\u002F>\u003Cpath d=\"m90.517-23.827-3.584-1.351 1.179 1.35-1.18 1.351Z\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-good)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(204.125 -63.087)\">\u003Cpath d=\"M-57.717 18.852L-59.351 18.852L-59.351 18.572Q-59.122 18.572-58.973 18.538Q-58.824 18.503-58.824 18.363L-58.824 16.514Q-58.824 16.244-58.932 16.183Q-59.040 16.121-59.351 16.121L-59.351 15.841L-58.291 15.766L-58.291 16.415Q-58.120 16.107-57.816 15.936Q-57.512 15.766-57.167 15.766Q-56.661 15.766-56.377 15.989Q-56.093 16.213-56.093 16.709L-56.093 18.363Q-56.093 18.500-55.945 18.536Q-55.796 18.572-55.570 18.572L-55.570 18.852L-57.201 18.852L-57.201 18.572Q-56.972 18.572-56.823 18.538Q-56.674 18.503-56.674 18.363L-56.674 16.723Q-56.674 16.388-56.794 16.188Q-56.914 15.988-57.228 15.988Q-57.498 15.988-57.732 16.124Q-57.966 16.261-58.105 16.495Q-58.243 16.729-58.243 17.003L-58.243 18.363Q-58.243 18.500-58.093 18.536Q-57.942 18.572-57.717 18.572L-57.717 18.852M-55.024 17.317Q-55.024 16.996-54.899 16.707Q-54.774 16.418-54.548 16.195Q-54.323 15.971-54.027 15.851Q-53.732 15.731-53.414 15.731Q-53.086 15.731-52.824 15.831Q-52.563 15.930-52.387 16.112Q-52.211 16.295-52.117 16.553Q-52.023 16.811-52.023 17.143Q-52.023 17.235-52.105 17.256L-54.360 17.256L-54.360 17.317Q-54.360 17.905-54.077 18.288Q-53.793 18.671-53.226 18.671Q-52.904 18.671-52.636 18.478Q-52.368 18.285-52.279 17.970Q-52.272 17.929-52.197 17.915L-52.105 17.915Q-52.023 17.939-52.023 18.011Q-52.023 18.018-52.029 18.045Q-52.142 18.442-52.513 18.681Q-52.884 18.920-53.308 18.920Q-53.745 18.920-54.145 18.712Q-54.545 18.503-54.784 18.136Q-55.024 17.769-55.024 17.317M-54.354 17.047L-52.539 17.047Q-52.539 16.770-52.636 16.518Q-52.734 16.265-52.932 16.109Q-53.130 15.954-53.414 15.954Q-53.691 15.954-53.904 16.112Q-54.118 16.271-54.236 16.526Q-54.354 16.781-54.354 17.047M-50.047 18.825L-51.028 16.326Q-51.089 16.183-51.207 16.148Q-51.325 16.114-51.541 16.114L-51.541 15.834L-50.061 15.834L-50.061 16.114Q-50.440 16.114-50.440 16.275Q-50.440 16.285-50.426 16.326L-49.712 18.158L-49.039 16.453Q-49.069 16.381-49.069 16.353Q-49.069 16.326-49.097 16.326Q-49.158 16.179-49.276 16.147Q-49.394 16.114-49.606 16.114L-49.606 15.834L-48.208 15.834L-48.208 16.114Q-48.584 16.114-48.584 16.275Q-48.584 16.306-48.577 16.326L-47.822 18.264L-47.135 16.514Q-47.114 16.463-47.114 16.408Q-47.114 16.268-47.227 16.191Q-47.340 16.114-47.480 16.114L-47.480 15.834L-46.260 15.834L-46.260 16.114Q-46.465 16.114-46.620 16.220Q-46.776 16.326-46.848 16.514L-47.754 18.825Q-47.788 18.920-47.901 18.920L-47.969 18.920Q-48.078 18.920-48.116 18.825L-48.899 16.822L-49.685 18.825Q-49.719 18.920-49.832 18.920L-49.900 18.920Q-50.009 18.920-50.047 18.825\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(204.125 -63.087)\">\u003Cpath d=\"M-41.342 18.852L-42.976 18.852L-42.976 18.572Q-42.747 18.572-42.598 18.538Q-42.449 18.503-42.449 18.363L-42.449 16.514Q-42.449 16.244-42.557 16.183Q-42.665 16.121-42.976 16.121L-42.976 15.841L-41.916 15.766L-41.916 16.415Q-41.745 16.107-41.441 15.936Q-41.137 15.766-40.792 15.766Q-40.392 15.766-40.115 15.906Q-39.838 16.046-39.753 16.394Q-39.585 16.101-39.286 15.933Q-38.987 15.766-38.642 15.766Q-38.136 15.766-37.852 15.989Q-37.568 16.213-37.568 16.709L-37.568 18.363Q-37.568 18.500-37.420 18.536Q-37.271 18.572-37.046 18.572L-37.046 18.852L-38.676 18.852L-38.676 18.572Q-38.450 18.572-38.300 18.536Q-38.150 18.500-38.150 18.363L-38.150 16.723Q-38.150 16.388-38.269 16.188Q-38.389 15.988-38.703 15.988Q-38.973 15.988-39.207 16.124Q-39.442 16.261-39.580 16.495Q-39.718 16.729-39.718 17.003L-39.718 18.363Q-39.718 18.500-39.570 18.536Q-39.421 18.572-39.195 18.572L-39.195 18.852L-40.826 18.852L-40.826 18.572Q-40.597 18.572-40.448 18.538Q-40.299 18.503-40.299 18.363L-40.299 16.723Q-40.299 16.388-40.419 16.188Q-40.539 15.988-40.853 15.988Q-41.123 15.988-41.357 16.124Q-41.591 16.261-41.730 16.495Q-41.868 16.729-41.868 17.003L-41.868 18.363Q-41.868 18.500-41.718 18.536Q-41.567 18.572-41.342 18.572L-41.342 18.852M-34.841 18.852L-36.393 18.852L-36.393 18.572Q-36.167 18.572-36.018 18.538Q-35.870 18.503-35.870 18.363L-35.870 16.514Q-35.870 16.326-35.918 16.242Q-35.965 16.159-36.063 16.140Q-36.160 16.121-36.372 16.121L-36.372 15.841L-35.316 15.766L-35.316 18.363Q-35.316 18.503-35.184 18.538Q-35.053 18.572-34.841 18.572L-34.841 18.852M-36.112 14.545Q-36.112 14.374-35.989 14.255Q-35.866 14.135-35.695 14.135Q-35.528 14.135-35.405 14.255Q-35.282 14.374-35.282 14.545Q-35.282 14.720-35.405 14.843Q-35.528 14.966-35.695 14.966Q-35.866 14.966-35.989 14.843Q-36.112 14.720-36.112 14.545M-32.513 18.852L-34.147 18.852L-34.147 18.572Q-33.918 18.572-33.769 18.538Q-33.621 18.503-33.621 18.363L-33.621 16.514Q-33.621 16.244-33.728 16.183Q-33.836 16.121-34.147 16.121L-34.147 15.841L-33.088 15.766L-33.088 16.415Q-32.917 16.107-32.612 15.936Q-32.308 15.766-31.963 15.766Q-31.457 15.766-31.173 15.989Q-30.890 16.213-30.890 16.709L-30.890 18.363Q-30.890 18.500-30.741 18.536Q-30.592 18.572-30.367 18.572L-30.367 18.852L-31.997 18.852L-31.997 18.572Q-31.768 18.572-31.619 18.538Q-31.471 18.503-31.471 18.363L-31.471 16.723Q-31.471 16.388-31.590 16.188Q-31.710 15.988-32.025 15.988Q-32.295 15.988-32.529 16.124Q-32.763 16.261-32.901 16.495Q-33.040 16.729-33.040 17.003L-33.040 18.363Q-33.040 18.500-32.889 18.536Q-32.739 18.572-32.513 18.572\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The reload step. The root \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6444em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">14\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> (the run-3 head) is extracted and emitted; run~3 advances, supplying \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6444em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">19\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>, which is sifted down into the now-empty root and settles, restoring the heap in \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:1em;vertical-align:-0.25em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.0278em;\">O\u003C\u002Fspan>\u003Cspan class=\"mopen\">(\u003C\u002Fspan>\u003Cspan class=\"mop\">\u003Cspan class=\"mord mathrm\" style=\"margin-right:0.0139em;\">log\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.1667em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.0315em;\">k\u003C\u002Fspan>\u003Cspan class=\"mclose\">)\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>. The green root is the correct minimum being taken.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:376.674px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 282.506 155.085\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-27.862 -83.103)\">\u003Cpath d=\"M-32.344 46.093L-34.080 46.093L-34.080 45.813Q-33.851 45.813-33.702 45.779Q-33.554 45.744-33.554 45.604L-33.554 43.755Q-33.554 43.485-33.661 43.424Q-33.769 43.362-34.080 43.362L-34.080 43.082L-33.051 43.007L-33.051 43.714Q-32.921 43.406-32.679 43.207Q-32.436 43.007-32.118 43.007Q-31.899 43.007-31.728 43.131Q-31.557 43.256-31.557 43.468Q-31.557 43.605-31.657 43.704Q-31.756 43.803-31.889 43.803Q-32.026 43.803-32.125 43.704Q-32.224 43.605-32.224 43.468Q-32.224 43.328-32.125 43.229Q-32.415 43.229-32.615 43.425Q-32.815 43.622-32.908 43.916Q-33 44.210-33 44.490L-33 45.604Q-33 45.813-32.344 45.813L-32.344 46.093M-30.399 45.259L-30.399 43.755Q-30.399 43.485-30.506 43.424Q-30.614 43.362-30.925 43.362L-30.925 43.082L-29.818 43.007L-29.818 45.239L-29.818 45.259Q-29.818 45.539-29.766 45.683Q-29.715 45.826-29.573 45.883Q-29.431 45.939-29.144 45.939Q-28.891 45.939-28.686 45.799Q-28.481 45.659-28.365 45.433Q-28.249 45.208-28.249 44.958L-28.249 43.755Q-28.249 43.485-28.356 43.424Q-28.464 43.362-28.775 43.362L-28.775 43.082L-27.668 43.007L-27.668 45.420Q-27.668 45.611-27.615 45.693Q-27.562 45.775-27.461 45.794Q-27.360 45.813-27.145 45.813L-27.145 46.093L-28.221 46.161L-28.221 45.597Q-28.331 45.779-28.476 45.902Q-28.621 46.025-28.808 46.093Q-28.994 46.161-29.196 46.161Q-30.399 46.161-30.399 45.259M-24.875 46.093L-26.509 46.093L-26.509 45.813Q-26.280 45.813-26.131 45.779Q-25.983 45.744-25.983 45.604L-25.983 43.755Q-25.983 43.485-26.090 43.424Q-26.198 43.362-26.509 43.362L-26.509 43.082L-25.450 43.007L-25.450 43.656Q-25.279 43.348-24.974 43.177Q-24.670 43.007-24.325 43.007Q-23.819 43.007-23.535 43.230Q-23.252 43.454-23.252 43.950L-23.252 45.604Q-23.252 45.741-23.103 45.777Q-22.954 45.813-22.729 45.813L-22.729 46.093L-24.359 46.093L-24.359 45.813Q-24.130 45.813-23.981 45.779Q-23.833 45.744-23.833 45.604L-23.833 43.964Q-23.833 43.629-23.952 43.429Q-24.072 43.229-24.387 43.229Q-24.657 43.229-24.891 43.365Q-25.125 43.502-25.263 43.736Q-25.402 43.970-25.402 44.244L-25.402 45.604Q-25.402 45.741-25.251 45.777Q-25.101 45.813-24.875 45.813\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-27.862 -83.103)\">\u003Cpath d=\"M-16.429 46.093L-18.959 46.093L-18.959 45.813Q-17.991 45.813-17.991 45.604L-17.991 41.985Q-18.384 42.173-19.006 42.173L-19.006 41.892Q-18.589 41.892-18.225 41.791Q-17.861 41.691-17.605 41.445L-17.479 41.445Q-17.414 41.462-17.397 41.530L-17.397 45.604Q-17.397 45.813-16.429 45.813\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M-32.985-30.73h19.916V-47.8h-19.916Z\"\u002F>\u003Cg transform=\"translate(7.395 -83.103)\">\u003Cpath d=\"M-31.082 46.093L-33.612 46.093L-33.612 45.813Q-32.644 45.813-32.644 45.604L-32.644 41.985Q-33.037 42.173-33.659 42.173L-33.659 41.892Q-33.242 41.892-32.878 41.791Q-32.514 41.691-32.258 41.445L-32.132 41.445Q-32.067 41.462-32.050 41.530L-32.050 45.604Q-32.050 45.813-31.082 45.813L-31.082 46.093M-28.109 44.945L-30.153 44.945L-30.153 44.664L-27.822 41.492Q-27.787 41.445-27.722 41.445L-27.586 41.445Q-27.541 41.445-27.514 41.472Q-27.487 41.499-27.487 41.544L-27.487 44.664L-26.724 44.664L-26.724 44.945L-27.487 44.945L-27.487 45.604Q-27.487 45.813-26.731 45.813L-26.731 46.093L-28.864 46.093L-28.864 45.813Q-28.109 45.813-28.109 45.604L-28.109 44.945M-28.061 42.220L-29.852 44.664L-28.061 44.664\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-13.068-30.73H6.849V-47.8h-19.917Z\"\u002F>\u003Cg transform=\"translate(27.312 -83.103)\">\u003Cpath d=\"M-31.082 46.093L-33.967 46.093L-33.967 45.891Q-33.967 45.861-33.940 45.833L-32.692 44.616Q-32.620 44.541-32.578 44.499Q-32.535 44.456-32.456 44.377Q-32.043 43.964-31.812 43.606Q-31.581 43.249-31.581 42.825Q-31.581 42.593-31.660 42.390Q-31.739 42.186-31.880 42.036Q-32.022 41.885-32.217 41.805Q-32.412 41.725-32.644 41.725Q-32.955 41.725-33.213 41.884Q-33.471 42.043-33.601 42.320L-33.581 42.320Q-33.413 42.320-33.306 42.431Q-33.198 42.542-33.198 42.706Q-33.198 42.863-33.307 42.976Q-33.417 43.089-33.581 43.089Q-33.741 43.089-33.854 42.976Q-33.967 42.863-33.967 42.706Q-33.967 42.330-33.759 42.043Q-33.550 41.756-33.215 41.600Q-32.880 41.445-32.525 41.445Q-32.101 41.445-31.721 41.603Q-31.342 41.762-31.108 42.079Q-30.874 42.395-30.874 42.825Q-30.874 43.136-31.014 43.405Q-31.154 43.673-31.359 43.878Q-31.564 44.083-31.927 44.365Q-32.289 44.647-32.398 44.743L-33.253 45.471L-32.610 45.471Q-32.347 45.471-32.058 45.469Q-31.769 45.468-31.551 45.459Q-31.332 45.450-31.315 45.433Q-31.253 45.368-31.216 45.201Q-31.178 45.033-31.140 44.791L-30.874 44.791L-31.082 46.093M-28.991 45.885Q-28.991 45.379-28.861 44.871Q-28.731 44.364-28.493 43.902Q-28.256 43.441-27.921 43.020L-27.275 42.207L-28.088 42.207Q-28.673 42.207-29.069 42.215Q-29.466 42.224-29.490 42.244Q-29.592 42.361-29.671 42.887L-29.937 42.887L-29.691 41.363L-29.425 41.363L-29.425 41.383Q-29.425 41.451-29.349 41.494Q-29.274 41.537-29.196 41.544Q-29.004 41.568-28.809 41.574Q-28.615 41.581-28.423 41.583Q-28.232 41.585-28.033 41.585L-26.612 41.585L-26.612 41.773Q-26.622 41.821-26.632 41.831L-27.688 43.154Q-27.907 43.427-28.030 43.740Q-28.153 44.052-28.211 44.401Q-28.269 44.750-28.283 45.081Q-28.297 45.413-28.297 45.885Q-28.297 46.035-28.396 46.134Q-28.495 46.233-28.642 46.233Q-28.792 46.233-28.891 46.134Q-28.991 46.035-28.991 45.885\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M6.849-30.73h19.917V-47.8H6.849Z\"\u002F>\u003Cg transform=\"translate(47.229 -83.103)\">\u003Cpath d=\"M-32.091 44.945L-34.135 44.945L-34.135 44.664L-31.804 41.492Q-31.769 41.445-31.704 41.445L-31.568 41.445Q-31.523 41.445-31.496 41.472Q-31.469 41.499-31.469 41.544L-31.469 44.664L-30.706 44.664L-30.706 44.945L-31.469 44.945L-31.469 45.604Q-31.469 45.813-30.713 45.813L-30.713 46.093L-32.846 46.093L-32.846 45.813Q-32.091 45.813-32.091 45.604L-32.091 44.945M-32.043 42.220L-33.834 44.664L-32.043 44.664L-32.043 42.220M-28.437 46.233Q-29.073 46.233-29.437 45.888Q-29.801 45.543-29.936 45.018Q-30.071 44.493-30.071 43.868Q-30.071 42.843-29.715 42.144Q-29.360 41.445-28.437 41.445Q-27.511 41.445-27.158 42.144Q-26.806 42.843-26.806 43.868Q-26.806 44.493-26.941 45.018Q-27.076 45.543-27.439 45.888Q-27.801 46.233-28.437 46.233M-28.437 46.008Q-27.999 46.008-27.786 45.633Q-27.572 45.259-27.523 44.792Q-27.473 44.326-27.473 43.748Q-27.473 43.195-27.523 42.767Q-27.572 42.340-27.784 42.005Q-27.996 41.670-28.437 41.670Q-28.779 41.670-28.982 41.877Q-29.185 42.084-29.273 42.396Q-29.360 42.709-29.382 43.025Q-29.404 43.342-29.404 43.748Q-29.404 44.165-29.382 44.507Q-29.360 44.849-29.271 45.197Q-29.182 45.546-28.977 45.777Q-28.772 46.008-28.437 46.008\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-27.862 -54.65)\">\u003Cpath d=\"M-32.344 46.093L-34.080 46.093L-34.080 45.813Q-33.851 45.813-33.702 45.779Q-33.554 45.744-33.554 45.604L-33.554 43.755Q-33.554 43.485-33.661 43.424Q-33.769 43.362-34.080 43.362L-34.080 43.082L-33.051 43.007L-33.051 43.714Q-32.921 43.406-32.679 43.207Q-32.436 43.007-32.118 43.007Q-31.899 43.007-31.728 43.131Q-31.557 43.256-31.557 43.468Q-31.557 43.605-31.657 43.704Q-31.756 43.803-31.889 43.803Q-32.026 43.803-32.125 43.704Q-32.224 43.605-32.224 43.468Q-32.224 43.328-32.125 43.229Q-32.415 43.229-32.615 43.425Q-32.815 43.622-32.908 43.916Q-33 44.210-33 44.490L-33 45.604Q-33 45.813-32.344 45.813L-32.344 46.093M-30.399 45.259L-30.399 43.755Q-30.399 43.485-30.506 43.424Q-30.614 43.362-30.925 43.362L-30.925 43.082L-29.818 43.007L-29.818 45.239L-29.818 45.259Q-29.818 45.539-29.766 45.683Q-29.715 45.826-29.573 45.883Q-29.431 45.939-29.144 45.939Q-28.891 45.939-28.686 45.799Q-28.481 45.659-28.365 45.433Q-28.249 45.208-28.249 44.958L-28.249 43.755Q-28.249 43.485-28.356 43.424Q-28.464 43.362-28.775 43.362L-28.775 43.082L-27.668 43.007L-27.668 45.420Q-27.668 45.611-27.615 45.693Q-27.562 45.775-27.461 45.794Q-27.360 45.813-27.145 45.813L-27.145 46.093L-28.221 46.161L-28.221 45.597Q-28.331 45.779-28.476 45.902Q-28.621 46.025-28.808 46.093Q-28.994 46.161-29.196 46.161Q-30.399 46.161-30.399 45.259M-24.875 46.093L-26.509 46.093L-26.509 45.813Q-26.280 45.813-26.131 45.779Q-25.983 45.744-25.983 45.604L-25.983 43.755Q-25.983 43.485-26.090 43.424Q-26.198 43.362-26.509 43.362L-26.509 43.082L-25.450 43.007L-25.450 43.656Q-25.279 43.348-24.974 43.177Q-24.670 43.007-24.325 43.007Q-23.819 43.007-23.535 43.230Q-23.252 43.454-23.252 43.950L-23.252 45.604Q-23.252 45.741-23.103 45.777Q-22.954 45.813-22.729 45.813L-22.729 46.093L-24.359 46.093L-24.359 45.813Q-24.130 45.813-23.981 45.779Q-23.833 45.744-23.833 45.604L-23.833 43.964Q-23.833 43.629-23.952 43.429Q-24.072 43.229-24.387 43.229Q-24.657 43.229-24.891 43.365Q-25.125 43.502-25.263 43.736Q-25.402 43.970-25.402 44.244L-25.402 45.604Q-25.402 45.741-25.251 45.777Q-25.101 45.813-24.875 45.813\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-27.862 -54.65)\">\u003Cpath d=\"M-16.429 46.093L-19.314 46.093L-19.314 45.891Q-19.314 45.861-19.287 45.833L-18.039 44.616Q-17.967 44.541-17.925 44.499Q-17.882 44.456-17.803 44.377Q-17.390 43.964-17.159 43.606Q-16.928 43.249-16.928 42.825Q-16.928 42.593-17.007 42.390Q-17.086 42.186-17.227 42.036Q-17.369 41.885-17.564 41.805Q-17.759 41.725-17.991 41.725Q-18.302 41.725-18.560 41.884Q-18.818 42.043-18.948 42.320L-18.928 42.320Q-18.760 42.320-18.653 42.431Q-18.545 42.542-18.545 42.706Q-18.545 42.863-18.654 42.976Q-18.764 43.089-18.928 43.089Q-19.088 43.089-19.201 42.976Q-19.314 42.863-19.314 42.706Q-19.314 42.330-19.106 42.043Q-18.897 41.756-18.562 41.600Q-18.227 41.445-17.872 41.445Q-17.448 41.445-17.068 41.603Q-16.689 41.762-16.455 42.079Q-16.221 42.395-16.221 42.825Q-16.221 43.136-16.361 43.405Q-16.501 43.673-16.706 43.878Q-16.911 44.083-17.274 44.365Q-17.636 44.647-17.745 44.743L-18.600 45.471L-17.957 45.471Q-17.694 45.471-17.405 45.469Q-17.116 45.468-16.898 45.459Q-16.679 45.450-16.662 45.433Q-16.600 45.368-16.563 45.201Q-16.525 45.033-16.487 44.791L-16.221 44.791\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M-32.985-2.276h19.916v-17.072h-19.916Z\"\u002F>\u003Cg transform=\"translate(7.395 -54.65)\">\u003Cpath d=\"M-31.082 46.093L-33.967 46.093L-33.967 45.891Q-33.967 45.861-33.940 45.833L-32.692 44.616Q-32.620 44.541-32.578 44.499Q-32.535 44.456-32.456 44.377Q-32.043 43.964-31.812 43.606Q-31.581 43.249-31.581 42.825Q-31.581 42.593-31.660 42.390Q-31.739 42.186-31.880 42.036Q-32.022 41.885-32.217 41.805Q-32.412 41.725-32.644 41.725Q-32.955 41.725-33.213 41.884Q-33.471 42.043-33.601 42.320L-33.581 42.320Q-33.413 42.320-33.306 42.431Q-33.198 42.542-33.198 42.706Q-33.198 42.863-33.307 42.976Q-33.417 43.089-33.581 43.089Q-33.741 43.089-33.854 42.976Q-33.967 42.863-33.967 42.706Q-33.967 42.330-33.759 42.043Q-33.550 41.756-33.215 41.600Q-32.880 41.445-32.525 41.445Q-32.101 41.445-31.721 41.603Q-31.342 41.762-31.108 42.079Q-30.874 42.395-30.874 42.825Q-30.874 43.136-31.014 43.405Q-31.154 43.673-31.359 43.878Q-31.564 44.083-31.927 44.365Q-32.289 44.647-32.398 44.743L-33.253 45.471L-32.610 45.471Q-32.347 45.471-32.058 45.469Q-31.769 45.468-31.551 45.459Q-31.332 45.450-31.315 45.433Q-31.253 45.368-31.216 45.201Q-31.178 45.033-31.140 44.791L-30.874 44.791L-31.082 46.093M-27.100 46.093L-29.985 46.093L-29.985 45.891Q-29.985 45.861-29.958 45.833L-28.710 44.616Q-28.638 44.541-28.596 44.499Q-28.553 44.456-28.474 44.377Q-28.061 43.964-27.830 43.606Q-27.599 43.249-27.599 42.825Q-27.599 42.593-27.678 42.390Q-27.757 42.186-27.898 42.036Q-28.040 41.885-28.235 41.805Q-28.430 41.725-28.662 41.725Q-28.973 41.725-29.231 41.884Q-29.490 42.043-29.619 42.320L-29.599 42.320Q-29.431 42.320-29.324 42.431Q-29.216 42.542-29.216 42.706Q-29.216 42.863-29.325 42.976Q-29.435 43.089-29.599 43.089Q-29.760 43.089-29.872 42.976Q-29.985 42.863-29.985 42.706Q-29.985 42.330-29.777 42.043Q-29.568 41.756-29.233 41.600Q-28.898 41.445-28.543 41.445Q-28.119 41.445-27.740 41.603Q-27.360 41.762-27.126 42.079Q-26.892 42.395-26.892 42.825Q-26.892 43.136-27.032 43.405Q-27.172 43.673-27.377 43.878Q-27.582 44.083-27.945 44.365Q-28.307 44.647-28.416 44.743L-29.271 45.471L-28.628 45.471Q-28.365 45.471-28.076 45.469Q-27.787 45.468-27.569 45.459Q-27.350 45.450-27.333 45.433Q-27.271 45.368-27.234 45.201Q-27.196 45.033-27.158 44.791L-26.892 44.791\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-13.068-2.276H6.849v-17.072h-19.917Z\"\u002F>\u003Cg transform=\"translate(27.312 -54.65)\">\u003Cpath d=\"M-33.612 45.546Q-33.492 45.703-33.301 45.802Q-33.109 45.902-32.894 45.941Q-32.679 45.980-32.456 45.980Q-32.159 45.980-31.964 45.825Q-31.769 45.669-31.679 45.415Q-31.588 45.160-31.588 44.876Q-31.588 44.582-31.680 44.331Q-31.773 44.080-31.971 43.924Q-32.169 43.769-32.463 43.769L-32.979 43.769Q-33.007 43.769-33.032 43.743Q-33.058 43.718-33.058 43.694L-33.058 43.622Q-33.058 43.591-33.032 43.569Q-33.007 43.547-32.979 43.547L-32.538 43.516Q-32.176 43.516-31.956 43.159Q-31.735 42.801-31.735 42.412Q-31.735 42.084-31.930 41.880Q-32.125 41.677-32.456 41.677Q-32.743 41.677-32.996 41.761Q-33.249 41.844-33.413 42.032Q-33.266 42.032-33.166 42.147Q-33.065 42.261-33.065 42.412Q-33.065 42.562-33.171 42.672Q-33.277 42.781-33.434 42.781Q-33.595 42.781-33.704 42.672Q-33.813 42.562-33.813 42.412Q-33.813 42.087-33.605 41.868Q-33.396 41.650-33.080 41.547Q-32.764 41.445-32.456 41.445Q-32.138 41.445-31.810 41.549Q-31.482 41.653-31.255 41.875Q-31.028 42.097-31.028 42.412Q-31.028 42.846-31.315 43.171Q-31.602 43.495-32.036 43.642Q-31.725 43.707-31.445 43.873Q-31.164 44.039-30.987 44.297Q-30.809 44.555-30.809 44.876Q-30.809 45.286-31.053 45.596Q-31.298 45.905-31.679 46.069Q-32.060 46.233-32.456 46.233Q-32.825 46.233-33.183 46.120Q-33.540 46.008-33.784 45.758Q-34.029 45.509-34.029 45.139Q-34.029 44.968-33.912 44.856Q-33.796 44.743-33.625 44.743Q-33.516 44.743-33.425 44.794Q-33.335 44.845-33.280 44.938Q-33.225 45.030-33.225 45.139Q-33.225 45.307-33.338 45.426Q-33.451 45.546-33.612 45.546M-29.619 45.331L-29.650 45.331Q-29.513 45.628-29.216 45.804Q-28.919 45.980-28.591 45.980Q-28.228 45.980-28.001 45.802Q-27.774 45.625-27.680 45.336Q-27.586 45.047-27.586 44.685Q-27.586 44.370-27.640 44.085Q-27.695 43.800-27.868 43.594Q-28.040 43.389-28.355 43.389Q-28.628 43.389-28.811 43.456Q-28.994 43.523-29.098 43.612Q-29.202 43.700-29.298 43.810Q-29.394 43.919-29.438 43.929L-29.517 43.929Q-29.589 43.912-29.606 43.841L-29.606 41.523Q-29.606 41.489-29.582 41.467Q-29.558 41.445-29.524 41.445L-29.496 41.445Q-29.209 41.561-28.941 41.615Q-28.673 41.670-28.396 41.670Q-28.119 41.670-27.849 41.615Q-27.579 41.561-27.299 41.445L-27.275 41.445Q-27.241 41.445-27.217 41.468Q-27.193 41.492-27.193 41.523L-27.193 41.592Q-27.193 41.619-27.213 41.639Q-27.487 41.954-27.871 42.130Q-28.256 42.306-28.669 42.306Q-29.008 42.306-29.325 42.220L-29.325 43.502Q-28.929 43.167-28.355 43.167Q-27.951 43.167-27.615 43.377Q-27.278 43.588-27.085 43.940Q-26.892 44.292-26.892 44.692Q-26.892 45.023-27.032 45.309Q-27.172 45.594-27.417 45.804Q-27.661 46.014-27.963 46.124Q-28.266 46.233-28.584 46.233Q-28.943 46.233-29.269 46.069Q-29.596 45.905-29.790 45.613Q-29.985 45.321-29.985 44.958Q-29.985 44.808-29.879 44.702Q-29.773 44.596-29.619 44.596Q-29.466 44.596-29.361 44.700Q-29.257 44.804-29.257 44.958Q-29.257 45.115-29.361 45.223Q-29.466 45.331-29.619 45.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M6.849-2.276h19.917v-17.072H6.849Z\"\u002F>\u003Cg transform=\"translate(47.229 -54.65)\">\u003Cpath d=\"M-33.601 45.331L-33.632 45.331Q-33.495 45.628-33.198 45.804Q-32.901 45.980-32.573 45.980Q-32.210 45.980-31.983 45.802Q-31.756 45.625-31.662 45.336Q-31.568 45.047-31.568 44.685Q-31.568 44.370-31.622 44.085Q-31.677 43.800-31.850 43.594Q-32.022 43.389-32.337 43.389Q-32.610 43.389-32.793 43.456Q-32.976 43.523-33.080 43.612Q-33.184 43.700-33.280 43.810Q-33.376 43.919-33.420 43.929L-33.499 43.929Q-33.571 43.912-33.588 43.841L-33.588 41.523Q-33.588 41.489-33.564 41.467Q-33.540 41.445-33.506 41.445L-33.478 41.445Q-33.191 41.561-32.923 41.615Q-32.655 41.670-32.378 41.670Q-32.101 41.670-31.831 41.615Q-31.561 41.561-31.281 41.445L-31.257 41.445Q-31.222 41.445-31.199 41.468Q-31.175 41.492-31.175 41.523L-31.175 41.592Q-31.175 41.619-31.195 41.639Q-31.469 41.954-31.853 42.130Q-32.238 42.306-32.651 42.306Q-32.990 42.306-33.307 42.220L-33.307 43.502Q-32.911 43.167-32.337 43.167Q-31.933 43.167-31.597 43.377Q-31.260 43.588-31.067 43.940Q-30.874 44.292-30.874 44.692Q-30.874 45.023-31.014 45.309Q-31.154 45.594-31.398 45.804Q-31.643 46.014-31.945 46.124Q-32.248 46.233-32.566 46.233Q-32.925 46.233-33.251 46.069Q-33.577 45.905-33.772 45.613Q-33.967 45.321-33.967 44.958Q-33.967 44.808-33.861 44.702Q-33.755 44.596-33.601 44.596Q-33.448 44.596-33.343 44.700Q-33.239 44.804-33.239 44.958Q-33.239 45.115-33.343 45.223Q-33.448 45.331-33.601 45.331M-27.100 46.093L-29.630 46.093L-29.630 45.813Q-28.662 45.813-28.662 45.604L-28.662 41.985Q-29.055 42.173-29.678 42.173L-29.678 41.892Q-29.261 41.892-28.897 41.791Q-28.533 41.691-28.276 41.445L-28.150 41.445Q-28.085 41.462-28.068 41.530L-28.068 45.604Q-28.068 45.813-27.100 45.813\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-27.862 -26.197)\">\u003Cpath d=\"M-32.344 46.093L-34.080 46.093L-34.080 45.813Q-33.851 45.813-33.702 45.779Q-33.554 45.744-33.554 45.604L-33.554 43.755Q-33.554 43.485-33.661 43.424Q-33.769 43.362-34.080 43.362L-34.080 43.082L-33.051 43.007L-33.051 43.714Q-32.921 43.406-32.679 43.207Q-32.436 43.007-32.118 43.007Q-31.899 43.007-31.728 43.131Q-31.557 43.256-31.557 43.468Q-31.557 43.605-31.657 43.704Q-31.756 43.803-31.889 43.803Q-32.026 43.803-32.125 43.704Q-32.224 43.605-32.224 43.468Q-32.224 43.328-32.125 43.229Q-32.415 43.229-32.615 43.425Q-32.815 43.622-32.908 43.916Q-33 44.210-33 44.490L-33 45.604Q-33 45.813-32.344 45.813L-32.344 46.093M-30.399 45.259L-30.399 43.755Q-30.399 43.485-30.506 43.424Q-30.614 43.362-30.925 43.362L-30.925 43.082L-29.818 43.007L-29.818 45.239L-29.818 45.259Q-29.818 45.539-29.766 45.683Q-29.715 45.826-29.573 45.883Q-29.431 45.939-29.144 45.939Q-28.891 45.939-28.686 45.799Q-28.481 45.659-28.365 45.433Q-28.249 45.208-28.249 44.958L-28.249 43.755Q-28.249 43.485-28.356 43.424Q-28.464 43.362-28.775 43.362L-28.775 43.082L-27.668 43.007L-27.668 45.420Q-27.668 45.611-27.615 45.693Q-27.562 45.775-27.461 45.794Q-27.360 45.813-27.145 45.813L-27.145 46.093L-28.221 46.161L-28.221 45.597Q-28.331 45.779-28.476 45.902Q-28.621 46.025-28.808 46.093Q-28.994 46.161-29.196 46.161Q-30.399 46.161-30.399 45.259M-24.875 46.093L-26.509 46.093L-26.509 45.813Q-26.280 45.813-26.131 45.779Q-25.983 45.744-25.983 45.604L-25.983 43.755Q-25.983 43.485-26.090 43.424Q-26.198 43.362-26.509 43.362L-26.509 43.082L-25.450 43.007L-25.450 43.656Q-25.279 43.348-24.974 43.177Q-24.670 43.007-24.325 43.007Q-23.819 43.007-23.535 43.230Q-23.252 43.454-23.252 43.950L-23.252 45.604Q-23.252 45.741-23.103 45.777Q-22.954 45.813-22.729 45.813L-22.729 46.093L-24.359 46.093L-24.359 45.813Q-24.130 45.813-23.981 45.779Q-23.833 45.744-23.833 45.604L-23.833 43.964Q-23.833 43.629-23.952 43.429Q-24.072 43.229-24.387 43.229Q-24.657 43.229-24.891 43.365Q-25.125 43.502-25.263 43.736Q-25.402 43.970-25.402 44.244L-25.402 45.604Q-25.402 45.741-25.251 45.777Q-25.101 45.813-24.875 45.813\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-27.862 -26.197)\">\u003Cpath d=\"M-18.959 45.546Q-18.839 45.703-18.648 45.802Q-18.456 45.902-18.241 45.941Q-18.026 45.980-17.803 45.980Q-17.506 45.980-17.311 45.825Q-17.116 45.669-17.026 45.415Q-16.935 45.160-16.935 44.876Q-16.935 44.582-17.027 44.331Q-17.120 44.080-17.318 43.924Q-17.516 43.769-17.810 43.769L-18.326 43.769Q-18.354 43.769-18.379 43.743Q-18.405 43.718-18.405 43.694L-18.405 43.622Q-18.405 43.591-18.379 43.569Q-18.354 43.547-18.326 43.547L-17.885 43.516Q-17.523 43.516-17.303 43.159Q-17.082 42.801-17.082 42.412Q-17.082 42.084-17.277 41.880Q-17.472 41.677-17.803 41.677Q-18.090 41.677-18.343 41.761Q-18.596 41.844-18.760 42.032Q-18.613 42.032-18.513 42.147Q-18.412 42.261-18.412 42.412Q-18.412 42.562-18.518 42.672Q-18.624 42.781-18.781 42.781Q-18.942 42.781-19.051 42.672Q-19.160 42.562-19.160 42.412Q-19.160 42.087-18.952 41.868Q-18.743 41.650-18.427 41.547Q-18.111 41.445-17.803 41.445Q-17.485 41.445-17.157 41.549Q-16.829 41.653-16.602 41.875Q-16.375 42.097-16.375 42.412Q-16.375 42.846-16.662 43.171Q-16.949 43.495-17.383 43.642Q-17.072 43.707-16.792 43.873Q-16.511 44.039-16.334 44.297Q-16.156 44.555-16.156 44.876Q-16.156 45.286-16.400 45.596Q-16.645 45.905-17.026 46.069Q-17.407 46.233-17.803 46.233Q-18.172 46.233-18.530 46.120Q-18.887 46.008-19.131 45.758Q-19.376 45.509-19.376 45.139Q-19.376 44.968-19.259 44.856Q-19.143 44.743-18.972 44.743Q-18.863 44.743-18.772 44.794Q-18.682 44.845-18.627 44.938Q-18.572 45.030-18.572 45.139Q-18.572 45.307-18.685 45.426Q-18.798 45.546-18.959 45.546\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M-32.985 26.176h19.916V9.105h-19.916Z\"\u002F>\u003Cg transform=\"translate(7.395 -26.197)\">\u003Cpath d=\"M-31.082 46.093L-33.612 46.093L-33.612 45.813Q-32.644 45.813-32.644 45.604L-32.644 41.985Q-33.037 42.173-33.659 42.173L-33.659 41.892Q-33.242 41.892-32.878 41.791Q-32.514 41.691-32.258 41.445L-32.132 41.445Q-32.067 41.462-32.050 41.530L-32.050 45.604Q-32.050 45.813-31.082 45.813L-31.082 46.093M-29.452 45.779Q-29.332 45.895-29.155 45.937Q-28.977 45.980-28.762 45.980Q-28.522 45.980-28.312 45.871Q-28.102 45.761-27.948 45.579Q-27.794 45.396-27.695 45.163Q-27.528 44.736-27.528 43.916Q-27.678 44.210-27.941 44.389Q-28.204 44.569-28.522 44.569Q-28.956 44.569-29.303 44.360Q-29.650 44.152-29.848 43.791Q-30.047 43.430-30.047 43.007Q-30.047 42.672-29.917 42.383Q-29.787 42.094-29.556 41.880Q-29.325 41.667-29.026 41.556Q-28.727 41.445-28.396 41.445Q-27.538 41.445-27.182 42.159Q-26.827 42.873-26.827 43.830Q-26.827 44.247-26.955 44.675Q-27.083 45.102-27.340 45.457Q-27.596 45.813-27.958 46.023Q-28.321 46.233-28.762 46.233Q-29.216 46.233-29.534 46.045Q-29.852 45.857-29.852 45.433Q-29.852 45.283-29.753 45.184Q-29.654 45.085-29.503 45.085Q-29.435 45.085-29.368 45.112Q-29.302 45.139-29.257 45.184Q-29.213 45.228-29.185 45.295Q-29.158 45.362-29.158 45.433Q-29.158 45.563-29.238 45.661Q-29.319 45.758-29.452 45.779M-28.481 44.343Q-28.187 44.343-27.972 44.165Q-27.757 43.988-27.649 43.712Q-27.541 43.437-27.541 43.147Q-27.541 43.102-27.543 43.075Q-27.545 43.048-27.548 43.013Q-27.545 43.003-27.543 42.996Q-27.541 42.989-27.541 42.979Q-27.541 42.477-27.740 42.077Q-27.938 41.677-28.396 41.677Q-28.963 41.677-29.156 42.036Q-29.349 42.395-29.349 43.007Q-29.349 43.393-29.295 43.676Q-29.240 43.960-29.045 44.152Q-28.850 44.343-28.481 44.343\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-13.068 26.176H6.849V9.105h-19.917Z\"\u002F>\u003Cg transform=\"translate(27.312 -26.197)\">\u003Cpath d=\"M-33.612 45.546Q-33.492 45.703-33.301 45.802Q-33.109 45.902-32.894 45.941Q-32.679 45.980-32.456 45.980Q-32.159 45.980-31.964 45.825Q-31.769 45.669-31.679 45.415Q-31.588 45.160-31.588 44.876Q-31.588 44.582-31.680 44.331Q-31.773 44.080-31.971 43.924Q-32.169 43.769-32.463 43.769L-32.979 43.769Q-33.007 43.769-33.032 43.743Q-33.058 43.718-33.058 43.694L-33.058 43.622Q-33.058 43.591-33.032 43.569Q-33.007 43.547-32.979 43.547L-32.538 43.516Q-32.176 43.516-31.956 43.159Q-31.735 42.801-31.735 42.412Q-31.735 42.084-31.930 41.880Q-32.125 41.677-32.456 41.677Q-32.743 41.677-32.996 41.761Q-33.249 41.844-33.413 42.032Q-33.266 42.032-33.166 42.147Q-33.065 42.261-33.065 42.412Q-33.065 42.562-33.171 42.672Q-33.277 42.781-33.434 42.781Q-33.595 42.781-33.704 42.672Q-33.813 42.562-33.813 42.412Q-33.813 42.087-33.605 41.868Q-33.396 41.650-33.080 41.547Q-32.764 41.445-32.456 41.445Q-32.138 41.445-31.810 41.549Q-31.482 41.653-31.255 41.875Q-31.028 42.097-31.028 42.412Q-31.028 42.846-31.315 43.171Q-31.602 43.495-32.036 43.642Q-31.725 43.707-31.445 43.873Q-31.164 44.039-30.987 44.297Q-30.809 44.555-30.809 44.876Q-30.809 45.286-31.053 45.596Q-31.298 45.905-31.679 46.069Q-32.060 46.233-32.456 46.233Q-32.825 46.233-33.183 46.120Q-33.540 46.008-33.784 45.758Q-34.029 45.509-34.029 45.139Q-34.029 44.968-33.912 44.856Q-33.796 44.743-33.625 44.743Q-33.516 44.743-33.425 44.794Q-33.335 44.845-33.280 44.938Q-33.225 45.030-33.225 45.139Q-33.225 45.307-33.338 45.426Q-33.451 45.546-33.612 45.546M-28.437 46.233Q-29.073 46.233-29.437 45.888Q-29.801 45.543-29.936 45.018Q-30.071 44.493-30.071 43.868Q-30.071 42.843-29.715 42.144Q-29.360 41.445-28.437 41.445Q-27.511 41.445-27.158 42.144Q-26.806 42.843-26.806 43.868Q-26.806 44.493-26.941 45.018Q-27.076 45.543-27.439 45.888Q-27.801 46.233-28.437 46.233M-28.437 46.008Q-27.999 46.008-27.786 45.633Q-27.572 45.259-27.523 44.792Q-27.473 44.326-27.473 43.748Q-27.473 43.195-27.523 42.767Q-27.572 42.340-27.784 42.005Q-27.996 41.670-28.437 41.670Q-28.779 41.670-28.982 41.877Q-29.185 42.084-29.273 42.396Q-29.360 42.709-29.382 43.025Q-29.404 43.342-29.404 43.748Q-29.404 44.165-29.382 44.507Q-29.360 44.849-29.271 45.197Q-29.182 45.546-28.977 45.777Q-28.772 46.008-28.437 46.008\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M6.849 26.176h19.917V9.105H6.849Z\"\u002F>\u003Cg transform=\"translate(47.229 -26.197)\">\u003Cpath d=\"M-32.091 44.945L-34.135 44.945L-34.135 44.664L-31.804 41.492Q-31.769 41.445-31.704 41.445L-31.568 41.445Q-31.523 41.445-31.496 41.472Q-31.469 41.499-31.469 41.544L-31.469 44.664L-30.706 44.664L-30.706 44.945L-31.469 44.945L-31.469 45.604Q-31.469 45.813-30.713 45.813L-30.713 46.093L-32.846 46.093L-32.846 45.813Q-32.091 45.813-32.091 45.604L-32.091 44.945M-32.043 42.220L-33.834 44.664L-32.043 44.664L-32.043 42.220M-28.437 46.233Q-28.895 46.233-29.213 46.018Q-29.531 45.802-29.712 45.450Q-29.893 45.098-29.970 44.678Q-30.047 44.258-30.047 43.830Q-30.047 43.246-29.794 42.690Q-29.541 42.135-29.071 41.790Q-28.601 41.445-28.003 41.445Q-27.593 41.445-27.309 41.643Q-27.025 41.841-27.025 42.244Q-27.025 42.340-27.071 42.419Q-27.117 42.497-27.198 42.542Q-27.278 42.586-27.367 42.586Q-27.514 42.586-27.615 42.489Q-27.716 42.391-27.716 42.244Q-27.716 42.114-27.625 42.007Q-27.534 41.899-27.401 41.899Q-27.589 41.677-28.003 41.677Q-28.317 41.677-28.591 41.841Q-28.864 42.005-29.032 42.279Q-29.220 42.569-29.284 42.935Q-29.349 43.301-29.349 43.755Q-29.199 43.461-28.934 43.283Q-28.669 43.106-28.355 43.106Q-27.924 43.106-27.575 43.312Q-27.227 43.519-27.027 43.875Q-26.827 44.230-26.827 44.657Q-26.827 45.102-27.044 45.462Q-27.261 45.823-27.634 46.028Q-28.006 46.233-28.437 46.233M-28.437 45.980Q-28.061 45.980-27.857 45.797Q-27.654 45.614-27.591 45.331Q-27.528 45.047-27.528 44.657Q-27.528 44.271-27.582 43.991Q-27.637 43.711-27.832 43.519Q-28.027 43.328-28.396 43.328Q-28.686 43.328-28.898 43.504Q-29.110 43.680-29.218 43.953Q-29.325 44.227-29.325 44.510L-29.325 44.651L-29.325 44.692Q-29.325 45.197-29.114 45.589Q-28.902 45.980-28.437 45.980\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-27.862 2.256)\">\u003Cpath d=\"M-32.344 46.093L-34.080 46.093L-34.080 45.813Q-33.851 45.813-33.702 45.779Q-33.554 45.744-33.554 45.604L-33.554 43.755Q-33.554 43.485-33.661 43.424Q-33.769 43.362-34.080 43.362L-34.080 43.082L-33.051 43.007L-33.051 43.714Q-32.921 43.406-32.679 43.207Q-32.436 43.007-32.118 43.007Q-31.899 43.007-31.728 43.131Q-31.557 43.256-31.557 43.468Q-31.557 43.605-31.657 43.704Q-31.756 43.803-31.889 43.803Q-32.026 43.803-32.125 43.704Q-32.224 43.605-32.224 43.468Q-32.224 43.328-32.125 43.229Q-32.415 43.229-32.615 43.425Q-32.815 43.622-32.908 43.916Q-33 44.210-33 44.490L-33 45.604Q-33 45.813-32.344 45.813L-32.344 46.093M-30.399 45.259L-30.399 43.755Q-30.399 43.485-30.506 43.424Q-30.614 43.362-30.925 43.362L-30.925 43.082L-29.818 43.007L-29.818 45.239L-29.818 45.259Q-29.818 45.539-29.766 45.683Q-29.715 45.826-29.573 45.883Q-29.431 45.939-29.144 45.939Q-28.891 45.939-28.686 45.799Q-28.481 45.659-28.365 45.433Q-28.249 45.208-28.249 44.958L-28.249 43.755Q-28.249 43.485-28.356 43.424Q-28.464 43.362-28.775 43.362L-28.775 43.082L-27.668 43.007L-27.668 45.420Q-27.668 45.611-27.615 45.693Q-27.562 45.775-27.461 45.794Q-27.360 45.813-27.145 45.813L-27.145 46.093L-28.221 46.161L-28.221 45.597Q-28.331 45.779-28.476 45.902Q-28.621 46.025-28.808 46.093Q-28.994 46.161-29.196 46.161Q-30.399 46.161-30.399 45.259M-24.875 46.093L-26.509 46.093L-26.509 45.813Q-26.280 45.813-26.131 45.779Q-25.983 45.744-25.983 45.604L-25.983 43.755Q-25.983 43.485-26.090 43.424Q-26.198 43.362-26.509 43.362L-26.509 43.082L-25.450 43.007L-25.450 43.656Q-25.279 43.348-24.974 43.177Q-24.670 43.007-24.325 43.007Q-23.819 43.007-23.535 43.230Q-23.252 43.454-23.252 43.950L-23.252 45.604Q-23.252 45.741-23.103 45.777Q-22.954 45.813-22.729 45.813L-22.729 46.093L-24.359 46.093L-24.359 45.813Q-24.130 45.813-23.981 45.779Q-23.833 45.744-23.833 45.604L-23.833 43.964Q-23.833 43.629-23.952 43.429Q-24.072 43.229-24.387 43.229Q-24.657 43.229-24.891 43.365Q-25.125 43.502-25.263 43.736Q-25.402 43.970-25.402 44.244L-25.402 45.604Q-25.402 45.741-25.251 45.777Q-25.101 45.813-24.875 45.813\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-27.862 2.256)\">\u003Cpath d=\"M-17.438 44.945L-19.482 44.945L-19.482 44.664L-17.151 41.492Q-17.116 41.445-17.051 41.445L-16.915 41.445Q-16.870 41.445-16.843 41.472Q-16.816 41.499-16.816 41.544L-16.816 44.664L-16.053 44.664L-16.053 44.945L-16.816 44.945L-16.816 45.604Q-16.816 45.813-16.060 45.813L-16.060 46.093L-18.193 46.093L-18.193 45.813Q-17.438 45.813-17.438 45.604L-17.438 44.945M-17.390 42.220L-19.181 44.664L-17.390 44.664\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M-32.985 54.629h19.916V37.557h-19.916Z\"\u002F>\u003Cg transform=\"translate(7.395 2.256)\">\u003Cpath d=\"M-33.612 45.546Q-33.492 45.703-33.301 45.802Q-33.109 45.902-32.894 45.941Q-32.679 45.980-32.456 45.980Q-32.159 45.980-31.964 45.825Q-31.769 45.669-31.679 45.415Q-31.588 45.160-31.588 44.876Q-31.588 44.582-31.680 44.331Q-31.773 44.080-31.971 43.924Q-32.169 43.769-32.463 43.769L-32.979 43.769Q-33.007 43.769-33.032 43.743Q-33.058 43.718-33.058 43.694L-33.058 43.622Q-33.058 43.591-33.032 43.569Q-33.007 43.547-32.979 43.547L-32.538 43.516Q-32.176 43.516-31.956 43.159Q-31.735 42.801-31.735 42.412Q-31.735 42.084-31.930 41.880Q-32.125 41.677-32.456 41.677Q-32.743 41.677-32.996 41.761Q-33.249 41.844-33.413 42.032Q-33.266 42.032-33.166 42.147Q-33.065 42.261-33.065 42.412Q-33.065 42.562-33.171 42.672Q-33.277 42.781-33.434 42.781Q-33.595 42.781-33.704 42.672Q-33.813 42.562-33.813 42.412Q-33.813 42.087-33.605 41.868Q-33.396 41.650-33.080 41.547Q-32.764 41.445-32.456 41.445Q-32.138 41.445-31.810 41.549Q-31.482 41.653-31.255 41.875Q-31.028 42.097-31.028 42.412Q-31.028 42.846-31.315 43.171Q-31.602 43.495-32.036 43.642Q-31.725 43.707-31.445 43.873Q-31.164 44.039-30.987 44.297Q-30.809 44.555-30.809 44.876Q-30.809 45.286-31.053 45.596Q-31.298 45.905-31.679 46.069Q-32.060 46.233-32.456 46.233Q-32.825 46.233-33.183 46.120Q-33.540 46.008-33.784 45.758Q-34.029 45.509-34.029 45.139Q-34.029 44.968-33.912 44.856Q-33.796 44.743-33.625 44.743Q-33.516 44.743-33.425 44.794Q-33.335 44.845-33.280 44.938Q-33.225 45.030-33.225 45.139Q-33.225 45.307-33.338 45.426Q-33.451 45.546-33.612 45.546M-27.100 46.093L-29.630 46.093L-29.630 45.813Q-28.662 45.813-28.662 45.604L-28.662 41.985Q-29.055 42.173-29.678 42.173L-29.678 41.892Q-29.261 41.892-28.897 41.791Q-28.533 41.691-28.276 41.445L-28.150 41.445Q-28.085 41.462-28.068 41.530L-28.068 45.604Q-28.068 45.813-27.100 45.813\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-13.068 54.629H6.849V37.557h-19.917Z\"\u002F>\u003Cg transform=\"translate(27.312 2.256)\">\u003Cpath d=\"M-33.612 45.546Q-33.492 45.703-33.301 45.802Q-33.109 45.902-32.894 45.941Q-32.679 45.980-32.456 45.980Q-32.159 45.980-31.964 45.825Q-31.769 45.669-31.679 45.415Q-31.588 45.160-31.588 44.876Q-31.588 44.582-31.680 44.331Q-31.773 44.080-31.971 43.924Q-32.169 43.769-32.463 43.769L-32.979 43.769Q-33.007 43.769-33.032 43.743Q-33.058 43.718-33.058 43.694L-33.058 43.622Q-33.058 43.591-33.032 43.569Q-33.007 43.547-32.979 43.547L-32.538 43.516Q-32.176 43.516-31.956 43.159Q-31.735 42.801-31.735 42.412Q-31.735 42.084-31.930 41.880Q-32.125 41.677-32.456 41.677Q-32.743 41.677-32.996 41.761Q-33.249 41.844-33.413 42.032Q-33.266 42.032-33.166 42.147Q-33.065 42.261-33.065 42.412Q-33.065 42.562-33.171 42.672Q-33.277 42.781-33.434 42.781Q-33.595 42.781-33.704 42.672Q-33.813 42.562-33.813 42.412Q-33.813 42.087-33.605 41.868Q-33.396 41.650-33.080 41.547Q-32.764 41.445-32.456 41.445Q-32.138 41.445-31.810 41.549Q-31.482 41.653-31.255 41.875Q-31.028 42.097-31.028 42.412Q-31.028 42.846-31.315 43.171Q-31.602 43.495-32.036 43.642Q-31.725 43.707-31.445 43.873Q-31.164 44.039-30.987 44.297Q-30.809 44.555-30.809 44.876Q-30.809 45.286-31.053 45.596Q-31.298 45.905-31.679 46.069Q-32.060 46.233-32.456 46.233Q-32.825 46.233-33.183 46.120Q-33.540 46.008-33.784 45.758Q-34.029 45.509-34.029 45.139Q-34.029 44.968-33.912 44.856Q-33.796 44.743-33.625 44.743Q-33.516 44.743-33.425 44.794Q-33.335 44.845-33.280 44.938Q-33.225 45.030-33.225 45.139Q-33.225 45.307-33.338 45.426Q-33.451 45.546-33.612 45.546M-30.047 45.016Q-30.047 44.575-29.744 44.254Q-29.442 43.933-28.991 43.741L-29.230 43.601Q-29.500 43.441-29.666 43.183Q-29.831 42.925-29.831 42.627Q-29.831 42.275-29.626 42.003Q-29.421 41.732-29.100 41.588Q-28.779 41.445-28.437 41.445Q-28.116 41.445-27.793 41.561Q-27.470 41.677-27.258 41.918Q-27.046 42.159-27.046 42.494Q-27.046 42.856-27.290 43.119Q-27.534 43.383-27.914 43.560L-27.514 43.796Q-27.319 43.909-27.160 44.078Q-27.001 44.247-26.914 44.456Q-26.827 44.664-26.827 44.897Q-26.827 45.300-27.061 45.604Q-27.295 45.908-27.669 46.071Q-28.044 46.233-28.437 46.233Q-28.823 46.233-29.192 46.096Q-29.561 45.960-29.804 45.683Q-30.047 45.406-30.047 45.016M-29.599 45.016Q-29.599 45.303-29.430 45.526Q-29.261 45.748-28.992 45.864Q-28.724 45.980-28.437 45.980Q-27.999 45.980-27.637 45.763Q-27.275 45.546-27.275 45.139Q-27.275 44.938-27.403 44.760Q-27.531 44.582-27.709 44.483L-28.731 43.888Q-28.970 43.998-29.168 44.164Q-29.366 44.329-29.483 44.545Q-29.599 44.760-29.599 45.016M-29.076 42.887L-28.157 43.420Q-27.849 43.260-27.647 43.027Q-27.446 42.795-27.446 42.494Q-27.446 42.255-27.591 42.065Q-27.736 41.875-27.969 41.776Q-28.201 41.677-28.437 41.677Q-28.659 41.677-28.888 41.747Q-29.117 41.817-29.274 41.974Q-29.431 42.132-29.431 42.361Q-29.431 42.675-29.076 42.887\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M6.849 54.629h19.917V37.557H6.849Z\"\u002F>\u003Cg transform=\"translate(47.229 2.256)\">\u003Cpath d=\"M-33.601 45.331L-33.632 45.331Q-33.495 45.628-33.198 45.804Q-32.901 45.980-32.573 45.980Q-32.210 45.980-31.983 45.802Q-31.756 45.625-31.662 45.336Q-31.568 45.047-31.568 44.685Q-31.568 44.370-31.622 44.085Q-31.677 43.800-31.850 43.594Q-32.022 43.389-32.337 43.389Q-32.610 43.389-32.793 43.456Q-32.976 43.523-33.080 43.612Q-33.184 43.700-33.280 43.810Q-33.376 43.919-33.420 43.929L-33.499 43.929Q-33.571 43.912-33.588 43.841L-33.588 41.523Q-33.588 41.489-33.564 41.467Q-33.540 41.445-33.506 41.445L-33.478 41.445Q-33.191 41.561-32.923 41.615Q-32.655 41.670-32.378 41.670Q-32.101 41.670-31.831 41.615Q-31.561 41.561-31.281 41.445L-31.257 41.445Q-31.222 41.445-31.199 41.468Q-31.175 41.492-31.175 41.523L-31.175 41.592Q-31.175 41.619-31.195 41.639Q-31.469 41.954-31.853 42.130Q-32.238 42.306-32.651 42.306Q-32.990 42.306-33.307 42.220L-33.307 43.502Q-32.911 43.167-32.337 43.167Q-31.933 43.167-31.597 43.377Q-31.260 43.588-31.067 43.940Q-30.874 44.292-30.874 44.692Q-30.874 45.023-31.014 45.309Q-31.154 45.594-31.398 45.804Q-31.643 46.014-31.945 46.124Q-32.248 46.233-32.566 46.233Q-32.925 46.233-33.251 46.069Q-33.577 45.905-33.772 45.613Q-33.967 45.321-33.967 44.958Q-33.967 44.808-33.861 44.702Q-33.755 44.596-33.601 44.596Q-33.448 44.596-33.343 44.700Q-33.239 44.804-33.239 44.958Q-33.239 45.115-33.343 45.223Q-33.448 45.331-33.601 45.331M-29.619 45.331L-29.650 45.331Q-29.513 45.628-29.216 45.804Q-28.919 45.980-28.591 45.980Q-28.228 45.980-28.001 45.802Q-27.774 45.625-27.680 45.336Q-27.586 45.047-27.586 44.685Q-27.586 44.370-27.640 44.085Q-27.695 43.800-27.868 43.594Q-28.040 43.389-28.355 43.389Q-28.628 43.389-28.811 43.456Q-28.994 43.523-29.098 43.612Q-29.202 43.700-29.298 43.810Q-29.394 43.919-29.438 43.929L-29.517 43.929Q-29.589 43.912-29.606 43.841L-29.606 41.523Q-29.606 41.489-29.582 41.467Q-29.558 41.445-29.524 41.445L-29.496 41.445Q-29.209 41.561-28.941 41.615Q-28.673 41.670-28.396 41.670Q-28.119 41.670-27.849 41.615Q-27.579 41.561-27.299 41.445L-27.275 41.445Q-27.241 41.445-27.217 41.468Q-27.193 41.492-27.193 41.523L-27.193 41.592Q-27.193 41.619-27.213 41.639Q-27.487 41.954-27.871 42.130Q-28.256 42.306-28.669 42.306Q-29.008 42.306-29.325 42.220L-29.325 43.502Q-28.929 43.167-28.355 43.167Q-27.951 43.167-27.615 43.377Q-27.278 43.588-27.085 43.940Q-26.892 44.292-26.892 44.692Q-26.892 45.023-27.032 45.309Q-27.172 45.594-27.417 45.804Q-27.661 46.014-27.963 46.124Q-28.266 46.233-28.584 46.233Q-28.943 46.233-29.269 46.069Q-29.596 45.905-29.790 45.613Q-29.985 45.321-29.985 44.958Q-29.985 44.808-29.879 44.702Q-29.773 44.596-29.619 44.596Q-29.466 44.596-29.361 44.700Q-29.257 44.804-29.257 44.958Q-29.257 45.115-29.361 45.223Q-29.466 45.331-29.619 45.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-14.503 -107.713)\">\u003Cpath d=\"M-32.477 46.093L-34.029 46.093L-34.029 45.813Q-33.803 45.813-33.654 45.779Q-33.506 45.744-33.506 45.604L-33.506 43.755Q-33.506 43.567-33.554 43.483Q-33.601 43.400-33.699 43.381Q-33.796 43.362-34.008 43.362L-34.008 43.082L-32.952 43.007L-32.952 45.604Q-32.952 45.744-32.820 45.779Q-32.689 45.813-32.477 45.813L-32.477 46.093M-33.748 41.786Q-33.748 41.615-33.625 41.496Q-33.502 41.376-33.331 41.376Q-33.164 41.376-33.041 41.496Q-32.918 41.615-32.918 41.786Q-32.918 41.961-33.041 42.084Q-33.164 42.207-33.331 42.207Q-33.502 42.207-33.625 42.084Q-33.748 41.961-33.748 41.786M-30.149 46.093L-31.783 46.093L-31.783 45.813Q-31.554 45.813-31.405 45.779Q-31.257 45.744-31.257 45.604L-31.257 43.755Q-31.257 43.485-31.364 43.424Q-31.472 43.362-31.783 43.362L-31.783 43.082L-30.723 43.007L-30.723 43.656Q-30.553 43.348-30.248 43.177Q-29.944 43.007-29.599 43.007Q-29.093 43.007-28.809 43.230Q-28.526 43.454-28.526 43.950L-28.526 45.604Q-28.526 45.741-28.377 45.777Q-28.228 45.813-28.003 45.813L-28.003 46.093L-29.633 46.093L-29.633 45.813Q-29.404 45.813-29.255 45.779Q-29.107 45.744-29.107 45.604L-29.107 43.964Q-29.107 43.629-29.226 43.429Q-29.346 43.229-29.660 43.229Q-29.930 43.229-30.165 43.365Q-30.399 43.502-30.537 43.736Q-30.676 43.970-30.676 44.244L-30.676 45.604Q-30.676 45.741-30.525 45.777Q-30.375 45.813-30.149 45.813L-30.149 46.093M-25.771 47.450L-27.401 47.450L-27.401 47.170Q-27.172 47.170-27.023 47.135Q-26.875 47.101-26.875 46.961L-26.875 43.615Q-26.875 43.444-27.012 43.403Q-27.148 43.362-27.401 43.362L-27.401 43.082L-26.321 43.007L-26.321 43.413Q-26.099 43.212-25.812 43.109Q-25.525 43.007-25.217 43.007Q-24.790 43.007-24.426 43.220Q-24.062 43.434-23.848 43.798Q-23.635 44.162-23.635 44.582Q-23.635 45.027-23.874 45.391Q-24.113 45.755-24.506 45.958Q-24.899 46.161-25.344 46.161Q-25.610 46.161-25.858 46.061Q-26.106 45.960-26.294 45.779L-26.294 46.961Q-26.294 47.098-26.145 47.134Q-25.996 47.170-25.771 47.170L-25.771 47.450M-26.294 43.762L-26.294 45.372Q-26.160 45.625-25.918 45.782Q-25.675 45.939-25.398 45.939Q-25.070 45.939-24.817 45.738Q-24.564 45.536-24.431 45.218Q-24.298 44.900-24.298 44.582Q-24.298 44.353-24.363 44.124Q-24.428 43.895-24.556 43.697Q-24.684 43.499-24.879 43.379Q-25.074 43.260-25.306 43.260Q-25.600 43.260-25.868 43.389Q-26.137 43.519-26.294 43.762M-22.425 45.259L-22.425 43.755Q-22.425 43.485-22.532 43.424Q-22.640 43.362-22.951 43.362L-22.951 43.082L-21.844 43.007L-21.844 45.239L-21.844 45.259Q-21.844 45.539-21.792 45.683Q-21.741 45.826-21.599 45.883Q-21.457 45.939-21.170 45.939Q-20.917 45.939-20.712 45.799Q-20.507 45.659-20.391 45.433Q-20.275 45.208-20.275 44.958L-20.275 43.755Q-20.275 43.485-20.382 43.424Q-20.490 43.362-20.801 43.362L-20.801 43.082L-19.694 43.007L-19.694 45.420Q-19.694 45.611-19.641 45.693Q-19.588 45.775-19.487 45.794Q-19.386 45.813-19.171 45.813L-19.171 46.093L-20.247 46.161L-20.247 45.597Q-20.357 45.779-20.502 45.902Q-20.647 46.025-20.834 46.093Q-21.020 46.161-21.221 46.161Q-22.425 46.161-22.425 45.259M-18.056 45.252L-18.056 43.355L-18.696 43.355L-18.696 43.133Q-18.378 43.133-18.161 42.923Q-17.944 42.713-17.843 42.403Q-17.742 42.094-17.742 41.786L-17.475 41.786L-17.475 43.075L-16.399 43.075L-16.399 43.355L-17.475 43.355L-17.475 45.239Q-17.475 45.515-17.371 45.714Q-17.267 45.912-17.007 45.912Q-16.850 45.912-16.744 45.808Q-16.638 45.703-16.588 45.550Q-16.539 45.396-16.539 45.239L-16.539 44.825L-16.272 44.825L-16.272 45.252Q-16.272 45.478-16.371 45.688Q-16.471 45.898-16.655 46.030Q-16.840 46.161-17.069 46.161Q-17.506 46.161-17.781 45.924Q-18.056 45.686-18.056 45.252\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-14.503 -107.713)\">\u003Cpath d=\"M-11.011 46.093L-12.747 46.093L-12.747 45.813Q-12.518 45.813-12.369 45.779Q-12.221 45.744-12.221 45.604L-12.221 43.755Q-12.221 43.485-12.328 43.424Q-12.436 43.362-12.747 43.362L-12.747 43.082L-11.718 43.007L-11.718 43.714Q-11.588 43.406-11.346 43.207Q-11.103 43.007-10.785 43.007Q-10.566 43.007-10.395 43.131Q-10.224 43.256-10.224 43.468Q-10.224 43.605-10.324 43.704Q-10.423 43.803-10.556 43.803Q-10.693 43.803-10.792 43.704Q-10.891 43.605-10.891 43.468Q-10.891 43.328-10.792 43.229Q-11.082 43.229-11.282 43.425Q-11.482 43.622-11.575 43.916Q-11.667 44.210-11.667 44.490L-11.667 45.604Q-11.667 45.813-11.011 45.813L-11.011 46.093M-9.066 45.259L-9.066 43.755Q-9.066 43.485-9.173 43.424Q-9.281 43.362-9.592 43.362L-9.592 43.082L-8.485 43.007L-8.485 45.239L-8.485 45.259Q-8.485 45.539-8.433 45.683Q-8.382 45.826-8.240 45.883Q-8.098 45.939-7.811 45.939Q-7.558 45.939-7.353 45.799Q-7.148 45.659-7.032 45.433Q-6.916 45.208-6.916 44.958L-6.916 43.755Q-6.916 43.485-7.023 43.424Q-7.131 43.362-7.442 43.362L-7.442 43.082L-6.335 43.007L-6.335 45.420Q-6.335 45.611-6.282 45.693Q-6.229 45.775-6.128 45.794Q-6.027 45.813-5.812 45.813L-5.812 46.093L-6.888 46.161L-6.888 45.597Q-6.998 45.779-7.143 45.902Q-7.288 46.025-7.475 46.093Q-7.661 46.161-7.863 46.161Q-9.066 46.161-9.066 45.259M-3.542 46.093L-5.176 46.093L-5.176 45.813Q-4.947 45.813-4.798 45.779Q-4.650 45.744-4.650 45.604L-4.650 43.755Q-4.650 43.485-4.757 43.424Q-4.865 43.362-5.176 43.362L-5.176 43.082L-4.117 43.007L-4.117 43.656Q-3.946 43.348-3.641 43.177Q-3.337 43.007-2.992 43.007Q-2.486 43.007-2.202 43.230Q-1.919 43.454-1.919 43.950L-1.919 45.604Q-1.919 45.741-1.770 45.777Q-1.621 45.813-1.396 45.813L-1.396 46.093L-3.026 46.093L-3.026 45.813Q-2.797 45.813-2.648 45.779Q-2.500 45.744-2.500 45.604L-2.500 43.964Q-2.500 43.629-2.619 43.429Q-2.739 43.229-3.054 43.229Q-3.324 43.229-3.558 43.365Q-3.792 43.502-3.930 43.736Q-4.069 43.970-4.069 44.244L-4.069 45.604Q-4.069 45.741-3.918 45.777Q-3.768 45.813-3.542 45.813L-3.542 46.093M-0.808 46.086L-0.808 45.023Q-0.808 44.999-0.781 44.972Q-0.753 44.945-0.729 44.945L-0.620 44.945Q-0.555 44.945-0.541 45.003Q-0.446 45.437-0.200 45.688Q0.047 45.939 0.460 45.939Q0.802 45.939 1.055 45.806Q1.308 45.673 1.308 45.365Q1.308 45.208 1.214 45.093Q1.120 44.979 0.981 44.910Q0.843 44.842 0.675 44.804L0.094 44.705Q-0.261 44.637-0.534 44.416Q-0.808 44.196-0.808 43.854Q-0.808 43.605-0.697 43.430Q-0.586 43.256-0.399 43.157Q-0.213 43.058 0.002 43.015Q0.217 42.972 0.460 42.972Q0.874 42.972 1.154 43.154L1.369 42.979Q1.380 42.976 1.386 42.974Q1.393 42.972 1.404 42.972L1.455 42.972Q1.482 42.972 1.506 42.996Q1.530 43.020 1.530 43.048L1.530 43.895Q1.530 43.916 1.506 43.943Q1.482 43.970 1.455 43.970L1.342 43.970Q1.315 43.970 1.289 43.945Q1.263 43.919 1.263 43.895Q1.263 43.659 1.157 43.495Q1.051 43.331 0.869 43.249Q0.686 43.167 0.453 43.167Q0.125 43.167-0.131 43.270Q-0.387 43.372-0.387 43.649Q-0.387 43.844-0.205 43.953Q-0.022 44.063 0.207 44.104L0.781 44.210Q1.028 44.258 1.241 44.386Q1.455 44.514 1.592 44.717Q1.728 44.921 1.728 45.170Q1.728 45.683 1.363 45.922Q0.997 46.161 0.460 46.161Q-0.035 46.161-0.367 45.867L-0.634 46.141Q-0.654 46.161-0.681 46.161L-0.729 46.161Q-0.753 46.161-0.781 46.134Q-0.808 46.107-0.808 46.086\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-14.503 -107.713)\">\u003Cpath d=\"M7.190 47.843Q6.640 47.443 6.269 46.888Q5.898 46.332 5.717 45.686Q5.536 45.040 5.536 44.343Q5.536 43.830 5.636 43.335Q5.737 42.839 5.942 42.388Q6.147 41.937 6.460 41.545Q6.773 41.154 7.190 40.850Q7.200 40.846 7.207 40.845Q7.214 40.843 7.224 40.843L7.292 40.843Q7.327 40.843 7.349 40.867Q7.371 40.891 7.371 40.928Q7.371 40.973 7.344 40.990Q6.995 41.291 6.742 41.675Q6.489 42.060 6.337 42.501Q6.185 42.942 6.113 43.398Q6.041 43.854 6.041 44.343Q6.041 45.344 6.351 46.231Q6.660 47.118 7.344 47.703Q7.371 47.720 7.371 47.764Q7.371 47.802 7.349 47.826Q7.327 47.850 7.292 47.850L7.224 47.850Q7.217 47.846 7.209 47.845Q7.200 47.843 7.190 47.843M9.863 46.093L8.229 46.093L8.229 45.813Q8.458 45.813 8.607 45.779Q8.755 45.744 8.755 45.604L8.755 41.985Q8.755 41.715 8.648 41.653Q8.540 41.592 8.229 41.592L8.229 41.311L9.309 41.236L9.309 43.622Q9.415 43.437 9.593 43.295Q9.770 43.154 9.979 43.080Q10.187 43.007 10.413 43.007Q10.919 43.007 11.203 43.230Q11.486 43.454 11.486 43.950L11.486 45.604Q11.486 45.741 11.635 45.777Q11.784 45.813 12.009 45.813L12.009 46.093L10.379 46.093L10.379 45.813Q10.608 45.813 10.756 45.779Q10.905 45.744 10.905 45.604L10.905 43.964Q10.905 43.629 10.786 43.429Q10.666 43.229 10.351 43.229Q10.081 43.229 9.847 43.365Q9.613 43.502 9.475 43.736Q9.336 43.970 9.336 44.244L9.336 45.604Q9.336 45.741 9.487 45.777Q9.637 45.813 9.863 45.813L9.863 46.093M12.556 44.558Q12.556 44.237 12.681 43.948Q12.806 43.659 13.031 43.436Q13.257 43.212 13.552 43.092Q13.848 42.972 14.166 42.972Q14.494 42.972 14.756 43.072Q15.017 43.171 15.193 43.353Q15.369 43.536 15.463 43.794Q15.557 44.052 15.557 44.384Q15.557 44.476 15.475 44.497L13.219 44.497L13.219 44.558Q13.219 45.146 13.503 45.529Q13.787 45.912 14.354 45.912Q14.675 45.912 14.944 45.719Q15.212 45.526 15.301 45.211Q15.308 45.170 15.383 45.156L15.475 45.156Q15.557 45.180 15.557 45.252Q15.557 45.259 15.550 45.286Q15.437 45.683 15.067 45.922Q14.696 46.161 14.272 46.161Q13.834 46.161 13.434 45.953Q13.035 45.744 12.795 45.377Q12.556 45.010 12.556 44.558M13.226 44.288L15.041 44.288Q15.041 44.011 14.944 43.759Q14.846 43.506 14.648 43.350Q14.450 43.195 14.166 43.195Q13.889 43.195 13.675 43.353Q13.462 43.512 13.344 43.767Q13.226 44.022 13.226 44.288M16.203 45.365Q16.203 45.033 16.427 44.806Q16.651 44.579 16.994 44.451Q17.338 44.322 17.710 44.270Q18.083 44.217 18.387 44.217L18.387 43.964Q18.387 43.759 18.279 43.579Q18.172 43.400 17.991 43.297Q17.809 43.195 17.601 43.195Q17.194 43.195 16.958 43.287Q17.047 43.324 17.093 43.408Q17.140 43.492 17.140 43.594Q17.140 43.690 17.093 43.769Q17.047 43.847 16.967 43.892Q16.887 43.936 16.798 43.936Q16.647 43.936 16.547 43.839Q16.446 43.741 16.446 43.594Q16.446 42.972 17.601 42.972Q17.813 42.972 18.062 43.036Q18.312 43.099 18.514 43.218Q18.715 43.338 18.842 43.523Q18.968 43.707 18.968 43.950L18.968 45.526Q18.968 45.642 19.030 45.738Q19.091 45.833 19.204 45.833Q19.313 45.833 19.378 45.739Q19.443 45.645 19.443 45.526L19.443 45.078L19.710 45.078L19.710 45.526Q19.710 45.796 19.483 45.961Q19.255 46.127 18.975 46.127Q18.767 46.127 18.630 45.973Q18.493 45.820 18.469 45.604Q18.322 45.871 18.040 46.016Q17.758 46.161 17.434 46.161Q17.157 46.161 16.873 46.086Q16.589 46.011 16.396 45.832Q16.203 45.652 16.203 45.365M16.818 45.365Q16.818 45.539 16.919 45.669Q17.020 45.799 17.175 45.869Q17.331 45.939 17.495 45.939Q17.714 45.939 17.922 45.842Q18.131 45.744 18.259 45.563Q18.387 45.382 18.387 45.156L18.387 44.428Q18.062 44.428 17.697 44.519Q17.331 44.610 17.075 44.822Q16.818 45.033 16.818 45.365M20.127 44.582Q20.127 44.244 20.267 43.953Q20.407 43.663 20.652 43.449Q20.896 43.236 21.200 43.121Q21.504 43.007 21.829 43.007Q22.099 43.007 22.362 43.106Q22.625 43.205 22.817 43.383L22.817 41.985Q22.817 41.715 22.709 41.653Q22.601 41.592 22.290 41.592L22.290 41.311L23.367 41.236L23.367 45.420Q23.367 45.608 23.422 45.691Q23.476 45.775 23.577 45.794Q23.678 45.813 23.893 45.813L23.893 46.093L22.786 46.161L22.786 45.744Q22.369 46.161 21.744 46.161Q21.313 46.161 20.940 45.949Q20.568 45.738 20.347 45.377Q20.127 45.016 20.127 44.582M21.802 45.939Q22.010 45.939 22.196 45.867Q22.383 45.796 22.537 45.659Q22.690 45.522 22.786 45.344L22.786 43.735Q22.701 43.588 22.555 43.468Q22.410 43.348 22.241 43.289Q22.072 43.229 21.891 43.229Q21.330 43.229 21.062 43.618Q20.793 44.008 20.793 44.589Q20.793 45.160 21.027 45.550Q21.262 45.939 21.802 45.939M24.543 46.086L24.543 45.023Q24.543 44.999 24.570 44.972Q24.598 44.945 24.621 44.945L24.731 44.945Q24.796 44.945 24.809 45.003Q24.905 45.437 25.151 45.688Q25.397 45.939 25.811 45.939Q26.153 45.939 26.406 45.806Q26.659 45.673 26.659 45.365Q26.659 45.208 26.565 45.093Q26.471 44.979 26.332 44.910Q26.194 44.842 26.026 44.804L25.445 44.705Q25.090 44.637 24.816 44.416Q24.543 44.196 24.543 43.854Q24.543 43.605 24.654 43.430Q24.765 43.256 24.951 43.157Q25.138 43.058 25.353 43.015Q25.568 42.972 25.811 42.972Q26.225 42.972 26.505 43.154L26.720 42.979Q26.730 42.976 26.737 42.974Q26.744 42.972 26.754 42.972L26.806 42.972Q26.833 42.972 26.857 42.996Q26.881 43.020 26.881 43.048L26.881 43.895Q26.881 43.916 26.857 43.943Q26.833 43.970 26.806 43.970L26.693 43.970Q26.665 43.970 26.640 43.945Q26.614 43.919 26.614 43.895Q26.614 43.659 26.508 43.495Q26.402 43.331 26.219 43.249Q26.037 43.167 25.804 43.167Q25.476 43.167 25.220 43.270Q24.963 43.372 24.963 43.649Q24.963 43.844 25.146 43.953Q25.329 44.063 25.558 44.104L26.132 44.210Q26.378 44.258 26.592 44.386Q26.806 44.514 26.942 44.717Q27.079 44.921 27.079 45.170Q27.079 45.683 26.713 45.922Q26.348 46.161 25.811 46.161Q25.315 46.161 24.984 45.867L24.717 46.141Q24.697 46.161 24.669 46.161L24.621 46.161Q24.598 46.161 24.570 46.134Q24.543 46.107 24.543 46.086\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-14.503 -107.713)\">\u003Cpath d=\"M30.423 46.086L30.423 45.023Q30.423 44.999 30.451 44.972Q30.478 44.945 30.502 44.945L30.611 44.945Q30.676 44.945 30.690 45.003Q30.786 45.437 31.032 45.688Q31.278 45.939 31.692 45.939Q32.033 45.939 32.286 45.806Q32.539 45.673 32.539 45.365Q32.539 45.208 32.445 45.093Q32.351 44.979 32.213 44.910Q32.074 44.842 31.907 44.804L31.326 44.705Q30.970 44.637 30.697 44.416Q30.423 44.196 30.423 43.854Q30.423 43.605 30.535 43.430Q30.646 43.256 30.832 43.157Q31.018 43.058 31.234 43.015Q31.449 42.972 31.692 42.972Q32.105 42.972 32.385 43.154L32.601 42.979Q32.611 42.976 32.618 42.974Q32.625 42.972 32.635 42.972L32.686 42.972Q32.713 42.972 32.737 42.996Q32.761 43.020 32.761 43.048L32.761 43.895Q32.761 43.916 32.737 43.943Q32.713 43.970 32.686 43.970L32.573 43.970Q32.546 43.970 32.520 43.945Q32.495 43.919 32.495 43.895Q32.495 43.659 32.389 43.495Q32.283 43.331 32.100 43.249Q31.917 43.167 31.685 43.167Q31.357 43.167 31.100 43.270Q30.844 43.372 30.844 43.649Q30.844 43.844 31.027 43.953Q31.210 44.063 31.439 44.104L32.013 44.210Q32.259 44.258 32.473 44.386Q32.686 44.514 32.823 44.717Q32.960 44.921 32.960 45.170Q32.960 45.683 32.594 45.922Q32.228 46.161 31.692 46.161Q31.196 46.161 30.864 45.867L30.598 46.141Q30.577 46.161 30.550 46.161L30.502 46.161Q30.478 46.161 30.451 46.134Q30.423 46.107 30.423 46.086M35.270 46.093L33.636 46.093L33.636 45.813Q33.865 45.813 34.014 45.779Q34.163 45.744 34.163 45.604L34.163 41.985Q34.163 41.715 34.055 41.653Q33.947 41.592 33.636 41.592L33.636 41.311L34.716 41.236L34.716 43.622Q34.822 43.437 35 43.295Q35.178 43.154 35.386 43.080Q35.595 43.007 35.820 43.007Q36.326 43.007 36.610 43.230Q36.894 43.454 36.894 43.950L36.894 45.604Q36.894 45.741 37.042 45.777Q37.191 45.813 37.417 45.813L37.417 46.093L35.786 46.093L35.786 45.813Q36.015 45.813 36.164 45.779Q36.313 45.744 36.313 45.604L36.313 43.964Q36.313 43.629 36.193 43.429Q36.073 43.229 35.759 43.229Q35.489 43.229 35.255 43.365Q35.021 43.502 34.882 43.736Q34.744 43.970 34.744 44.244L34.744 45.604Q34.744 45.741 34.894 45.777Q35.045 45.813 35.270 45.813L35.270 46.093M38.063 45.365Q38.063 45.033 38.286 44.806Q38.510 44.579 38.854 44.451Q39.197 44.322 39.570 44.270Q39.942 44.217 40.247 44.217L40.247 43.964Q40.247 43.759 40.139 43.579Q40.031 43.400 39.850 43.297Q39.669 43.195 39.461 43.195Q39.054 43.195 38.818 43.287Q38.907 43.324 38.953 43.408Q38.999 43.492 38.999 43.594Q38.999 43.690 38.953 43.769Q38.907 43.847 38.827 43.892Q38.746 43.936 38.657 43.936Q38.507 43.936 38.406 43.839Q38.305 43.741 38.305 43.594Q38.305 42.972 39.461 42.972Q39.672 42.972 39.922 43.036Q40.172 43.099 40.373 43.218Q40.575 43.338 40.701 43.523Q40.828 43.707 40.828 43.950L40.828 45.526Q40.828 45.642 40.889 45.738Q40.951 45.833 41.064 45.833Q41.173 45.833 41.238 45.739Q41.303 45.645 41.303 45.526L41.303 45.078L41.569 45.078L41.569 45.526Q41.569 45.796 41.342 45.961Q41.115 46.127 40.835 46.127Q40.626 46.127 40.489 45.973Q40.353 45.820 40.329 45.604Q40.182 45.871 39.900 46.016Q39.618 46.161 39.293 46.161Q39.016 46.161 38.733 46.086Q38.449 46.011 38.256 45.832Q38.063 45.652 38.063 45.365M38.678 45.365Q38.678 45.539 38.779 45.669Q38.880 45.799 39.035 45.869Q39.191 45.939 39.355 45.939Q39.573 45.939 39.782 45.842Q39.990 45.744 40.119 45.563Q40.247 45.382 40.247 45.156L40.247 44.428Q39.922 44.428 39.556 44.519Q39.191 44.610 38.934 44.822Q38.678 45.033 38.678 45.365M41.986 44.582Q41.986 44.244 42.127 43.953Q42.267 43.663 42.511 43.449Q42.755 43.236 43.060 43.121Q43.364 43.007 43.689 43.007Q43.959 43.007 44.222 43.106Q44.485 43.205 44.676 43.383L44.676 41.985Q44.676 41.715 44.569 41.653Q44.461 41.592 44.150 41.592L44.150 41.311L45.227 41.236L45.227 45.420Q45.227 45.608 45.281 45.691Q45.336 45.775 45.437 45.794Q45.538 45.813 45.753 45.813L45.753 46.093L44.646 46.161L44.646 45.744Q44.229 46.161 43.603 46.161Q43.172 46.161 42.800 45.949Q42.427 45.738 42.207 45.377Q41.986 45.016 41.986 44.582M43.661 45.939Q43.870 45.939 44.056 45.867Q44.242 45.796 44.396 45.659Q44.550 45.522 44.646 45.344L44.646 43.735Q44.560 43.588 44.415 43.468Q44.270 43.348 44.100 43.289Q43.931 43.229 43.750 43.229Q43.190 43.229 42.921 43.618Q42.653 44.008 42.653 44.589Q42.653 45.160 42.887 45.550Q43.121 45.939 43.661 45.939M46.361 44.558Q46.361 44.237 46.486 43.948Q46.611 43.659 46.837 43.436Q47.062 43.212 47.358 43.092Q47.653 42.972 47.971 42.972Q48.299 42.972 48.561 43.072Q48.822 43.171 48.998 43.353Q49.174 43.536 49.268 43.794Q49.362 44.052 49.362 44.384Q49.362 44.476 49.280 44.497L47.025 44.497L47.025 44.558Q47.025 45.146 47.308 45.529Q47.592 45.912 48.159 45.912Q48.481 45.912 48.749 45.719Q49.017 45.526 49.106 45.211Q49.113 45.170 49.188 45.156L49.280 45.156Q49.362 45.180 49.362 45.252Q49.362 45.259 49.356 45.286Q49.243 45.683 48.872 45.922Q48.501 46.161 48.077 46.161Q47.640 46.161 47.240 45.953Q46.840 45.744 46.601 45.377Q46.361 45.010 46.361 44.558M47.031 44.288L48.846 44.288Q48.846 44.011 48.749 43.759Q48.651 43.506 48.453 43.350Q48.255 43.195 47.971 43.195Q47.694 43.195 47.481 43.353Q47.267 43.512 47.149 43.767Q47.031 44.022 47.031 44.288M49.950 44.582Q49.950 44.244 50.090 43.953Q50.231 43.663 50.475 43.449Q50.719 43.236 51.024 43.121Q51.328 43.007 51.652 43.007Q51.922 43.007 52.186 43.106Q52.449 43.205 52.640 43.383L52.640 41.985Q52.640 41.715 52.533 41.653Q52.425 41.592 52.114 41.592L52.114 41.311L53.191 41.236L53.191 45.420Q53.191 45.608 53.245 45.691Q53.300 45.775 53.401 45.794Q53.502 45.813 53.717 45.813L53.717 46.093L52.609 46.161L52.609 45.744Q52.192 46.161 51.567 46.161Q51.136 46.161 50.764 45.949Q50.391 45.738 50.171 45.377Q49.950 45.016 49.950 44.582M51.625 45.939Q51.834 45.939 52.020 45.867Q52.206 45.796 52.360 45.659Q52.514 45.522 52.609 45.344L52.609 43.735Q52.524 43.588 52.379 43.468Q52.234 43.348 52.064 43.289Q51.895 43.229 51.714 43.229Q51.153 43.229 50.885 43.618Q50.617 44.008 50.617 44.589Q50.617 45.160 50.851 45.550Q51.085 45.939 51.625 45.939M54.688 47.850L54.619 47.850Q54.585 47.850 54.563 47.824Q54.541 47.799 54.541 47.764Q54.541 47.720 54.571 47.703Q54.927 47.399 55.176 47.009Q55.426 46.619 55.578 46.187Q55.730 45.755 55.800 45.286Q55.870 44.818 55.870 44.343Q55.870 43.864 55.800 43.398Q55.730 42.931 55.576 42.496Q55.422 42.060 55.171 41.672Q54.920 41.284 54.571 40.990Q54.541 40.973 54.541 40.928Q54.541 40.894 54.563 40.869Q54.585 40.843 54.619 40.843L54.688 40.843Q54.698 40.843 54.706 40.845Q54.715 40.846 54.725 40.850Q55.269 41.250 55.641 41.803Q56.014 42.357 56.195 43.003Q56.376 43.649 56.376 44.343Q56.376 45.044 56.195 45.691Q56.014 46.339 55.640 46.893Q55.265 47.447 54.725 47.843Q54.715 47.843 54.706 47.845Q54.698 47.846 54.688 47.850\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M99.32-39.265c0-6.286-5.095-11.381-11.381-11.381s-11.381 5.095-11.381 11.381 5.095 11.381 11.38 11.381c6.287 0 11.382-5.095 11.382-11.381Zm-11.381 0\"\u002F>\u003Cg transform=\"translate(117.722 -82.458)\">\u003Cpath d=\"M-30.501 46.093L-33.533 46.093L-33.533 45.777Q-32.382 45.777-32.382 45.482L-32.382 40.758Q-32.870 40.991-33.591 40.991L-33.591 40.675Q-32.461 40.675-31.899 40.099L-31.754 40.099Q-31.719 40.099-31.686 40.132Q-31.653 40.165-31.653 40.200L-31.653 45.482Q-31.653 45.777-30.501 45.777L-30.501 46.093M-27.091 44.616L-29.530 44.616L-29.530 44.300L-26.704 40.152Q-26.660 40.099-26.595 40.099L-26.441 40.099Q-26.401 40.099-26.368 40.132Q-26.335 40.165-26.335 40.209L-26.335 44.300L-25.434 44.300L-25.434 44.616L-26.335 44.616L-26.335 45.482Q-26.335 45.777-25.434 45.777L-25.434 46.093L-27.988 46.093L-27.988 45.777Q-27.627 45.777-27.359 45.722Q-27.091 45.667-27.091 45.482L-27.091 44.616M-27.034 41.127L-29.196 44.300L-27.034 44.300\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M79.403-7.967c0-6.285-5.095-11.38-11.38-11.38-6.287 0-11.382 5.095-11.382 11.38S61.736 3.414 68.022 3.414 79.403-1.68 79.403-7.966Zm-11.38 0\"\u002F>\u003Cg transform=\"translate(97.805 -51.16)\">\u003Cpath d=\"M-30.501 46.093L-33.533 46.093L-33.533 45.777Q-32.382 45.777-32.382 45.482L-32.382 40.758Q-32.870 40.991-33.591 40.991L-33.591 40.675Q-32.461 40.675-31.899 40.099L-31.754 40.099Q-31.719 40.099-31.686 40.132Q-31.653 40.165-31.653 40.200L-31.653 45.482Q-31.653 45.777-30.501 45.777L-30.501 46.093M-28.726 45.706Q-28.480 46.005-27.873 46.005Q-27.592 46.005-27.353 45.867Q-27.113 45.728-26.935 45.506Q-26.757 45.284-26.647 45.021Q-26.414 44.445-26.414 43.329Q-26.581 43.694-26.887 43.918Q-27.192 44.142-27.575 44.142Q-28.111 44.142-28.526 43.863Q-28.941 43.584-29.172 43.118Q-29.403 42.652-29.403 42.125Q-29.403 41.712-29.255 41.343Q-29.108 40.973-28.845 40.697Q-28.581 40.420-28.212 40.259Q-27.843 40.099-27.429 40.099Q-26.871 40.099-26.498 40.391Q-26.124 40.683-25.920 41.147Q-25.716 41.611-25.637 42.127Q-25.557 42.643-25.557 43.175Q-25.557 43.891-25.825 44.614Q-26.094 45.337-26.616 45.814Q-27.139 46.291-27.865 46.291Q-28.414 46.291-28.792 46.042Q-29.170 45.794-29.170 45.276Q-29.170 45.157-29.113 45.054Q-29.055 44.950-28.954 44.891Q-28.853 44.832-28.726 44.832Q-28.541 44.832-28.418 44.964Q-28.295 45.095-28.295 45.276Q-28.295 45.451-28.423 45.579Q-28.550 45.706-28.726 45.706M-27.531 43.878Q-27.161 43.878-26.913 43.636Q-26.665 43.395-26.548 43.037Q-26.432 42.678-26.432 42.305Q-26.432 42.195-26.441 42.142Q-26.436 42.129-26.434 42.118Q-26.432 42.107-26.432 42.090Q-26.432 41.435-26.647 40.896Q-26.863 40.358-27.429 40.358Q-27.790 40.358-28.018 40.508Q-28.247 40.657-28.363 40.914Q-28.480 41.171-28.513 41.452Q-28.546 41.734-28.546 42.107L-28.546 42.142Q-28.546 42.468-28.519 42.755Q-28.493 43.043-28.394 43.302Q-28.295 43.562-28.084 43.720Q-27.873 43.878-27.531 43.878\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M119.237-7.967c0-6.285-5.096-11.38-11.381-11.38s-11.381 5.095-11.381 11.38 5.095 11.381 11.38 11.381 11.382-5.095 11.382-11.38Zm-11.381 0\"\u002F>\u003Cg transform=\"translate(137.639 -51.16)\">\u003Cpath d=\"M-30.501 46.093L-33.951 46.093L-33.951 45.860Q-33.951 45.847-33.920 45.816L-32.466 44.239Q-32 43.742-31.747 43.437Q-31.494 43.131-31.303 42.720Q-31.112 42.309-31.112 41.870Q-31.112 41.281-31.435 40.848Q-31.758 40.415-32.338 40.415Q-32.602 40.415-32.848 40.525Q-33.094 40.635-33.270 40.822Q-33.446 41.009-33.542 41.259L-33.463 41.259Q-33.261 41.259-33.118 41.395Q-32.975 41.531-32.975 41.747Q-32.975 41.953-33.118 42.092Q-33.261 42.230-33.463 42.230Q-33.665 42.230-33.808 42.087Q-33.951 41.945-33.951 41.747Q-33.951 41.285-33.714 40.912Q-33.476 40.538-33.076 40.319Q-32.677 40.099-32.228 40.099Q-31.705 40.099-31.251 40.314Q-30.796 40.530-30.523 40.929Q-30.251 41.329-30.251 41.870Q-30.251 42.265-30.422 42.619Q-30.594 42.973-30.859 43.252Q-31.125 43.531-31.576 43.916Q-32.026 44.300-32.105 44.375L-33.129 45.337L-32.312 45.337Q-31.661 45.337-31.224 45.326Q-30.787 45.315-30.756 45.293Q-30.686 45.210-30.631 44.970Q-30.576 44.731-30.536 44.463L-30.251 44.463L-30.501 46.093M-25.883 46.093L-29.332 46.093L-29.332 45.860Q-29.332 45.847-29.302 45.816L-27.847 44.239Q-27.381 43.742-27.128 43.437Q-26.876 43.131-26.685 42.720Q-26.493 42.309-26.493 41.870Q-26.493 41.281-26.816 40.848Q-27.139 40.415-27.720 40.415Q-27.983 40.415-28.229 40.525Q-28.475 40.635-28.651 40.822Q-28.827 41.009-28.924 41.259L-28.845 41.259Q-28.642 41.259-28.500 41.395Q-28.357 41.531-28.357 41.747Q-28.357 41.953-28.500 42.092Q-28.642 42.230-28.845 42.230Q-29.047 42.230-29.189 42.087Q-29.332 41.945-29.332 41.747Q-29.332 41.285-29.095 40.912Q-28.858 40.538-28.458 40.319Q-28.058 40.099-27.610 40.099Q-27.087 40.099-26.632 40.314Q-26.177 40.530-25.905 40.929Q-25.632 41.329-25.632 41.870Q-25.632 42.265-25.804 42.619Q-25.975 42.973-26.241 43.252Q-26.507 43.531-26.957 43.916Q-27.408 44.300-27.487 44.375L-28.511 45.337L-27.693 45.337Q-27.043 45.337-26.606 45.326Q-26.168 45.315-26.137 45.293Q-26.067 45.210-26.012 44.970Q-25.957 44.731-25.918 44.463L-25.632 44.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M79.403 23.33c0-6.285-5.095-11.38-11.38-11.38-6.287 0-11.382 5.095-11.382 11.38 0 6.287 5.095 11.382 11.381 11.382s11.381-5.095 11.381-11.381Zm-11.38 0\"\u002F>\u003Cg transform=\"translate(97.805 -19.862)\">\u003Cpath d=\"M-33.507 45.372L-33.551 45.372Q-33.349 45.689-32.962 45.847Q-32.575 46.005-32.149 46.005Q-31.613 46.005-31.374 45.570Q-31.134 45.135-31.134 44.555Q-31.134 43.975-31.380 43.535Q-31.626 43.096-32.158 43.096L-32.778 43.096Q-32.804 43.096-32.837 43.067Q-32.870 43.039-32.870 43.017L-32.870 42.916Q-32.870 42.885-32.841 42.861Q-32.813 42.837-32.778 42.837L-32.259 42.797Q-31.793 42.797-31.547 42.325Q-31.301 41.852-31.301 41.334Q-31.301 40.907-31.514 40.633Q-31.727 40.358-32.149 40.358Q-32.492 40.358-32.817 40.488Q-33.142 40.617-33.327 40.872L-33.301 40.872Q-33.098 40.872-32.962 41.013Q-32.826 41.154-32.826 41.351Q-32.826 41.549-32.960 41.683Q-33.094 41.817-33.292 41.817Q-33.494 41.817-33.632 41.683Q-33.771 41.549-33.771 41.351Q-33.771 40.762-33.268 40.431Q-32.764 40.099-32.149 40.099Q-31.771 40.099-31.369 40.239Q-30.967 40.380-30.699 40.659Q-30.431 40.938-30.431 41.334Q-30.431 41.883-30.785 42.320Q-31.138 42.758-31.679 42.942Q-31.288 43.021-30.943 43.245Q-30.598 43.469-30.387 43.810Q-30.176 44.151-30.176 44.546Q-30.176 44.928-30.339 45.251Q-30.501 45.574-30.793 45.810Q-31.086 46.045-31.433 46.168Q-31.780 46.291-32.149 46.291Q-32.597 46.291-33.028 46.130Q-33.459 45.970-33.740 45.643Q-34.021 45.315-34.021 44.858Q-34.021 44.643-33.874 44.500Q-33.727 44.357-33.507 44.357Q-33.296 44.357-33.151 44.502Q-33.006 44.647-33.006 44.858Q-33.006 45.069-33.153 45.221Q-33.301 45.372-33.507 45.372M-25.883 46.093L-28.915 46.093L-28.915 45.777Q-27.763 45.777-27.763 45.482L-27.763 40.758Q-28.251 40.991-28.972 40.991L-28.972 40.675Q-27.843 40.675-27.280 40.099L-27.135 40.099Q-27.100 40.099-27.067 40.132Q-27.034 40.165-27.034 40.200L-27.034 45.482Q-27.034 45.777-25.883 45.777\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.270\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m81.722-29.495-7.483 11.758M94.156-29.495l7.483 11.758M68.022 3.614v8.136\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(90.488 -110.17)\">\u003Cpath d=\"M-32.412 46.093L-34.046 46.093L-34.046 45.813Q-33.817 45.813-33.668 45.779Q-33.519 45.744-33.519 45.604L-33.519 43.755Q-33.519 43.485-33.627 43.424Q-33.735 43.362-34.046 43.362L-34.046 43.082L-32.986 43.007L-32.986 43.656Q-32.815 43.348-32.511 43.177Q-32.207 43.007-31.862 43.007Q-31.462 43.007-31.185 43.147Q-30.908 43.287-30.823 43.635Q-30.655 43.342-30.356 43.174Q-30.057 43.007-29.712 43.007Q-29.206 43.007-28.922 43.230Q-28.638 43.454-28.638 43.950L-28.638 45.604Q-28.638 45.741-28.490 45.777Q-28.341 45.813-28.116 45.813L-28.116 46.093L-29.746 46.093L-29.746 45.813Q-29.520 45.813-29.370 45.777Q-29.220 45.741-29.220 45.604L-29.220 43.964Q-29.220 43.629-29.339 43.429Q-29.459 43.229-29.773 43.229Q-30.043 43.229-30.277 43.365Q-30.512 43.502-30.650 43.736Q-30.788 43.970-30.788 44.244L-30.788 45.604Q-30.788 45.741-30.640 45.777Q-30.491 45.813-30.265 45.813L-30.265 46.093L-31.896 46.093L-31.896 45.813Q-31.667 45.813-31.518 45.779Q-31.369 45.744-31.369 45.604L-31.369 43.964Q-31.369 43.629-31.489 43.429Q-31.609 43.229-31.923 43.229Q-32.193 43.229-32.427 43.365Q-32.661 43.502-32.800 43.736Q-32.938 43.970-32.938 44.244L-32.938 45.604Q-32.938 45.741-32.788 45.777Q-32.637 45.813-32.412 45.813L-32.412 46.093M-25.911 46.093L-27.463 46.093L-27.463 45.813Q-27.237 45.813-27.088 45.779Q-26.940 45.744-26.940 45.604L-26.940 43.755Q-26.940 43.567-26.988 43.483Q-27.035 43.400-27.133 43.381Q-27.230 43.362-27.442 43.362L-27.442 43.082L-26.386 43.007L-26.386 45.604Q-26.386 45.744-26.254 45.779Q-26.123 45.813-25.911 45.813L-25.911 46.093M-27.182 41.786Q-27.182 41.615-27.059 41.496Q-26.936 41.376-26.765 41.376Q-26.598 41.376-26.475 41.496Q-26.352 41.615-26.352 41.786Q-26.352 41.961-26.475 42.084Q-26.598 42.207-26.765 42.207Q-26.936 42.207-27.059 42.084Q-27.182 41.961-27.182 41.786M-23.583 46.093L-25.217 46.093L-25.217 45.813Q-24.988 45.813-24.839 45.779Q-24.691 45.744-24.691 45.604L-24.691 43.755Q-24.691 43.485-24.798 43.424Q-24.906 43.362-25.217 43.362L-25.217 43.082L-24.158 43.007L-24.158 43.656Q-23.987 43.348-23.682 43.177Q-23.378 43.007-23.033 43.007Q-22.527 43.007-22.243 43.230Q-21.960 43.454-21.960 43.950L-21.960 45.604Q-21.960 45.741-21.811 45.777Q-21.662 45.813-21.437 45.813L-21.437 46.093L-23.067 46.093L-23.067 45.813Q-22.838 45.813-22.689 45.779Q-22.541 45.744-22.541 45.604L-22.541 43.964Q-22.541 43.629-22.660 43.429Q-22.780 43.229-23.095 43.229Q-23.365 43.229-23.599 43.365Q-23.833 43.502-23.971 43.736Q-24.110 43.970-24.110 44.244L-24.110 45.604Q-24.110 45.741-23.959 45.777Q-23.809 45.813-23.583 45.813L-23.583 46.093M-18.966 44.839L-21.023 44.839L-21.023 44.336L-18.966 44.336L-18.966 44.839M-16.481 46.093L-18.115 46.093L-18.115 45.813Q-17.886 45.813-17.737 45.779Q-17.588 45.744-17.588 45.604L-17.588 41.985Q-17.588 41.715-17.696 41.653Q-17.804 41.592-18.115 41.592L-18.115 41.311L-17.034 41.236L-17.034 43.622Q-16.929 43.437-16.751 43.295Q-16.573 43.154-16.365 43.080Q-16.156 43.007-15.930 43.007Q-15.425 43.007-15.141 43.230Q-14.857 43.454-14.857 43.950L-14.857 45.604Q-14.857 45.741-14.709 45.777Q-14.560 45.813-14.334 45.813L-14.334 46.093L-15.965 46.093L-15.965 45.813Q-15.736 45.813-15.587 45.779Q-15.438 45.744-15.438 45.604L-15.438 43.964Q-15.438 43.629-15.558 43.429Q-15.678 43.229-15.992 43.229Q-16.262 43.229-16.496 43.365Q-16.730 43.502-16.869 43.736Q-17.007 43.970-17.007 44.244L-17.007 45.604Q-17.007 45.741-16.857 45.777Q-16.706 45.813-16.481 45.813L-16.481 46.093M-13.787 44.558Q-13.787 44.237-13.663 43.948Q-13.538 43.659-13.312 43.436Q-13.087 43.212-12.791 43.092Q-12.495 42.972-12.178 42.972Q-11.849 42.972-11.588 43.072Q-11.326 43.171-11.150 43.353Q-10.974 43.536-10.880 43.794Q-10.786 44.052-10.786 44.384Q-10.786 44.476-10.868 44.497L-13.124 44.497L-13.124 44.558Q-13.124 45.146-12.841 45.529Q-12.557 45.912-11.990 45.912Q-11.668 45.912-11.400 45.719Q-11.132 45.526-11.043 45.211Q-11.036 45.170-10.961 45.156L-10.868 45.156Q-10.786 45.180-10.786 45.252Q-10.786 45.259-10.793 45.286Q-10.906 45.683-11.277 45.922Q-11.648 46.161-12.072 46.161Q-12.509 46.161-12.909 45.953Q-13.309 45.744-13.548 45.377Q-13.787 45.010-13.787 44.558M-13.117 44.288L-11.303 44.288Q-11.303 44.011-11.400 43.759Q-11.497 43.506-11.696 43.350Q-11.894 43.195-12.178 43.195Q-12.454 43.195-12.668 43.353Q-12.882 43.512-13 43.767Q-13.117 44.022-13.117 44.288M-10.140 45.365Q-10.140 45.033-9.917 44.806Q-9.693 44.579-9.349 44.451Q-9.006 44.322-8.633 44.270Q-8.261 44.217-7.956 44.217L-7.956 43.964Q-7.956 43.759-8.064 43.579Q-8.172 43.400-8.353 43.297Q-8.534 43.195-8.742 43.195Q-9.149 43.195-9.385 43.287Q-9.296 43.324-9.250 43.408Q-9.204 43.492-9.204 43.594Q-9.204 43.690-9.250 43.769Q-9.296 43.847-9.377 43.892Q-9.457 43.936-9.546 43.936Q-9.696 43.936-9.797 43.839Q-9.898 43.741-9.898 43.594Q-9.898 42.972-8.742 42.972Q-8.531 42.972-8.281 43.036Q-8.032 43.099-7.830 43.218Q-7.628 43.338-7.502 43.523Q-7.375 43.707-7.375 43.950L-7.375 45.526Q-7.375 45.642-7.314 45.738Q-7.252 45.833-7.139 45.833Q-7.030 45.833-6.965 45.739Q-6.900 45.645-6.900 45.526L-6.900 45.078L-6.634 45.078L-6.634 45.526Q-6.634 45.796-6.861 45.961Q-7.088 46.127-7.368 46.127Q-7.577 46.127-7.714 45.973Q-7.850 45.820-7.874 45.604Q-8.021 45.871-8.303 46.016Q-8.585 46.161-8.910 46.161Q-9.187 46.161-9.471 46.086Q-9.754 46.011-9.947 45.832Q-10.140 45.652-10.140 45.365M-9.525 45.365Q-9.525 45.539-9.424 45.669Q-9.324 45.799-9.168 45.869Q-9.012 45.939-8.848 45.939Q-8.630 45.939-8.421 45.842Q-8.213 45.744-8.085 45.563Q-7.956 45.382-7.956 45.156L-7.956 44.428Q-8.281 44.428-8.647 44.519Q-9.012 44.610-9.269 44.822Q-9.525 45.033-9.525 45.365M-4.573 47.450L-6.203 47.450L-6.203 47.170Q-5.974 47.170-5.825 47.135Q-5.677 47.101-5.677 46.961L-5.677 43.615Q-5.677 43.444-5.813 43.403Q-5.950 43.362-6.203 43.362L-6.203 43.082L-5.123 43.007L-5.123 43.413Q-4.901 43.212-4.614 43.109Q-4.326 43.007-4.019 43.007Q-3.592 43.007-3.228 43.220Q-2.864 43.434-2.650 43.798Q-2.436 44.162-2.436 44.582Q-2.436 45.027-2.676 45.391Q-2.915 45.755-3.308 45.958Q-3.701 46.161-4.145 46.161Q-4.412 46.161-4.660 46.061Q-4.908 45.960-5.096 45.779L-5.096 46.961Q-5.096 47.098-4.947 47.134Q-4.798 47.170-4.573 47.170L-4.573 47.450M-5.096 43.762L-5.096 45.372Q-4.962 45.625-4.720 45.782Q-4.477 45.939-4.200 45.939Q-3.872 45.939-3.619 45.738Q-3.366 45.536-3.233 45.218Q-3.099 44.900-3.099 44.582Q-3.099 44.353-3.164 44.124Q-3.229 43.895-3.357 43.697Q-3.486 43.499-3.680 43.379Q-3.875 43.260-4.108 43.260Q-4.402 43.260-4.670 43.389Q-4.938 43.519-5.096 43.762\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(90.488 -110.17)\">\u003Cpath d=\"M0.879 44.610Q0.879 44.268 1.014 43.969Q1.149 43.670 1.389 43.446Q1.628 43.222 1.946 43.097Q2.264 42.972 2.595 42.972Q3.040 42.972 3.439 43.188Q3.839 43.403 4.074 43.781Q4.308 44.158 4.308 44.610Q4.308 44.951 4.166 45.235Q4.024 45.519 3.780 45.726Q3.535 45.932 3.226 46.047Q2.917 46.161 2.595 46.161Q2.165 46.161 1.763 45.960Q1.361 45.758 1.120 45.406Q0.879 45.054 0.879 44.610M2.595 45.912Q3.197 45.912 3.421 45.534Q3.645 45.156 3.645 44.524Q3.645 43.912 3.410 43.553Q3.176 43.195 2.595 43.195Q1.543 43.195 1.543 44.524Q1.543 45.156 1.768 45.534Q1.994 45.912 2.595 45.912M6.700 46.093L4.967 46.093L4.967 45.813Q5.193 45.813 5.342 45.779Q5.490 45.744 5.490 45.604L5.490 43.355L4.902 43.355L4.902 43.075L5.490 43.075L5.490 42.258Q5.490 41.940 5.668 41.692Q5.846 41.445 6.136 41.304Q6.427 41.164 6.738 41.164Q6.994 41.164 7.198 41.306Q7.401 41.448 7.401 41.691Q7.401 41.827 7.302 41.926Q7.203 42.026 7.066 42.026Q6.929 42.026 6.830 41.926Q6.731 41.827 6.731 41.691Q6.731 41.510 6.871 41.417Q6.793 41.390 6.693 41.390Q6.485 41.390 6.331 41.523Q6.177 41.656 6.097 41.860Q6.017 42.063 6.017 42.272L6.017 43.075L6.905 43.075L6.905 43.355L6.044 43.355L6.044 45.604Q6.044 45.813 6.700 45.813\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(90.488 -110.17)\">\u003Cpath d=\"M11.762 46.093L10.128 46.093L10.128 45.813Q10.357 45.813 10.506 45.779Q10.655 45.744 10.655 45.604L10.655 41.985Q10.655 41.715 10.547 41.653Q10.439 41.592 10.128 41.592L10.128 41.311L11.208 41.236L11.208 43.622Q11.314 43.437 11.492 43.295Q11.670 43.154 11.878 43.080Q12.087 43.007 12.312 43.007Q12.818 43.007 13.102 43.230Q13.386 43.454 13.386 43.950L13.386 45.604Q13.386 45.741 13.534 45.777Q13.683 45.813 13.909 45.813L13.909 46.093L12.278 46.093L12.278 45.813Q12.507 45.813 12.656 45.779Q12.805 45.744 12.805 45.604L12.805 43.964Q12.805 43.629 12.685 43.429Q12.565 43.229 12.251 43.229Q11.981 43.229 11.747 43.365Q11.513 43.502 11.374 43.736Q11.236 43.970 11.236 44.244L11.236 45.604Q11.236 45.741 11.386 45.777Q11.537 45.813 11.762 45.813L11.762 46.093M14.455 44.558Q14.455 44.237 14.580 43.948Q14.705 43.659 14.931 43.436Q15.156 43.212 15.452 43.092Q15.747 42.972 16.065 42.972Q16.393 42.972 16.655 43.072Q16.916 43.171 17.092 43.353Q17.268 43.536 17.362 43.794Q17.456 44.052 17.456 44.384Q17.456 44.476 17.374 44.497L15.119 44.497L15.119 44.558Q15.119 45.146 15.402 45.529Q15.686 45.912 16.253 45.912Q16.575 45.912 16.843 45.719Q17.111 45.526 17.200 45.211Q17.207 45.170 17.282 45.156L17.374 45.156Q17.456 45.180 17.456 45.252Q17.456 45.259 17.450 45.286Q17.337 45.683 16.966 45.922Q16.595 46.161 16.171 46.161Q15.734 46.161 15.334 45.953Q14.934 45.744 14.695 45.377Q14.455 45.010 14.455 44.558M15.125 44.288L16.940 44.288Q16.940 44.011 16.843 43.759Q16.745 43.506 16.547 43.350Q16.349 43.195 16.065 43.195Q15.788 43.195 15.575 43.353Q15.361 43.512 15.243 43.767Q15.125 44.022 15.125 44.288M18.102 45.365Q18.102 45.033 18.326 44.806Q18.550 44.579 18.894 44.451Q19.237 44.322 19.610 44.270Q19.982 44.217 20.287 44.217L20.287 43.964Q20.287 43.759 20.179 43.579Q20.071 43.400 19.890 43.297Q19.709 43.195 19.500 43.195Q19.094 43.195 18.858 43.287Q18.947 43.324 18.993 43.408Q19.039 43.492 19.039 43.594Q19.039 43.690 18.993 43.769Q18.947 43.847 18.866 43.892Q18.786 43.936 18.697 43.936Q18.547 43.936 18.446 43.839Q18.345 43.741 18.345 43.594Q18.345 42.972 19.500 42.972Q19.712 42.972 19.962 43.036Q20.211 43.099 20.413 43.218Q20.615 43.338 20.741 43.523Q20.868 43.707 20.868 43.950L20.868 45.526Q20.868 45.642 20.929 45.738Q20.991 45.833 21.103 45.833Q21.213 45.833 21.278 45.739Q21.343 45.645 21.343 45.526L21.343 45.078L21.609 45.078L21.609 45.526Q21.609 45.796 21.382 45.961Q21.155 46.127 20.874 46.127Q20.666 46.127 20.529 45.973Q20.392 45.820 20.369 45.604Q20.222 45.871 19.940 46.016Q19.658 46.161 19.333 46.161Q19.056 46.161 18.772 46.086Q18.489 46.011 18.296 45.832Q18.102 45.652 18.102 45.365M18.718 45.365Q18.718 45.539 18.818 45.669Q18.919 45.799 19.075 45.869Q19.230 45.939 19.394 45.939Q19.613 45.939 19.822 45.842Q20.030 45.744 20.158 45.563Q20.287 45.382 20.287 45.156L20.287 44.428Q19.962 44.428 19.596 44.519Q19.230 44.610 18.974 44.822Q18.718 45.033 18.718 45.365M22.026 44.582Q22.026 44.244 22.166 43.953Q22.307 43.663 22.551 43.449Q22.795 43.236 23.099 43.121Q23.404 43.007 23.728 43.007Q23.998 43.007 24.262 43.106Q24.525 43.205 24.716 43.383L24.716 41.985Q24.716 41.715 24.609 41.653Q24.501 41.592 24.190 41.592L24.190 41.311L25.266 41.236L25.266 45.420Q25.266 45.608 25.321 45.691Q25.376 45.775 25.477 45.794Q25.578 45.813 25.793 45.813L25.793 46.093L24.685 46.161L24.685 45.744Q24.268 46.161 23.643 46.161Q23.212 46.161 22.840 45.949Q22.467 45.738 22.247 45.377Q22.026 45.016 22.026 44.582M23.701 45.939Q23.910 45.939 24.096 45.867Q24.282 45.796 24.436 45.659Q24.590 45.522 24.685 45.344L24.685 43.735Q24.600 43.588 24.455 43.468Q24.309 43.348 24.140 43.289Q23.971 43.229 23.790 43.229Q23.229 43.229 22.961 43.618Q22.693 44.008 22.693 44.589Q22.693 45.160 22.927 45.550Q23.161 45.939 23.701 45.939M26.442 46.086L26.442 45.023Q26.442 44.999 26.470 44.972Q26.497 44.945 26.521 44.945L26.630 44.945Q26.695 44.945 26.709 45.003Q26.805 45.437 27.051 45.688Q27.297 45.939 27.710 45.939Q28.052 45.939 28.305 45.806Q28.558 45.673 28.558 45.365Q28.558 45.208 28.464 45.093Q28.370 44.979 28.232 44.910Q28.093 44.842 27.926 44.804L27.345 44.705Q26.989 44.637 26.716 44.416Q26.442 44.196 26.442 43.854Q26.442 43.605 26.553 43.430Q26.664 43.256 26.851 43.157Q27.037 43.058 27.252 43.015Q27.468 42.972 27.710 42.972Q28.124 42.972 28.404 43.154L28.620 42.979Q28.630 42.976 28.637 42.974Q28.643 42.972 28.654 42.972L28.705 42.972Q28.732 42.972 28.756 42.996Q28.780 43.020 28.780 43.048L28.780 43.895Q28.780 43.916 28.756 43.943Q28.732 43.970 28.705 43.970L28.592 43.970Q28.565 43.970 28.539 43.945Q28.514 43.919 28.514 43.895Q28.514 43.659 28.408 43.495Q28.302 43.331 28.119 43.249Q27.936 43.167 27.703 43.167Q27.375 43.167 27.119 43.270Q26.863 43.372 26.863 43.649Q26.863 43.844 27.046 43.953Q27.228 44.063 27.457 44.104L28.032 44.210Q28.278 44.258 28.491 44.386Q28.705 44.514 28.842 44.717Q28.978 44.921 28.978 45.170Q28.978 45.683 28.613 45.922Q28.247 46.161 27.710 46.161Q27.215 46.161 26.883 45.867L26.617 46.141Q26.596 46.161 26.569 46.161L26.521 46.161Q26.497 46.161 26.470 46.134Q26.442 46.107 26.442 46.086\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-good)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(16.445 -93.845)\">\u003Cpath d=\"M-33.567 45.252L-33.567 43.355L-34.206 43.355L-34.206 43.133Q-33.888 43.133-33.671 42.923Q-33.454 42.713-33.354 42.403Q-33.253 42.094-33.253 41.786L-32.986 41.786L-32.986 43.075L-31.909 43.075L-31.909 43.355L-32.986 43.355L-32.986 45.239Q-32.986 45.515-32.882 45.714Q-32.778 45.912-32.518 45.912Q-32.361 45.912-32.255 45.808Q-32.149 45.703-32.099 45.550Q-32.050 45.396-32.050 45.239L-32.050 44.825L-31.783 44.825L-31.783 45.252Q-31.783 45.478-31.882 45.688Q-31.981 45.898-32.166 46.030Q-32.350 46.161-32.579 46.161Q-33.017 46.161-33.292 45.924Q-33.567 45.686-33.567 45.252M-31.014 44.610Q-31.014 44.268-30.879 43.969Q-30.744 43.670-30.505 43.446Q-30.265 43.222-29.948 43.097Q-29.630 42.972-29.298 42.972Q-28.854 42.972-28.454 43.188Q-28.054 43.403-27.820 43.781Q-27.586 44.158-27.586 44.610Q-27.586 44.951-27.728 45.235Q-27.869 45.519-28.114 45.726Q-28.358 45.932-28.668 46.047Q-28.977 46.161-29.298 46.161Q-29.729 46.161-30.130 45.960Q-30.532 45.758-30.773 45.406Q-31.014 45.054-31.014 44.610M-29.298 45.912Q-28.697 45.912-28.473 45.534Q-28.249 45.156-28.249 44.524Q-28.249 43.912-28.483 43.553Q-28.717 43.195-29.298 43.195Q-30.351 43.195-30.351 44.524Q-30.351 45.156-30.125 45.534Q-29.900 45.912-29.298 45.912M-25.347 47.450L-26.977 47.450L-26.977 47.170Q-26.748 47.170-26.600 47.135Q-26.451 47.101-26.451 46.961L-26.451 43.615Q-26.451 43.444-26.588 43.403Q-26.724 43.362-26.977 43.362L-26.977 43.082L-25.897 43.007L-25.897 43.413Q-25.675 43.212-25.388 43.109Q-25.101 43.007-24.793 43.007Q-24.366 43.007-24.002 43.220Q-23.638 43.434-23.424 43.798Q-23.211 44.162-23.211 44.582Q-23.211 45.027-23.450 45.391Q-23.689 45.755-24.082 45.958Q-24.475 46.161-24.920 46.161Q-25.186 46.161-25.434 46.061Q-25.682 45.960-25.870 45.779L-25.870 46.961Q-25.870 47.098-25.721 47.134Q-25.573 47.170-25.347 47.170L-25.347 47.450M-25.870 43.762L-25.870 45.372Q-25.737 45.625-25.494 45.782Q-25.251 45.939-24.974 45.939Q-24.646 45.939-24.393 45.738Q-24.140 45.536-24.007 45.218Q-23.874 44.900-23.874 44.582Q-23.874 44.353-23.939 44.124Q-24.004 43.895-24.132 43.697Q-24.260 43.499-24.455 43.379Q-24.650 43.260-24.882 43.260Q-25.176 43.260-25.444 43.389Q-25.713 43.519-25.870 43.762\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(16.445 -93.845)\">\u003Cpath d=\"M-14.704 45.286L-19.537 45.286Q-19.605 45.276-19.651 45.230Q-19.697 45.184-19.697 45.112Q-19.697 45.047-19.651 45.001Q-19.605 44.955-19.537 44.945L-14.704 44.945Q-14.635 44.955-14.589 45.001Q-14.543 45.047-14.543 45.112Q-14.543 45.184-14.589 45.230Q-14.635 45.276-14.704 45.286M-14.704 43.748L-19.537 43.748Q-19.605 43.738-19.651 43.692Q-19.697 43.646-19.697 43.574Q-19.697 43.430-19.537 43.406L-14.704 43.406Q-14.543 43.430-14.543 43.574Q-14.543 43.646-14.589 43.692Q-14.635 43.738-14.704 43.748\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(16.445 -93.845)\">\u003Cpath d=\"M-9.356 46.093L-10.990 46.093L-10.990 45.813Q-10.761 45.813-10.612 45.779Q-10.463 45.744-10.463 45.604L-10.463 43.755Q-10.463 43.485-10.571 43.424Q-10.679 43.362-10.990 43.362L-10.990 43.082L-9.930 43.007L-9.930 43.656Q-9.759 43.348-9.455 43.177Q-9.151 43.007-8.806 43.007Q-8.300 43.007-8.016 43.230Q-7.732 43.454-7.732 43.950L-7.732 45.604Q-7.732 45.741-7.584 45.777Q-7.435 45.813-7.209 45.813L-7.209 46.093L-8.840 46.093L-8.840 45.813Q-8.611 45.813-8.462 45.779Q-8.313 45.744-8.313 45.604L-8.313 43.964Q-8.313 43.629-8.433 43.429Q-8.553 43.229-8.867 43.229Q-9.137 43.229-9.371 43.365Q-9.605 43.502-9.744 43.736Q-9.882 43.970-9.882 44.244L-9.882 45.604Q-9.882 45.741-9.732 45.777Q-9.581 45.813-9.356 45.813L-9.356 46.093M-6.663 44.558Q-6.663 44.237-6.538 43.948Q-6.413 43.659-6.187 43.436Q-5.962 43.212-5.666 43.092Q-5.371 42.972-5.053 42.972Q-4.725 42.972-4.463 43.072Q-4.202 43.171-4.026 43.353Q-3.850 43.536-3.756 43.794Q-3.662 44.052-3.662 44.384Q-3.662 44.476-3.744 44.497L-5.999 44.497L-5.999 44.558Q-5.999 45.146-5.716 45.529Q-5.432 45.912-4.865 45.912Q-4.543 45.912-4.275 45.719Q-4.007 45.526-3.918 45.211Q-3.911 45.170-3.836 45.156L-3.744 45.156Q-3.662 45.180-3.662 45.252Q-3.662 45.259-3.668 45.286Q-3.781 45.683-4.152 45.922Q-4.523 46.161-4.947 46.161Q-5.384 46.161-5.784 45.953Q-6.184 45.744-6.423 45.377Q-6.663 45.010-6.663 44.558M-5.993 44.288L-4.178 44.288Q-4.178 44.011-4.275 43.759Q-4.373 43.506-4.571 43.350Q-4.769 43.195-5.053 43.195Q-5.330 43.195-5.543 43.353Q-5.757 43.512-5.875 43.767Q-5.993 44.022-5.993 44.288M-1.891 46.093L-3.214 46.093L-3.214 45.813Q-2.653 45.813-2.274 45.413L-1.560 44.616L-2.472 43.567Q-2.609 43.420-2.758 43.388Q-2.906 43.355-3.173 43.355L-3.173 43.075L-1.672 43.075L-1.672 43.355Q-1.864 43.355-1.864 43.489Q-1.864 43.519-1.833 43.567L-1.238 44.251L-0.797 43.755Q-0.685 43.625-0.685 43.509Q-0.685 43.447-0.722 43.401Q-0.760 43.355-0.818 43.355L-0.818 43.075L0.498 43.075L0.498 43.355Q-0.062 43.355-0.442 43.755L-1.064 44.456L-0.069 45.604Q0.030 45.703 0.131 45.748Q0.231 45.792 0.343 45.802Q0.454 45.813 0.631 45.813L0.631 46.093L-0.862 46.093L-0.862 45.813Q-0.797 45.813-0.737 45.779Q-0.678 45.744-0.678 45.679Q-0.678 45.632-0.708 45.604L-1.385 44.818L-1.918 45.413Q-2.031 45.543-2.031 45.659Q-2.031 45.724-1.990 45.768Q-1.949 45.813-1.891 45.813L-1.891 46.093M1.653 45.252L1.653 43.355L1.014 43.355L1.014 43.133Q1.332 43.133 1.549 42.923Q1.766 42.713 1.867 42.403Q1.968 42.094 1.968 41.786L2.234 41.786L2.234 43.075L3.311 43.075L3.311 43.355L2.234 43.355L2.234 45.239Q2.234 45.515 2.339 45.714Q2.443 45.912 2.703 45.912Q2.860 45.912 2.966 45.808Q3.072 45.703 3.121 45.550Q3.171 45.396 3.171 45.239L3.171 44.825L3.438 44.825L3.438 45.252Q3.438 45.478 3.338 45.688Q3.239 45.898 3.055 46.030Q2.870 46.161 2.641 46.161Q2.204 46.161 1.929 45.924Q1.653 45.686 1.653 45.252\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(16.445 -93.845)\">\u003Cpath d=\"M6.914 44.610Q6.914 44.268 7.049 43.969Q7.184 43.670 7.424 43.446Q7.663 43.222 7.981 43.097Q8.299 42.972 8.630 42.972Q9.075 42.972 9.474 43.188Q9.874 43.403 10.109 43.781Q10.343 44.158 10.343 44.610Q10.343 44.951 10.201 45.235Q10.059 45.519 9.815 45.726Q9.570 45.932 9.261 46.047Q8.952 46.161 8.630 46.161Q8.200 46.161 7.798 45.960Q7.396 45.758 7.155 45.406Q6.914 45.054 6.914 44.610M8.630 45.912Q9.232 45.912 9.456 45.534Q9.680 45.156 9.680 44.524Q9.680 43.912 9.445 43.553Q9.211 43.195 8.630 43.195Q7.578 43.195 7.578 44.524Q7.578 45.156 7.803 45.534Q8.029 45.912 8.630 45.912M11.512 45.259L11.512 43.755Q11.512 43.485 11.404 43.424Q11.296 43.362 10.985 43.362L10.985 43.082L12.093 43.007L12.093 45.239L12.093 45.259Q12.093 45.539 12.144 45.683Q12.195 45.826 12.337 45.883Q12.479 45.939 12.766 45.939Q13.019 45.939 13.224 45.799Q13.429 45.659 13.545 45.433Q13.662 45.208 13.662 44.958L13.662 43.755Q13.662 43.485 13.554 43.424Q13.446 43.362 13.135 43.362L13.135 43.082L14.243 43.007L14.243 45.420Q14.243 45.611 14.296 45.693Q14.349 45.775 14.449 45.794Q14.550 45.813 14.766 45.813L14.766 46.093L13.689 46.161L13.689 45.597Q13.579 45.779 13.434 45.902Q13.289 46.025 13.103 46.093Q12.916 46.161 12.715 46.161Q11.512 46.161 11.512 45.259M15.880 45.252L15.880 43.355L15.241 43.355L15.241 43.133Q15.558 43.133 15.776 42.923Q15.993 42.713 16.093 42.403Q16.194 42.094 16.194 41.786L16.461 41.786L16.461 43.075L17.537 43.075L17.537 43.355L16.461 43.355L16.461 45.239Q16.461 45.515 16.565 45.714Q16.669 45.912 16.929 45.912Q17.086 45.912 17.192 45.808Q17.298 45.703 17.348 45.550Q17.397 45.396 17.397 45.239L17.397 44.825L17.664 44.825L17.664 45.252Q17.664 45.478 17.565 45.688Q17.466 45.898 17.281 46.030Q17.097 46.161 16.868 46.161Q16.430 46.161 16.155 45.924Q15.880 45.686 15.880 45.252\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-23.027-30.33c0 45.545 19.897 96.34 65.441 96.34 40.712 0 23.411-58.829 36.284-94.196\"\u002F>\u003Cpath d=\"m79.555-30.54-2.495 2.906 1.672-.646.866 1.57Z\" style=\"stroke-width:.399992\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-soft-accent)\">\u003Cpath fill=\"none\" d=\"M-23.027-1.876c0 38.535 32.597 67.886 71.132 67.886 33.802 0 42.85-33.122 58.213-59.732\"\u002F>\u003Cpath d=\"m107.571 4.108-2.962 2.428 1.76-.345.58 1.696Z\" style=\"stroke-width:.399992\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-soft-accent)\">\u003Cpath fill=\"none\" d=\"M-23.027 26.576c0 27.983 31.768 39.434 59.75 39.434 27.309 0 31.3-35.088 31.3-59.32\"\u002F>\u003Cpath d=\"m68.022 4.184-1.35 3.584 1.35-1.178 1.35 1.178Z\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-soft-accent)\">\u003Cpath fill=\"none\" d=\"M-23.027 55.029c0 21.586 32.475 10.981 54.06 10.981 18.914 0 36.99-12.184 36.99-28.023\"\u002F>\u003Cpath d=\"m68.022 35.482-1.35 3.584 1.35-1.179 1.35 1.18Z\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M171.875 14.795h19.917V-2.276h-19.917Z\"\u002F>\u003Cg transform=\"translate(212.255 -37.578)\">\u003Cpath d=\"M-31.082 46.093L-33.612 46.093L-33.612 45.813Q-32.644 45.813-32.644 45.604L-32.644 41.985Q-33.037 42.173-33.659 42.173L-33.659 41.892Q-33.242 41.892-32.878 41.791Q-32.514 41.691-32.258 41.445L-32.132 41.445Q-32.067 41.462-32.050 41.530L-32.050 45.604Q-32.050 45.813-31.082 45.813L-31.082 46.093M-28.109 44.945L-30.153 44.945L-30.153 44.664L-27.822 41.492Q-27.787 41.445-27.722 41.445L-27.586 41.445Q-27.541 41.445-27.514 41.472Q-27.487 41.499-27.487 41.544L-27.487 44.664L-26.724 44.664L-26.724 44.945L-27.487 44.945L-27.487 45.604Q-27.487 45.813-26.731 45.813L-26.731 46.093L-28.864 46.093L-28.864 45.813Q-28.109 45.813-28.109 45.604L-28.109 44.945M-28.061 42.220L-29.852 44.664L-28.061 44.664\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(197.171 -60.377)\">\u003Cpath d=\"M-34.135 44.610Q-34.135 44.268-34 43.969Q-33.865 43.670-33.625 43.446Q-33.386 43.222-33.068 43.097Q-32.750 42.972-32.419 42.972Q-31.974 42.972-31.575 43.188Q-31.175 43.403-30.940 43.781Q-30.706 44.158-30.706 44.610Q-30.706 44.951-30.848 45.235Q-30.990 45.519-31.234 45.726Q-31.479 45.932-31.788 46.047Q-32.097 46.161-32.419 46.161Q-32.849 46.161-33.251 45.960Q-33.653 45.758-33.894 45.406Q-34.135 45.054-34.135 44.610M-32.419 45.912Q-31.817 45.912-31.593 45.534Q-31.369 45.156-31.369 44.524Q-31.369 43.912-31.604 43.553Q-31.838 43.195-32.419 43.195Q-33.471 43.195-33.471 44.524Q-33.471 45.156-33.246 45.534Q-33.020 45.912-32.419 45.912M-29.537 45.259L-29.537 43.755Q-29.537 43.485-29.645 43.424Q-29.753 43.362-30.064 43.362L-30.064 43.082L-28.956 43.007L-28.956 45.239L-28.956 45.259Q-28.956 45.539-28.905 45.683Q-28.854 45.826-28.712 45.883Q-28.570 45.939-28.283 45.939Q-28.030 45.939-27.825 45.799Q-27.620 45.659-27.504 45.433Q-27.387 45.208-27.387 44.958L-27.387 43.755Q-27.387 43.485-27.495 43.424Q-27.603 43.362-27.914 43.362L-27.914 43.082L-26.806 43.007L-26.806 45.420Q-26.806 45.611-26.753 45.693Q-26.700 45.775-26.600 45.794Q-26.499 45.813-26.283 45.813L-26.283 46.093L-27.360 46.161L-27.360 45.597Q-27.470 45.779-27.615 45.902Q-27.760 46.025-27.946 46.093Q-28.133 46.161-28.334 46.161Q-29.537 46.161-29.537 45.259M-25.169 45.252L-25.169 43.355L-25.808 43.355L-25.808 43.133Q-25.491 43.133-25.273 42.923Q-25.056 42.713-24.956 42.403Q-24.855 42.094-24.855 41.786L-24.588 41.786L-24.588 43.075L-23.512 43.075L-23.512 43.355L-24.588 43.355L-24.588 45.239Q-24.588 45.515-24.484 45.714Q-24.380 45.912-24.120 45.912Q-23.963 45.912-23.857 45.808Q-23.751 45.703-23.701 45.550Q-23.652 45.396-23.652 45.239L-23.652 44.825L-23.385 44.825L-23.385 45.252Q-23.385 45.478-23.484 45.688Q-23.583 45.898-23.768 46.030Q-23.952 46.161-24.181 46.161Q-24.619 46.161-24.894 45.924Q-25.169 45.686-25.169 45.252M-20.931 47.450L-22.561 47.450L-22.561 47.170Q-22.332 47.170-22.184 47.135Q-22.035 47.101-22.035 46.961L-22.035 43.615Q-22.035 43.444-22.172 43.403Q-22.308 43.362-22.561 43.362L-22.561 43.082L-21.481 43.007L-21.481 43.413Q-21.259 43.212-20.972 43.109Q-20.685 43.007-20.377 43.007Q-19.950 43.007-19.586 43.220Q-19.222 43.434-19.008 43.798Q-18.795 44.162-18.795 44.582Q-18.795 45.027-19.034 45.391Q-19.273 45.755-19.666 45.958Q-20.059 46.161-20.504 46.161Q-20.770 46.161-21.018 46.061Q-21.266 45.960-21.454 45.779L-21.454 46.961Q-21.454 47.098-21.305 47.134Q-21.157 47.170-20.931 47.170L-20.931 47.450M-21.454 43.762L-21.454 45.372Q-21.321 45.625-21.078 45.782Q-20.835 45.939-20.558 45.939Q-20.230 45.939-19.977 45.738Q-19.724 45.536-19.591 45.218Q-19.458 44.900-19.458 44.582Q-19.458 44.353-19.523 44.124Q-19.588 43.895-19.716 43.697Q-19.844 43.499-20.039 43.379Q-20.234 43.260-20.466 43.260Q-20.760 43.260-21.028 43.389Q-21.297 43.519-21.454 43.762M-17.585 45.259L-17.585 43.755Q-17.585 43.485-17.692 43.424Q-17.800 43.362-18.111 43.362L-18.111 43.082L-17.004 43.007L-17.004 45.239L-17.004 45.259Q-17.004 45.539-16.952 45.683Q-16.901 45.826-16.759 45.883Q-16.617 45.939-16.330 45.939Q-16.077 45.939-15.872 45.799Q-15.667 45.659-15.551 45.433Q-15.435 45.208-15.435 44.958L-15.435 43.755Q-15.435 43.485-15.543 43.424Q-15.650 43.362-15.961 43.362L-15.961 43.082L-14.854 43.007L-14.854 45.420Q-14.854 45.611-14.801 45.693Q-14.748 45.775-14.647 45.794Q-14.546 45.813-14.331 45.813L-14.331 46.093L-15.408 46.161L-15.408 45.597Q-15.517 45.779-15.662 45.902Q-15.807 46.025-15.994 46.093Q-16.180 46.161-16.382 46.161Q-17.585 46.161-17.585 45.259M-13.217 45.252L-13.217 43.355L-13.856 43.355L-13.856 43.133Q-13.538 43.133-13.321 42.923Q-13.104 42.713-13.003 42.403Q-12.902 42.094-12.902 41.786L-12.636 41.786L-12.636 43.075L-11.559 43.075L-11.559 43.355L-12.636 43.355L-12.636 45.239Q-12.636 45.515-12.531 45.714Q-12.427 45.912-12.167 45.912Q-12.010 45.912-11.904 45.808Q-11.798 45.703-11.749 45.550Q-11.699 45.396-11.699 45.239L-11.699 44.825L-11.432 44.825L-11.432 45.252Q-11.432 45.478-11.532 45.688Q-11.631 45.898-11.815 46.030Q-12 46.161-12.229 46.161Q-12.666 46.161-12.941 45.924Q-13.217 45.686-13.217 45.252\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(197.171 -60.377)\">\u003Cpath d=\"M-6.163 46.093L-7.899 46.093L-7.899 45.813Q-7.670 45.813-7.521 45.779Q-7.373 45.744-7.373 45.604L-7.373 43.755Q-7.373 43.485-7.480 43.424Q-7.588 43.362-7.899 43.362L-7.899 43.082L-6.870 43.007L-6.870 43.714Q-6.740 43.406-6.498 43.207Q-6.255 43.007-5.937 43.007Q-5.718 43.007-5.547 43.131Q-5.376 43.256-5.376 43.468Q-5.376 43.605-5.476 43.704Q-5.575 43.803-5.708 43.803Q-5.845 43.803-5.944 43.704Q-6.043 43.605-6.043 43.468Q-6.043 43.328-5.944 43.229Q-6.234 43.229-6.434 43.425Q-6.634 43.622-6.727 43.916Q-6.819 44.210-6.819 44.490L-6.819 45.604Q-6.819 45.813-6.163 45.813L-6.163 46.093M-4.218 45.259L-4.218 43.755Q-4.218 43.485-4.325 43.424Q-4.433 43.362-4.744 43.362L-4.744 43.082L-3.637 43.007L-3.637 45.239L-3.637 45.259Q-3.637 45.539-3.585 45.683Q-3.534 45.826-3.392 45.883Q-3.250 45.939-2.963 45.939Q-2.710 45.939-2.505 45.799Q-2.300 45.659-2.184 45.433Q-2.068 45.208-2.068 44.958L-2.068 43.755Q-2.068 43.485-2.175 43.424Q-2.283 43.362-2.594 43.362L-2.594 43.082L-1.487 43.007L-1.487 45.420Q-1.487 45.611-1.434 45.693Q-1.381 45.775-1.280 45.794Q-1.179 45.813-0.964 45.813L-0.964 46.093L-2.040 46.161L-2.040 45.597Q-2.150 45.779-2.295 45.902Q-2.440 46.025-2.627 46.093Q-2.813 46.161-3.015 46.161Q-4.218 46.161-4.218 45.259M1.306 46.093L-0.328 46.093L-0.328 45.813Q-0.099 45.813 0.050 45.779Q0.198 45.744 0.198 45.604L0.198 43.755Q0.198 43.485 0.091 43.424Q-0.017 43.362-0.328 43.362L-0.328 43.082L0.731 43.007L0.731 43.656Q0.902 43.348 1.207 43.177Q1.511 43.007 1.856 43.007Q2.362 43.007 2.646 43.230Q2.929 43.454 2.929 43.950L2.929 45.604Q2.929 45.741 3.078 45.777Q3.227 45.813 3.452 45.813L3.452 46.093L1.822 46.093L1.822 45.813Q2.051 45.813 2.200 45.779Q2.348 45.744 2.348 45.604L2.348 43.964Q2.348 43.629 2.229 43.429Q2.109 43.229 1.794 43.229Q1.524 43.229 1.290 43.365Q1.056 43.502 0.918 43.736Q0.779 43.970 0.779 44.244L0.779 45.604Q0.779 45.741 0.930 45.777Q1.080 45.813 1.306 45.813\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M99.52-39.265c35.255 0 70.255 3.46 80.902 32.712\"\u002F>\u003Cpath d=\"m181.443-3.747.056-4.456-1.009 1.838-1.954-.76Z\" style=\"stroke-width:.799984\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(171.404 -95.066)\">\u003Cpath d=\"M-34.135 44.558Q-34.135 44.237-34.010 43.948Q-33.885 43.659-33.659 43.436Q-33.434 43.212-33.138 43.092Q-32.843 42.972-32.525 42.972Q-32.197 42.972-31.935 43.072Q-31.674 43.171-31.498 43.353Q-31.322 43.536-31.228 43.794Q-31.134 44.052-31.134 44.384Q-31.134 44.476-31.216 44.497L-33.471 44.497L-33.471 44.558Q-33.471 45.146-33.188 45.529Q-32.904 45.912-32.337 45.912Q-32.015 45.912-31.747 45.719Q-31.479 45.526-31.390 45.211Q-31.383 45.170-31.308 45.156L-31.216 45.156Q-31.134 45.180-31.134 45.252Q-31.134 45.259-31.140 45.286Q-31.253 45.683-31.624 45.922Q-31.995 46.161-32.419 46.161Q-32.856 46.161-33.256 45.953Q-33.656 45.744-33.895 45.377Q-34.135 45.010-34.135 44.558M-33.465 44.288L-31.650 44.288Q-31.650 44.011-31.747 43.759Q-31.845 43.506-32.043 43.350Q-32.241 43.195-32.525 43.195Q-32.802 43.195-33.015 43.353Q-33.229 43.512-33.347 43.767Q-33.465 44.022-33.465 44.288M-29.363 46.093L-30.686 46.093L-30.686 45.813Q-30.125 45.813-29.746 45.413L-29.032 44.616L-29.944 43.567Q-30.081 43.420-30.230 43.388Q-30.378 43.355-30.645 43.355L-30.645 43.075L-29.144 43.075L-29.144 43.355Q-29.336 43.355-29.336 43.489Q-29.336 43.519-29.305 43.567L-28.710 44.251L-28.269 43.755Q-28.157 43.625-28.157 43.509Q-28.157 43.447-28.194 43.401Q-28.232 43.355-28.290 43.355L-28.290 43.075L-26.974 43.075L-26.974 43.355Q-27.534 43.355-27.914 43.755L-28.536 44.456L-27.541 45.604Q-27.442 45.703-27.341 45.748Q-27.241 45.792-27.129 45.802Q-27.018 45.813-26.841 45.813L-26.841 46.093L-28.334 46.093L-28.334 45.813Q-28.269 45.813-28.210 45.779Q-28.150 45.744-28.150 45.679Q-28.150 45.632-28.180 45.604L-28.857 44.818L-29.390 45.413Q-29.503 45.543-29.503 45.659Q-29.503 45.724-29.462 45.768Q-29.421 45.813-29.363 45.813L-29.363 46.093M-25.819 45.252L-25.819 43.355L-26.458 43.355L-26.458 43.133Q-26.140 43.133-25.923 42.923Q-25.706 42.713-25.605 42.403Q-25.504 42.094-25.504 41.786L-25.238 41.786L-25.238 43.075L-24.161 43.075L-24.161 43.355L-25.238 43.355L-25.238 45.239Q-25.238 45.515-25.133 45.714Q-25.029 45.912-24.769 45.912Q-24.612 45.912-24.506 45.808Q-24.400 45.703-24.351 45.550Q-24.301 45.396-24.301 45.239L-24.301 44.825L-24.034 44.825L-24.034 45.252Q-24.034 45.478-24.134 45.688Q-24.233 45.898-24.417 46.030Q-24.602 46.161-24.831 46.161Q-25.268 46.161-25.543 45.924Q-25.819 45.686-25.819 45.252M-21.474 46.093L-23.211 46.093L-23.211 45.813Q-22.982 45.813-22.833 45.779Q-22.684 45.744-22.684 45.604L-22.684 43.755Q-22.684 43.485-22.792 43.424Q-22.900 43.362-23.211 43.362L-23.211 43.082L-22.182 43.007L-22.182 43.714Q-22.052 43.406-21.809 43.207Q-21.567 43.007-21.249 43.007Q-21.030 43.007-20.859 43.131Q-20.688 43.256-20.688 43.468Q-20.688 43.605-20.787 43.704Q-20.887 43.803-21.020 43.803Q-21.157 43.803-21.256 43.704Q-21.355 43.605-21.355 43.468Q-21.355 43.328-21.256 43.229Q-21.546 43.229-21.746 43.425Q-21.946 43.622-22.038 43.916Q-22.131 44.210-22.131 44.490L-22.131 45.604Q-22.131 45.813-21.474 45.813L-21.474 46.093M-20.046 45.365Q-20.046 45.033-19.822 44.806Q-19.598 44.579-19.254 44.451Q-18.911 44.322-18.538 44.270Q-18.166 44.217-17.862 44.217L-17.862 43.964Q-17.862 43.759-17.969 43.579Q-18.077 43.400-18.258 43.297Q-18.439 43.195-18.648 43.195Q-19.054 43.195-19.290 43.287Q-19.201 43.324-19.155 43.408Q-19.109 43.492-19.109 43.594Q-19.109 43.690-19.155 43.769Q-19.201 43.847-19.282 43.892Q-19.362 43.936-19.451 43.936Q-19.601 43.936-19.702 43.839Q-19.803 43.741-19.803 43.594Q-19.803 42.972-18.648 42.972Q-18.436 42.972-18.186 43.036Q-17.937 43.099-17.735 43.218Q-17.533 43.338-17.407 43.523Q-17.281 43.707-17.281 43.950L-17.281 45.526Q-17.281 45.642-17.219 45.738Q-17.158 45.833-17.045 45.833Q-16.935 45.833-16.870 45.739Q-16.805 45.645-16.805 45.526L-16.805 45.078L-16.539 45.078L-16.539 45.526Q-16.539 45.796-16.766 45.961Q-16.993 46.127-17.274 46.127Q-17.482 46.127-17.619 45.973Q-17.756 45.820-17.780 45.604Q-17.927 45.871-18.209 46.016Q-18.491 46.161-18.815 46.161Q-19.092 46.161-19.376 46.086Q-19.659 46.011-19.853 45.832Q-20.046 45.652-20.046 45.365M-19.430 45.365Q-19.430 45.539-19.330 45.669Q-19.229 45.799-19.073 45.869Q-18.918 45.939-18.754 45.939Q-18.535 45.939-18.326 45.842Q-18.118 45.744-17.990 45.563Q-17.862 45.382-17.862 45.156L-17.862 44.428Q-18.186 44.428-18.552 44.519Q-18.918 44.610-19.174 44.822Q-19.430 45.033-19.430 45.365M-16.122 44.582Q-16.122 44.254-15.987 43.953Q-15.852 43.653-15.616 43.432Q-15.380 43.212-15.076 43.092Q-14.772 42.972-14.447 42.972Q-13.941 42.972-13.593 43.075Q-13.244 43.177-13.244 43.553Q-13.244 43.700-13.341 43.801Q-13.439 43.902-13.586 43.902Q-13.740 43.902-13.839 43.803Q-13.938 43.704-13.938 43.553Q-13.938 43.365-13.798 43.273Q-13.999 43.222-14.440 43.222Q-14.796 43.222-15.025 43.418Q-15.254 43.615-15.355 43.924Q-15.455 44.234-15.455 44.582Q-15.455 44.931-15.329 45.237Q-15.202 45.543-14.948 45.727Q-14.693 45.912-14.338 45.912Q-14.116 45.912-13.931 45.828Q-13.746 45.744-13.611 45.589Q-13.476 45.433-13.418 45.225Q-13.405 45.170-13.350 45.170L-13.237 45.170Q-13.206 45.170-13.184 45.194Q-13.162 45.218-13.162 45.252L-13.162 45.273Q-13.247 45.560-13.435 45.758Q-13.623 45.956-13.888 46.059Q-14.153 46.161-14.447 46.161Q-14.878 46.161-15.266 45.955Q-15.654 45.748-15.888 45.385Q-16.122 45.023-16.122 44.582M-12.048 45.252L-12.048 43.355L-12.687 43.355L-12.687 43.133Q-12.369 43.133-12.152 42.923Q-11.935 42.713-11.834 42.403Q-11.733 42.094-11.733 41.786L-11.467 41.786L-11.467 43.075L-10.390 43.075L-10.390 43.355L-11.467 43.355L-11.467 45.239Q-11.467 45.515-11.362 45.714Q-11.258 45.912-10.998 45.912Q-10.841 45.912-10.735 45.808Q-10.629 45.703-10.580 45.550Q-10.530 45.396-10.530 45.239L-10.530 44.825L-10.263 44.825L-10.263 45.252Q-10.263 45.478-10.363 45.688Q-10.462 45.898-10.646 46.030Q-10.831 46.161-11.060 46.161Q-11.497 46.161-11.773 45.924Q-12.048 45.686-12.048 45.252\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(171.404 -95.066)\">\u003Cpath d=\"M-5.044 46.093L-6.678 46.093L-6.678 45.813Q-6.449 45.813-6.300 45.779Q-6.151 45.744-6.151 45.604L-6.151 43.755Q-6.151 43.485-6.259 43.424Q-6.367 43.362-6.678 43.362L-6.678 43.082L-5.618 43.007L-5.618 43.656Q-5.447 43.348-5.143 43.177Q-4.839 43.007-4.494 43.007Q-4.094 43.007-3.817 43.147Q-3.540 43.287-3.455 43.635Q-3.287 43.342-2.988 43.174Q-2.689 43.007-2.344 43.007Q-1.838 43.007-1.554 43.230Q-1.270 43.454-1.270 43.950L-1.270 45.604Q-1.270 45.741-1.122 45.777Q-0.973 45.813-0.748 45.813L-0.748 46.093L-2.378 46.093L-2.378 45.813Q-2.152 45.813-2.002 45.777Q-1.852 45.741-1.852 45.604L-1.852 43.964Q-1.852 43.629-1.971 43.429Q-2.091 43.229-2.405 43.229Q-2.675 43.229-2.909 43.365Q-3.144 43.502-3.282 43.736Q-3.420 43.970-3.420 44.244L-3.420 45.604Q-3.420 45.741-3.272 45.777Q-3.123 45.813-2.897 45.813L-2.897 46.093L-4.528 46.093L-4.528 45.813Q-4.299 45.813-4.150 45.779Q-4.001 45.744-4.001 45.604L-4.001 43.964Q-4.001 43.629-4.121 43.429Q-4.241 43.229-4.555 43.229Q-4.825 43.229-5.059 43.365Q-5.293 43.502-5.432 43.736Q-5.570 43.970-5.570 44.244L-5.570 45.604Q-5.570 45.741-5.420 45.777Q-5.269 45.813-5.044 45.813L-5.044 46.093M1.457 46.093L-0.095 46.093L-0.095 45.813Q0.131 45.813 0.280 45.779Q0.428 45.744 0.428 45.604L0.428 43.755Q0.428 43.567 0.380 43.483Q0.333 43.400 0.235 43.381Q0.138 43.362-0.074 43.362L-0.074 43.082L0.982 43.007L0.982 45.604Q0.982 45.744 1.114 45.779Q1.245 45.813 1.457 45.813L1.457 46.093M0.186 41.786Q0.186 41.615 0.309 41.496Q0.432 41.376 0.603 41.376Q0.770 41.376 0.893 41.496Q1.016 41.615 1.016 41.786Q1.016 41.961 0.893 42.084Q0.770 42.207 0.603 42.207Q0.432 42.207 0.309 42.084Q0.186 41.961 0.186 41.786M3.785 46.093L2.151 46.093L2.151 45.813Q2.380 45.813 2.529 45.779Q2.677 45.744 2.677 45.604L2.677 43.755Q2.677 43.485 2.570 43.424Q2.462 43.362 2.151 43.362L2.151 43.082L3.210 43.007L3.210 43.656Q3.381 43.348 3.686 43.177Q3.990 43.007 4.335 43.007Q4.841 43.007 5.125 43.230Q5.408 43.454 5.408 43.950L5.408 45.604Q5.408 45.741 5.557 45.777Q5.706 45.813 5.931 45.813L5.931 46.093L4.301 46.093L4.301 45.813Q4.530 45.813 4.679 45.779Q4.827 45.744 4.827 45.604L4.827 43.964Q4.827 43.629 4.708 43.429Q4.588 43.229 4.273 43.229Q4.003 43.229 3.769 43.365Q3.535 43.502 3.397 43.736Q3.258 43.970 3.258 44.244L3.258 45.604Q3.258 45.741 3.409 45.777Q3.559 45.813 3.785 45.813L3.785 46.093M7.018 47.323Q7.018 47.289 7.045 47.262Q7.315 47.033 7.464 46.710Q7.613 46.387 7.613 46.031L7.613 45.994Q7.503 46.093 7.339 46.093Q7.158 46.093 7.039 45.973Q6.919 45.854 6.919 45.673Q6.919 45.498 7.039 45.379Q7.158 45.259 7.339 45.259Q7.596 45.259 7.715 45.498Q7.835 45.738 7.835 46.031Q7.835 46.431 7.666 46.802Q7.497 47.173 7.199 47.429Q7.168 47.450 7.141 47.450Q7.100 47.450 7.059 47.409Q7.018 47.368 7.018 47.323\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(171.404 -84.35)\">\u003Cpath d=\"M-33.567 45.252L-33.567 43.355L-34.206 43.355L-34.206 43.133Q-33.888 43.133-33.671 42.923Q-33.454 42.713-33.354 42.403Q-33.253 42.094-33.253 41.786L-32.986 41.786L-32.986 43.075L-31.909 43.075L-31.909 43.355L-32.986 43.355L-32.986 45.239Q-32.986 45.515-32.882 45.714Q-32.778 45.912-32.518 45.912Q-32.361 45.912-32.255 45.808Q-32.149 45.703-32.099 45.550Q-32.050 45.396-32.050 45.239L-32.050 44.825L-31.783 44.825L-31.783 45.252Q-31.783 45.478-31.882 45.688Q-31.981 45.898-32.166 46.030Q-32.350 46.161-32.579 46.161Q-33.017 46.161-33.292 45.924Q-33.567 45.686-33.567 45.252M-29.291 46.093L-30.925 46.093L-30.925 45.813Q-30.696 45.813-30.547 45.779Q-30.399 45.744-30.399 45.604L-30.399 41.985Q-30.399 41.715-30.506 41.653Q-30.614 41.592-30.925 41.592L-30.925 41.311L-29.845 41.236L-29.845 43.622Q-29.739 43.437-29.561 43.295Q-29.384 43.154-29.175 43.080Q-28.967 43.007-28.741 43.007Q-28.235 43.007-27.951 43.230Q-27.668 43.454-27.668 43.950L-27.668 45.604Q-27.668 45.741-27.519 45.777Q-27.370 45.813-27.145 45.813L-27.145 46.093L-28.775 46.093L-28.775 45.813Q-28.546 45.813-28.398 45.779Q-28.249 45.744-28.249 45.604L-28.249 43.964Q-28.249 43.629-28.368 43.429Q-28.488 43.229-28.803 43.229Q-29.073 43.229-29.307 43.365Q-29.541 43.502-29.679 43.736Q-29.818 43.970-29.818 44.244L-29.818 45.604Q-29.818 45.741-29.667 45.777Q-29.517 45.813-29.291 45.813L-29.291 46.093M-26.598 44.558Q-26.598 44.237-26.473 43.948Q-26.348 43.659-26.123 43.436Q-25.897 43.212-25.602 43.092Q-25.306 42.972-24.988 42.972Q-24.660 42.972-24.398 43.072Q-24.137 43.171-23.961 43.353Q-23.785 43.536-23.691 43.794Q-23.597 44.052-23.597 44.384Q-23.597 44.476-23.679 44.497L-25.935 44.497L-25.935 44.558Q-25.935 45.146-25.651 45.529Q-25.367 45.912-24.800 45.912Q-24.479 45.912-24.210 45.719Q-23.942 45.526-23.853 45.211Q-23.846 45.170-23.771 45.156L-23.679 45.156Q-23.597 45.180-23.597 45.252Q-23.597 45.259-23.604 45.286Q-23.717 45.683-24.087 45.922Q-24.458 46.161-24.882 46.161Q-25.320 46.161-25.720 45.953Q-26.119 45.744-26.359 45.377Q-26.598 45.010-26.598 44.558M-25.928 44.288L-24.113 44.288Q-24.113 44.011-24.210 43.759Q-24.308 43.506-24.506 43.350Q-24.704 43.195-24.988 43.195Q-25.265 43.195-25.479 43.353Q-25.692 43.512-25.810 43.767Q-25.928 44.022-25.928 44.288M-21.327 46.093L-22.961 46.093L-22.961 45.813Q-22.732 45.813-22.584 45.779Q-22.435 45.744-22.435 45.604L-22.435 43.755Q-22.435 43.485-22.543 43.424Q-22.650 43.362-22.961 43.362L-22.961 43.082L-21.902 43.007L-21.902 43.656Q-21.731 43.348-21.427 43.177Q-21.122 43.007-20.777 43.007Q-20.271 43.007-19.988 43.230Q-19.704 43.454-19.704 43.950L-19.704 45.604Q-19.704 45.741-19.555 45.777Q-19.407 45.813-19.181 45.813L-19.181 46.093L-20.811 46.093L-20.811 45.813Q-20.582 45.813-20.434 45.779Q-20.285 45.744-20.285 45.604L-20.285 43.964Q-20.285 43.629-20.405 43.429Q-20.524 43.229-20.839 43.229Q-21.109 43.229-21.343 43.365Q-21.577 43.502-21.715 43.736Q-21.854 43.970-21.854 44.244L-21.854 45.604Q-21.854 45.741-21.703 45.777Q-21.553 45.813-21.327 45.813\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(171.404 -84.35)\">\u003Cpath d=\"M-14.136 46.093L-15.872 46.093L-15.872 45.813Q-15.643 45.813-15.494 45.779Q-15.346 45.744-15.346 45.604L-15.346 43.755Q-15.346 43.485-15.453 43.424Q-15.561 43.362-15.872 43.362L-15.872 43.082L-14.843 43.007L-14.843 43.714Q-14.713 43.406-14.471 43.207Q-14.228 43.007-13.910 43.007Q-13.691 43.007-13.520 43.131Q-13.349 43.256-13.349 43.468Q-13.349 43.605-13.449 43.704Q-13.548 43.803-13.681 43.803Q-13.818 43.803-13.917 43.704Q-14.016 43.605-14.016 43.468Q-14.016 43.328-13.917 43.229Q-14.207 43.229-14.407 43.425Q-14.607 43.622-14.700 43.916Q-14.792 44.210-14.792 44.490L-14.792 45.604Q-14.792 45.813-14.136 45.813L-14.136 46.093M-12.806 44.558Q-12.806 44.237-12.681 43.948Q-12.556 43.659-12.331 43.436Q-12.105 43.212-11.810 43.092Q-11.514 42.972-11.196 42.972Q-10.868 42.972-10.606 43.072Q-10.345 43.171-10.169 43.353Q-9.993 43.536-9.899 43.794Q-9.805 44.052-9.805 44.384Q-9.805 44.476-9.887 44.497L-12.143 44.497L-12.143 44.558Q-12.143 45.146-11.859 45.529Q-11.575 45.912-11.008 45.912Q-10.687 45.912-10.419 45.719Q-10.150 45.526-10.061 45.211Q-10.054 45.170-9.979 45.156L-9.887 45.156Q-9.805 45.180-9.805 45.252Q-9.805 45.259-9.812 45.286Q-9.925 45.683-10.295 45.922Q-10.666 46.161-11.090 46.161Q-11.528 46.161-11.928 45.953Q-12.327 45.744-12.567 45.377Q-12.806 45.010-12.806 44.558M-12.136 44.288L-10.321 44.288Q-10.321 44.011-10.419 43.759Q-10.516 43.506-10.714 43.350Q-10.912 43.195-11.196 43.195Q-11.473 43.195-11.687 43.353Q-11.900 43.512-12.018 43.767Q-12.136 44.022-12.136 44.288M-7.549 46.093L-9.152 46.093L-9.152 45.813Q-8.927 45.813-8.778 45.779Q-8.629 45.744-8.629 45.604L-8.629 41.985Q-8.629 41.715-8.737 41.653Q-8.845 41.592-9.152 41.592L-9.152 41.311L-8.075 41.236L-8.075 45.604Q-8.075 45.741-7.925 45.777Q-7.775 45.813-7.549 45.813L-7.549 46.093M-6.995 44.610Q-6.995 44.268-6.860 43.969Q-6.725 43.670-6.486 43.446Q-6.247 43.222-5.929 43.097Q-5.611 42.972-5.280 42.972Q-4.835 42.972-4.435 43.188Q-4.035 43.403-3.801 43.781Q-3.567 44.158-3.567 44.610Q-3.567 44.951-3.709 45.235Q-3.851 45.519-4.095 45.726Q-4.340 45.932-4.649 46.047Q-4.958 46.161-5.280 46.161Q-5.710 46.161-6.112 45.960Q-6.513 45.758-6.754 45.406Q-6.995 45.054-6.995 44.610M-5.280 45.912Q-4.678 45.912-4.454 45.534Q-4.230 45.156-4.230 44.524Q-4.230 43.912-4.464 43.553Q-4.699 43.195-5.280 43.195Q-6.332 43.195-6.332 44.524Q-6.332 45.156-6.107 45.534Q-5.881 45.912-5.280 45.912M-2.914 45.365Q-2.914 45.033-2.690 44.806Q-2.467 44.579-2.123 44.451Q-1.780 44.322-1.407 44.270Q-1.034 44.217-0.730 44.217L-0.730 43.964Q-0.730 43.759-0.838 43.579Q-0.946 43.400-1.127 43.297Q-1.308 43.195-1.516 43.195Q-1.923 43.195-2.159 43.287Q-2.070 43.324-2.024 43.408Q-1.978 43.492-1.978 43.594Q-1.978 43.690-2.024 43.769Q-2.070 43.847-2.150 43.892Q-2.231 43.936-2.320 43.936Q-2.470 43.936-2.571 43.839Q-2.672 43.741-2.672 43.594Q-2.672 42.972-1.516 42.972Q-1.304 42.972-1.055 43.036Q-0.805 43.099-0.604 43.218Q-0.402 43.338-0.276 43.523Q-0.149 43.707-0.149 43.950L-0.149 45.526Q-0.149 45.642-0.088 45.738Q-0.026 45.833 0.087 45.833Q0.196 45.833 0.261 45.739Q0.326 45.645 0.326 45.526L0.326 45.078L0.592 45.078L0.592 45.526Q0.592 45.796 0.365 45.961Q0.138 46.127-0.142 46.127Q-0.351 46.127-0.488 45.973Q-0.624 45.820-0.648 45.604Q-0.795 45.871-1.077 46.016Q-1.359 46.161-1.684 46.161Q-1.961 46.161-2.244 46.086Q-2.528 46.011-2.721 45.832Q-2.914 45.652-2.914 45.365M-2.299 45.365Q-2.299 45.539-2.198 45.669Q-2.097 45.799-1.942 45.869Q-1.786 45.939-1.622 45.939Q-1.404 45.939-1.195 45.842Q-0.987 45.744-0.858 45.563Q-0.730 45.382-0.730 45.156L-0.730 44.428Q-1.055 44.428-1.421 44.519Q-1.786 44.610-2.043 44.822Q-2.299 45.033-2.299 45.365M1.009 44.582Q1.009 44.244 1.150 43.953Q1.290 43.663 1.534 43.449Q1.779 43.236 2.083 43.121Q2.387 43.007 2.712 43.007Q2.982 43.007 3.245 43.106Q3.508 43.205 3.699 43.383L3.699 41.985Q3.699 41.715 3.592 41.653Q3.484 41.592 3.173 41.592L3.173 41.311L4.250 41.236L4.250 45.420Q4.250 45.608 4.304 45.691Q4.359 45.775 4.460 45.794Q4.561 45.813 4.776 45.813L4.776 46.093L3.669 46.161L3.669 45.744Q3.252 46.161 2.626 46.161Q2.196 46.161 1.823 45.949Q1.450 45.738 1.230 45.377Q1.009 45.016 1.009 44.582M2.684 45.939Q2.893 45.939 3.079 45.867Q3.265 45.796 3.419 45.659Q3.573 45.522 3.669 45.344L3.669 43.735Q3.583 43.588 3.438 43.468Q3.293 43.348 3.123 43.289Q2.954 43.229 2.773 43.229Q2.213 43.229 1.944 43.618Q1.676 44.008 1.676 44.589Q1.676 45.160 1.910 45.550Q2.144 45.939 2.684 45.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">A \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6444em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">4\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>-way merge. The min-heap holds the head record of each of the four input runs; its root (\u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6444em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">14\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>) is the next output. After emitting it, the run it came from advances and the new head is sifted in.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:278.051px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 208.538 128.746\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M2.203-52.153h56.905V-72.07H2.203Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-12.897 -88.793)\">\u003Cpath d=\"M32.645 29.077Q32.187 29.077 31.869 28.862Q31.552 28.646 31.370 28.294Q31.189 27.942 31.112 27.522Q31.035 27.102 31.035 26.674Q31.035 26.090 31.288 25.534Q31.541 24.979 32.011 24.634Q32.481 24.289 33.079 24.289Q33.489 24.289 33.773 24.487Q34.057 24.685 34.057 25.088Q34.057 25.184 34.011 25.263Q33.965 25.341 33.884 25.386Q33.804 25.430 33.715 25.430Q33.568 25.430 33.467 25.333Q33.366 25.235 33.366 25.088Q33.366 24.958 33.457 24.851Q33.548 24.743 33.681 24.743Q33.493 24.521 33.079 24.521Q32.765 24.521 32.491 24.685Q32.218 24.849 32.051 25.123Q31.863 25.413 31.798 25.779Q31.733 26.145 31.733 26.599Q31.883 26.305 32.148 26.127Q32.413 25.950 32.727 25.950Q33.158 25.950 33.507 26.156Q33.855 26.363 34.055 26.719Q34.255 27.074 34.255 27.501Q34.255 27.946 34.038 28.306Q33.821 28.667 33.448 28.872Q33.076 29.077 32.645 29.077M32.645 28.824Q33.021 28.824 33.225 28.641Q33.428 28.458 33.491 28.175Q33.554 27.891 33.554 27.501Q33.554 27.115 33.500 26.835Q33.445 26.555 33.250 26.363Q33.055 26.172 32.686 26.172Q32.396 26.172 32.184 26.348Q31.972 26.524 31.864 26.797Q31.757 27.071 31.757 27.354L31.757 27.495L31.757 27.536Q31.757 28.041 31.968 28.433Q32.180 28.824 32.645 28.824M36.955 27.789L34.911 27.789L34.911 27.508L37.242 24.336Q37.277 24.289 37.342 24.289L37.478 24.289Q37.523 24.289 37.550 24.316Q37.577 24.343 37.577 24.388L37.577 27.508L38.340 27.508L38.340 27.789L37.577 27.789L37.577 28.448Q37.577 28.657 38.333 28.657L38.333 28.937L36.200 28.937L36.200 28.657Q36.955 28.657 36.955 28.448L36.955 27.789M37.003 25.064L35.212 27.508L37.003 27.508\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-12.897 -88.793)\">\u003Cpath d=\"M43.386 28.937L41.650 28.937L41.650 28.657Q41.879 28.657 42.028 28.623Q42.176 28.588 42.176 28.448L42.176 26.599Q42.176 26.329 42.069 26.268Q41.961 26.206 41.650 26.206L41.650 25.926L42.679 25.851L42.679 26.558Q42.809 26.250 43.051 26.051Q43.294 25.851 43.612 25.851Q43.831 25.851 44.002 25.975Q44.173 26.100 44.173 26.312Q44.173 26.449 44.073 26.548Q43.974 26.647 43.841 26.647Q43.704 26.647 43.605 26.548Q43.506 26.449 43.506 26.312Q43.506 26.172 43.605 26.073Q43.315 26.073 43.115 26.269Q42.915 26.466 42.822 26.760Q42.730 27.054 42.730 27.334L42.730 28.448Q42.730 28.657 43.386 28.657L43.386 28.937M45.331 28.103L45.331 26.599Q45.331 26.329 45.224 26.268Q45.116 26.206 44.805 26.206L44.805 25.926L45.912 25.851L45.912 28.083L45.912 28.103Q45.912 28.383 45.964 28.527Q46.015 28.670 46.157 28.727Q46.299 28.783 46.586 28.783Q46.839 28.783 47.044 28.643Q47.249 28.503 47.365 28.277Q47.481 28.052 47.481 27.802L47.481 26.599Q47.481 26.329 47.374 26.268Q47.266 26.206 46.955 26.206L46.955 25.926L48.062 25.851L48.062 28.264Q48.062 28.455 48.115 28.537Q48.168 28.619 48.269 28.638Q48.370 28.657 48.585 28.657L48.585 28.937L47.509 29.005L47.509 28.441Q47.399 28.623 47.254 28.746Q47.109 28.869 46.922 28.937Q46.736 29.005 46.534 29.005Q45.331 29.005 45.331 28.103M50.855 28.937L49.221 28.937L49.221 28.657Q49.450 28.657 49.599 28.623Q49.747 28.588 49.747 28.448L49.747 26.599Q49.747 26.329 49.640 26.268Q49.532 26.206 49.221 26.206L49.221 25.926L50.280 25.851L50.280 26.500Q50.451 26.192 50.756 26.021Q51.060 25.851 51.405 25.851Q51.911 25.851 52.195 26.074Q52.478 26.298 52.478 26.794L52.478 28.448Q52.478 28.585 52.627 28.621Q52.776 28.657 53.001 28.657L53.001 28.937L51.371 28.937L51.371 28.657Q51.600 28.657 51.749 28.623Q51.897 28.588 51.897 28.448L51.897 26.808Q51.897 26.473 51.778 26.273Q51.658 26.073 51.343 26.073Q51.073 26.073 50.839 26.209Q50.605 26.346 50.467 26.580Q50.328 26.814 50.328 27.088L50.328 28.448Q50.328 28.585 50.479 28.621Q50.629 28.657 50.855 28.657L50.855 28.937M53.589 28.930L53.589 27.867Q53.589 27.843 53.616 27.816Q53.644 27.789 53.668 27.789L53.777 27.789Q53.842 27.789 53.856 27.847Q53.951 28.281 54.197 28.532Q54.444 28.783 54.857 28.783Q55.199 28.783 55.452 28.650Q55.705 28.517 55.705 28.209Q55.705 28.052 55.611 27.937Q55.517 27.823 55.378 27.754Q55.240 27.686 55.072 27.648L54.491 27.549Q54.136 27.481 53.863 27.260Q53.589 27.040 53.589 26.698Q53.589 26.449 53.700 26.274Q53.811 26.100 53.998 26.001Q54.184 25.902 54.399 25.859Q54.614 25.816 54.857 25.816Q55.271 25.816 55.551 25.998L55.766 25.823Q55.777 25.820 55.783 25.818Q55.790 25.816 55.801 25.816L55.852 25.816Q55.879 25.816 55.903 25.840Q55.927 25.864 55.927 25.892L55.927 26.739Q55.927 26.760 55.903 26.787Q55.879 26.814 55.852 26.814L55.739 26.814Q55.712 26.814 55.686 26.789Q55.660 26.763 55.660 26.739Q55.660 26.503 55.554 26.339Q55.448 26.175 55.266 26.093Q55.083 26.011 54.850 26.011Q54.522 26.011 54.266 26.114Q54.010 26.216 54.010 26.493Q54.010 26.688 54.192 26.797Q54.375 26.907 54.604 26.948L55.178 27.054Q55.425 27.102 55.638 27.230Q55.852 27.358 55.989 27.561Q56.125 27.765 56.125 28.014Q56.125 28.527 55.760 28.766Q55.394 29.005 54.857 29.005Q54.362 29.005 54.030 28.711L53.763 28.985Q53.743 29.005 53.716 29.005L53.668 29.005Q53.644 29.005 53.616 28.978Q53.589 28.951 53.589 28.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M2.203-18.01h56.905v-19.917H2.203Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-12.897 -54.65)\">\u003Cpath d=\"M33.982 28.937L31.452 28.937L31.452 28.657Q32.420 28.657 32.420 28.448L32.420 24.829Q32.027 25.017 31.405 25.017L31.405 24.736Q31.822 24.736 32.186 24.635Q32.550 24.535 32.806 24.289L32.932 24.289Q32.997 24.306 33.014 24.374L33.014 28.448Q33.014 28.657 33.982 28.657L33.982 28.937M36.627 29.077Q36.169 29.077 35.851 28.862Q35.533 28.646 35.352 28.294Q35.171 27.942 35.094 27.522Q35.017 27.102 35.017 26.674Q35.017 26.090 35.270 25.534Q35.523 24.979 35.993 24.634Q36.463 24.289 37.061 24.289Q37.471 24.289 37.755 24.487Q38.039 24.685 38.039 25.088Q38.039 25.184 37.993 25.263Q37.947 25.341 37.866 25.386Q37.786 25.430 37.697 25.430Q37.550 25.430 37.449 25.333Q37.348 25.235 37.348 25.088Q37.348 24.958 37.439 24.851Q37.530 24.743 37.663 24.743Q37.475 24.521 37.061 24.521Q36.747 24.521 36.473 24.685Q36.200 24.849 36.032 25.123Q35.844 25.413 35.780 25.779Q35.715 26.145 35.715 26.599Q35.865 26.305 36.130 26.127Q36.395 25.950 36.709 25.950Q37.140 25.950 37.489 26.156Q37.837 26.363 38.037 26.719Q38.237 27.074 38.237 27.501Q38.237 27.946 38.020 28.306Q37.803 28.667 37.430 28.872Q37.058 29.077 36.627 29.077M36.627 28.824Q37.003 28.824 37.207 28.641Q37.410 28.458 37.473 28.175Q37.536 27.891 37.536 27.501Q37.536 27.115 37.482 26.835Q37.427 26.555 37.232 26.363Q37.037 26.172 36.668 26.172Q36.378 26.172 36.166 26.348Q35.954 26.524 35.846 26.797Q35.739 27.071 35.739 27.354L35.739 27.495L35.739 27.536Q35.739 28.041 35.950 28.433Q36.162 28.824 36.627 28.824\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-12.897 -54.65)\">\u003Cpath d=\"M43.386 28.937L41.650 28.937L41.650 28.657Q41.879 28.657 42.028 28.623Q42.176 28.588 42.176 28.448L42.176 26.599Q42.176 26.329 42.069 26.268Q41.961 26.206 41.650 26.206L41.650 25.926L42.679 25.851L42.679 26.558Q42.809 26.250 43.051 26.051Q43.294 25.851 43.612 25.851Q43.831 25.851 44.002 25.975Q44.173 26.100 44.173 26.312Q44.173 26.449 44.073 26.548Q43.974 26.647 43.841 26.647Q43.704 26.647 43.605 26.548Q43.506 26.449 43.506 26.312Q43.506 26.172 43.605 26.073Q43.315 26.073 43.115 26.269Q42.915 26.466 42.822 26.760Q42.730 27.054 42.730 27.334L42.730 28.448Q42.730 28.657 43.386 28.657L43.386 28.937M45.331 28.103L45.331 26.599Q45.331 26.329 45.224 26.268Q45.116 26.206 44.805 26.206L44.805 25.926L45.912 25.851L45.912 28.083L45.912 28.103Q45.912 28.383 45.964 28.527Q46.015 28.670 46.157 28.727Q46.299 28.783 46.586 28.783Q46.839 28.783 47.044 28.643Q47.249 28.503 47.365 28.277Q47.481 28.052 47.481 27.802L47.481 26.599Q47.481 26.329 47.374 26.268Q47.266 26.206 46.955 26.206L46.955 25.926L48.062 25.851L48.062 28.264Q48.062 28.455 48.115 28.537Q48.168 28.619 48.269 28.638Q48.370 28.657 48.585 28.657L48.585 28.937L47.509 29.005L47.509 28.441Q47.399 28.623 47.254 28.746Q47.109 28.869 46.922 28.937Q46.736 29.005 46.534 29.005Q45.331 29.005 45.331 28.103M50.855 28.937L49.221 28.937L49.221 28.657Q49.450 28.657 49.599 28.623Q49.747 28.588 49.747 28.448L49.747 26.599Q49.747 26.329 49.640 26.268Q49.532 26.206 49.221 26.206L49.221 25.926L50.280 25.851L50.280 26.500Q50.451 26.192 50.756 26.021Q51.060 25.851 51.405 25.851Q51.911 25.851 52.195 26.074Q52.478 26.298 52.478 26.794L52.478 28.448Q52.478 28.585 52.627 28.621Q52.776 28.657 53.001 28.657L53.001 28.937L51.371 28.937L51.371 28.657Q51.600 28.657 51.749 28.623Q51.897 28.588 51.897 28.448L51.897 26.808Q51.897 26.473 51.778 26.273Q51.658 26.073 51.343 26.073Q51.073 26.073 50.839 26.209Q50.605 26.346 50.467 26.580Q50.328 26.814 50.328 27.088L50.328 28.448Q50.328 28.585 50.479 28.621Q50.629 28.657 50.855 28.657L50.855 28.937M53.589 28.930L53.589 27.867Q53.589 27.843 53.616 27.816Q53.644 27.789 53.668 27.789L53.777 27.789Q53.842 27.789 53.856 27.847Q53.951 28.281 54.197 28.532Q54.444 28.783 54.857 28.783Q55.199 28.783 55.452 28.650Q55.705 28.517 55.705 28.209Q55.705 28.052 55.611 27.937Q55.517 27.823 55.378 27.754Q55.240 27.686 55.072 27.648L54.491 27.549Q54.136 27.481 53.863 27.260Q53.589 27.040 53.589 26.698Q53.589 26.449 53.700 26.274Q53.811 26.100 53.998 26.001Q54.184 25.902 54.399 25.859Q54.614 25.816 54.857 25.816Q55.271 25.816 55.551 25.998L55.766 25.823Q55.777 25.820 55.783 25.818Q55.790 25.816 55.801 25.816L55.852 25.816Q55.879 25.816 55.903 25.840Q55.927 25.864 55.927 25.892L55.927 26.739Q55.927 26.760 55.903 26.787Q55.879 26.814 55.852 26.814L55.739 26.814Q55.712 26.814 55.686 26.789Q55.660 26.763 55.660 26.739Q55.660 26.503 55.554 26.339Q55.448 26.175 55.266 26.093Q55.083 26.011 54.850 26.011Q54.522 26.011 54.266 26.114Q54.010 26.216 54.010 26.493Q54.010 26.688 54.192 26.797Q54.375 26.907 54.604 26.948L55.178 27.054Q55.425 27.102 55.638 27.230Q55.852 27.358 55.989 27.561Q56.125 27.765 56.125 28.014Q56.125 28.527 55.760 28.766Q55.394 29.005 54.857 29.005Q54.362 29.005 54.030 28.711L53.763 28.985Q53.743 29.005 53.716 29.005L53.668 29.005Q53.644 29.005 53.616 28.978Q53.589 28.951 53.589 28.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M2.203 16.133h56.905V-3.784H2.203Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-10.904 -20.507)\">\u003Cpath d=\"M32.973 27.789L30.929 27.789L30.929 27.508L33.260 24.336Q33.295 24.289 33.360 24.289L33.496 24.289Q33.541 24.289 33.568 24.316Q33.595 24.343 33.595 24.388L33.595 27.508L34.358 27.508L34.358 27.789L33.595 27.789L33.595 28.448Q33.595 28.657 34.351 28.657L34.351 28.937L32.218 28.937L32.218 28.657Q32.973 28.657 32.973 28.448L32.973 27.789M33.021 25.064L31.230 27.508L33.021 27.508\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.904 -20.507)\">\u003Cpath d=\"M39.400 28.937L37.664 28.937L37.664 28.657Q37.893 28.657 38.042 28.623Q38.190 28.588 38.190 28.448L38.190 26.599Q38.190 26.329 38.083 26.268Q37.975 26.206 37.664 26.206L37.664 25.926L38.693 25.851L38.693 26.558Q38.823 26.250 39.065 26.051Q39.308 25.851 39.626 25.851Q39.845 25.851 40.016 25.975Q40.187 26.100 40.187 26.312Q40.187 26.449 40.087 26.548Q39.988 26.647 39.855 26.647Q39.718 26.647 39.619 26.548Q39.520 26.449 39.520 26.312Q39.520 26.172 39.619 26.073Q39.329 26.073 39.129 26.269Q38.929 26.466 38.836 26.760Q38.744 27.054 38.744 27.334L38.744 28.448Q38.744 28.657 39.400 28.657L39.400 28.937M41.345 28.103L41.345 26.599Q41.345 26.329 41.238 26.268Q41.130 26.206 40.819 26.206L40.819 25.926L41.926 25.851L41.926 28.083L41.926 28.103Q41.926 28.383 41.978 28.527Q42.029 28.670 42.171 28.727Q42.313 28.783 42.600 28.783Q42.853 28.783 43.058 28.643Q43.263 28.503 43.379 28.277Q43.495 28.052 43.495 27.802L43.495 26.599Q43.495 26.329 43.388 26.268Q43.280 26.206 42.969 26.206L42.969 25.926L44.076 25.851L44.076 28.264Q44.076 28.455 44.129 28.537Q44.182 28.619 44.283 28.638Q44.384 28.657 44.599 28.657L44.599 28.937L43.523 29.005L43.523 28.441Q43.413 28.623 43.268 28.746Q43.123 28.869 42.936 28.937Q42.750 29.005 42.548 29.005Q41.345 29.005 41.345 28.103M46.869 28.937L45.235 28.937L45.235 28.657Q45.464 28.657 45.613 28.623Q45.761 28.588 45.761 28.448L45.761 26.599Q45.761 26.329 45.654 26.268Q45.546 26.206 45.235 26.206L45.235 25.926L46.294 25.851L46.294 26.500Q46.465 26.192 46.770 26.021Q47.074 25.851 47.419 25.851Q47.925 25.851 48.209 26.074Q48.492 26.298 48.492 26.794L48.492 28.448Q48.492 28.585 48.641 28.621Q48.790 28.657 49.015 28.657L49.015 28.937L47.385 28.937L47.385 28.657Q47.614 28.657 47.763 28.623Q47.911 28.588 47.911 28.448L47.911 26.808Q47.911 26.473 47.792 26.273Q47.672 26.073 47.357 26.073Q47.087 26.073 46.853 26.209Q46.619 26.346 46.481 26.580Q46.342 26.814 46.342 27.088L46.342 28.448Q46.342 28.585 46.493 28.621Q46.643 28.657 46.869 28.657L46.869 28.937M49.603 28.930L49.603 27.867Q49.603 27.843 49.630 27.816Q49.658 27.789 49.682 27.789L49.791 27.789Q49.856 27.789 49.870 27.847Q49.965 28.281 50.211 28.532Q50.458 28.783 50.871 28.783Q51.213 28.783 51.466 28.650Q51.719 28.517 51.719 28.209Q51.719 28.052 51.625 27.937Q51.531 27.823 51.392 27.754Q51.254 27.686 51.086 27.648L50.505 27.549Q50.150 27.481 49.877 27.260Q49.603 27.040 49.603 26.698Q49.603 26.449 49.714 26.274Q49.825 26.100 50.012 26.001Q50.198 25.902 50.413 25.859Q50.628 25.816 50.871 25.816Q51.285 25.816 51.565 25.998L51.780 25.823Q51.791 25.820 51.797 25.818Q51.804 25.816 51.815 25.816L51.866 25.816Q51.893 25.816 51.917 25.840Q51.941 25.864 51.941 25.892L51.941 26.739Q51.941 26.760 51.917 26.787Q51.893 26.814 51.866 26.814L51.753 26.814Q51.726 26.814 51.700 26.789Q51.674 26.763 51.674 26.739Q51.674 26.503 51.568 26.339Q51.462 26.175 51.280 26.093Q51.097 26.011 50.864 26.011Q50.536 26.011 50.280 26.114Q50.023 26.216 50.023 26.493Q50.023 26.688 50.206 26.797Q50.389 26.907 50.618 26.948L51.192 27.054Q51.439 27.102 51.652 27.230Q51.866 27.358 52.003 27.561Q52.139 27.765 52.139 28.014Q52.139 28.527 51.773 28.766Q51.408 29.005 50.871 29.005Q50.376 29.005 50.044 28.711L49.777 28.985Q49.757 29.005 49.730 29.005L49.682 29.005Q49.658 29.005 49.630 28.978Q49.603 28.951 49.603 28.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M2.203 50.277h56.905V30.36H2.203Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-24.48 13.13)\">\u003Cpath d=\"M33.982 28.937L31.452 28.937L31.452 28.657Q32.420 28.657 32.420 28.448L32.420 24.829Q32.027 25.017 31.405 25.017L31.405 24.736Q31.822 24.736 32.186 24.635Q32.550 24.535 32.806 24.289L32.932 24.289Q32.997 24.306 33.014 24.374L33.014 28.448Q33.014 28.657 33.982 28.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-24.48 13.13)\">\u003Cpath d=\"M39.400 28.937L37.664 28.937L37.664 28.657Q37.893 28.657 38.042 28.623Q38.190 28.588 38.190 28.448L38.190 26.599Q38.190 26.329 38.083 26.268Q37.975 26.206 37.664 26.206L37.664 25.926L38.693 25.851L38.693 26.558Q38.823 26.250 39.065 26.051Q39.308 25.851 39.626 25.851Q39.845 25.851 40.016 25.975Q40.187 26.100 40.187 26.312Q40.187 26.449 40.087 26.548Q39.988 26.647 39.855 26.647Q39.718 26.647 39.619 26.548Q39.520 26.449 39.520 26.312Q39.520 26.172 39.619 26.073Q39.329 26.073 39.129 26.269Q38.929 26.466 38.836 26.760Q38.744 27.054 38.744 27.334L38.744 28.448Q38.744 28.657 39.400 28.657L39.400 28.937M41.345 28.103L41.345 26.599Q41.345 26.329 41.238 26.268Q41.130 26.206 40.819 26.206L40.819 25.926L41.926 25.851L41.926 28.083L41.926 28.103Q41.926 28.383 41.978 28.527Q42.029 28.670 42.171 28.727Q42.313 28.783 42.600 28.783Q42.853 28.783 43.058 28.643Q43.263 28.503 43.379 28.277Q43.495 28.052 43.495 27.802L43.495 26.599Q43.495 26.329 43.388 26.268Q43.280 26.206 42.969 26.206L42.969 25.926L44.076 25.851L44.076 28.264Q44.076 28.455 44.129 28.537Q44.182 28.619 44.283 28.638Q44.384 28.657 44.599 28.657L44.599 28.937L43.523 29.005L43.523 28.441Q43.413 28.623 43.268 28.746Q43.123 28.869 42.936 28.937Q42.750 29.005 42.548 29.005Q41.345 29.005 41.345 28.103M46.869 28.937L45.235 28.937L45.235 28.657Q45.464 28.657 45.613 28.623Q45.761 28.588 45.761 28.448L45.761 26.599Q45.761 26.329 45.654 26.268Q45.546 26.206 45.235 26.206L45.235 25.926L46.294 25.851L46.294 26.500Q46.465 26.192 46.770 26.021Q47.074 25.851 47.419 25.851Q47.925 25.851 48.209 26.074Q48.492 26.298 48.492 26.794L48.492 28.448Q48.492 28.585 48.641 28.621Q48.790 28.657 49.015 28.657L49.015 28.937L47.385 28.937L47.385 28.657Q47.614 28.657 47.763 28.623Q47.911 28.588 47.911 28.448L47.911 26.808Q47.911 26.473 47.792 26.273Q47.672 26.073 47.357 26.073Q47.087 26.073 46.853 26.209Q46.619 26.346 46.481 26.580Q46.342 26.814 46.342 27.088L46.342 28.448Q46.342 28.585 46.493 28.621Q46.643 28.657 46.869 28.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-24.48 13.13)\">\u003Cpath d=\"M54.433 30.687Q53.883 30.287 53.512 29.732Q53.141 29.176 52.960 28.530Q52.779 27.884 52.779 27.187Q52.779 26.674 52.879 26.179Q52.980 25.683 53.185 25.232Q53.390 24.781 53.703 24.389Q54.016 23.998 54.433 23.694Q54.443 23.690 54.450 23.689Q54.457 23.687 54.467 23.687L54.535 23.687Q54.570 23.687 54.592 23.711Q54.614 23.735 54.614 23.772Q54.614 23.817 54.587 23.834Q54.238 24.135 53.985 24.519Q53.732 24.904 53.580 25.345Q53.428 25.786 53.356 26.242Q53.284 26.698 53.284 27.187Q53.284 28.188 53.594 29.075Q53.903 29.962 54.587 30.547Q54.614 30.564 54.614 30.608Q54.614 30.646 54.592 30.670Q54.570 30.694 54.535 30.694L54.467 30.694Q54.460 30.690 54.452 30.689Q54.443 30.687 54.433 30.687M55.424 28.930L55.424 27.867Q55.424 27.843 55.451 27.816Q55.479 27.789 55.503 27.789L55.612 27.789Q55.677 27.789 55.691 27.847Q55.786 28.281 56.032 28.532Q56.279 28.783 56.692 28.783Q57.034 28.783 57.287 28.650Q57.540 28.517 57.540 28.209Q57.540 28.052 57.446 27.937Q57.352 27.823 57.213 27.754Q57.075 27.686 56.907 27.648L56.326 27.549Q55.971 27.481 55.697 27.260Q55.424 27.040 55.424 26.698Q55.424 26.449 55.535 26.274Q55.646 26.100 55.833 26.001Q56.019 25.902 56.234 25.859Q56.449 25.816 56.692 25.816Q57.106 25.816 57.386 25.998L57.601 25.823Q57.612 25.820 57.618 25.818Q57.625 25.816 57.635 25.816L57.687 25.816Q57.714 25.816 57.738 25.840Q57.762 25.864 57.762 25.892L57.762 26.739Q57.762 26.760 57.738 26.787Q57.714 26.814 57.687 26.814L57.574 26.814Q57.547 26.814 57.521 26.789Q57.495 26.763 57.495 26.739Q57.495 26.503 57.389 26.339Q57.283 26.175 57.101 26.093Q56.918 26.011 56.685 26.011Q56.357 26.011 56.101 26.114Q55.844 26.216 55.844 26.493Q55.844 26.688 56.027 26.797Q56.210 26.907 56.439 26.948L57.013 27.054Q57.260 27.102 57.473 27.230Q57.687 27.358 57.823 27.561Q57.960 27.765 57.960 28.014Q57.960 28.527 57.594 28.766Q57.229 29.005 56.692 29.005Q56.197 29.005 55.865 28.711L55.598 28.985Q55.578 29.005 55.551 29.005L55.503 29.005Q55.479 29.005 55.451 28.978Q55.424 28.951 55.424 28.930M58.548 27.454Q58.548 27.112 58.683 26.813Q58.818 26.514 59.057 26.290Q59.297 26.066 59.614 25.941Q59.932 25.816 60.264 25.816Q60.708 25.816 61.108 26.032Q61.508 26.247 61.742 26.625Q61.976 27.002 61.976 27.454Q61.976 27.795 61.834 28.079Q61.693 28.363 61.448 28.570Q61.204 28.776 60.895 28.891Q60.585 29.005 60.264 29.005Q59.833 29.005 59.432 28.804Q59.030 28.602 58.789 28.250Q58.548 27.898 58.548 27.454M60.264 28.756Q60.865 28.756 61.089 28.378Q61.313 28 61.313 27.368Q61.313 26.756 61.079 26.397Q60.845 26.039 60.264 26.039Q59.211 26.039 59.211 27.368Q59.211 28 59.437 28.378Q59.662 28.756 60.264 28.756M64.321 28.937L62.585 28.937L62.585 28.657Q62.814 28.657 62.962 28.623Q63.111 28.588 63.111 28.448L63.111 26.599Q63.111 26.329 63.003 26.268Q62.896 26.206 62.585 26.206L62.585 25.926L63.614 25.851L63.614 26.558Q63.743 26.250 63.986 26.051Q64.229 25.851 64.547 25.851Q64.765 25.851 64.936 25.975Q65.107 26.100 65.107 26.312Q65.107 26.449 65.008 26.548Q64.909 26.647 64.776 26.647Q64.639 26.647 64.540 26.548Q64.441 26.449 64.441 26.312Q64.441 26.172 64.540 26.073Q64.249 26.073 64.049 26.269Q63.849 26.466 63.757 26.760Q63.665 27.054 63.665 27.334L63.665 28.448Q63.665 28.657 64.321 28.657L64.321 28.937M66.218 28.096L66.218 26.199L65.579 26.199L65.579 25.977Q65.897 25.977 66.114 25.767Q66.331 25.557 66.432 25.247Q66.532 24.938 66.532 24.630L66.799 24.630L66.799 25.919L67.876 25.919L67.876 26.199L66.799 26.199L66.799 28.083Q66.799 28.359 66.903 28.558Q67.008 28.756 67.267 28.756Q67.425 28.756 67.531 28.652Q67.636 28.547 67.686 28.394Q67.736 28.240 67.736 28.083L67.736 27.669L68.002 27.669L68.002 28.096Q68.002 28.322 67.903 28.532Q67.804 28.742 67.619 28.874Q67.435 29.005 67.206 29.005Q66.768 29.005 66.493 28.768Q66.218 28.530 66.218 28.096M68.771 27.402Q68.771 27.081 68.896 26.792Q69.021 26.503 69.246 26.280Q69.472 26.056 69.768 25.936Q70.063 25.816 70.381 25.816Q70.709 25.816 70.971 25.916Q71.232 26.015 71.408 26.197Q71.584 26.380 71.678 26.638Q71.772 26.896 71.772 27.228Q71.772 27.320 71.690 27.341L69.434 27.341L69.434 27.402Q69.434 27.990 69.718 28.373Q70.002 28.756 70.569 28.756Q70.890 28.756 71.159 28.563Q71.427 28.370 71.516 28.055Q71.523 28.014 71.598 28L71.690 28Q71.772 28.024 71.772 28.096Q71.772 28.103 71.765 28.130Q71.653 28.527 71.282 28.766Q70.911 29.005 70.487 29.005Q70.050 29.005 69.650 28.797Q69.250 28.588 69.010 28.221Q68.771 27.854 68.771 27.402M69.441 27.132L71.256 27.132Q71.256 26.855 71.159 26.603Q71.061 26.350 70.863 26.194Q70.665 26.039 70.381 26.039Q70.104 26.039 69.891 26.197Q69.677 26.356 69.559 26.611Q69.441 26.866 69.441 27.132M72.360 27.426Q72.360 27.088 72.500 26.797Q72.640 26.507 72.885 26.293Q73.129 26.080 73.433 25.965Q73.738 25.851 74.062 25.851Q74.332 25.851 74.595 25.950Q74.859 26.049 75.050 26.227L75.050 24.829Q75.050 24.559 74.942 24.497Q74.835 24.436 74.524 24.436L74.524 24.155L75.600 24.080L75.600 28.264Q75.600 28.452 75.655 28.535Q75.710 28.619 75.811 28.638Q75.911 28.657 76.127 28.657L76.127 28.937L75.019 29.005L75.019 28.588Q74.602 29.005 73.977 29.005Q73.546 29.005 73.174 28.793Q72.801 28.582 72.581 28.221Q72.360 27.860 72.360 27.426M74.035 28.783Q74.243 28.783 74.430 28.711Q74.616 28.640 74.770 28.503Q74.924 28.366 75.019 28.188L75.019 26.579Q74.934 26.432 74.789 26.312Q74.643 26.192 74.474 26.133Q74.305 26.073 74.124 26.073Q73.563 26.073 73.295 26.462Q73.027 26.852 73.027 27.433Q73.027 28.004 73.261 28.394Q73.495 28.783 74.035 28.783M77.097 30.694L77.029 30.694Q76.995 30.694 76.973 30.668Q76.950 30.643 76.950 30.608Q76.950 30.564 76.981 30.547Q77.337 30.243 77.586 29.853Q77.836 29.463 77.988 29.031Q78.140 28.599 78.210 28.130Q78.280 27.662 78.280 27.187Q78.280 26.708 78.210 26.242Q78.140 25.775 77.986 25.340Q77.832 24.904 77.581 24.516Q77.330 24.128 76.981 23.834Q76.950 23.817 76.950 23.772Q76.950 23.738 76.973 23.713Q76.995 23.687 77.029 23.687L77.097 23.687Q77.108 23.687 77.116 23.689Q77.125 23.690 77.135 23.694Q77.678 24.094 78.051 24.647Q78.424 25.201 78.605 25.847Q78.786 26.493 78.786 27.187Q78.786 27.888 78.605 28.535Q78.424 29.183 78.049 29.737Q77.675 30.291 77.135 30.687Q77.125 30.687 77.116 30.689Q77.108 30.690 77.097 30.694\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M30.656-51.953v10.75\"\u002F>\u003Cpath d=\"m30.656-38.696 1.35-3.585-1.35 1.179-1.351-1.179Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(3.533 -72.227)\">\u003Cpath d=\"M32.652 28.937L31.018 28.937L31.018 28.657Q31.247 28.657 31.396 28.623Q31.545 28.588 31.545 28.448L31.545 26.599Q31.545 26.329 31.437 26.268Q31.329 26.206 31.018 26.206L31.018 25.926L32.078 25.851L32.078 26.500Q32.249 26.192 32.553 26.021Q32.857 25.851 33.202 25.851Q33.602 25.851 33.879 25.991Q34.156 26.131 34.241 26.479Q34.409 26.186 34.708 26.018Q35.007 25.851 35.352 25.851Q35.858 25.851 36.142 26.074Q36.426 26.298 36.426 26.794L36.426 28.448Q36.426 28.585 36.574 28.621Q36.723 28.657 36.948 28.657L36.948 28.937L35.318 28.937L35.318 28.657Q35.544 28.657 35.694 28.621Q35.844 28.585 35.844 28.448L35.844 26.808Q35.844 26.473 35.725 26.273Q35.605 26.073 35.291 26.073Q35.021 26.073 34.787 26.209Q34.552 26.346 34.414 26.580Q34.276 26.814 34.276 27.088L34.276 28.448Q34.276 28.585 34.424 28.621Q34.573 28.657 34.799 28.657L34.799 28.937L33.168 28.937L33.168 28.657Q33.397 28.657 33.546 28.623Q33.695 28.588 33.695 28.448L33.695 26.808Q33.695 26.473 33.575 26.273Q33.455 26.073 33.141 26.073Q32.871 26.073 32.637 26.209Q32.403 26.346 32.264 26.580Q32.126 26.814 32.126 27.088L32.126 28.448Q32.126 28.585 32.276 28.621Q32.427 28.657 32.652 28.657L32.652 28.937M37.495 27.402Q37.495 27.081 37.620 26.792Q37.745 26.503 37.970 26.280Q38.196 26.056 38.492 25.936Q38.787 25.816 39.105 25.816Q39.433 25.816 39.695 25.916Q39.956 26.015 40.132 26.197Q40.308 26.380 40.402 26.638Q40.496 26.896 40.496 27.228Q40.496 27.320 40.414 27.341L38.158 27.341L38.158 27.402Q38.158 27.990 38.442 28.373Q38.726 28.756 39.293 28.756Q39.614 28.756 39.883 28.563Q40.151 28.370 40.240 28.055Q40.247 28.014 40.322 28L40.414 28Q40.496 28.024 40.496 28.096Q40.496 28.103 40.489 28.130Q40.377 28.527 40.006 28.766Q39.635 29.005 39.211 29.005Q38.774 29.005 38.374 28.797Q37.974 28.588 37.735 28.221Q37.495 27.854 37.495 27.402M38.165 27.132L39.980 27.132Q39.980 26.855 39.883 26.603Q39.785 26.350 39.587 26.194Q39.389 26.039 39.105 26.039Q38.828 26.039 38.615 26.197Q38.401 26.356 38.283 26.611Q38.165 26.866 38.165 27.132M42.834 28.937L41.098 28.937L41.098 28.657Q41.327 28.657 41.476 28.623Q41.624 28.588 41.624 28.448L41.624 26.599Q41.624 26.329 41.517 26.268Q41.409 26.206 41.098 26.206L41.098 25.926L42.127 25.851L42.127 26.558Q42.257 26.250 42.499 26.051Q42.742 25.851 43.060 25.851Q43.279 25.851 43.449 25.975Q43.620 26.100 43.620 26.312Q43.620 26.449 43.521 26.548Q43.422 26.647 43.289 26.647Q43.152 26.647 43.053 26.548Q42.954 26.449 42.954 26.312Q42.954 26.172 43.053 26.073Q42.762 26.073 42.562 26.269Q42.363 26.466 42.270 26.760Q42.178 27.054 42.178 27.334L42.178 28.448Q42.178 28.657 42.834 28.657L42.834 28.937M44.164 29.470Q44.164 29.224 44.360 29.040Q44.557 28.855 44.813 28.776Q44.677 28.664 44.605 28.503Q44.533 28.342 44.533 28.161Q44.533 27.840 44.745 27.594Q44.410 27.296 44.410 26.886Q44.410 26.425 44.800 26.138Q45.189 25.851 45.668 25.851Q46.139 25.851 46.474 26.097Q46.649 25.943 46.859 25.861Q47.069 25.779 47.298 25.779Q47.462 25.779 47.583 25.886Q47.705 25.994 47.705 26.158Q47.705 26.254 47.633 26.326Q47.561 26.397 47.469 26.397Q47.370 26.397 47.300 26.324Q47.230 26.250 47.230 26.151Q47.230 26.097 47.243 26.066L47.250 26.052Q47.257 26.032 47.266 26.021Q47.274 26.011 47.278 26.004Q46.922 26.004 46.635 26.227Q46.922 26.520 46.922 26.886Q46.922 27.201 46.738 27.433Q46.553 27.666 46.264 27.794Q45.975 27.922 45.668 27.922Q45.466 27.922 45.275 27.872Q45.083 27.823 44.906 27.713Q44.813 27.840 44.813 27.983Q44.813 28.165 44.941 28.300Q45.070 28.435 45.254 28.435L45.886 28.435Q46.334 28.435 46.703 28.506Q47.073 28.578 47.332 28.807Q47.592 29.036 47.592 29.470Q47.592 29.791 47.296 29.993Q47.001 30.195 46.597 30.284Q46.194 30.373 45.880 30.373Q45.562 30.373 45.158 30.284Q44.755 30.195 44.459 29.993Q44.164 29.791 44.164 29.470M44.618 29.470Q44.618 29.699 44.837 29.848Q45.056 29.997 45.348 30.065Q45.640 30.133 45.880 30.133Q46.044 30.133 46.252 30.097Q46.461 30.062 46.667 29.981Q46.874 29.901 47.006 29.773Q47.137 29.645 47.137 29.470Q47.137 29.118 46.756 29.024Q46.375 28.930 45.873 28.930L45.254 28.930Q45.015 28.930 44.817 29.081Q44.618 29.231 44.618 29.470M45.668 27.683Q46.334 27.683 46.334 26.886Q46.334 26.086 45.668 26.086Q44.998 26.086 44.998 26.886Q44.998 27.683 45.668 27.683M48.146 27.402Q48.146 27.081 48.271 26.792Q48.395 26.503 48.621 26.280Q48.846 26.056 49.142 25.936Q49.438 25.816 49.756 25.816Q50.084 25.816 50.345 25.916Q50.607 26.015 50.783 26.197Q50.959 26.380 51.053 26.638Q51.147 26.896 51.147 27.228Q51.147 27.320 51.065 27.341L48.809 27.341L48.809 27.402Q48.809 27.990 49.093 28.373Q49.376 28.756 49.944 28.756Q50.265 28.756 50.533 28.563Q50.802 28.370 50.890 28.055Q50.897 28.014 50.972 28L51.065 28Q51.147 28.024 51.147 28.096Q51.147 28.103 51.140 28.130Q51.027 28.527 50.656 28.766Q50.285 29.005 49.862 29.005Q49.424 29.005 49.024 28.797Q48.624 28.588 48.385 28.221Q48.146 27.854 48.146 27.402M48.816 27.132L50.631 27.132Q50.631 26.855 50.533 26.603Q50.436 26.350 50.238 26.194Q50.039 26.039 49.756 26.039Q49.479 26.039 49.265 26.197Q49.052 26.356 48.934 26.611Q48.816 26.866 48.816 27.132\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -72.227)\">\u003Cpath d=\"M56.100 30.294L54.470 30.294L54.470 30.014Q54.699 30.014 54.848 29.979Q54.996 29.945 54.996 29.805L54.996 26.459Q54.996 26.288 54.860 26.247Q54.723 26.206 54.470 26.206L54.470 25.926L55.550 25.851L55.550 26.257Q55.772 26.056 56.059 25.953Q56.347 25.851 56.654 25.851Q57.081 25.851 57.445 26.064Q57.809 26.278 58.023 26.642Q58.237 27.006 58.237 27.426Q58.237 27.871 57.997 28.235Q57.758 28.599 57.365 28.802Q56.972 29.005 56.528 29.005Q56.261 29.005 56.013 28.905Q55.766 28.804 55.578 28.623L55.578 29.805Q55.578 29.942 55.726 29.978Q55.875 30.014 56.100 30.014L56.100 30.294M55.578 26.606L55.578 28.216Q55.711 28.469 55.954 28.626Q56.196 28.783 56.473 28.783Q56.801 28.783 57.054 28.582Q57.307 28.380 57.440 28.062Q57.574 27.744 57.574 27.426Q57.574 27.197 57.509 26.968Q57.444 26.739 57.316 26.541Q57.187 26.343 56.993 26.223Q56.798 26.104 56.565 26.104Q56.271 26.104 56.003 26.233Q55.735 26.363 55.578 26.606M58.931 28.209Q58.931 27.877 59.154 27.650Q59.378 27.423 59.722 27.295Q60.065 27.166 60.438 27.114Q60.810 27.061 61.115 27.061L61.115 26.808Q61.115 26.603 61.007 26.423Q60.899 26.244 60.718 26.141Q60.537 26.039 60.329 26.039Q59.922 26.039 59.686 26.131Q59.775 26.168 59.821 26.252Q59.867 26.336 59.867 26.438Q59.867 26.534 59.821 26.613Q59.775 26.691 59.694 26.736Q59.614 26.780 59.525 26.780Q59.375 26.780 59.274 26.683Q59.173 26.585 59.173 26.438Q59.173 25.816 60.329 25.816Q60.540 25.816 60.790 25.880Q61.039 25.943 61.241 26.062Q61.443 26.182 61.569 26.367Q61.696 26.551 61.696 26.794L61.696 28.370Q61.696 28.486 61.757 28.582Q61.819 28.677 61.932 28.677Q62.041 28.677 62.106 28.583Q62.171 28.489 62.171 28.370L62.171 27.922L62.437 27.922L62.437 28.370Q62.437 28.640 62.210 28.805Q61.983 28.971 61.703 28.971Q61.494 28.971 61.357 28.817Q61.221 28.664 61.197 28.448Q61.050 28.715 60.768 28.860Q60.486 29.005 60.161 29.005Q59.884 29.005 59.600 28.930Q59.317 28.855 59.124 28.676Q58.931 28.496 58.931 28.209M59.546 28.209Q59.546 28.383 59.647 28.513Q59.747 28.643 59.903 28.713Q60.059 28.783 60.223 28.783Q60.441 28.783 60.650 28.686Q60.858 28.588 60.986 28.407Q61.115 28.226 61.115 28L61.115 27.272Q60.790 27.272 60.424 27.363Q60.059 27.454 59.802 27.666Q59.546 27.877 59.546 28.209M62.854 28.930L62.854 27.867Q62.854 27.843 62.882 27.816Q62.909 27.789 62.933 27.789L63.042 27.789Q63.107 27.789 63.121 27.847Q63.217 28.281 63.463 28.532Q63.709 28.783 64.122 28.783Q64.464 28.783 64.717 28.650Q64.970 28.517 64.970 28.209Q64.970 28.052 64.876 27.937Q64.782 27.823 64.644 27.754Q64.505 27.686 64.338 27.648L63.757 27.549Q63.401 27.481 63.128 27.260Q62.854 27.040 62.854 26.698Q62.854 26.449 62.965 26.274Q63.077 26.100 63.263 26.001Q63.449 25.902 63.664 25.859Q63.880 25.816 64.122 25.816Q64.536 25.816 64.816 25.998L65.032 25.823Q65.042 25.820 65.049 25.818Q65.056 25.816 65.066 25.816L65.117 25.816Q65.144 25.816 65.168 25.840Q65.192 25.864 65.192 25.892L65.192 26.739Q65.192 26.760 65.168 26.787Q65.144 26.814 65.117 26.814L65.004 26.814Q64.977 26.814 64.951 26.789Q64.926 26.763 64.926 26.739Q64.926 26.503 64.820 26.339Q64.714 26.175 64.531 26.093Q64.348 26.011 64.116 26.011Q63.788 26.011 63.531 26.114Q63.275 26.216 63.275 26.493Q63.275 26.688 63.458 26.797Q63.641 26.907 63.870 26.948L64.444 27.054Q64.690 27.102 64.903 27.230Q65.117 27.358 65.254 27.561Q65.391 27.765 65.391 28.014Q65.391 28.527 65.025 28.766Q64.659 29.005 64.122 29.005Q63.627 29.005 63.295 28.711L63.029 28.985Q63.008 29.005 62.981 29.005L62.933 29.005Q62.909 29.005 62.882 28.978Q62.854 28.951 62.854 28.930M66.019 28.930L66.019 27.867Q66.019 27.843 66.047 27.816Q66.074 27.789 66.098 27.789L66.207 27.789Q66.272 27.789 66.286 27.847Q66.382 28.281 66.628 28.532Q66.874 28.783 67.288 28.783Q67.629 28.783 67.882 28.650Q68.135 28.517 68.135 28.209Q68.135 28.052 68.041 27.937Q67.947 27.823 67.809 27.754Q67.670 27.686 67.503 27.648L66.922 27.549Q66.566 27.481 66.293 27.260Q66.019 27.040 66.019 26.698Q66.019 26.449 66.131 26.274Q66.242 26.100 66.428 26.001Q66.614 25.902 66.829 25.859Q67.045 25.816 67.288 25.816Q67.701 25.816 67.981 25.998L68.197 25.823Q68.207 25.820 68.214 25.818Q68.221 25.816 68.231 25.816L68.282 25.816Q68.309 25.816 68.333 25.840Q68.357 25.864 68.357 25.892L68.357 26.739Q68.357 26.760 68.333 26.787Q68.309 26.814 68.282 26.814L68.169 26.814Q68.142 26.814 68.116 26.789Q68.091 26.763 68.091 26.739Q68.091 26.503 67.985 26.339Q67.879 26.175 67.696 26.093Q67.513 26.011 67.281 26.011Q66.953 26.011 66.696 26.114Q66.440 26.216 66.440 26.493Q66.440 26.688 66.623 26.797Q66.806 26.907 67.035 26.948L67.609 27.054Q67.855 27.102 68.069 27.230Q68.282 27.358 68.419 27.561Q68.556 27.765 68.556 28.014Q68.556 28.527 68.190 28.766Q67.824 29.005 67.288 29.005Q66.792 29.005 66.460 28.711L66.194 28.985Q66.173 29.005 66.146 29.005L66.098 29.005Q66.074 29.005 66.047 28.978Q66.019 28.951 66.019 28.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -72.227)\">\u003Cpath d=\"M74.901 28.937L72.371 28.937L72.371 28.657Q73.339 28.657 73.339 28.448L73.339 24.829Q72.946 25.017 72.324 25.017L72.324 24.736Q72.741 24.736 73.105 24.635Q73.469 24.535 73.725 24.289L73.851 24.289Q73.916 24.306 73.933 24.374L73.933 28.448Q73.933 28.657 74.901 28.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -72.227)\">\u003Cpath d=\"M80.700 30.687Q80.150 30.287 79.779 29.732Q79.408 29.176 79.227 28.530Q79.046 27.884 79.046 27.187Q79.046 26.674 79.146 26.179Q79.247 25.683 79.452 25.232Q79.657 24.781 79.970 24.389Q80.283 23.998 80.700 23.694Q80.710 23.690 80.717 23.689Q80.724 23.687 80.734 23.687L80.802 23.687Q80.837 23.687 80.859 23.711Q80.881 23.735 80.881 23.772Q80.881 23.817 80.854 23.834Q80.505 24.135 80.252 24.519Q79.999 24.904 79.847 25.345Q79.695 25.786 79.623 26.242Q79.551 26.698 79.551 27.187Q79.551 28.188 79.861 29.075Q80.170 29.962 80.854 30.547Q80.881 30.564 80.881 30.608Q80.881 30.646 80.859 30.670Q80.837 30.694 80.802 30.694L80.734 30.694Q80.727 30.690 80.719 30.689Q80.710 30.687 80.700 30.687M81.691 27.426Q81.691 27.088 81.831 26.797Q81.971 26.507 82.216 26.293Q82.460 26.080 82.764 25.965Q83.069 25.851 83.393 25.851Q83.663 25.851 83.926 25.950Q84.190 26.049 84.381 26.227L84.381 24.829Q84.381 24.559 84.273 24.497Q84.166 24.436 83.855 24.436L83.855 24.155L84.931 24.080L84.931 28.264Q84.931 28.452 84.986 28.535Q85.041 28.619 85.141 28.638Q85.242 28.657 85.458 28.657L85.458 28.937L84.350 29.005L84.350 28.588Q83.933 29.005 83.308 29.005Q82.877 29.005 82.505 28.793Q82.132 28.582 81.912 28.221Q81.691 27.860 81.691 27.426M83.366 28.783Q83.574 28.783 83.761 28.711Q83.947 28.640 84.101 28.503Q84.255 28.366 84.350 28.188L84.350 26.579Q84.265 26.432 84.120 26.312Q83.974 26.192 83.805 26.133Q83.636 26.073 83.455 26.073Q82.894 26.073 82.626 26.462Q82.358 26.852 82.358 27.433Q82.358 28.004 82.592 28.394Q82.826 28.783 83.366 28.783M87.724 28.937L86.172 28.937L86.172 28.657Q86.398 28.657 86.546 28.623Q86.695 28.588 86.695 28.448L86.695 26.599Q86.695 26.411 86.647 26.327Q86.599 26.244 86.502 26.225Q86.404 26.206 86.193 26.206L86.193 25.926L87.249 25.851L87.249 28.448Q87.249 28.588 87.380 28.623Q87.512 28.657 87.724 28.657L87.724 28.937M86.452 24.630Q86.452 24.459 86.575 24.340Q86.698 24.220 86.869 24.220Q87.037 24.220 87.160 24.340Q87.283 24.459 87.283 24.630Q87.283 24.805 87.160 24.928Q87.037 25.051 86.869 25.051Q86.698 25.051 86.575 24.928Q86.452 24.805 86.452 24.630M89.959 28.910L88.831 26.411Q88.759 26.264 88.630 26.232Q88.500 26.199 88.271 26.199L88.271 25.919L89.785 25.919L89.785 26.199Q89.433 26.199 89.433 26.346Q89.433 26.391 89.443 26.411L90.308 28.329L91.087 26.599Q91.121 26.531 91.121 26.452Q91.121 26.339 91.037 26.269Q90.954 26.199 90.834 26.199L90.834 25.919L92.030 25.919L92.030 26.199Q91.812 26.199 91.641 26.302Q91.470 26.404 91.381 26.599L90.345 28.910Q90.298 29.005 90.192 29.005L90.113 29.005Q90.007 29.005 89.959 28.910M94.187 28.937L92.635 28.937L92.635 28.657Q92.861 28.657 93.010 28.623Q93.158 28.588 93.158 28.448L93.158 26.599Q93.158 26.411 93.110 26.327Q93.063 26.244 92.965 26.225Q92.868 26.206 92.656 26.206L92.656 25.926L93.712 25.851L93.712 28.448Q93.712 28.588 93.844 28.623Q93.975 28.657 94.187 28.657L94.187 28.937M92.916 24.630Q92.916 24.459 93.039 24.340Q93.162 24.220 93.333 24.220Q93.500 24.220 93.623 24.340Q93.746 24.459 93.746 24.630Q93.746 24.805 93.623 24.928Q93.500 25.051 93.333 25.051Q93.162 25.051 93.039 24.928Q92.916 24.805 92.916 24.630M94.833 27.426Q94.833 27.088 94.973 26.797Q95.113 26.507 95.358 26.293Q95.602 26.080 95.906 25.965Q96.211 25.851 96.535 25.851Q96.805 25.851 97.069 25.950Q97.332 26.049 97.523 26.227L97.523 24.829Q97.523 24.559 97.415 24.497Q97.308 24.436 96.997 24.436L96.997 24.155L98.073 24.080L98.073 28.264Q98.073 28.452 98.128 28.535Q98.183 28.619 98.284 28.638Q98.384 28.657 98.600 28.657L98.600 28.937L97.492 29.005L97.492 28.588Q97.075 29.005 96.450 29.005Q96.019 29.005 95.647 28.793Q95.274 28.582 95.054 28.221Q94.833 27.860 94.833 27.426M96.508 28.783Q96.716 28.783 96.903 28.711Q97.089 28.640 97.243 28.503Q97.397 28.366 97.492 28.188L97.492 26.579Q97.407 26.432 97.262 26.312Q97.116 26.192 96.947 26.133Q96.778 26.073 96.597 26.073Q96.036 26.073 95.768 26.462Q95.500 26.852 95.500 27.433Q95.500 28.004 95.734 28.394Q95.968 28.783 96.508 28.783M99.208 27.402Q99.208 27.081 99.333 26.792Q99.458 26.503 99.683 26.280Q99.909 26.056 100.204 25.936Q100.500 25.816 100.818 25.816Q101.146 25.816 101.408 25.916Q101.669 26.015 101.845 26.197Q102.021 26.380 102.115 26.638Q102.209 26.896 102.209 27.228Q102.209 27.320 102.127 27.341L99.871 27.341L99.871 27.402Q99.871 27.990 100.155 28.373Q100.439 28.756 101.006 28.756Q101.327 28.756 101.596 28.563Q101.864 28.370 101.953 28.055Q101.960 28.014 102.035 28L102.127 28Q102.209 28.024 102.209 28.096Q102.209 28.103 102.202 28.130Q102.089 28.527 101.719 28.766Q101.348 29.005 100.924 29.005Q100.486 29.005 100.087 28.797Q99.687 28.588 99.447 28.221Q99.208 27.854 99.208 27.402M99.878 27.132L101.693 27.132Q101.693 26.855 101.596 26.603Q101.498 26.350 101.300 26.194Q101.102 26.039 100.818 26.039Q100.541 26.039 100.328 26.197Q100.114 26.356 99.996 26.611Q99.878 26.866 99.878 27.132\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -72.227)\">\u003Cpath d=\"M106.315 28.937L106.048 28.937L106.048 24.829Q106.048 24.559 105.941 24.497Q105.833 24.436 105.522 24.436L105.522 24.155L106.602 24.080L106.602 26.250Q106.811 26.059 107.096 25.955Q107.382 25.851 107.679 25.851Q107.997 25.851 108.294 25.972Q108.591 26.093 108.814 26.309Q109.036 26.524 109.162 26.809Q109.289 27.095 109.289 27.426Q109.289 27.871 109.049 28.235Q108.810 28.599 108.417 28.802Q108.024 29.005 107.580 29.005Q107.385 29.005 107.195 28.949Q107.006 28.893 106.845 28.788Q106.684 28.684 106.544 28.523L106.315 28.937M106.630 26.592L106.630 28.209Q106.766 28.469 107.007 28.626Q107.248 28.783 107.525 28.783Q107.819 28.783 108.031 28.676Q108.243 28.568 108.376 28.376Q108.509 28.185 108.568 27.946Q108.626 27.707 108.626 27.426Q108.626 27.067 108.532 26.763Q108.438 26.459 108.210 26.266Q107.983 26.073 107.617 26.073Q107.317 26.073 107.050 26.209Q106.783 26.346 106.630 26.592\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -72.227)\">\u003Cpath d=\"M110.044 30.072Q110.174 30.140 110.311 30.140Q110.482 30.140 110.632 30.051Q110.783 29.962 110.894 29.817Q111.005 29.672 111.083 29.504L111.347 28.937L110.178 26.411Q110.103 26.264 109.973 26.232Q109.843 26.199 109.610 26.199L109.610 25.919L111.131 25.919L111.131 26.199Q110.783 26.199 110.783 26.346Q110.786 26.367 110.788 26.384Q110.790 26.401 110.790 26.411L111.647 28.270L112.420 26.599Q112.454 26.531 112.454 26.452Q112.454 26.339 112.370 26.269Q112.287 26.199 112.174 26.199L112.174 25.919L113.370 25.919L113.370 26.199Q113.151 26.199 112.979 26.303Q112.806 26.408 112.714 26.599L111.377 29.504Q111.207 29.874 110.937 30.120Q110.666 30.366 110.311 30.366Q110.041 30.366 109.822 30.200Q109.603 30.034 109.603 29.771Q109.603 29.634 109.696 29.545Q109.788 29.457 109.928 29.457Q110.065 29.457 110.154 29.545Q110.243 29.634 110.243 29.771Q110.243 29.874 110.190 29.952Q110.137 30.031 110.044 30.072\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -72.227)\">\u003Cpath d=\"M118.608 27.789L116.564 27.789L116.564 27.508L118.895 24.336Q118.930 24.289 118.995 24.289L119.131 24.289Q119.176 24.289 119.203 24.316Q119.230 24.343 119.230 24.388L119.230 27.508L119.993 27.508L119.993 27.789L119.230 27.789L119.230 28.448Q119.230 28.657 119.986 28.657L119.986 28.937L117.853 28.937L117.853 28.657Q118.608 28.657 118.608 28.448L118.608 27.789M118.656 25.064L116.865 27.508L118.656 27.508L118.656 25.064M120.909 30.694L120.840 30.694Q120.806 30.694 120.784 30.668Q120.762 30.643 120.762 30.608Q120.762 30.564 120.792 30.547Q121.148 30.243 121.397 29.853Q121.647 29.463 121.799 29.031Q121.951 28.599 122.021 28.130Q122.091 27.662 122.091 27.187Q122.091 26.708 122.021 26.242Q121.951 25.775 121.797 25.340Q121.644 24.904 121.392 24.516Q121.141 24.128 120.792 23.834Q120.762 23.817 120.762 23.772Q120.762 23.738 120.784 23.713Q120.806 23.687 120.840 23.687L120.909 23.687Q120.919 23.687 120.927 23.689Q120.936 23.690 120.946 23.694Q121.490 24.094 121.862 24.647Q122.235 25.201 122.416 25.847Q122.597 26.493 122.597 27.187Q122.597 27.888 122.416 28.535Q122.235 29.183 121.861 29.737Q121.486 30.291 120.946 30.687Q120.936 30.687 120.927 30.689Q120.919 30.690 120.909 30.694\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M30.656-17.81v10.751\"\u002F>\u003Cpath d=\"m30.656-4.553 1.35-3.585-1.35 1.179-1.351-1.179Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(3.533 -38.084)\">\u003Cpath d=\"M32.652 28.937L31.018 28.937L31.018 28.657Q31.247 28.657 31.396 28.623Q31.545 28.588 31.545 28.448L31.545 26.599Q31.545 26.329 31.437 26.268Q31.329 26.206 31.018 26.206L31.018 25.926L32.078 25.851L32.078 26.500Q32.249 26.192 32.553 26.021Q32.857 25.851 33.202 25.851Q33.602 25.851 33.879 25.991Q34.156 26.131 34.241 26.479Q34.409 26.186 34.708 26.018Q35.007 25.851 35.352 25.851Q35.858 25.851 36.142 26.074Q36.426 26.298 36.426 26.794L36.426 28.448Q36.426 28.585 36.574 28.621Q36.723 28.657 36.948 28.657L36.948 28.937L35.318 28.937L35.318 28.657Q35.544 28.657 35.694 28.621Q35.844 28.585 35.844 28.448L35.844 26.808Q35.844 26.473 35.725 26.273Q35.605 26.073 35.291 26.073Q35.021 26.073 34.787 26.209Q34.552 26.346 34.414 26.580Q34.276 26.814 34.276 27.088L34.276 28.448Q34.276 28.585 34.424 28.621Q34.573 28.657 34.799 28.657L34.799 28.937L33.168 28.937L33.168 28.657Q33.397 28.657 33.546 28.623Q33.695 28.588 33.695 28.448L33.695 26.808Q33.695 26.473 33.575 26.273Q33.455 26.073 33.141 26.073Q32.871 26.073 32.637 26.209Q32.403 26.346 32.264 26.580Q32.126 26.814 32.126 27.088L32.126 28.448Q32.126 28.585 32.276 28.621Q32.427 28.657 32.652 28.657L32.652 28.937M37.495 27.402Q37.495 27.081 37.620 26.792Q37.745 26.503 37.970 26.280Q38.196 26.056 38.492 25.936Q38.787 25.816 39.105 25.816Q39.433 25.816 39.695 25.916Q39.956 26.015 40.132 26.197Q40.308 26.380 40.402 26.638Q40.496 26.896 40.496 27.228Q40.496 27.320 40.414 27.341L38.158 27.341L38.158 27.402Q38.158 27.990 38.442 28.373Q38.726 28.756 39.293 28.756Q39.614 28.756 39.883 28.563Q40.151 28.370 40.240 28.055Q40.247 28.014 40.322 28L40.414 28Q40.496 28.024 40.496 28.096Q40.496 28.103 40.489 28.130Q40.377 28.527 40.006 28.766Q39.635 29.005 39.211 29.005Q38.774 29.005 38.374 28.797Q37.974 28.588 37.735 28.221Q37.495 27.854 37.495 27.402M38.165 27.132L39.980 27.132Q39.980 26.855 39.883 26.603Q39.785 26.350 39.587 26.194Q39.389 26.039 39.105 26.039Q38.828 26.039 38.615 26.197Q38.401 26.356 38.283 26.611Q38.165 26.866 38.165 27.132M42.834 28.937L41.098 28.937L41.098 28.657Q41.327 28.657 41.476 28.623Q41.624 28.588 41.624 28.448L41.624 26.599Q41.624 26.329 41.517 26.268Q41.409 26.206 41.098 26.206L41.098 25.926L42.127 25.851L42.127 26.558Q42.257 26.250 42.499 26.051Q42.742 25.851 43.060 25.851Q43.279 25.851 43.449 25.975Q43.620 26.100 43.620 26.312Q43.620 26.449 43.521 26.548Q43.422 26.647 43.289 26.647Q43.152 26.647 43.053 26.548Q42.954 26.449 42.954 26.312Q42.954 26.172 43.053 26.073Q42.762 26.073 42.562 26.269Q42.363 26.466 42.270 26.760Q42.178 27.054 42.178 27.334L42.178 28.448Q42.178 28.657 42.834 28.657L42.834 28.937M44.164 29.470Q44.164 29.224 44.360 29.040Q44.557 28.855 44.813 28.776Q44.677 28.664 44.605 28.503Q44.533 28.342 44.533 28.161Q44.533 27.840 44.745 27.594Q44.410 27.296 44.410 26.886Q44.410 26.425 44.800 26.138Q45.189 25.851 45.668 25.851Q46.139 25.851 46.474 26.097Q46.649 25.943 46.859 25.861Q47.069 25.779 47.298 25.779Q47.462 25.779 47.583 25.886Q47.705 25.994 47.705 26.158Q47.705 26.254 47.633 26.326Q47.561 26.397 47.469 26.397Q47.370 26.397 47.300 26.324Q47.230 26.250 47.230 26.151Q47.230 26.097 47.243 26.066L47.250 26.052Q47.257 26.032 47.266 26.021Q47.274 26.011 47.278 26.004Q46.922 26.004 46.635 26.227Q46.922 26.520 46.922 26.886Q46.922 27.201 46.738 27.433Q46.553 27.666 46.264 27.794Q45.975 27.922 45.668 27.922Q45.466 27.922 45.275 27.872Q45.083 27.823 44.906 27.713Q44.813 27.840 44.813 27.983Q44.813 28.165 44.941 28.300Q45.070 28.435 45.254 28.435L45.886 28.435Q46.334 28.435 46.703 28.506Q47.073 28.578 47.332 28.807Q47.592 29.036 47.592 29.470Q47.592 29.791 47.296 29.993Q47.001 30.195 46.597 30.284Q46.194 30.373 45.880 30.373Q45.562 30.373 45.158 30.284Q44.755 30.195 44.459 29.993Q44.164 29.791 44.164 29.470M44.618 29.470Q44.618 29.699 44.837 29.848Q45.056 29.997 45.348 30.065Q45.640 30.133 45.880 30.133Q46.044 30.133 46.252 30.097Q46.461 30.062 46.667 29.981Q46.874 29.901 47.006 29.773Q47.137 29.645 47.137 29.470Q47.137 29.118 46.756 29.024Q46.375 28.930 45.873 28.930L45.254 28.930Q45.015 28.930 44.817 29.081Q44.618 29.231 44.618 29.470M45.668 27.683Q46.334 27.683 46.334 26.886Q46.334 26.086 45.668 26.086Q44.998 26.086 44.998 26.886Q44.998 27.683 45.668 27.683M48.146 27.402Q48.146 27.081 48.271 26.792Q48.395 26.503 48.621 26.280Q48.846 26.056 49.142 25.936Q49.438 25.816 49.756 25.816Q50.084 25.816 50.345 25.916Q50.607 26.015 50.783 26.197Q50.959 26.380 51.053 26.638Q51.147 26.896 51.147 27.228Q51.147 27.320 51.065 27.341L48.809 27.341L48.809 27.402Q48.809 27.990 49.093 28.373Q49.376 28.756 49.944 28.756Q50.265 28.756 50.533 28.563Q50.802 28.370 50.890 28.055Q50.897 28.014 50.972 28L51.065 28Q51.147 28.024 51.147 28.096Q51.147 28.103 51.140 28.130Q51.027 28.527 50.656 28.766Q50.285 29.005 49.862 29.005Q49.424 29.005 49.024 28.797Q48.624 28.588 48.385 28.221Q48.146 27.854 48.146 27.402M48.816 27.132L50.631 27.132Q50.631 26.855 50.533 26.603Q50.436 26.350 50.238 26.194Q50.039 26.039 49.756 26.039Q49.479 26.039 49.265 26.197Q49.052 26.356 48.934 26.611Q48.816 26.866 48.816 27.132\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -38.084)\">\u003Cpath d=\"M56.100 30.294L54.470 30.294L54.470 30.014Q54.699 30.014 54.848 29.979Q54.996 29.945 54.996 29.805L54.996 26.459Q54.996 26.288 54.860 26.247Q54.723 26.206 54.470 26.206L54.470 25.926L55.550 25.851L55.550 26.257Q55.772 26.056 56.059 25.953Q56.347 25.851 56.654 25.851Q57.081 25.851 57.445 26.064Q57.809 26.278 58.023 26.642Q58.237 27.006 58.237 27.426Q58.237 27.871 57.997 28.235Q57.758 28.599 57.365 28.802Q56.972 29.005 56.528 29.005Q56.261 29.005 56.013 28.905Q55.766 28.804 55.578 28.623L55.578 29.805Q55.578 29.942 55.726 29.978Q55.875 30.014 56.100 30.014L56.100 30.294M55.578 26.606L55.578 28.216Q55.711 28.469 55.954 28.626Q56.196 28.783 56.473 28.783Q56.801 28.783 57.054 28.582Q57.307 28.380 57.440 28.062Q57.574 27.744 57.574 27.426Q57.574 27.197 57.509 26.968Q57.444 26.739 57.316 26.541Q57.187 26.343 56.993 26.223Q56.798 26.104 56.565 26.104Q56.271 26.104 56.003 26.233Q55.735 26.363 55.578 26.606M58.931 28.209Q58.931 27.877 59.154 27.650Q59.378 27.423 59.722 27.295Q60.065 27.166 60.438 27.114Q60.810 27.061 61.115 27.061L61.115 26.808Q61.115 26.603 61.007 26.423Q60.899 26.244 60.718 26.141Q60.537 26.039 60.329 26.039Q59.922 26.039 59.686 26.131Q59.775 26.168 59.821 26.252Q59.867 26.336 59.867 26.438Q59.867 26.534 59.821 26.613Q59.775 26.691 59.694 26.736Q59.614 26.780 59.525 26.780Q59.375 26.780 59.274 26.683Q59.173 26.585 59.173 26.438Q59.173 25.816 60.329 25.816Q60.540 25.816 60.790 25.880Q61.039 25.943 61.241 26.062Q61.443 26.182 61.569 26.367Q61.696 26.551 61.696 26.794L61.696 28.370Q61.696 28.486 61.757 28.582Q61.819 28.677 61.932 28.677Q62.041 28.677 62.106 28.583Q62.171 28.489 62.171 28.370L62.171 27.922L62.437 27.922L62.437 28.370Q62.437 28.640 62.210 28.805Q61.983 28.971 61.703 28.971Q61.494 28.971 61.357 28.817Q61.221 28.664 61.197 28.448Q61.050 28.715 60.768 28.860Q60.486 29.005 60.161 29.005Q59.884 29.005 59.600 28.930Q59.317 28.855 59.124 28.676Q58.931 28.496 58.931 28.209M59.546 28.209Q59.546 28.383 59.647 28.513Q59.747 28.643 59.903 28.713Q60.059 28.783 60.223 28.783Q60.441 28.783 60.650 28.686Q60.858 28.588 60.986 28.407Q61.115 28.226 61.115 28L61.115 27.272Q60.790 27.272 60.424 27.363Q60.059 27.454 59.802 27.666Q59.546 27.877 59.546 28.209M62.854 28.930L62.854 27.867Q62.854 27.843 62.882 27.816Q62.909 27.789 62.933 27.789L63.042 27.789Q63.107 27.789 63.121 27.847Q63.217 28.281 63.463 28.532Q63.709 28.783 64.122 28.783Q64.464 28.783 64.717 28.650Q64.970 28.517 64.970 28.209Q64.970 28.052 64.876 27.937Q64.782 27.823 64.644 27.754Q64.505 27.686 64.338 27.648L63.757 27.549Q63.401 27.481 63.128 27.260Q62.854 27.040 62.854 26.698Q62.854 26.449 62.965 26.274Q63.077 26.100 63.263 26.001Q63.449 25.902 63.664 25.859Q63.880 25.816 64.122 25.816Q64.536 25.816 64.816 25.998L65.032 25.823Q65.042 25.820 65.049 25.818Q65.056 25.816 65.066 25.816L65.117 25.816Q65.144 25.816 65.168 25.840Q65.192 25.864 65.192 25.892L65.192 26.739Q65.192 26.760 65.168 26.787Q65.144 26.814 65.117 26.814L65.004 26.814Q64.977 26.814 64.951 26.789Q64.926 26.763 64.926 26.739Q64.926 26.503 64.820 26.339Q64.714 26.175 64.531 26.093Q64.348 26.011 64.116 26.011Q63.788 26.011 63.531 26.114Q63.275 26.216 63.275 26.493Q63.275 26.688 63.458 26.797Q63.641 26.907 63.870 26.948L64.444 27.054Q64.690 27.102 64.903 27.230Q65.117 27.358 65.254 27.561Q65.391 27.765 65.391 28.014Q65.391 28.527 65.025 28.766Q64.659 29.005 64.122 29.005Q63.627 29.005 63.295 28.711L63.029 28.985Q63.008 29.005 62.981 29.005L62.933 29.005Q62.909 29.005 62.882 28.978Q62.854 28.951 62.854 28.930M66.019 28.930L66.019 27.867Q66.019 27.843 66.047 27.816Q66.074 27.789 66.098 27.789L66.207 27.789Q66.272 27.789 66.286 27.847Q66.382 28.281 66.628 28.532Q66.874 28.783 67.288 28.783Q67.629 28.783 67.882 28.650Q68.135 28.517 68.135 28.209Q68.135 28.052 68.041 27.937Q67.947 27.823 67.809 27.754Q67.670 27.686 67.503 27.648L66.922 27.549Q66.566 27.481 66.293 27.260Q66.019 27.040 66.019 26.698Q66.019 26.449 66.131 26.274Q66.242 26.100 66.428 26.001Q66.614 25.902 66.829 25.859Q67.045 25.816 67.288 25.816Q67.701 25.816 67.981 25.998L68.197 25.823Q68.207 25.820 68.214 25.818Q68.221 25.816 68.231 25.816L68.282 25.816Q68.309 25.816 68.333 25.840Q68.357 25.864 68.357 25.892L68.357 26.739Q68.357 26.760 68.333 26.787Q68.309 26.814 68.282 26.814L68.169 26.814Q68.142 26.814 68.116 26.789Q68.091 26.763 68.091 26.739Q68.091 26.503 67.985 26.339Q67.879 26.175 67.696 26.093Q67.513 26.011 67.281 26.011Q66.953 26.011 66.696 26.114Q66.440 26.216 66.440 26.493Q66.440 26.688 66.623 26.797Q66.806 26.907 67.035 26.948L67.609 27.054Q67.855 27.102 68.069 27.230Q68.282 27.358 68.419 27.561Q68.556 27.765 68.556 28.014Q68.556 28.527 68.190 28.766Q67.824 29.005 67.288 29.005Q66.792 29.005 66.460 28.711L66.194 28.985Q66.173 29.005 66.146 29.005L66.098 29.005Q66.074 29.005 66.047 28.978Q66.019 28.951 66.019 28.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -38.084)\">\u003Cpath d=\"M74.901 28.937L72.016 28.937L72.016 28.735Q72.016 28.705 72.043 28.677L73.291 27.460Q73.363 27.385 73.405 27.343Q73.448 27.300 73.527 27.221Q73.940 26.808 74.171 26.450Q74.402 26.093 74.402 25.669Q74.402 25.437 74.323 25.234Q74.244 25.030 74.103 24.880Q73.961 24.729 73.766 24.649Q73.571 24.569 73.339 24.569Q73.028 24.569 72.770 24.728Q72.512 24.887 72.382 25.164L72.402 25.164Q72.570 25.164 72.677 25.275Q72.785 25.386 72.785 25.550Q72.785 25.707 72.676 25.820Q72.566 25.933 72.402 25.933Q72.242 25.933 72.129 25.820Q72.016 25.707 72.016 25.550Q72.016 25.174 72.224 24.887Q72.433 24.600 72.768 24.444Q73.103 24.289 73.458 24.289Q73.882 24.289 74.262 24.447Q74.641 24.606 74.875 24.923Q75.109 25.239 75.109 25.669Q75.109 25.980 74.969 26.249Q74.829 26.517 74.624 26.722Q74.419 26.927 74.056 27.209Q73.694 27.491 73.585 27.587L72.730 28.315L73.373 28.315Q73.636 28.315 73.925 28.313Q74.214 28.312 74.432 28.303Q74.651 28.294 74.668 28.277Q74.730 28.212 74.767 28.045Q74.805 27.877 74.843 27.635L75.109 27.635\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -38.084)\">\u003Cpath d=\"M80.700 30.687Q80.150 30.287 79.779 29.732Q79.408 29.176 79.227 28.530Q79.046 27.884 79.046 27.187Q79.046 26.674 79.146 26.179Q79.247 25.683 79.452 25.232Q79.657 24.781 79.970 24.389Q80.283 23.998 80.700 23.694Q80.710 23.690 80.717 23.689Q80.724 23.687 80.734 23.687L80.802 23.687Q80.837 23.687 80.859 23.711Q80.881 23.735 80.881 23.772Q80.881 23.817 80.854 23.834Q80.505 24.135 80.252 24.519Q79.999 24.904 79.847 25.345Q79.695 25.786 79.623 26.242Q79.551 26.698 79.551 27.187Q79.551 28.188 79.861 29.075Q80.170 29.962 80.854 30.547Q80.881 30.564 80.881 30.608Q80.881 30.646 80.859 30.670Q80.837 30.694 80.802 30.694L80.734 30.694Q80.727 30.690 80.719 30.689Q80.710 30.687 80.700 30.687M81.691 27.426Q81.691 27.088 81.831 26.797Q81.971 26.507 82.216 26.293Q82.460 26.080 82.764 25.965Q83.069 25.851 83.393 25.851Q83.663 25.851 83.926 25.950Q84.190 26.049 84.381 26.227L84.381 24.829Q84.381 24.559 84.273 24.497Q84.166 24.436 83.855 24.436L83.855 24.155L84.931 24.080L84.931 28.264Q84.931 28.452 84.986 28.535Q85.041 28.619 85.141 28.638Q85.242 28.657 85.458 28.657L85.458 28.937L84.350 29.005L84.350 28.588Q83.933 29.005 83.308 29.005Q82.877 29.005 82.505 28.793Q82.132 28.582 81.912 28.221Q81.691 27.860 81.691 27.426M83.366 28.783Q83.574 28.783 83.761 28.711Q83.947 28.640 84.101 28.503Q84.255 28.366 84.350 28.188L84.350 26.579Q84.265 26.432 84.120 26.312Q83.974 26.192 83.805 26.133Q83.636 26.073 83.455 26.073Q82.894 26.073 82.626 26.462Q82.358 26.852 82.358 27.433Q82.358 28.004 82.592 28.394Q82.826 28.783 83.366 28.783M87.724 28.937L86.172 28.937L86.172 28.657Q86.398 28.657 86.546 28.623Q86.695 28.588 86.695 28.448L86.695 26.599Q86.695 26.411 86.647 26.327Q86.599 26.244 86.502 26.225Q86.404 26.206 86.193 26.206L86.193 25.926L87.249 25.851L87.249 28.448Q87.249 28.588 87.380 28.623Q87.512 28.657 87.724 28.657L87.724 28.937M86.452 24.630Q86.452 24.459 86.575 24.340Q86.698 24.220 86.869 24.220Q87.037 24.220 87.160 24.340Q87.283 24.459 87.283 24.630Q87.283 24.805 87.160 24.928Q87.037 25.051 86.869 25.051Q86.698 25.051 86.575 24.928Q86.452 24.805 86.452 24.630M89.959 28.910L88.831 26.411Q88.759 26.264 88.630 26.232Q88.500 26.199 88.271 26.199L88.271 25.919L89.785 25.919L89.785 26.199Q89.433 26.199 89.433 26.346Q89.433 26.391 89.443 26.411L90.308 28.329L91.087 26.599Q91.121 26.531 91.121 26.452Q91.121 26.339 91.037 26.269Q90.954 26.199 90.834 26.199L90.834 25.919L92.030 25.919L92.030 26.199Q91.812 26.199 91.641 26.302Q91.470 26.404 91.381 26.599L90.345 28.910Q90.298 29.005 90.192 29.005L90.113 29.005Q90.007 29.005 89.959 28.910M94.187 28.937L92.635 28.937L92.635 28.657Q92.861 28.657 93.010 28.623Q93.158 28.588 93.158 28.448L93.158 26.599Q93.158 26.411 93.110 26.327Q93.063 26.244 92.965 26.225Q92.868 26.206 92.656 26.206L92.656 25.926L93.712 25.851L93.712 28.448Q93.712 28.588 93.844 28.623Q93.975 28.657 94.187 28.657L94.187 28.937M92.916 24.630Q92.916 24.459 93.039 24.340Q93.162 24.220 93.333 24.220Q93.500 24.220 93.623 24.340Q93.746 24.459 93.746 24.630Q93.746 24.805 93.623 24.928Q93.500 25.051 93.333 25.051Q93.162 25.051 93.039 24.928Q92.916 24.805 92.916 24.630M94.833 27.426Q94.833 27.088 94.973 26.797Q95.113 26.507 95.358 26.293Q95.602 26.080 95.906 25.965Q96.211 25.851 96.535 25.851Q96.805 25.851 97.069 25.950Q97.332 26.049 97.523 26.227L97.523 24.829Q97.523 24.559 97.415 24.497Q97.308 24.436 96.997 24.436L96.997 24.155L98.073 24.080L98.073 28.264Q98.073 28.452 98.128 28.535Q98.183 28.619 98.284 28.638Q98.384 28.657 98.600 28.657L98.600 28.937L97.492 29.005L97.492 28.588Q97.075 29.005 96.450 29.005Q96.019 29.005 95.647 28.793Q95.274 28.582 95.054 28.221Q94.833 27.860 94.833 27.426M96.508 28.783Q96.716 28.783 96.903 28.711Q97.089 28.640 97.243 28.503Q97.397 28.366 97.492 28.188L97.492 26.579Q97.407 26.432 97.262 26.312Q97.116 26.192 96.947 26.133Q96.778 26.073 96.597 26.073Q96.036 26.073 95.768 26.462Q95.500 26.852 95.500 27.433Q95.500 28.004 95.734 28.394Q95.968 28.783 96.508 28.783M99.208 27.402Q99.208 27.081 99.333 26.792Q99.458 26.503 99.683 26.280Q99.909 26.056 100.204 25.936Q100.500 25.816 100.818 25.816Q101.146 25.816 101.408 25.916Q101.669 26.015 101.845 26.197Q102.021 26.380 102.115 26.638Q102.209 26.896 102.209 27.228Q102.209 27.320 102.127 27.341L99.871 27.341L99.871 27.402Q99.871 27.990 100.155 28.373Q100.439 28.756 101.006 28.756Q101.327 28.756 101.596 28.563Q101.864 28.370 101.953 28.055Q101.960 28.014 102.035 28L102.127 28Q102.209 28.024 102.209 28.096Q102.209 28.103 102.202 28.130Q102.089 28.527 101.719 28.766Q101.348 29.005 100.924 29.005Q100.486 29.005 100.087 28.797Q99.687 28.588 99.447 28.221Q99.208 27.854 99.208 27.402M99.878 27.132L101.693 27.132Q101.693 26.855 101.596 26.603Q101.498 26.350 101.300 26.194Q101.102 26.039 100.818 26.039Q100.541 26.039 100.328 26.197Q100.114 26.356 99.996 26.611Q99.878 26.866 99.878 27.132\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -38.084)\">\u003Cpath d=\"M106.315 28.937L106.048 28.937L106.048 24.829Q106.048 24.559 105.941 24.497Q105.833 24.436 105.522 24.436L105.522 24.155L106.602 24.080L106.602 26.250Q106.811 26.059 107.096 25.955Q107.382 25.851 107.679 25.851Q107.997 25.851 108.294 25.972Q108.591 26.093 108.814 26.309Q109.036 26.524 109.162 26.809Q109.289 27.095 109.289 27.426Q109.289 27.871 109.049 28.235Q108.810 28.599 108.417 28.802Q108.024 29.005 107.580 29.005Q107.385 29.005 107.195 28.949Q107.006 28.893 106.845 28.788Q106.684 28.684 106.544 28.523L106.315 28.937M106.630 26.592L106.630 28.209Q106.766 28.469 107.007 28.626Q107.248 28.783 107.525 28.783Q107.819 28.783 108.031 28.676Q108.243 28.568 108.376 28.376Q108.509 28.185 108.568 27.946Q108.626 27.707 108.626 27.426Q108.626 27.067 108.532 26.763Q108.438 26.459 108.210 26.266Q107.983 26.073 107.617 26.073Q107.317 26.073 107.050 26.209Q106.783 26.346 106.630 26.592\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -38.084)\">\u003Cpath d=\"M110.044 30.072Q110.174 30.140 110.311 30.140Q110.482 30.140 110.632 30.051Q110.783 29.962 110.894 29.817Q111.005 29.672 111.083 29.504L111.347 28.937L110.178 26.411Q110.103 26.264 109.973 26.232Q109.843 26.199 109.610 26.199L109.610 25.919L111.131 25.919L111.131 26.199Q110.783 26.199 110.783 26.346Q110.786 26.367 110.788 26.384Q110.790 26.401 110.790 26.411L111.647 28.270L112.420 26.599Q112.454 26.531 112.454 26.452Q112.454 26.339 112.370 26.269Q112.287 26.199 112.174 26.199L112.174 25.919L113.370 25.919L113.370 26.199Q113.151 26.199 112.979 26.303Q112.806 26.408 112.714 26.599L111.377 29.504Q111.207 29.874 110.937 30.120Q110.666 30.366 110.311 30.366Q110.041 30.366 109.822 30.200Q109.603 30.034 109.603 29.771Q109.603 29.634 109.696 29.545Q109.788 29.457 109.928 29.457Q110.065 29.457 110.154 29.545Q110.243 29.634 110.243 29.771Q110.243 29.874 110.190 29.952Q110.137 30.031 110.044 30.072\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -38.084)\">\u003Cpath d=\"M118.608 27.789L116.564 27.789L116.564 27.508L118.895 24.336Q118.930 24.289 118.995 24.289L119.131 24.289Q119.176 24.289 119.203 24.316Q119.230 24.343 119.230 24.388L119.230 27.508L119.993 27.508L119.993 27.789L119.230 27.789L119.230 28.448Q119.230 28.657 119.986 28.657L119.986 28.937L117.853 28.937L117.853 28.657Q118.608 28.657 118.608 28.448L118.608 27.789M118.656 25.064L116.865 27.508L118.656 27.508L118.656 25.064M120.909 30.694L120.840 30.694Q120.806 30.694 120.784 30.668Q120.762 30.643 120.762 30.608Q120.762 30.564 120.792 30.547Q121.148 30.243 121.397 29.853Q121.647 29.463 121.799 29.031Q121.951 28.599 122.021 28.130Q122.091 27.662 122.091 27.187Q122.091 26.708 122.021 26.242Q121.951 25.775 121.797 25.340Q121.644 24.904 121.392 24.516Q121.141 24.128 120.792 23.834Q120.762 23.817 120.762 23.772Q120.762 23.738 120.784 23.713Q120.806 23.687 120.840 23.687L120.909 23.687Q120.919 23.687 120.927 23.689Q120.936 23.690 120.946 23.694Q121.490 24.094 121.862 24.647Q122.235 25.201 122.416 25.847Q122.597 26.493 122.597 27.187Q122.597 27.888 122.416 28.535Q122.235 29.183 121.861 29.737Q121.486 30.291 120.946 30.687Q120.936 30.687 120.927 30.689Q120.919 30.690 120.909 30.694\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\">\u003Cpath fill=\"none\" d=\"M30.656 16.333v10.751\"\u002F>\u003Cpath d=\"m30.656 29.59 1.35-3.585-1.35 1.18-1.351-1.18Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(3.533 -3.94)\">\u003Cpath d=\"M32.652 28.937L31.018 28.937L31.018 28.657Q31.247 28.657 31.396 28.623Q31.545 28.588 31.545 28.448L31.545 26.599Q31.545 26.329 31.437 26.268Q31.329 26.206 31.018 26.206L31.018 25.926L32.078 25.851L32.078 26.500Q32.249 26.192 32.553 26.021Q32.857 25.851 33.202 25.851Q33.602 25.851 33.879 25.991Q34.156 26.131 34.241 26.479Q34.409 26.186 34.708 26.018Q35.007 25.851 35.352 25.851Q35.858 25.851 36.142 26.074Q36.426 26.298 36.426 26.794L36.426 28.448Q36.426 28.585 36.574 28.621Q36.723 28.657 36.948 28.657L36.948 28.937L35.318 28.937L35.318 28.657Q35.544 28.657 35.694 28.621Q35.844 28.585 35.844 28.448L35.844 26.808Q35.844 26.473 35.725 26.273Q35.605 26.073 35.291 26.073Q35.021 26.073 34.787 26.209Q34.552 26.346 34.414 26.580Q34.276 26.814 34.276 27.088L34.276 28.448Q34.276 28.585 34.424 28.621Q34.573 28.657 34.799 28.657L34.799 28.937L33.168 28.937L33.168 28.657Q33.397 28.657 33.546 28.623Q33.695 28.588 33.695 28.448L33.695 26.808Q33.695 26.473 33.575 26.273Q33.455 26.073 33.141 26.073Q32.871 26.073 32.637 26.209Q32.403 26.346 32.264 26.580Q32.126 26.814 32.126 27.088L32.126 28.448Q32.126 28.585 32.276 28.621Q32.427 28.657 32.652 28.657L32.652 28.937M37.495 27.402Q37.495 27.081 37.620 26.792Q37.745 26.503 37.970 26.280Q38.196 26.056 38.492 25.936Q38.787 25.816 39.105 25.816Q39.433 25.816 39.695 25.916Q39.956 26.015 40.132 26.197Q40.308 26.380 40.402 26.638Q40.496 26.896 40.496 27.228Q40.496 27.320 40.414 27.341L38.158 27.341L38.158 27.402Q38.158 27.990 38.442 28.373Q38.726 28.756 39.293 28.756Q39.614 28.756 39.883 28.563Q40.151 28.370 40.240 28.055Q40.247 28.014 40.322 28L40.414 28Q40.496 28.024 40.496 28.096Q40.496 28.103 40.489 28.130Q40.377 28.527 40.006 28.766Q39.635 29.005 39.211 29.005Q38.774 29.005 38.374 28.797Q37.974 28.588 37.735 28.221Q37.495 27.854 37.495 27.402M38.165 27.132L39.980 27.132Q39.980 26.855 39.883 26.603Q39.785 26.350 39.587 26.194Q39.389 26.039 39.105 26.039Q38.828 26.039 38.615 26.197Q38.401 26.356 38.283 26.611Q38.165 26.866 38.165 27.132M42.834 28.937L41.098 28.937L41.098 28.657Q41.327 28.657 41.476 28.623Q41.624 28.588 41.624 28.448L41.624 26.599Q41.624 26.329 41.517 26.268Q41.409 26.206 41.098 26.206L41.098 25.926L42.127 25.851L42.127 26.558Q42.257 26.250 42.499 26.051Q42.742 25.851 43.060 25.851Q43.279 25.851 43.449 25.975Q43.620 26.100 43.620 26.312Q43.620 26.449 43.521 26.548Q43.422 26.647 43.289 26.647Q43.152 26.647 43.053 26.548Q42.954 26.449 42.954 26.312Q42.954 26.172 43.053 26.073Q42.762 26.073 42.562 26.269Q42.363 26.466 42.270 26.760Q42.178 27.054 42.178 27.334L42.178 28.448Q42.178 28.657 42.834 28.657L42.834 28.937M44.164 29.470Q44.164 29.224 44.360 29.040Q44.557 28.855 44.813 28.776Q44.677 28.664 44.605 28.503Q44.533 28.342 44.533 28.161Q44.533 27.840 44.745 27.594Q44.410 27.296 44.410 26.886Q44.410 26.425 44.800 26.138Q45.189 25.851 45.668 25.851Q46.139 25.851 46.474 26.097Q46.649 25.943 46.859 25.861Q47.069 25.779 47.298 25.779Q47.462 25.779 47.583 25.886Q47.705 25.994 47.705 26.158Q47.705 26.254 47.633 26.326Q47.561 26.397 47.469 26.397Q47.370 26.397 47.300 26.324Q47.230 26.250 47.230 26.151Q47.230 26.097 47.243 26.066L47.250 26.052Q47.257 26.032 47.266 26.021Q47.274 26.011 47.278 26.004Q46.922 26.004 46.635 26.227Q46.922 26.520 46.922 26.886Q46.922 27.201 46.738 27.433Q46.553 27.666 46.264 27.794Q45.975 27.922 45.668 27.922Q45.466 27.922 45.275 27.872Q45.083 27.823 44.906 27.713Q44.813 27.840 44.813 27.983Q44.813 28.165 44.941 28.300Q45.070 28.435 45.254 28.435L45.886 28.435Q46.334 28.435 46.703 28.506Q47.073 28.578 47.332 28.807Q47.592 29.036 47.592 29.470Q47.592 29.791 47.296 29.993Q47.001 30.195 46.597 30.284Q46.194 30.373 45.880 30.373Q45.562 30.373 45.158 30.284Q44.755 30.195 44.459 29.993Q44.164 29.791 44.164 29.470M44.618 29.470Q44.618 29.699 44.837 29.848Q45.056 29.997 45.348 30.065Q45.640 30.133 45.880 30.133Q46.044 30.133 46.252 30.097Q46.461 30.062 46.667 29.981Q46.874 29.901 47.006 29.773Q47.137 29.645 47.137 29.470Q47.137 29.118 46.756 29.024Q46.375 28.930 45.873 28.930L45.254 28.930Q45.015 28.930 44.817 29.081Q44.618 29.231 44.618 29.470M45.668 27.683Q46.334 27.683 46.334 26.886Q46.334 26.086 45.668 26.086Q44.998 26.086 44.998 26.886Q44.998 27.683 45.668 27.683M48.146 27.402Q48.146 27.081 48.271 26.792Q48.395 26.503 48.621 26.280Q48.846 26.056 49.142 25.936Q49.438 25.816 49.756 25.816Q50.084 25.816 50.345 25.916Q50.607 26.015 50.783 26.197Q50.959 26.380 51.053 26.638Q51.147 26.896 51.147 27.228Q51.147 27.320 51.065 27.341L48.809 27.341L48.809 27.402Q48.809 27.990 49.093 28.373Q49.376 28.756 49.944 28.756Q50.265 28.756 50.533 28.563Q50.802 28.370 50.890 28.055Q50.897 28.014 50.972 28L51.065 28Q51.147 28.024 51.147 28.096Q51.147 28.103 51.140 28.130Q51.027 28.527 50.656 28.766Q50.285 29.005 49.862 29.005Q49.424 29.005 49.024 28.797Q48.624 28.588 48.385 28.221Q48.146 27.854 48.146 27.402M48.816 27.132L50.631 27.132Q50.631 26.855 50.533 26.603Q50.436 26.350 50.238 26.194Q50.039 26.039 49.756 26.039Q49.479 26.039 49.265 26.197Q49.052 26.356 48.934 26.611Q48.816 26.866 48.816 27.132\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -3.94)\">\u003Cpath d=\"M56.100 30.294L54.470 30.294L54.470 30.014Q54.699 30.014 54.848 29.979Q54.996 29.945 54.996 29.805L54.996 26.459Q54.996 26.288 54.860 26.247Q54.723 26.206 54.470 26.206L54.470 25.926L55.550 25.851L55.550 26.257Q55.772 26.056 56.059 25.953Q56.347 25.851 56.654 25.851Q57.081 25.851 57.445 26.064Q57.809 26.278 58.023 26.642Q58.237 27.006 58.237 27.426Q58.237 27.871 57.997 28.235Q57.758 28.599 57.365 28.802Q56.972 29.005 56.528 29.005Q56.261 29.005 56.013 28.905Q55.766 28.804 55.578 28.623L55.578 29.805Q55.578 29.942 55.726 29.978Q55.875 30.014 56.100 30.014L56.100 30.294M55.578 26.606L55.578 28.216Q55.711 28.469 55.954 28.626Q56.196 28.783 56.473 28.783Q56.801 28.783 57.054 28.582Q57.307 28.380 57.440 28.062Q57.574 27.744 57.574 27.426Q57.574 27.197 57.509 26.968Q57.444 26.739 57.316 26.541Q57.187 26.343 56.993 26.223Q56.798 26.104 56.565 26.104Q56.271 26.104 56.003 26.233Q55.735 26.363 55.578 26.606M58.931 28.209Q58.931 27.877 59.154 27.650Q59.378 27.423 59.722 27.295Q60.065 27.166 60.438 27.114Q60.810 27.061 61.115 27.061L61.115 26.808Q61.115 26.603 61.007 26.423Q60.899 26.244 60.718 26.141Q60.537 26.039 60.329 26.039Q59.922 26.039 59.686 26.131Q59.775 26.168 59.821 26.252Q59.867 26.336 59.867 26.438Q59.867 26.534 59.821 26.613Q59.775 26.691 59.694 26.736Q59.614 26.780 59.525 26.780Q59.375 26.780 59.274 26.683Q59.173 26.585 59.173 26.438Q59.173 25.816 60.329 25.816Q60.540 25.816 60.790 25.880Q61.039 25.943 61.241 26.062Q61.443 26.182 61.569 26.367Q61.696 26.551 61.696 26.794L61.696 28.370Q61.696 28.486 61.757 28.582Q61.819 28.677 61.932 28.677Q62.041 28.677 62.106 28.583Q62.171 28.489 62.171 28.370L62.171 27.922L62.437 27.922L62.437 28.370Q62.437 28.640 62.210 28.805Q61.983 28.971 61.703 28.971Q61.494 28.971 61.357 28.817Q61.221 28.664 61.197 28.448Q61.050 28.715 60.768 28.860Q60.486 29.005 60.161 29.005Q59.884 29.005 59.600 28.930Q59.317 28.855 59.124 28.676Q58.931 28.496 58.931 28.209M59.546 28.209Q59.546 28.383 59.647 28.513Q59.747 28.643 59.903 28.713Q60.059 28.783 60.223 28.783Q60.441 28.783 60.650 28.686Q60.858 28.588 60.986 28.407Q61.115 28.226 61.115 28L61.115 27.272Q60.790 27.272 60.424 27.363Q60.059 27.454 59.802 27.666Q59.546 27.877 59.546 28.209M62.854 28.930L62.854 27.867Q62.854 27.843 62.882 27.816Q62.909 27.789 62.933 27.789L63.042 27.789Q63.107 27.789 63.121 27.847Q63.217 28.281 63.463 28.532Q63.709 28.783 64.122 28.783Q64.464 28.783 64.717 28.650Q64.970 28.517 64.970 28.209Q64.970 28.052 64.876 27.937Q64.782 27.823 64.644 27.754Q64.505 27.686 64.338 27.648L63.757 27.549Q63.401 27.481 63.128 27.260Q62.854 27.040 62.854 26.698Q62.854 26.449 62.965 26.274Q63.077 26.100 63.263 26.001Q63.449 25.902 63.664 25.859Q63.880 25.816 64.122 25.816Q64.536 25.816 64.816 25.998L65.032 25.823Q65.042 25.820 65.049 25.818Q65.056 25.816 65.066 25.816L65.117 25.816Q65.144 25.816 65.168 25.840Q65.192 25.864 65.192 25.892L65.192 26.739Q65.192 26.760 65.168 26.787Q65.144 26.814 65.117 26.814L65.004 26.814Q64.977 26.814 64.951 26.789Q64.926 26.763 64.926 26.739Q64.926 26.503 64.820 26.339Q64.714 26.175 64.531 26.093Q64.348 26.011 64.116 26.011Q63.788 26.011 63.531 26.114Q63.275 26.216 63.275 26.493Q63.275 26.688 63.458 26.797Q63.641 26.907 63.870 26.948L64.444 27.054Q64.690 27.102 64.903 27.230Q65.117 27.358 65.254 27.561Q65.391 27.765 65.391 28.014Q65.391 28.527 65.025 28.766Q64.659 29.005 64.122 29.005Q63.627 29.005 63.295 28.711L63.029 28.985Q63.008 29.005 62.981 29.005L62.933 29.005Q62.909 29.005 62.882 28.978Q62.854 28.951 62.854 28.930M66.019 28.930L66.019 27.867Q66.019 27.843 66.047 27.816Q66.074 27.789 66.098 27.789L66.207 27.789Q66.272 27.789 66.286 27.847Q66.382 28.281 66.628 28.532Q66.874 28.783 67.288 28.783Q67.629 28.783 67.882 28.650Q68.135 28.517 68.135 28.209Q68.135 28.052 68.041 27.937Q67.947 27.823 67.809 27.754Q67.670 27.686 67.503 27.648L66.922 27.549Q66.566 27.481 66.293 27.260Q66.019 27.040 66.019 26.698Q66.019 26.449 66.131 26.274Q66.242 26.100 66.428 26.001Q66.614 25.902 66.829 25.859Q67.045 25.816 67.288 25.816Q67.701 25.816 67.981 25.998L68.197 25.823Q68.207 25.820 68.214 25.818Q68.221 25.816 68.231 25.816L68.282 25.816Q68.309 25.816 68.333 25.840Q68.357 25.864 68.357 25.892L68.357 26.739Q68.357 26.760 68.333 26.787Q68.309 26.814 68.282 26.814L68.169 26.814Q68.142 26.814 68.116 26.789Q68.091 26.763 68.091 26.739Q68.091 26.503 67.985 26.339Q67.879 26.175 67.696 26.093Q67.513 26.011 67.281 26.011Q66.953 26.011 66.696 26.114Q66.440 26.216 66.440 26.493Q66.440 26.688 66.623 26.797Q66.806 26.907 67.035 26.948L67.609 27.054Q67.855 27.102 68.069 27.230Q68.282 27.358 68.419 27.561Q68.556 27.765 68.556 28.014Q68.556 28.527 68.190 28.766Q67.824 29.005 67.288 29.005Q66.792 29.005 66.460 28.711L66.194 28.985Q66.173 29.005 66.146 29.005L66.098 29.005Q66.074 29.005 66.047 28.978Q66.019 28.951 66.019 28.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -3.94)\">\u003Cpath d=\"M72.371 28.390Q72.491 28.547 72.682 28.646Q72.874 28.746 73.089 28.785Q73.304 28.824 73.527 28.824Q73.824 28.824 74.019 28.669Q74.214 28.513 74.304 28.259Q74.395 28.004 74.395 27.720Q74.395 27.426 74.303 27.175Q74.210 26.924 74.012 26.768Q73.814 26.613 73.520 26.613L73.004 26.613Q72.976 26.613 72.951 26.587Q72.925 26.562 72.925 26.538L72.925 26.466Q72.925 26.435 72.951 26.413Q72.976 26.391 73.004 26.391L73.445 26.360Q73.807 26.360 74.027 26.003Q74.248 25.645 74.248 25.256Q74.248 24.928 74.053 24.724Q73.858 24.521 73.527 24.521Q73.240 24.521 72.987 24.605Q72.734 24.688 72.570 24.876Q72.717 24.876 72.817 24.991Q72.918 25.105 72.918 25.256Q72.918 25.406 72.812 25.516Q72.706 25.625 72.549 25.625Q72.388 25.625 72.279 25.516Q72.170 25.406 72.170 25.256Q72.170 24.931 72.378 24.712Q72.587 24.494 72.903 24.391Q73.219 24.289 73.527 24.289Q73.845 24.289 74.173 24.393Q74.501 24.497 74.728 24.719Q74.955 24.941 74.955 25.256Q74.955 25.690 74.668 26.015Q74.381 26.339 73.947 26.486Q74.258 26.551 74.538 26.717Q74.819 26.883 74.996 27.141Q75.174 27.399 75.174 27.720Q75.174 28.130 74.930 28.440Q74.685 28.749 74.304 28.913Q73.923 29.077 73.527 29.077Q73.158 29.077 72.800 28.964Q72.443 28.852 72.199 28.602Q71.954 28.353 71.954 27.983Q71.954 27.812 72.071 27.700Q72.187 27.587 72.358 27.587Q72.467 27.587 72.558 27.638Q72.648 27.689 72.703 27.782Q72.758 27.874 72.758 27.983Q72.758 28.151 72.645 28.270Q72.532 28.390 72.371 28.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -3.94)\">\u003Cpath d=\"M80.700 30.687Q80.150 30.287 79.779 29.732Q79.408 29.176 79.227 28.530Q79.046 27.884 79.046 27.187Q79.046 26.674 79.146 26.179Q79.247 25.683 79.452 25.232Q79.657 24.781 79.970 24.389Q80.283 23.998 80.700 23.694Q80.710 23.690 80.717 23.689Q80.724 23.687 80.734 23.687L80.802 23.687Q80.837 23.687 80.859 23.711Q80.881 23.735 80.881 23.772Q80.881 23.817 80.854 23.834Q80.505 24.135 80.252 24.519Q79.999 24.904 79.847 25.345Q79.695 25.786 79.623 26.242Q79.551 26.698 79.551 27.187Q79.551 28.188 79.861 29.075Q80.170 29.962 80.854 30.547Q80.881 30.564 80.881 30.608Q80.881 30.646 80.859 30.670Q80.837 30.694 80.802 30.694L80.734 30.694Q80.727 30.690 80.719 30.689Q80.710 30.687 80.700 30.687M81.691 27.426Q81.691 27.088 81.831 26.797Q81.971 26.507 82.216 26.293Q82.460 26.080 82.764 25.965Q83.069 25.851 83.393 25.851Q83.663 25.851 83.926 25.950Q84.190 26.049 84.381 26.227L84.381 24.829Q84.381 24.559 84.273 24.497Q84.166 24.436 83.855 24.436L83.855 24.155L84.931 24.080L84.931 28.264Q84.931 28.452 84.986 28.535Q85.041 28.619 85.141 28.638Q85.242 28.657 85.458 28.657L85.458 28.937L84.350 29.005L84.350 28.588Q83.933 29.005 83.308 29.005Q82.877 29.005 82.505 28.793Q82.132 28.582 81.912 28.221Q81.691 27.860 81.691 27.426M83.366 28.783Q83.574 28.783 83.761 28.711Q83.947 28.640 84.101 28.503Q84.255 28.366 84.350 28.188L84.350 26.579Q84.265 26.432 84.120 26.312Q83.974 26.192 83.805 26.133Q83.636 26.073 83.455 26.073Q82.894 26.073 82.626 26.462Q82.358 26.852 82.358 27.433Q82.358 28.004 82.592 28.394Q82.826 28.783 83.366 28.783M87.724 28.937L86.172 28.937L86.172 28.657Q86.398 28.657 86.546 28.623Q86.695 28.588 86.695 28.448L86.695 26.599Q86.695 26.411 86.647 26.327Q86.599 26.244 86.502 26.225Q86.404 26.206 86.193 26.206L86.193 25.926L87.249 25.851L87.249 28.448Q87.249 28.588 87.380 28.623Q87.512 28.657 87.724 28.657L87.724 28.937M86.452 24.630Q86.452 24.459 86.575 24.340Q86.698 24.220 86.869 24.220Q87.037 24.220 87.160 24.340Q87.283 24.459 87.283 24.630Q87.283 24.805 87.160 24.928Q87.037 25.051 86.869 25.051Q86.698 25.051 86.575 24.928Q86.452 24.805 86.452 24.630M89.959 28.910L88.831 26.411Q88.759 26.264 88.630 26.232Q88.500 26.199 88.271 26.199L88.271 25.919L89.785 25.919L89.785 26.199Q89.433 26.199 89.433 26.346Q89.433 26.391 89.443 26.411L90.308 28.329L91.087 26.599Q91.121 26.531 91.121 26.452Q91.121 26.339 91.037 26.269Q90.954 26.199 90.834 26.199L90.834 25.919L92.030 25.919L92.030 26.199Q91.812 26.199 91.641 26.302Q91.470 26.404 91.381 26.599L90.345 28.910Q90.298 29.005 90.192 29.005L90.113 29.005Q90.007 29.005 89.959 28.910M94.187 28.937L92.635 28.937L92.635 28.657Q92.861 28.657 93.010 28.623Q93.158 28.588 93.158 28.448L93.158 26.599Q93.158 26.411 93.110 26.327Q93.063 26.244 92.965 26.225Q92.868 26.206 92.656 26.206L92.656 25.926L93.712 25.851L93.712 28.448Q93.712 28.588 93.844 28.623Q93.975 28.657 94.187 28.657L94.187 28.937M92.916 24.630Q92.916 24.459 93.039 24.340Q93.162 24.220 93.333 24.220Q93.500 24.220 93.623 24.340Q93.746 24.459 93.746 24.630Q93.746 24.805 93.623 24.928Q93.500 25.051 93.333 25.051Q93.162 25.051 93.039 24.928Q92.916 24.805 92.916 24.630M94.833 27.426Q94.833 27.088 94.973 26.797Q95.113 26.507 95.358 26.293Q95.602 26.080 95.906 25.965Q96.211 25.851 96.535 25.851Q96.805 25.851 97.069 25.950Q97.332 26.049 97.523 26.227L97.523 24.829Q97.523 24.559 97.415 24.497Q97.308 24.436 96.997 24.436L96.997 24.155L98.073 24.080L98.073 28.264Q98.073 28.452 98.128 28.535Q98.183 28.619 98.284 28.638Q98.384 28.657 98.600 28.657L98.600 28.937L97.492 29.005L97.492 28.588Q97.075 29.005 96.450 29.005Q96.019 29.005 95.647 28.793Q95.274 28.582 95.054 28.221Q94.833 27.860 94.833 27.426M96.508 28.783Q96.716 28.783 96.903 28.711Q97.089 28.640 97.243 28.503Q97.397 28.366 97.492 28.188L97.492 26.579Q97.407 26.432 97.262 26.312Q97.116 26.192 96.947 26.133Q96.778 26.073 96.597 26.073Q96.036 26.073 95.768 26.462Q95.500 26.852 95.500 27.433Q95.500 28.004 95.734 28.394Q95.968 28.783 96.508 28.783M99.208 27.402Q99.208 27.081 99.333 26.792Q99.458 26.503 99.683 26.280Q99.909 26.056 100.204 25.936Q100.500 25.816 100.818 25.816Q101.146 25.816 101.408 25.916Q101.669 26.015 101.845 26.197Q102.021 26.380 102.115 26.638Q102.209 26.896 102.209 27.228Q102.209 27.320 102.127 27.341L99.871 27.341L99.871 27.402Q99.871 27.990 100.155 28.373Q100.439 28.756 101.006 28.756Q101.327 28.756 101.596 28.563Q101.864 28.370 101.953 28.055Q101.960 28.014 102.035 28L102.127 28Q102.209 28.024 102.209 28.096Q102.209 28.103 102.202 28.130Q102.089 28.527 101.719 28.766Q101.348 29.005 100.924 29.005Q100.486 29.005 100.087 28.797Q99.687 28.588 99.447 28.221Q99.208 27.854 99.208 27.402M99.878 27.132L101.693 27.132Q101.693 26.855 101.596 26.603Q101.498 26.350 101.300 26.194Q101.102 26.039 100.818 26.039Q100.541 26.039 100.328 26.197Q100.114 26.356 99.996 26.611Q99.878 26.866 99.878 27.132\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -3.94)\">\u003Cpath d=\"M106.315 28.937L106.048 28.937L106.048 24.829Q106.048 24.559 105.941 24.497Q105.833 24.436 105.522 24.436L105.522 24.155L106.602 24.080L106.602 26.250Q106.811 26.059 107.096 25.955Q107.382 25.851 107.679 25.851Q107.997 25.851 108.294 25.972Q108.591 26.093 108.814 26.309Q109.036 26.524 109.162 26.809Q109.289 27.095 109.289 27.426Q109.289 27.871 109.049 28.235Q108.810 28.599 108.417 28.802Q108.024 29.005 107.580 29.005Q107.385 29.005 107.195 28.949Q107.006 28.893 106.845 28.788Q106.684 28.684 106.544 28.523L106.315 28.937M106.630 26.592L106.630 28.209Q106.766 28.469 107.007 28.626Q107.248 28.783 107.525 28.783Q107.819 28.783 108.031 28.676Q108.243 28.568 108.376 28.376Q108.509 28.185 108.568 27.946Q108.626 27.707 108.626 27.426Q108.626 27.067 108.532 26.763Q108.438 26.459 108.210 26.266Q107.983 26.073 107.617 26.073Q107.317 26.073 107.050 26.209Q106.783 26.346 106.630 26.592\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -3.94)\">\u003Cpath d=\"M110.044 30.072Q110.174 30.140 110.311 30.140Q110.482 30.140 110.632 30.051Q110.783 29.962 110.894 29.817Q111.005 29.672 111.083 29.504L111.347 28.937L110.178 26.411Q110.103 26.264 109.973 26.232Q109.843 26.199 109.610 26.199L109.610 25.919L111.131 25.919L111.131 26.199Q110.783 26.199 110.783 26.346Q110.786 26.367 110.788 26.384Q110.790 26.401 110.790 26.411L111.647 28.270L112.420 26.599Q112.454 26.531 112.454 26.452Q112.454 26.339 112.370 26.269Q112.287 26.199 112.174 26.199L112.174 25.919L113.370 25.919L113.370 26.199Q113.151 26.199 112.979 26.303Q112.806 26.408 112.714 26.599L111.377 29.504Q111.207 29.874 110.937 30.120Q110.666 30.366 110.311 30.366Q110.041 30.366 109.822 30.200Q109.603 30.034 109.603 29.771Q109.603 29.634 109.696 29.545Q109.788 29.457 109.928 29.457Q110.065 29.457 110.154 29.545Q110.243 29.634 110.243 29.771Q110.243 29.874 110.190 29.952Q110.137 30.031 110.044 30.072\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -3.94)\">\u003Cpath d=\"M118.608 27.789L116.564 27.789L116.564 27.508L118.895 24.336Q118.930 24.289 118.995 24.289L119.131 24.289Q119.176 24.289 119.203 24.316Q119.230 24.343 119.230 24.388L119.230 27.508L119.993 27.508L119.993 27.789L119.230 27.789L119.230 28.448Q119.230 28.657 119.986 28.657L119.986 28.937L117.853 28.937L117.853 28.657Q118.608 28.657 118.608 28.448L118.608 27.789M118.656 25.064L116.865 27.508L118.656 27.508L118.656 25.064M120.909 30.694L120.840 30.694Q120.806 30.694 120.784 30.668Q120.762 30.643 120.762 30.608Q120.762 30.564 120.792 30.547Q121.148 30.243 121.397 29.853Q121.647 29.463 121.799 29.031Q121.951 28.599 122.021 28.130Q122.091 27.662 122.091 27.187Q122.091 26.708 122.021 26.242Q121.951 25.775 121.797 25.340Q121.644 24.904 121.392 24.516Q121.141 24.128 120.792 23.834Q120.762 23.817 120.762 23.772Q120.762 23.738 120.784 23.713Q120.806 23.687 120.840 23.687L120.909 23.687Q120.919 23.687 120.927 23.689Q120.936 23.690 120.946 23.694Q121.490 24.094 121.862 24.647Q122.235 25.201 122.416 25.847Q122.597 26.493 122.597 27.187Q122.597 27.888 122.416 28.535Q122.235 29.183 121.861 29.737Q121.486 30.291 120.946 30.687Q120.936 30.687 120.927 30.689Q120.919 30.690 120.909 30.694\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-92.926 -89.299)\">\u003Cpath d=\"M32.614 30.294L30.984 30.294L30.984 30.014Q31.213 30.014 31.362 29.979Q31.510 29.945 31.510 29.805L31.510 26.459Q31.510 26.288 31.374 26.247Q31.237 26.206 30.984 26.206L30.984 25.926L32.064 25.851L32.064 26.257Q32.286 26.056 32.573 25.953Q32.861 25.851 33.168 25.851Q33.595 25.851 33.959 26.064Q34.323 26.278 34.537 26.642Q34.751 27.006 34.751 27.426Q34.751 27.871 34.511 28.235Q34.272 28.599 33.879 28.802Q33.486 29.005 33.042 29.005Q32.775 29.005 32.527 28.905Q32.280 28.804 32.092 28.623L32.092 29.805Q32.092 29.942 32.240 29.978Q32.389 30.014 32.614 30.014L32.614 30.294M32.092 26.606L32.092 28.216Q32.225 28.469 32.468 28.626Q32.710 28.783 32.987 28.783Q33.315 28.783 33.568 28.582Q33.821 28.380 33.954 28.062Q34.088 27.744 34.088 27.426Q34.088 27.197 34.023 26.968Q33.958 26.739 33.830 26.541Q33.701 26.343 33.507 26.223Q33.312 26.104 33.079 26.104Q32.785 26.104 32.517 26.233Q32.249 26.363 32.092 26.606M37.068 28.937L35.434 28.937L35.434 28.657Q35.663 28.657 35.812 28.623Q35.961 28.588 35.961 28.448L35.961 24.829Q35.961 24.559 35.853 24.497Q35.745 24.436 35.434 24.436L35.434 24.155L36.514 24.080L36.514 26.466Q36.620 26.281 36.798 26.139Q36.976 25.998 37.184 25.924Q37.393 25.851 37.618 25.851Q38.124 25.851 38.408 26.074Q38.692 26.298 38.692 26.794L38.692 28.448Q38.692 28.585 38.840 28.621Q38.989 28.657 39.215 28.657L39.215 28.937L37.584 28.937L37.584 28.657Q37.813 28.657 37.962 28.623Q38.111 28.588 38.111 28.448L38.111 26.808Q38.111 26.473 37.991 26.273Q37.871 26.073 37.557 26.073Q37.287 26.073 37.053 26.209Q36.819 26.346 36.680 26.580Q36.542 26.814 36.542 27.088L36.542 28.448Q36.542 28.585 36.692 28.621Q36.843 28.657 37.068 28.657L37.068 28.937M39.861 28.209Q39.861 27.877 40.084 27.650Q40.308 27.423 40.652 27.295Q40.995 27.166 41.368 27.114Q41.740 27.061 42.045 27.061L42.045 26.808Q42.045 26.603 41.937 26.423Q41.829 26.244 41.648 26.141Q41.467 26.039 41.259 26.039Q40.852 26.039 40.616 26.131Q40.705 26.168 40.751 26.252Q40.797 26.336 40.797 26.438Q40.797 26.534 40.751 26.613Q40.705 26.691 40.625 26.736Q40.544 26.780 40.455 26.780Q40.305 26.780 40.204 26.683Q40.103 26.585 40.103 26.438Q40.103 25.816 41.259 25.816Q41.470 25.816 41.720 25.880Q41.969 25.943 42.171 26.062Q42.373 26.182 42.499 26.367Q42.626 26.551 42.626 26.794L42.626 28.370Q42.626 28.486 42.687 28.582Q42.749 28.677 42.862 28.677Q42.971 28.677 43.036 28.583Q43.101 28.489 43.101 28.370L43.101 27.922L43.367 27.922L43.367 28.370Q43.367 28.640 43.140 28.805Q42.913 28.971 42.633 28.971Q42.424 28.971 42.287 28.817Q42.151 28.664 42.127 28.448Q41.980 28.715 41.698 28.860Q41.416 29.005 41.091 29.005Q40.814 29.005 40.531 28.930Q40.247 28.855 40.054 28.676Q39.861 28.496 39.861 28.209M40.476 28.209Q40.476 28.383 40.577 28.513Q40.677 28.643 40.833 28.713Q40.989 28.783 41.153 28.783Q41.371 28.783 41.580 28.686Q41.788 28.588 41.916 28.407Q42.045 28.226 42.045 28L42.045 27.272Q41.720 27.272 41.354 27.363Q40.989 27.454 40.732 27.666Q40.476 27.877 40.476 28.209M43.784 28.930L43.784 27.867Q43.784 27.843 43.812 27.816Q43.839 27.789 43.863 27.789L43.972 27.789Q44.037 27.789 44.051 27.847Q44.147 28.281 44.393 28.532Q44.639 28.783 45.052 28.783Q45.394 28.783 45.647 28.650Q45.900 28.517 45.900 28.209Q45.900 28.052 45.806 27.937Q45.712 27.823 45.574 27.754Q45.435 27.686 45.268 27.648L44.687 27.549Q44.331 27.481 44.058 27.260Q43.784 27.040 43.784 26.698Q43.784 26.449 43.896 26.274Q44.007 26.100 44.193 26.001Q44.379 25.902 44.594 25.859Q44.810 25.816 45.052 25.816Q45.466 25.816 45.746 25.998L45.962 25.823Q45.972 25.820 45.979 25.818Q45.986 25.816 45.996 25.816L46.047 25.816Q46.074 25.816 46.098 25.840Q46.122 25.864 46.122 25.892L46.122 26.739Q46.122 26.760 46.098 26.787Q46.074 26.814 46.047 26.814L45.934 26.814Q45.907 26.814 45.881 26.789Q45.856 26.763 45.856 26.739Q45.856 26.503 45.750 26.339Q45.644 26.175 45.461 26.093Q45.278 26.011 45.046 26.011Q44.718 26.011 44.461 26.114Q44.205 26.216 44.205 26.493Q44.205 26.688 44.388 26.797Q44.571 26.907 44.800 26.948L45.374 27.054Q45.620 27.102 45.833 27.230Q46.047 27.358 46.184 27.561Q46.321 27.765 46.321 28.014Q46.321 28.527 45.955 28.766Q45.589 29.005 45.052 29.005Q44.557 29.005 44.225 28.711L43.959 28.985Q43.938 29.005 43.911 29.005L43.863 29.005Q43.839 29.005 43.812 28.978Q43.784 28.951 43.784 28.930M46.908 27.402Q46.908 27.081 47.033 26.792Q47.158 26.503 47.384 26.280Q47.609 26.056 47.905 25.936Q48.200 25.816 48.518 25.816Q48.846 25.816 49.108 25.916Q49.369 26.015 49.545 26.197Q49.721 26.380 49.815 26.638Q49.909 26.896 49.909 27.228Q49.909 27.320 49.827 27.341L47.572 27.341L47.572 27.402Q47.572 27.990 47.855 28.373Q48.139 28.756 48.706 28.756Q49.028 28.756 49.296 28.563Q49.564 28.370 49.653 28.055Q49.660 28.014 49.735 28L49.827 28Q49.909 28.024 49.909 28.096Q49.909 28.103 49.903 28.130Q49.790 28.527 49.419 28.766Q49.048 29.005 48.624 29.005Q48.187 29.005 47.787 28.797Q47.387 28.588 47.148 28.221Q46.908 27.854 46.908 27.402M47.578 27.132L49.393 27.132Q49.393 26.855 49.296 26.603Q49.198 26.350 49 26.194Q48.802 26.039 48.518 26.039Q48.241 26.039 48.028 26.197Q47.814 26.356 47.696 26.611Q47.578 26.866 47.578 27.132\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.926 -89.299)\">\u003Cpath d=\"M56.219 28.937L53.689 28.937L53.689 28.657Q54.657 28.657 54.657 28.448L54.657 24.829Q54.264 25.017 53.642 25.017L53.642 24.736Q54.059 24.736 54.423 24.635Q54.787 24.535 55.043 24.289L55.169 24.289Q55.234 24.306 55.251 24.374L55.251 28.448Q55.251 28.657 56.219 28.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.926 -89.299)\">\u003Cpath d=\"M59.847 27.454Q59.847 27.112 59.982 26.813Q60.117 26.514 60.357 26.290Q60.596 26.066 60.914 25.941Q61.232 25.816 61.563 25.816Q62.008 25.816 62.407 26.032Q62.807 26.247 63.042 26.625Q63.276 27.002 63.276 27.454Q63.276 27.795 63.134 28.079Q62.992 28.363 62.748 28.570Q62.503 28.776 62.194 28.891Q61.885 29.005 61.563 29.005Q61.133 29.005 60.731 28.804Q60.329 28.602 60.088 28.250Q59.847 27.898 59.847 27.454M61.563 28.756Q62.165 28.756 62.389 28.378Q62.613 28 62.613 27.368Q62.613 26.756 62.378 26.397Q62.144 26.039 61.563 26.039Q60.511 26.039 60.511 27.368Q60.511 28 60.736 28.378Q60.962 28.756 61.563 28.756M64.445 28.103L64.445 26.599Q64.445 26.329 64.337 26.268Q64.229 26.206 63.918 26.206L63.918 25.926L65.026 25.851L65.026 28.083L65.026 28.103Q65.026 28.383 65.077 28.527Q65.128 28.670 65.270 28.727Q65.412 28.783 65.699 28.783Q65.952 28.783 66.157 28.643Q66.362 28.503 66.478 28.277Q66.595 28.052 66.595 27.802L66.595 26.599Q66.595 26.329 66.487 26.268Q66.379 26.206 66.068 26.206L66.068 25.926L67.176 25.851L67.176 28.264Q67.176 28.455 67.229 28.537Q67.282 28.619 67.382 28.638Q67.483 28.657 67.699 28.657L67.699 28.937L66.622 29.005L66.622 28.441Q66.512 28.623 66.367 28.746Q66.222 28.869 66.036 28.937Q65.849 29.005 65.648 29.005Q64.445 29.005 64.445 28.103M68.813 28.096L68.813 26.199L68.174 26.199L68.174 25.977Q68.491 25.977 68.709 25.767Q68.926 25.557 69.026 25.247Q69.127 24.938 69.127 24.630L69.394 24.630L69.394 25.919L70.470 25.919L70.470 26.199L69.394 26.199L69.394 28.083Q69.394 28.359 69.498 28.558Q69.602 28.756 69.862 28.756Q70.019 28.756 70.125 28.652Q70.231 28.547 70.281 28.394Q70.330 28.240 70.330 28.083L70.330 27.669L70.597 27.669L70.597 28.096Q70.597 28.322 70.498 28.532Q70.399 28.742 70.214 28.874Q70.030 29.005 69.801 29.005Q69.363 29.005 69.088 28.768Q68.813 28.530 68.813 28.096M73.051 30.294L71.421 30.294L71.421 30.014Q71.650 30.014 71.798 29.979Q71.947 29.945 71.947 29.805L71.947 26.459Q71.947 26.288 71.810 26.247Q71.674 26.206 71.421 26.206L71.421 25.926L72.501 25.851L72.501 26.257Q72.723 26.056 73.010 25.953Q73.297 25.851 73.605 25.851Q74.032 25.851 74.396 26.064Q74.760 26.278 74.974 26.642Q75.187 27.006 75.187 27.426Q75.187 27.871 74.948 28.235Q74.709 28.599 74.316 28.802Q73.923 29.005 73.478 29.005Q73.212 29.005 72.964 28.905Q72.716 28.804 72.528 28.623L72.528 29.805Q72.528 29.942 72.677 29.978Q72.825 30.014 73.051 30.014L73.051 30.294M72.528 26.606L72.528 28.216Q72.661 28.469 72.904 28.626Q73.147 28.783 73.424 28.783Q73.752 28.783 74.005 28.582Q74.258 28.380 74.391 28.062Q74.524 27.744 74.524 27.426Q74.524 27.197 74.459 26.968Q74.394 26.739 74.266 26.541Q74.138 26.343 73.943 26.223Q73.748 26.104 73.516 26.104Q73.222 26.104 72.954 26.233Q72.685 26.363 72.528 26.606M76.397 28.103L76.397 26.599Q76.397 26.329 76.290 26.268Q76.182 26.206 75.871 26.206L75.871 25.926L76.978 25.851L76.978 28.083L76.978 28.103Q76.978 28.383 77.030 28.527Q77.081 28.670 77.223 28.727Q77.365 28.783 77.652 28.783Q77.905 28.783 78.110 28.643Q78.315 28.503 78.431 28.277Q78.547 28.052 78.547 27.802L78.547 26.599Q78.547 26.329 78.439 26.268Q78.332 26.206 78.021 26.206L78.021 25.926L79.128 25.851L79.128 28.264Q79.128 28.455 79.181 28.537Q79.234 28.619 79.335 28.638Q79.436 28.657 79.651 28.657L79.651 28.937L78.574 29.005L78.574 28.441Q78.465 28.623 78.320 28.746Q78.175 28.869 77.988 28.937Q77.802 29.005 77.600 29.005Q76.397 29.005 76.397 28.103M80.765 28.096L80.765 26.199L80.126 26.199L80.126 25.977Q80.444 25.977 80.661 25.767Q80.878 25.557 80.979 25.247Q81.080 24.938 81.080 24.630L81.346 24.630L81.346 25.919L82.423 25.919L82.423 26.199L81.346 26.199L81.346 28.083Q81.346 28.359 81.451 28.558Q81.555 28.756 81.815 28.756Q81.972 28.756 82.078 28.652Q82.184 28.547 82.233 28.394Q82.283 28.240 82.283 28.083L82.283 27.669L82.550 27.669L82.550 28.096Q82.550 28.322 82.450 28.532Q82.351 28.742 82.167 28.874Q81.982 29.005 81.753 29.005Q81.316 29.005 81.041 28.768Q80.765 28.530 80.765 28.096\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-56.897 13.811)\">\u003Cpath d=\"M30.970 27.426Q30.970 27.088 31.111 26.797Q31.251 26.507 31.495 26.293Q31.739 26.080 32.044 25.965Q32.348 25.851 32.673 25.851Q32.943 25.851 33.206 25.950Q33.469 26.049 33.660 26.227L33.660 24.829Q33.660 24.559 33.553 24.497Q33.445 24.436 33.134 24.436L33.134 24.155L34.211 24.080L34.211 28.264Q34.211 28.452 34.265 28.535Q34.320 28.619 34.421 28.638Q34.522 28.657 34.737 28.657L34.737 28.937L33.630 29.005L33.630 28.588Q33.213 29.005 32.587 29.005Q32.156 29.005 31.784 28.793Q31.411 28.582 31.191 28.221Q30.970 27.860 30.970 27.426M32.645 28.783Q32.854 28.783 33.040 28.711Q33.226 28.640 33.380 28.503Q33.534 28.366 33.630 28.188L33.630 26.579Q33.544 26.432 33.399 26.312Q33.254 26.192 33.084 26.133Q32.915 26.073 32.734 26.073Q32.174 26.073 31.905 26.462Q31.637 26.852 31.637 27.433Q31.637 28.004 31.871 28.394Q32.105 28.783 32.645 28.783M35.345 27.454Q35.345 27.112 35.480 26.813Q35.615 26.514 35.855 26.290Q36.094 26.066 36.412 25.941Q36.730 25.816 37.061 25.816Q37.506 25.816 37.906 26.032Q38.305 26.247 38.540 26.625Q38.774 27.002 38.774 27.454Q38.774 27.795 38.632 28.079Q38.490 28.363 38.246 28.570Q38.001 28.776 37.692 28.891Q37.383 29.005 37.061 29.005Q36.631 29.005 36.229 28.804Q35.827 28.602 35.586 28.250Q35.345 27.898 35.345 27.454M37.061 28.756Q37.663 28.756 37.887 28.378Q38.111 28 38.111 27.368Q38.111 26.756 37.876 26.397Q37.642 26.039 37.061 26.039Q36.009 26.039 36.009 27.368Q36.009 28 36.234 28.378Q36.460 28.756 37.061 28.756M41.050 28.937L39.416 28.937L39.416 28.657Q39.645 28.657 39.794 28.623Q39.943 28.588 39.943 28.448L39.943 26.599Q39.943 26.329 39.835 26.268Q39.727 26.206 39.416 26.206L39.416 25.926L40.476 25.851L40.476 26.500Q40.647 26.192 40.951 26.021Q41.255 25.851 41.600 25.851Q42.106 25.851 42.390 26.074Q42.674 26.298 42.674 26.794L42.674 28.448Q42.674 28.585 42.822 28.621Q42.971 28.657 43.197 28.657L43.197 28.937L41.566 28.937L41.566 28.657Q41.795 28.657 41.944 28.623Q42.093 28.588 42.093 28.448L42.093 26.808Q42.093 26.473 41.973 26.273Q41.853 26.073 41.539 26.073Q41.269 26.073 41.035 26.209Q40.801 26.346 40.662 26.580Q40.524 26.814 40.524 27.088L40.524 28.448Q40.524 28.585 40.674 28.621Q40.824 28.657 41.050 28.657L41.050 28.937M43.743 27.402Q43.743 27.081 43.868 26.792Q43.993 26.503 44.218 26.280Q44.444 26.056 44.740 25.936Q45.035 25.816 45.353 25.816Q45.681 25.816 45.943 25.916Q46.204 26.015 46.380 26.197Q46.556 26.380 46.650 26.638Q46.744 26.896 46.744 27.228Q46.744 27.320 46.662 27.341L44.406 27.341L44.406 27.402Q44.406 27.990 44.690 28.373Q44.974 28.756 45.541 28.756Q45.863 28.756 46.131 28.563Q46.399 28.370 46.488 28.055Q46.495 28.014 46.570 28L46.662 28Q46.744 28.024 46.744 28.096Q46.744 28.103 46.738 28.130Q46.625 28.527 46.254 28.766Q45.883 29.005 45.459 29.005Q45.022 29.005 44.622 28.797Q44.222 28.588 43.983 28.221Q43.743 27.854 43.743 27.402M44.413 27.132L46.228 27.132Q46.228 26.855 46.131 26.603Q46.033 26.350 45.835 26.194Q45.637 26.039 45.353 26.039Q45.076 26.039 44.863 26.197Q44.649 26.356 44.531 26.611Q44.413 26.866 44.413 27.132\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Pass cascade with fan-out \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6944em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.0315em;\">k\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.2778em;\">\u003C\u002Fspan>\u003Cspan class=\"mrel\">=\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.2778em;\">\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6444em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">4\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> on \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.5806em;vertical-align:-0.15em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.0278em;\">r\u003C\u002Fspan>\u003Cspan class=\"msupsub\">\u003Cspan class=\"vlist-t vlist-t2\">\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.3011em;\">\u003Cspan style=\"top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;\">\u003Cspan class=\"pstrut\" style=\"height:2.7em;\">\u003C\u002Fspan>\u003Cspan class=\"sizing reset-size6 size3 mtight\">\u003Cspan class=\"mord mtight\">0\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-s\">​\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.15em;\">\u003Cspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.2778em;\">\u003C\u002Fspan>\u003Cspan class=\"mrel\">=\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.2778em;\">\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6444em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">64\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> initial runs. Each merge pass divides the run count by \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6944em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.0315em;\">k\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>, so \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6444em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">64\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> to \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6444em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">16\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> to \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6444em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">4\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> to \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6444em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">1\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> takes three merge passes, matching \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:1em;vertical-align:-0.25em;\">\u003C\u002Fspan>\u003Cspan class=\"mopen\">⌈\u003C\u002Fspan>\u003Cspan class=\"mop\">\u003Cspan class=\"mop\">\u003Cspan class=\"mord mathrm\" style=\"margin-right:0.0139em;\">log\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"msupsub\">\u003Cspan class=\"vlist-t vlist-t2\">\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.207em;\">\u003Cspan style=\"top:-2.4559em;margin-right:0.05em;\">\u003Cspan class=\"pstrut\" style=\"height:2.7em;\">\u003C\u002Fspan>\u003Cspan class=\"sizing reset-size6 size3 mtight\">\u003Cspan class=\"mord mtight\">4\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-s\">​\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.2441em;\">\u003Cspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.1667em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">64\u003C\u002Fspan>\u003Cspan class=\"mclose\">⌉\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.2778em;\">\u003C\u002Fspan>\u003Cspan class=\"mrel\">=\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.2778em;\">\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6444em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">3\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>, plus the one run-formation pass.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:358.241px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 268.680 148.119\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-36.463 58.472H148.25\"\u002F>\u003Cpath d=\"m150.756 58.472-3.584-1.35 1.178 1.35-1.178 1.351Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(191.321 2.43)\">\u003Cpath d=\"M-34.351 58.472L-36.084 58.472L-36.084 58.192Q-35.858 58.192-35.709 58.158Q-35.561 58.123-35.561 57.983L-35.561 55.734L-36.149 55.734L-36.149 55.454L-35.561 55.454L-35.561 54.637Q-35.561 54.319-35.383 54.071Q-35.205 53.824-34.915 53.683Q-34.624 53.543-34.313 53.543Q-34.057 53.543-33.853 53.685Q-33.650 53.827-33.650 54.070Q-33.650 54.206-33.749 54.305Q-33.848 54.405-33.985 54.405Q-34.122 54.405-34.221 54.305Q-34.320 54.206-34.320 54.070Q-34.320 53.889-34.180 53.796Q-34.258 53.769-34.358 53.769Q-34.566 53.769-34.720 53.902Q-34.874 54.035-34.954 54.239Q-35.034 54.442-35.034 54.651L-35.034 55.454L-34.146 55.454L-34.146 55.734L-35.007 55.734L-35.007 57.983Q-35.007 58.192-34.351 58.192L-34.351 58.472M-33.612 57.744Q-33.612 57.412-33.389 57.185Q-33.165 56.958-32.821 56.830Q-32.478 56.701-32.105 56.649Q-31.733 56.596-31.428 56.596L-31.428 56.343Q-31.428 56.138-31.536 55.958Q-31.644 55.779-31.825 55.676Q-32.006 55.574-32.214 55.574Q-32.621 55.574-32.857 55.666Q-32.768 55.703-32.722 55.787Q-32.676 55.871-32.676 55.973Q-32.676 56.069-32.722 56.148Q-32.768 56.226-32.848 56.271Q-32.929 56.315-33.018 56.315Q-33.168 56.315-33.269 56.218Q-33.370 56.120-33.370 55.973Q-33.370 55.351-32.214 55.351Q-32.003 55.351-31.753 55.415Q-31.504 55.478-31.302 55.597Q-31.100 55.717-30.974 55.902Q-30.847 56.086-30.847 56.329L-30.847 57.905Q-30.847 58.021-30.786 58.117Q-30.724 58.212-30.611 58.212Q-30.502 58.212-30.437 58.118Q-30.372 58.024-30.372 57.905L-30.372 57.457L-30.106 57.457L-30.106 57.905Q-30.106 58.175-30.333 58.340Q-30.560 58.506-30.840 58.506Q-31.049 58.506-31.186 58.352Q-31.322 58.199-31.346 57.983Q-31.493 58.250-31.775 58.395Q-32.057 58.540-32.382 58.540Q-32.659 58.540-32.942 58.465Q-33.226 58.390-33.419 58.211Q-33.612 58.031-33.612 57.744M-32.997 57.744Q-32.997 57.918-32.896 58.048Q-32.796 58.178-32.640 58.248Q-32.484 58.318-32.320 58.318Q-32.102 58.318-31.893 58.221Q-31.685 58.123-31.557 57.942Q-31.428 57.761-31.428 57.535L-31.428 56.807Q-31.753 56.807-32.119 56.898Q-32.484 56.989-32.741 57.201Q-32.997 57.412-32.997 57.744M-28.007 58.472L-29.641 58.472L-29.641 58.192Q-29.412 58.192-29.263 58.158Q-29.114 58.123-29.114 57.983L-29.114 56.134Q-29.114 55.864-29.222 55.803Q-29.330 55.741-29.641 55.741L-29.641 55.461L-28.581 55.386L-28.581 56.035Q-28.410 55.727-28.106 55.556Q-27.802 55.386-27.457 55.386Q-26.951 55.386-26.667 55.609Q-26.383 55.833-26.383 56.329L-26.383 57.983Q-26.383 58.120-26.235 58.156Q-26.086 58.192-25.860 58.192L-25.860 58.472L-27.491 58.472L-27.491 58.192Q-27.262 58.192-27.113 58.158Q-26.964 58.123-26.964 57.983L-26.964 56.343Q-26.964 56.008-27.084 55.808Q-27.204 55.608-27.518 55.608Q-27.788 55.608-28.022 55.744Q-28.256 55.881-28.395 56.115Q-28.533 56.349-28.533 56.623L-28.533 57.983Q-28.533 58.120-28.383 58.156Q-28.233 58.192-28.007 58.192L-28.007 58.472M-23.389 57.218L-25.447 57.218L-25.447 56.715L-23.389 56.715L-23.389 57.218M-22.627 56.989Q-22.627 56.647-22.492 56.348Q-22.357 56.049-22.118 55.825Q-21.879 55.601-21.561 55.476Q-21.243 55.351-20.911 55.351Q-20.467 55.351-20.067 55.567Q-19.667 55.782-19.433 56.160Q-19.199 56.537-19.199 56.989Q-19.199 57.330-19.341 57.614Q-19.483 57.898-19.727 58.105Q-19.971 58.311-20.281 58.426Q-20.590 58.540-20.911 58.540Q-21.342 58.540-21.744 58.339Q-22.145 58.137-22.386 57.785Q-22.627 57.433-22.627 56.989M-20.911 58.291Q-20.310 58.291-20.086 57.913Q-19.862 57.535-19.862 56.903Q-19.862 56.291-20.096 55.932Q-20.330 55.574-20.911 55.574Q-21.964 55.574-21.964 56.903Q-21.964 57.535-21.738 57.913Q-21.513 58.291-20.911 58.291M-18.030 57.638L-18.030 56.134Q-18.030 55.864-18.138 55.803Q-18.245 55.741-18.556 55.741L-18.556 55.461L-17.449 55.386L-17.449 57.618L-17.449 57.638Q-17.449 57.918-17.398 58.062Q-17.346 58.205-17.204 58.262Q-17.063 58.318-16.776 58.318Q-16.523 58.318-16.317 58.178Q-16.112 58.038-15.996 57.812Q-15.880 57.587-15.880 57.337L-15.880 56.134Q-15.880 55.864-15.988 55.803Q-16.095 55.741-16.406 55.741L-16.406 55.461L-15.299 55.386L-15.299 57.799Q-15.299 57.990-15.246 58.072Q-15.193 58.154-15.092 58.173Q-14.991 58.192-14.776 58.192L-14.776 58.472L-15.853 58.540L-15.853 57.976Q-15.962 58.158-16.107 58.281Q-16.253 58.404-16.439 58.472Q-16.625 58.540-16.827 58.540Q-18.030 58.540-18.030 57.638M-13.662 57.631L-13.662 55.734L-14.301 55.734L-14.301 55.512Q-13.983 55.512-13.766 55.302Q-13.549 55.092-13.448 54.782Q-13.347 54.473-13.347 54.165L-13.081 54.165L-13.081 55.454L-12.004 55.454L-12.004 55.734L-13.081 55.734L-13.081 57.618Q-13.081 57.894-12.976 58.093Q-12.872 58.291-12.612 58.291Q-12.455 58.291-12.349 58.187Q-12.243 58.082-12.194 57.929Q-12.144 57.775-12.144 57.618L-12.144 57.204L-11.878 57.204L-11.878 57.631Q-11.878 57.857-11.977 58.067Q-12.076 58.277-12.260 58.409Q-12.445 58.540-12.674 58.540Q-13.111 58.540-13.387 58.303Q-13.662 58.065-13.662 57.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(191.321 2.43)\">\u003Cpath d=\"M-8.138 58.311Q-8.138 58.270-8.131 58.246L-7.140 54.251Q-7.102 54.155-7.102 54.063Q-7.102 53.971-7.536 53.971Q-7.622 53.943-7.622 53.858L-7.594 53.748Q-7.587 53.707-7.516 53.690L-6.535 53.615Q-6.490 53.615-6.461 53.641Q-6.432 53.666-6.432 53.718L-7.153 56.596Q-6.941 56.507-6.793 56.382Q-6.644 56.257-6.306 55.953Q-5.967 55.649-5.726 55.517Q-5.485 55.386-5.226 55.386Q-5.007 55.386-4.858 55.531Q-4.709 55.676-4.709 55.895Q-4.709 56.090-4.826 56.235Q-4.942 56.380-5.130 56.380Q-5.246 56.380-5.328 56.307Q-5.410 56.233-5.410 56.114Q-5.410 55.960-5.297 55.830Q-5.185 55.700-5.031 55.700Q-5.113 55.608-5.243 55.608Q-5.502 55.608-5.752 55.777Q-6.001 55.946-6.353 56.267Q-6.706 56.589-6.880 56.695Q-5.779 56.814-5.779 57.443Q-5.779 57.542-5.815 57.706Q-5.851 57.870-5.851 57.959Q-5.851 58.318-5.612 58.318Q-5.369 58.318-5.222 58.046Q-5.075 57.775-4.997 57.443Q-4.973 57.382-4.918 57.382L-4.809 57.382Q-4.774 57.382-4.752 57.407Q-4.730 57.433-4.730 57.464Q-4.730 57.477-4.737 57.491Q-4.836 57.891-5.058 58.216Q-5.280 58.540-5.625 58.540Q-5.954 58.540-6.174 58.342Q-6.394 58.144-6.394 57.823Q-6.394 57.764-6.374 57.645Q-6.353 57.525-6.353 57.464Q-6.353 57.197-6.644 57.050Q-6.935 56.903-7.228 56.903L-7.574 58.298Q-7.604 58.400-7.698 58.470Q-7.792 58.540-7.895 58.540Q-7.994 58.540-8.066 58.477Q-8.138 58.414-8.138 58.311\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-36.463 58.472V-57.954\"\u002F>\u003Cpath d=\"m-36.463-60.46-1.35 3.585 1.35-1.179 1.351 1.18Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-22.474 -124.395)\">\u003Cpath d=\"M-34.467 58.472L-36.101 58.472L-36.101 58.192Q-35.872 58.192-35.723 58.158Q-35.574 58.123-35.574 57.983L-35.574 56.134Q-35.574 55.864-35.682 55.803Q-35.790 55.741-36.101 55.741L-36.101 55.461L-35.041 55.386L-35.041 56.035Q-34.870 55.727-34.566 55.556Q-34.262 55.386-33.917 55.386Q-33.517 55.386-33.240 55.526Q-32.963 55.666-32.878 56.014Q-32.710 55.721-32.411 55.553Q-32.112 55.386-31.767 55.386Q-31.261 55.386-30.977 55.609Q-30.693 55.833-30.693 56.329L-30.693 57.983Q-30.693 58.120-30.545 58.156Q-30.396 58.192-30.171 58.192L-30.171 58.472L-31.801 58.472L-31.801 58.192Q-31.575 58.192-31.425 58.156Q-31.275 58.120-31.275 57.983L-31.275 56.343Q-31.275 56.008-31.394 55.808Q-31.514 55.608-31.828 55.608Q-32.098 55.608-32.332 55.744Q-32.567 55.881-32.705 56.115Q-32.843 56.349-32.843 56.623L-32.843 57.983Q-32.843 58.120-32.695 58.156Q-32.546 58.192-32.320 58.192L-32.320 58.472L-33.951 58.472L-33.951 58.192Q-33.722 58.192-33.573 58.158Q-33.424 58.123-33.424 57.983L-33.424 56.343Q-33.424 56.008-33.544 55.808Q-33.664 55.608-33.978 55.608Q-34.248 55.608-34.482 55.744Q-34.716 55.881-34.855 56.115Q-34.993 56.349-34.993 56.623L-34.993 57.983Q-34.993 58.120-34.843 58.156Q-34.692 58.192-34.467 58.192L-34.467 58.472M-29.624 56.937Q-29.624 56.616-29.499 56.327Q-29.374 56.038-29.149 55.815Q-28.923 55.591-28.627 55.471Q-28.332 55.351-28.014 55.351Q-27.686 55.351-27.424 55.451Q-27.163 55.550-26.987 55.732Q-26.811 55.915-26.717 56.173Q-26.623 56.431-26.623 56.763Q-26.623 56.855-26.705 56.876L-28.961 56.876L-28.961 56.937Q-28.961 57.525-28.677 57.908Q-28.393 58.291-27.826 58.291Q-27.505 58.291-27.236 58.098Q-26.968 57.905-26.879 57.590Q-26.872 57.549-26.797 57.535L-26.705 57.535Q-26.623 57.559-26.623 57.631Q-26.623 57.638-26.630 57.665Q-26.742 58.062-27.113 58.301Q-27.484 58.540-27.908 58.540Q-28.345 58.540-28.745 58.332Q-29.145 58.123-29.384 57.756Q-29.624 57.389-29.624 56.937M-28.954 56.667L-27.139 56.667Q-27.139 56.390-27.236 56.138Q-27.334 55.885-27.532 55.729Q-27.730 55.574-28.014 55.574Q-28.291 55.574-28.504 55.732Q-28.718 55.891-28.836 56.146Q-28.954 56.401-28.954 56.667M-24.285 58.472L-26.021 58.472L-26.021 58.192Q-25.792 58.192-25.643 58.158Q-25.495 58.123-25.495 57.983L-25.495 56.134Q-25.495 55.864-25.602 55.803Q-25.710 55.741-26.021 55.741L-26.021 55.461L-24.992 55.386L-24.992 56.093Q-24.862 55.785-24.620 55.586Q-24.377 55.386-24.059 55.386Q-23.840 55.386-23.670 55.510Q-23.499 55.635-23.499 55.847Q-23.499 55.984-23.598 56.083Q-23.697 56.182-23.830 56.182Q-23.967 56.182-24.066 56.083Q-24.165 55.984-24.165 55.847Q-24.165 55.707-24.066 55.608Q-24.357 55.608-24.557 55.804Q-24.756 56.001-24.849 56.295Q-24.941 56.589-24.941 56.869L-24.941 57.983Q-24.941 58.192-24.285 58.192L-24.285 58.472M-22.955 59.005Q-22.955 58.759-22.759 58.575Q-22.562 58.390-22.306 58.311Q-22.442 58.199-22.514 58.038Q-22.586 57.877-22.586 57.696Q-22.586 57.375-22.374 57.129Q-22.709 56.831-22.709 56.421Q-22.709 55.960-22.319 55.673Q-21.930 55.386-21.451 55.386Q-20.980 55.386-20.645 55.632Q-20.470 55.478-20.260 55.396Q-20.050 55.314-19.821 55.314Q-19.657 55.314-19.536 55.421Q-19.414 55.529-19.414 55.693Q-19.414 55.789-19.486 55.861Q-19.558 55.932-19.650 55.932Q-19.749 55.932-19.819 55.859Q-19.889 55.785-19.889 55.686Q-19.889 55.632-19.876 55.601L-19.869 55.587Q-19.862 55.567-19.853 55.556Q-19.845 55.546-19.841 55.539Q-20.197 55.539-20.484 55.762Q-20.197 56.055-20.197 56.421Q-20.197 56.736-20.381 56.968Q-20.566 57.201-20.855 57.329Q-21.144 57.457-21.451 57.457Q-21.653 57.457-21.844 57.407Q-22.036 57.358-22.213 57.248Q-22.306 57.375-22.306 57.518Q-22.306 57.700-22.178 57.835Q-22.049 57.970-21.865 57.970L-21.233 57.970Q-20.785 57.970-20.416 58.041Q-20.046 58.113-19.787 58.342Q-19.527 58.571-19.527 59.005Q-19.527 59.326-19.823 59.528Q-20.118 59.730-20.522 59.819Q-20.925 59.908-21.239 59.908Q-21.557 59.908-21.961 59.819Q-22.364 59.730-22.660 59.528Q-22.955 59.326-22.955 59.005M-22.501 59.005Q-22.501 59.234-22.282 59.383Q-22.063 59.532-21.771 59.600Q-21.479 59.668-21.239 59.668Q-21.075 59.668-20.867 59.632Q-20.658 59.597-20.452 59.516Q-20.245 59.436-20.113 59.308Q-19.982 59.180-19.982 59.005Q-19.982 58.653-20.363 58.559Q-20.744 58.465-21.246 58.465L-21.865 58.465Q-22.104 58.465-22.302 58.616Q-22.501 58.766-22.501 59.005M-21.451 57.218Q-20.785 57.218-20.785 56.421Q-20.785 55.621-21.451 55.621Q-22.121 55.621-22.121 56.421Q-22.121 57.218-21.451 57.218M-18.973 56.937Q-18.973 56.616-18.848 56.327Q-18.724 56.038-18.498 55.815Q-18.273 55.591-17.977 55.471Q-17.681 55.351-17.363 55.351Q-17.035 55.351-16.774 55.451Q-16.512 55.550-16.336 55.732Q-16.160 55.915-16.066 56.173Q-15.972 56.431-15.972 56.763Q-15.972 56.855-16.054 56.876L-18.310 56.876L-18.310 56.937Q-18.310 57.525-18.026 57.908Q-17.743 58.291-17.175 58.291Q-16.854 58.291-16.586 58.098Q-16.317 57.905-16.229 57.590Q-16.222 57.549-16.147 57.535L-16.054 57.535Q-15.972 57.559-15.972 57.631Q-15.972 57.638-15.979 57.665Q-16.092 58.062-16.463 58.301Q-16.834 58.540-17.257 58.540Q-17.695 58.540-18.095 58.332Q-18.495 58.123-18.734 57.756Q-18.973 57.389-18.973 56.937M-18.303 56.667L-16.488 56.667Q-16.488 56.390-16.586 56.138Q-16.683 55.885-16.881 55.729Q-17.080 55.574-17.363 55.574Q-17.640 55.574-17.854 55.732Q-18.067 55.891-18.185 56.146Q-18.303 56.401-18.303 56.667\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.474 -124.395)\">\u003Cpath d=\"M-11.018 59.829L-12.648 59.829L-12.648 59.549Q-12.419 59.549-12.270 59.514Q-12.122 59.480-12.122 59.340L-12.122 55.994Q-12.122 55.823-12.258 55.782Q-12.395 55.741-12.648 55.741L-12.648 55.461L-11.568 55.386L-11.568 55.792Q-11.346 55.591-11.059 55.488Q-10.771 55.386-10.464 55.386Q-10.037 55.386-9.673 55.599Q-9.309 55.813-9.095 56.177Q-8.881 56.541-8.881 56.961Q-8.881 57.406-9.121 57.770Q-9.360 58.134-9.753 58.337Q-10.146 58.540-10.590 58.540Q-10.857 58.540-11.105 58.440Q-11.352 58.339-11.540 58.158L-11.540 59.340Q-11.540 59.477-11.392 59.513Q-11.243 59.549-11.018 59.549L-11.018 59.829M-11.540 56.141L-11.540 57.751Q-11.407 58.004-11.164 58.161Q-10.922 58.318-10.645 58.318Q-10.317 58.318-10.064 58.117Q-9.811 57.915-9.678 57.597Q-9.544 57.279-9.544 56.961Q-9.544 56.732-9.609 56.503Q-9.674 56.274-9.802 56.076Q-9.931 55.878-10.125 55.758Q-10.320 55.639-10.553 55.639Q-10.847 55.639-11.115 55.768Q-11.383 55.898-11.540 56.141M-8.187 57.744Q-8.187 57.412-7.964 57.185Q-7.740 56.958-7.396 56.830Q-7.053 56.701-6.680 56.649Q-6.308 56.596-6.003 56.596L-6.003 56.343Q-6.003 56.138-6.111 55.958Q-6.219 55.779-6.400 55.676Q-6.581 55.574-6.789 55.574Q-7.196 55.574-7.432 55.666Q-7.343 55.703-7.297 55.787Q-7.251 55.871-7.251 55.973Q-7.251 56.069-7.297 56.148Q-7.343 56.226-7.424 56.271Q-7.504 56.315-7.593 56.315Q-7.743 56.315-7.844 56.218Q-7.945 56.120-7.945 55.973Q-7.945 55.351-6.789 55.351Q-6.578 55.351-6.328 55.415Q-6.079 55.478-5.877 55.597Q-5.675 55.717-5.549 55.902Q-5.422 56.086-5.422 56.329L-5.422 57.905Q-5.422 58.021-5.361 58.117Q-5.299 58.212-5.186 58.212Q-5.077 58.212-5.012 58.118Q-4.947 58.024-4.947 57.905L-4.947 57.457L-4.681 57.457L-4.681 57.905Q-4.681 58.175-4.908 58.340Q-5.135 58.506-5.415 58.506Q-5.624 58.506-5.761 58.352Q-5.897 58.199-5.921 57.983Q-6.068 58.250-6.350 58.395Q-6.632 58.540-6.957 58.540Q-7.234 58.540-7.518 58.465Q-7.801 58.390-7.994 58.211Q-8.187 58.031-8.187 57.744M-7.572 57.744Q-7.572 57.918-7.471 58.048Q-7.371 58.178-7.215 58.248Q-7.059 58.318-6.895 58.318Q-6.677 58.318-6.468 58.221Q-6.260 58.123-6.132 57.942Q-6.003 57.761-6.003 57.535L-6.003 56.807Q-6.328 56.807-6.694 56.898Q-7.059 56.989-7.316 57.201Q-7.572 57.412-7.572 57.744M-4.264 58.465L-4.264 57.402Q-4.264 57.378-4.236 57.351Q-4.209 57.324-4.185 57.324L-4.076 57.324Q-4.011 57.324-3.997 57.382Q-3.901 57.816-3.655 58.067Q-3.409 58.318-2.996 58.318Q-2.654 58.318-2.401 58.185Q-2.148 58.052-2.148 57.744Q-2.148 57.587-2.242 57.472Q-2.336 57.358-2.474 57.289Q-2.613 57.221-2.780 57.183L-3.361 57.084Q-3.717 57.016-3.990 56.795Q-4.264 56.575-4.264 56.233Q-4.264 55.984-4.153 55.809Q-4.041 55.635-3.855 55.536Q-3.669 55.437-3.454 55.394Q-3.238 55.351-2.996 55.351Q-2.582 55.351-2.302 55.533L-2.086 55.358Q-2.076 55.355-2.069 55.353Q-2.062 55.351-2.052 55.351L-2.001 55.351Q-1.974 55.351-1.950 55.375Q-1.926 55.399-1.926 55.427L-1.926 56.274Q-1.926 56.295-1.950 56.322Q-1.974 56.349-2.001 56.349L-2.114 56.349Q-2.141 56.349-2.167 56.324Q-2.192 56.298-2.192 56.274Q-2.192 56.038-2.298 55.874Q-2.404 55.710-2.587 55.628Q-2.770 55.546-3.002 55.546Q-3.330 55.546-3.587 55.649Q-3.843 55.751-3.843 56.028Q-3.843 56.223-3.660 56.332Q-3.477 56.442-3.248 56.483L-2.674 56.589Q-2.428 56.637-2.215 56.765Q-2.001 56.893-1.864 57.096Q-1.727 57.300-1.727 57.549Q-1.727 58.062-2.093 58.301Q-2.459 58.540-2.996 58.540Q-3.491 58.540-3.823 58.246L-4.089 58.520Q-4.110 58.540-4.137 58.540L-4.185 58.540Q-4.209 58.540-4.236 58.513Q-4.264 58.486-4.264 58.465M-1.099 58.465L-1.099 57.402Q-1.099 57.378-1.071 57.351Q-1.044 57.324-1.020 57.324L-0.911 57.324Q-0.846 57.324-0.832 57.382Q-0.736 57.816-0.490 58.067Q-0.244 58.318 0.170 58.318Q0.511 58.318 0.764 58.185Q1.017 58.052 1.017 57.744Q1.017 57.587 0.923 57.472Q0.829 57.358 0.691 57.289Q0.552 57.221 0.385 57.183L-0.196 57.084Q-0.552 57.016-0.825 56.795Q-1.099 56.575-1.099 56.233Q-1.099 55.984-0.987 55.809Q-0.876 55.635-0.690 55.536Q-0.504 55.437-0.289 55.394Q-0.073 55.351 0.170 55.351Q0.583 55.351 0.863 55.533L1.079 55.358Q1.089 55.355 1.096 55.353Q1.103 55.351 1.113 55.351L1.164 55.351Q1.191 55.351 1.215 55.375Q1.239 55.399 1.239 55.427L1.239 56.274Q1.239 56.295 1.215 56.322Q1.191 56.349 1.164 56.349L1.051 56.349Q1.024 56.349 0.998 56.324Q0.973 56.298 0.973 56.274Q0.973 56.038 0.867 55.874Q0.761 55.710 0.578 55.628Q0.395 55.546 0.163 55.546Q-0.165 55.546-0.422 55.649Q-0.678 55.751-0.678 56.028Q-0.678 56.223-0.495 56.332Q-0.312 56.442-0.083 56.483L0.491 56.589Q0.737 56.637 0.951 56.765Q1.164 56.893 1.301 57.096Q1.438 57.300 1.438 57.549Q1.438 58.062 1.072 58.301Q0.706 58.540 0.170 58.540Q-0.326 58.540-0.658 58.246L-0.924 58.520Q-0.945 58.540-0.972 58.540L-1.020 58.540Q-1.044 58.540-1.071 58.513Q-1.099 58.486-1.099 58.465M2.025 56.937Q2.025 56.616 2.150 56.327Q2.275 56.038 2.501 55.815Q2.726 55.591 3.022 55.471Q3.317 55.351 3.635 55.351Q3.963 55.351 4.225 55.451Q4.486 55.550 4.662 55.732Q4.838 55.915 4.932 56.173Q5.026 56.431 5.026 56.763Q5.026 56.855 4.944 56.876L2.689 56.876L2.689 56.937Q2.689 57.525 2.972 57.908Q3.256 58.291 3.823 58.291Q4.145 58.291 4.413 58.098Q4.681 57.905 4.770 57.590Q4.777 57.549 4.852 57.535L4.944 57.535Q5.026 57.559 5.026 57.631Q5.026 57.638 5.020 57.665Q4.907 58.062 4.536 58.301Q4.165 58.540 3.741 58.540Q3.304 58.540 2.904 58.332Q2.504 58.123 2.265 57.756Q2.025 57.389 2.025 56.937M2.695 56.667L4.510 56.667Q4.510 56.390 4.413 56.138Q4.316 55.885 4.117 55.729Q3.919 55.574 3.635 55.574Q3.358 55.574 3.145 55.732Q2.931 55.891 2.813 56.146Q2.695 56.401 2.695 56.667M5.614 58.465L5.614 57.402Q5.614 57.378 5.642 57.351Q5.669 57.324 5.693 57.324L5.802 57.324Q5.867 57.324 5.881 57.382Q5.977 57.816 6.223 58.067Q6.469 58.318 6.882 58.318Q7.224 58.318 7.477 58.185Q7.730 58.052 7.730 57.744Q7.730 57.587 7.636 57.472Q7.542 57.358 7.404 57.289Q7.265 57.221 7.098 57.183L6.517 57.084Q6.161 57.016 5.888 56.795Q5.614 56.575 5.614 56.233Q5.614 55.984 5.725 55.809Q5.836 55.635 6.023 55.536Q6.209 55.437 6.424 55.394Q6.640 55.351 6.882 55.351Q7.296 55.351 7.576 55.533L7.792 55.358Q7.802 55.355 7.809 55.353Q7.816 55.351 7.826 55.351L7.877 55.351Q7.904 55.351 7.928 55.375Q7.952 55.399 7.952 55.427L7.952 56.274Q7.952 56.295 7.928 56.322Q7.904 56.349 7.877 56.349L7.764 56.349Q7.737 56.349 7.711 56.324Q7.686 56.298 7.686 56.274Q7.686 56.038 7.580 55.874Q7.474 55.710 7.291 55.628Q7.108 55.546 6.876 55.546Q6.547 55.546 6.291 55.649Q6.035 55.751 6.035 56.028Q6.035 56.223 6.218 56.332Q6.400 56.442 6.629 56.483L7.204 56.589Q7.450 56.637 7.663 56.765Q7.877 56.893 8.014 57.096Q8.150 57.300 8.150 57.549Q8.150 58.062 7.785 58.301Q7.419 58.540 6.882 58.540Q6.387 58.540 6.055 58.246L5.789 58.520Q5.768 58.540 5.741 58.540L5.693 58.540Q5.669 58.540 5.642 58.513Q5.614 58.486 5.614 58.465\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(17.924 8.044)\">\u003Cpath d=\"M-33.137 58.472L-36.022 58.472L-36.022 58.270Q-36.022 58.240-35.995 58.212L-34.747 56.995Q-34.675 56.920-34.633 56.878Q-34.590 56.835-34.511 56.756Q-34.098 56.343-33.867 55.985Q-33.636 55.628-33.636 55.204Q-33.636 54.972-33.715 54.769Q-33.794 54.565-33.935 54.415Q-34.077 54.264-34.272 54.184Q-34.467 54.104-34.699 54.104Q-35.010 54.104-35.268 54.263Q-35.526 54.422-35.656 54.699L-35.636 54.699Q-35.468 54.699-35.361 54.810Q-35.253 54.921-35.253 55.085Q-35.253 55.242-35.362 55.355Q-35.472 55.468-35.636 55.468Q-35.796 55.468-35.909 55.355Q-36.022 55.242-36.022 55.085Q-36.022 54.709-35.814 54.422Q-35.605 54.135-35.270 53.979Q-34.935 53.824-34.580 53.824Q-34.156 53.824-33.776 53.982Q-33.397 54.141-33.163 54.458Q-32.929 54.774-32.929 55.204Q-32.929 55.515-33.069 55.784Q-33.209 56.052-33.414 56.257Q-33.619 56.462-33.982 56.744Q-34.344 57.026-34.453 57.122L-35.308 57.850L-34.665 57.850Q-34.402 57.850-34.113 57.848Q-33.824 57.847-33.606 57.838Q-33.387 57.829-33.370 57.812Q-33.308 57.747-33.271 57.580Q-33.233 57.412-33.195 57.170L-32.929 57.170\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.377 8.044)\">\u003Cpath d=\"M-34.146 57.324L-36.190 57.324L-36.190 57.043L-33.859 53.871Q-33.824 53.824-33.759 53.824L-33.623 53.824Q-33.578 53.824-33.551 53.851Q-33.524 53.878-33.524 53.923L-33.524 57.043L-32.761 57.043L-32.761 57.324L-33.524 57.324L-33.524 57.983Q-33.524 58.192-32.768 58.192L-32.768 58.472L-34.901 58.472L-34.901 58.192Q-34.146 58.192-34.146 57.983L-34.146 57.324M-34.098 54.599L-35.889 57.043L-34.098 57.043\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.83 8.044)\">\u003Cpath d=\"M-36.084 57.395Q-36.084 56.954-35.781 56.633Q-35.479 56.312-35.027 56.120L-35.267 55.980Q-35.537 55.820-35.703 55.562Q-35.868 55.304-35.868 55.006Q-35.868 54.654-35.663 54.382Q-35.458 54.111-35.137 53.967Q-34.816 53.824-34.474 53.824Q-34.152 53.824-33.829 53.940Q-33.506 54.056-33.295 54.297Q-33.083 54.538-33.083 54.873Q-33.083 55.235-33.327 55.498Q-33.571 55.762-33.951 55.939L-33.551 56.175Q-33.356 56.288-33.197 56.457Q-33.038 56.626-32.951 56.835Q-32.864 57.043-32.864 57.276Q-32.864 57.679-33.098 57.983Q-33.332 58.287-33.706 58.450Q-34.081 58.612-34.474 58.612Q-34.860 58.612-35.229 58.475Q-35.598 58.339-35.841 58.062Q-36.084 57.785-36.084 57.395M-35.636 57.395Q-35.636 57.682-35.467 57.905Q-35.297 58.127-35.029 58.243Q-34.761 58.359-34.474 58.359Q-34.036 58.359-33.674 58.142Q-33.312 57.925-33.312 57.518Q-33.312 57.317-33.440 57.139Q-33.568 56.961-33.746 56.862L-34.768 56.267Q-35.007 56.377-35.205 56.543Q-35.403 56.708-35.520 56.924Q-35.636 57.139-35.636 57.395M-35.113 55.266L-34.193 55.799Q-33.886 55.639-33.684 55.406Q-33.483 55.174-33.483 54.873Q-33.483 54.634-33.628 54.444Q-33.773 54.254-34.005 54.155Q-34.238 54.056-34.474 54.056Q-34.696 54.056-34.925 54.126Q-35.154 54.196-35.311 54.353Q-35.468 54.511-35.468 54.740Q-35.468 55.054-35.113 55.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(101.289 8.044)\">\u003Cpath d=\"M-33.137 58.472L-35.667 58.472L-35.667 58.192Q-34.699 58.192-34.699 57.983L-34.699 54.364Q-35.092 54.552-35.714 54.552L-35.714 54.271Q-35.297 54.271-34.933 54.170Q-34.569 54.070-34.313 53.824L-34.187 53.824Q-34.122 53.841-34.105 53.909L-34.105 57.983Q-34.105 58.192-33.137 58.192L-33.137 58.472M-30.492 58.612Q-30.950 58.612-31.268 58.397Q-31.586 58.181-31.767 57.829Q-31.948 57.477-32.025 57.057Q-32.102 56.637-32.102 56.209Q-32.102 55.625-31.849 55.069Q-31.596 54.514-31.126 54.169Q-30.656 53.824-30.058 53.824Q-29.648 53.824-29.364 54.022Q-29.080 54.220-29.080 54.623Q-29.080 54.719-29.126 54.798Q-29.172 54.876-29.253 54.921Q-29.333 54.965-29.422 54.965Q-29.569 54.965-29.670 54.868Q-29.771 54.770-29.771 54.623Q-29.771 54.493-29.680 54.386Q-29.589 54.278-29.456 54.278Q-29.644 54.056-30.058 54.056Q-30.372 54.056-30.646 54.220Q-30.919 54.384-31.087 54.658Q-31.275 54.948-31.339 55.314Q-31.404 55.680-31.404 56.134Q-31.254 55.840-30.989 55.662Q-30.724 55.485-30.410 55.485Q-29.979 55.485-29.630 55.691Q-29.282 55.898-29.082 56.254Q-28.882 56.609-28.882 57.036Q-28.882 57.481-29.099 57.841Q-29.316 58.202-29.689 58.407Q-30.061 58.612-30.492 58.612M-30.492 58.359Q-30.116 58.359-29.912 58.176Q-29.709 57.993-29.646 57.710Q-29.583 57.426-29.583 57.036Q-29.583 56.650-29.637 56.370Q-29.692 56.090-29.887 55.898Q-30.082 55.707-30.451 55.707Q-30.741 55.707-30.953 55.883Q-31.165 56.059-31.273 56.332Q-31.380 56.606-31.380 56.889L-31.380 57.030L-31.380 57.071Q-31.380 57.576-31.169 57.968Q-30.957 58.359-30.492 58.359\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(129.742 8.044)\">\u003Cpath d=\"M-34.474 58.612Q-34.932 58.612-35.250 58.397Q-35.567 58.181-35.749 57.829Q-35.930 57.477-36.007 57.057Q-36.084 56.637-36.084 56.209Q-36.084 55.625-35.831 55.069Q-35.578 54.514-35.108 54.169Q-34.638 53.824-34.040 53.824Q-33.630 53.824-33.346 54.022Q-33.062 54.220-33.062 54.623Q-33.062 54.719-33.108 54.798Q-33.154 54.876-33.235 54.921Q-33.315 54.965-33.404 54.965Q-33.551 54.965-33.652 54.868Q-33.753 54.770-33.753 54.623Q-33.753 54.493-33.662 54.386Q-33.571 54.278-33.438 54.278Q-33.626 54.056-34.040 54.056Q-34.354 54.056-34.628 54.220Q-34.901 54.384-35.068 54.658Q-35.256 54.948-35.321 55.314Q-35.386 55.680-35.386 56.134Q-35.236 55.840-34.971 55.662Q-34.706 55.485-34.392 55.485Q-33.961 55.485-33.612 55.691Q-33.264 55.898-33.064 56.254Q-32.864 56.609-32.864 57.036Q-32.864 57.481-33.081 57.841Q-33.298 58.202-33.671 58.407Q-34.043 58.612-34.474 58.612M-34.474 58.359Q-34.098 58.359-33.894 58.176Q-33.691 57.993-33.628 57.710Q-33.565 57.426-33.565 57.036Q-33.565 56.650-33.619 56.370Q-33.674 56.090-33.869 55.898Q-34.064 55.707-34.433 55.707Q-34.723 55.707-34.935 55.883Q-35.147 56.059-35.255 56.332Q-35.362 56.606-35.362 56.889L-35.362 57.030L-35.362 57.071Q-35.362 57.576-35.151 57.968Q-34.939 58.359-34.474 58.359M-30.164 57.324L-32.208 57.324L-32.208 57.043L-29.877 53.871Q-29.842 53.824-29.777 53.824L-29.641 53.824Q-29.596 53.824-29.569 53.851Q-29.542 53.878-29.542 53.923L-29.542 57.043L-28.779 57.043L-28.779 57.324L-29.542 57.324L-29.542 57.983Q-29.542 58.192-28.786 58.192L-28.786 58.472L-30.919 58.472L-30.919 58.192Q-30.164 58.192-30.164 57.983L-30.164 57.324M-30.116 54.599L-31.907 57.043L-30.116 57.043\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(156.201 8.044)\">\u003Cpath d=\"M-33.137 58.472L-36.022 58.472L-36.022 58.270Q-36.022 58.240-35.995 58.212L-34.747 56.995Q-34.675 56.920-34.633 56.878Q-34.590 56.835-34.511 56.756Q-34.098 56.343-33.867 55.985Q-33.636 55.628-33.636 55.204Q-33.636 54.972-33.715 54.769Q-33.794 54.565-33.935 54.415Q-34.077 54.264-34.272 54.184Q-34.467 54.104-34.699 54.104Q-35.010 54.104-35.268 54.263Q-35.526 54.422-35.656 54.699L-35.636 54.699Q-35.468 54.699-35.361 54.810Q-35.253 54.921-35.253 55.085Q-35.253 55.242-35.362 55.355Q-35.472 55.468-35.636 55.468Q-35.796 55.468-35.909 55.355Q-36.022 55.242-36.022 55.085Q-36.022 54.709-35.814 54.422Q-35.605 54.135-35.270 53.979Q-34.935 53.824-34.580 53.824Q-34.156 53.824-33.776 53.982Q-33.397 54.141-33.163 54.458Q-32.929 54.774-32.929 55.204Q-32.929 55.515-33.069 55.784Q-33.209 56.052-33.414 56.257Q-33.619 56.462-33.982 56.744Q-34.344 57.026-34.453 57.122L-35.308 57.850L-34.665 57.850Q-34.402 57.850-34.113 57.848Q-33.824 57.847-33.606 57.838Q-33.387 57.829-33.370 57.812Q-33.308 57.747-33.271 57.580Q-33.233 57.412-33.195 57.170L-32.929 57.170L-33.137 58.472M-31.674 57.710L-31.705 57.710Q-31.568 58.007-31.271 58.183Q-30.974 58.359-30.646 58.359Q-30.283 58.359-30.056 58.181Q-29.829 58.004-29.735 57.715Q-29.641 57.426-29.641 57.064Q-29.641 56.749-29.695 56.464Q-29.750 56.179-29.923 55.973Q-30.095 55.768-30.410 55.768Q-30.683 55.768-30.866 55.835Q-31.049 55.902-31.153 55.991Q-31.257 56.079-31.353 56.189Q-31.449 56.298-31.493 56.308L-31.572 56.308Q-31.644 56.291-31.661 56.220L-31.661 53.902Q-31.661 53.868-31.637 53.846Q-31.613 53.824-31.579 53.824L-31.551 53.824Q-31.264 53.940-30.996 53.994Q-30.728 54.049-30.451 54.049Q-30.174 54.049-29.904 53.994Q-29.634 53.940-29.354 53.824L-29.330 53.824Q-29.296 53.824-29.272 53.847Q-29.248 53.871-29.248 53.902L-29.248 53.971Q-29.248 53.998-29.268 54.018Q-29.542 54.333-29.926 54.509Q-30.311 54.685-30.724 54.685Q-31.063 54.685-31.380 54.599L-31.380 55.881Q-30.984 55.546-30.410 55.546Q-30.006 55.546-29.670 55.756Q-29.333 55.967-29.140 56.319Q-28.947 56.671-28.947 57.071Q-28.947 57.402-29.087 57.688Q-29.227 57.973-29.472 58.183Q-29.716 58.393-30.018 58.503Q-30.321 58.612-30.639 58.612Q-30.998 58.612-31.324 58.448Q-31.651 58.284-31.845 57.992Q-32.040 57.700-32.040 57.337Q-32.040 57.187-31.934 57.081Q-31.828 56.975-31.674 56.975Q-31.521 56.975-31.416 57.079Q-31.312 57.183-31.312 57.337Q-31.312 57.494-31.416 57.602Q-31.521 57.710-31.674 57.710M-26.510 58.612Q-26.968 58.612-27.286 58.397Q-27.604 58.181-27.785 57.829Q-27.966 57.477-28.043 57.057Q-28.120 56.637-28.120 56.209Q-28.120 55.625-27.867 55.069Q-27.614 54.514-27.144 54.169Q-26.674 53.824-26.076 53.824Q-25.666 53.824-25.382 54.022Q-25.098 54.220-25.098 54.623Q-25.098 54.719-25.144 54.798Q-25.191 54.876-25.271 54.921Q-25.351 54.965-25.440 54.965Q-25.587 54.965-25.688 54.868Q-25.789 54.770-25.789 54.623Q-25.789 54.493-25.698 54.386Q-25.608 54.278-25.474 54.278Q-25.662 54.056-26.076 54.056Q-26.390 54.056-26.664 54.220Q-26.937 54.384-27.105 54.658Q-27.293 54.948-27.358 55.314Q-27.422 55.680-27.422 56.134Q-27.272 55.840-27.007 55.662Q-26.742 55.485-26.428 55.485Q-25.997 55.485-25.649 55.691Q-25.300 55.898-25.100 56.254Q-24.900 56.609-24.900 57.036Q-24.900 57.481-25.117 57.841Q-25.334 58.202-25.707 58.407Q-26.079 58.612-26.510 58.612M-26.510 58.359Q-26.134 58.359-25.931 58.176Q-25.727 57.993-25.664 57.710Q-25.601 57.426-25.601 57.036Q-25.601 56.650-25.655 56.370Q-25.710 56.090-25.905 55.898Q-26.100 55.707-26.469 55.707Q-26.759 55.707-26.971 55.883Q-27.183 56.059-27.291 56.332Q-27.399 56.606-27.399 56.889L-27.399 57.030L-27.399 57.071Q-27.399 57.576-27.187 57.968Q-26.975 58.359-26.510 58.359\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.365 -23.352)\">\u003Cpath d=\"M-33.137 58.472L-36.022 58.472L-36.022 58.270Q-36.022 58.240-35.995 58.212L-34.747 56.995Q-34.675 56.920-34.633 56.878Q-34.590 56.835-34.511 56.756Q-34.098 56.343-33.867 55.985Q-33.636 55.628-33.636 55.204Q-33.636 54.972-33.715 54.769Q-33.794 54.565-33.935 54.415Q-34.077 54.264-34.272 54.184Q-34.467 54.104-34.699 54.104Q-35.010 54.104-35.268 54.263Q-35.526 54.422-35.656 54.699L-35.636 54.699Q-35.468 54.699-35.361 54.810Q-35.253 54.921-35.253 55.085Q-35.253 55.242-35.362 55.355Q-35.472 55.468-35.636 55.468Q-35.796 55.468-35.909 55.355Q-36.022 55.242-36.022 55.085Q-36.022 54.709-35.814 54.422Q-35.605 54.135-35.270 53.979Q-34.935 53.824-34.580 53.824Q-34.156 53.824-33.776 53.982Q-33.397 54.141-33.163 54.458Q-32.929 54.774-32.929 55.204Q-32.929 55.515-33.069 55.784Q-33.209 56.052-33.414 56.257Q-33.619 56.462-33.982 56.744Q-34.344 57.026-34.453 57.122L-35.308 57.850L-34.665 57.850Q-34.402 57.850-34.113 57.848Q-33.824 57.847-33.606 57.838Q-33.387 57.829-33.370 57.812Q-33.308 57.747-33.271 57.580Q-33.233 57.412-33.195 57.170L-32.929 57.170\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.365 -48.959)\">\u003Cpath d=\"M-34.146 57.324L-36.190 57.324L-36.190 57.043L-33.859 53.871Q-33.824 53.824-33.759 53.824L-33.623 53.824Q-33.578 53.824-33.551 53.851Q-33.524 53.878-33.524 53.923L-33.524 57.043L-32.761 57.043L-32.761 57.324L-33.524 57.324L-33.524 57.983Q-33.524 58.192-32.768 58.192L-32.768 58.472L-34.901 58.472L-34.901 58.192Q-34.146 58.192-34.146 57.983L-34.146 57.324M-34.098 54.599L-35.889 57.043L-34.098 57.043\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.365 -74.566)\">\u003Cpath d=\"M-34.474 58.612Q-34.932 58.612-35.250 58.397Q-35.567 58.181-35.749 57.829Q-35.930 57.477-36.007 57.057Q-36.084 56.637-36.084 56.209Q-36.084 55.625-35.831 55.069Q-35.578 54.514-35.108 54.169Q-34.638 53.824-34.040 53.824Q-33.630 53.824-33.346 54.022Q-33.062 54.220-33.062 54.623Q-33.062 54.719-33.108 54.798Q-33.154 54.876-33.235 54.921Q-33.315 54.965-33.404 54.965Q-33.551 54.965-33.652 54.868Q-33.753 54.770-33.753 54.623Q-33.753 54.493-33.662 54.386Q-33.571 54.278-33.438 54.278Q-33.626 54.056-34.040 54.056Q-34.354 54.056-34.628 54.220Q-34.901 54.384-35.068 54.658Q-35.256 54.948-35.321 55.314Q-35.386 55.680-35.386 56.134Q-35.236 55.840-34.971 55.662Q-34.706 55.485-34.392 55.485Q-33.961 55.485-33.612 55.691Q-33.264 55.898-33.064 56.254Q-32.864 56.609-32.864 57.036Q-32.864 57.481-33.081 57.841Q-33.298 58.202-33.671 58.407Q-34.043 58.612-34.474 58.612M-34.474 58.359Q-34.098 58.359-33.894 58.176Q-33.691 57.993-33.628 57.710Q-33.565 57.426-33.565 57.036Q-33.565 56.650-33.619 56.370Q-33.674 56.090-33.869 55.898Q-34.064 55.707-34.433 55.707Q-34.723 55.707-34.935 55.883Q-35.147 56.059-35.255 56.332Q-35.362 56.606-35.362 56.889L-35.362 57.030L-35.362 57.071Q-35.362 57.576-35.151 57.968Q-34.939 58.359-34.474 58.359\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.365 -100.174)\">\u003Cpath d=\"M-36.084 57.395Q-36.084 56.954-35.781 56.633Q-35.479 56.312-35.027 56.120L-35.267 55.980Q-35.537 55.820-35.703 55.562Q-35.868 55.304-35.868 55.006Q-35.868 54.654-35.663 54.382Q-35.458 54.111-35.137 53.967Q-34.816 53.824-34.474 53.824Q-34.152 53.824-33.829 53.940Q-33.506 54.056-33.295 54.297Q-33.083 54.538-33.083 54.873Q-33.083 55.235-33.327 55.498Q-33.571 55.762-33.951 55.939L-33.551 56.175Q-33.356 56.288-33.197 56.457Q-33.038 56.626-32.951 56.835Q-32.864 57.043-32.864 57.276Q-32.864 57.679-33.098 57.983Q-33.332 58.287-33.706 58.450Q-34.081 58.612-34.474 58.612Q-34.860 58.612-35.229 58.475Q-35.598 58.339-35.841 58.062Q-36.084 57.785-36.084 57.395M-35.636 57.395Q-35.636 57.682-35.467 57.905Q-35.297 58.127-35.029 58.243Q-34.761 58.359-34.474 58.359Q-34.036 58.359-33.674 58.142Q-33.312 57.925-33.312 57.518Q-33.312 57.317-33.440 57.139Q-33.568 56.961-33.746 56.862L-34.768 56.267Q-35.007 56.377-35.205 56.543Q-35.403 56.708-35.520 56.924Q-35.636 57.139-35.636 57.395M-35.113 55.266L-34.193 55.799Q-33.886 55.639-33.684 55.406Q-33.483 55.174-33.483 54.873Q-33.483 54.634-33.628 54.444Q-33.773 54.254-34.005 54.155Q-34.238 54.056-34.474 54.056Q-34.696 54.056-34.925 54.126Q-35.154 54.196-35.311 54.353Q-35.468 54.511-35.468 54.740Q-35.468 55.054-35.113 55.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"M-16.546-43.958h28.453L40.36-9.814 68.812 7.257 97.265 24.33l28.453 8.536\" style=\"stroke-width:1.2\"\u002F>\u003Cpath fill=\"var(--tk-accent)\" stroke=\"none\" d=\"M-14.546-43.958a2 2 0 1 0-4 0 2 2 0 0 0 4 0M13.907-43.958a2 2 0 1 0-4 0 2 2 0 0 0 4 0M42.36-9.814a2 2 0 1 0-4 0 2 2 0 0 0 4 0M70.812 7.257a2 2 0 1 0-4 0 2 2 0 0 0 4 0M99.265 24.33a2 2 0 1 0-4 0 2 2 0 0 0 4 0M127.718 32.865a2 2 0 1 0-4 0 2 2 0 0 0 4 0m-2 0\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(57.593 -103.525)\">\u003Cpath d=\"M-34.351 58.472L-36.084 58.472L-36.084 58.192Q-35.858 58.192-35.709 58.158Q-35.561 58.123-35.561 57.983L-35.561 55.734L-36.149 55.734L-36.149 55.454L-35.561 55.454L-35.561 54.637Q-35.561 54.319-35.383 54.071Q-35.205 53.824-34.915 53.683Q-34.624 53.543-34.313 53.543Q-34.057 53.543-33.853 53.685Q-33.650 53.827-33.650 54.070Q-33.650 54.206-33.749 54.305Q-33.848 54.405-33.985 54.405Q-34.122 54.405-34.221 54.305Q-34.320 54.206-34.320 54.070Q-34.320 53.889-34.180 53.796Q-34.258 53.769-34.358 53.769Q-34.566 53.769-34.720 53.902Q-34.874 54.035-34.954 54.239Q-35.034 54.442-35.034 54.651L-35.034 55.454L-34.146 55.454L-34.146 55.734L-35.007 55.734L-35.007 57.983Q-35.007 58.192-34.351 58.192L-34.351 58.472M-33.712 56.937Q-33.712 56.616-33.587 56.327Q-33.462 56.038-33.236 55.815Q-33.011 55.591-32.715 55.471Q-32.420 55.351-32.102 55.351Q-31.774 55.351-31.512 55.451Q-31.251 55.550-31.075 55.732Q-30.899 55.915-30.805 56.173Q-30.711 56.431-30.711 56.763Q-30.711 56.855-30.793 56.876L-33.048 56.876L-33.048 56.937Q-33.048 57.525-32.765 57.908Q-32.481 58.291-31.914 58.291Q-31.592 58.291-31.324 58.098Q-31.056 57.905-30.967 57.590Q-30.960 57.549-30.885 57.535L-30.793 57.535Q-30.711 57.559-30.711 57.631Q-30.711 57.638-30.717 57.665Q-30.830 58.062-31.201 58.301Q-31.572 58.540-31.996 58.540Q-32.433 58.540-32.833 58.332Q-33.233 58.123-33.472 57.756Q-33.712 57.389-33.712 56.937M-33.042 56.667L-31.227 56.667Q-31.227 56.390-31.324 56.138Q-31.421 55.885-31.620 55.729Q-31.818 55.574-32.102 55.574Q-32.379 55.574-32.592 55.732Q-32.806 55.891-32.924 56.146Q-33.042 56.401-33.042 56.667M-28.735 58.445L-29.716 55.946Q-29.777 55.803-29.895 55.768Q-30.013 55.734-30.229 55.734L-30.229 55.454L-28.749 55.454L-28.749 55.734Q-29.128 55.734-29.128 55.895Q-29.128 55.905-29.114 55.946L-28.400 57.778L-27.727 56.073Q-27.757 56.001-27.757 55.973Q-27.757 55.946-27.785 55.946Q-27.846 55.799-27.964 55.767Q-28.082 55.734-28.294 55.734L-28.294 55.454L-26.896 55.454L-26.896 55.734Q-27.272 55.734-27.272 55.895Q-27.272 55.926-27.265 55.946L-26.510 57.884L-25.823 56.134Q-25.802 56.083-25.802 56.028Q-25.802 55.888-25.915 55.811Q-26.028 55.734-26.168 55.734L-26.168 55.454L-24.948 55.454L-24.948 55.734Q-25.153 55.734-25.308 55.840Q-25.464 55.946-25.536 56.134L-26.442 58.445Q-26.476 58.540-26.588 58.540L-26.657 58.540Q-26.766 58.540-26.804 58.445L-27.587 56.442L-28.373 58.445Q-28.407 58.540-28.520 58.540L-28.588 58.540Q-28.697 58.540-28.735 58.445\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 -103.525)\">\u003Cpath d=\"M-24.662 56.937Q-24.662 56.616-24.537 56.327Q-24.412 56.038-24.186 55.815Q-23.961 55.591-23.665 55.471Q-23.370 55.351-23.052 55.351Q-22.724 55.351-22.462 55.451Q-22.201 55.550-22.025 55.732Q-21.849 55.915-21.755 56.173Q-21.661 56.431-21.661 56.763Q-21.661 56.855-21.743 56.876L-23.998 56.876L-23.998 56.937Q-23.998 57.525-23.715 57.908Q-23.431 58.291-22.864 58.291Q-22.542 58.291-22.274 58.098Q-22.006 57.905-21.917 57.590Q-21.910 57.549-21.835 57.535L-21.743 57.535Q-21.661 57.559-21.661 57.631Q-21.661 57.638-21.667 57.665Q-21.780 58.062-22.151 58.301Q-22.522 58.540-22.946 58.540Q-23.383 58.540-23.783 58.332Q-24.183 58.123-24.422 57.756Q-24.662 57.389-24.662 56.937M-23.992 56.667L-22.177 56.667Q-22.177 56.390-22.274 56.138Q-22.372 55.885-22.570 55.729Q-22.768 55.574-23.052 55.574Q-23.329 55.574-23.542 55.732Q-23.756 55.891-23.874 56.146Q-23.992 56.401-23.992 56.667M-19.323 58.472L-21.059 58.472L-21.059 58.192Q-20.830 58.192-20.681 58.158Q-20.533 58.123-20.533 57.983L-20.533 56.134Q-20.533 55.864-20.640 55.803Q-20.748 55.741-21.059 55.741L-21.059 55.461L-20.030 55.386L-20.030 56.093Q-19.900 55.785-19.658 55.586Q-19.415 55.386-19.097 55.386Q-18.878 55.386-18.707 55.510Q-18.537 55.635-18.537 55.847Q-18.537 55.984-18.636 56.083Q-18.735 56.182-18.868 56.182Q-19.005 56.182-19.104 56.083Q-19.203 55.984-19.203 55.847Q-19.203 55.707-19.104 55.608Q-19.394 55.608-19.594 55.804Q-19.794 56.001-19.887 56.295Q-19.979 56.589-19.979 56.869L-19.979 57.983Q-19.979 58.192-19.323 58.192\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 -103.525)\">\u003Cpath d=\"M-13.602 59.829L-15.232 59.829L-15.232 59.549Q-15.003 59.549-14.854 59.514Q-14.706 59.480-14.706 59.340L-14.706 55.994Q-14.706 55.823-14.842 55.782Q-14.979 55.741-15.232 55.741L-15.232 55.461L-14.152 55.386L-14.152 55.792Q-13.930 55.591-13.643 55.488Q-13.355 55.386-13.048 55.386Q-12.621 55.386-12.257 55.599Q-11.893 55.813-11.679 56.177Q-11.465 56.541-11.465 56.961Q-11.465 57.406-11.705 57.770Q-11.944 58.134-12.337 58.337Q-12.730 58.540-13.174 58.540Q-13.441 58.540-13.689 58.440Q-13.936 58.339-14.124 58.158L-14.124 59.340Q-14.124 59.477-13.976 59.513Q-13.827 59.549-13.602 59.549L-13.602 59.829M-14.124 56.141L-14.124 57.751Q-13.991 58.004-13.748 58.161Q-13.506 58.318-13.229 58.318Q-12.901 58.318-12.648 58.117Q-12.395 57.915-12.262 57.597Q-12.128 57.279-12.128 56.961Q-12.128 56.732-12.193 56.503Q-12.258 56.274-12.386 56.076Q-12.515 55.878-12.709 55.758Q-12.904 55.639-13.137 55.639Q-13.431 55.639-13.699 55.768Q-13.967 55.898-14.124 56.141M-10.771 57.744Q-10.771 57.412-10.548 57.185Q-10.324 56.958-9.980 56.830Q-9.637 56.701-9.264 56.649Q-8.892 56.596-8.587 56.596L-8.587 56.343Q-8.587 56.138-8.695 55.958Q-8.803 55.779-8.984 55.676Q-9.165 55.574-9.373 55.574Q-9.780 55.574-10.016 55.666Q-9.927 55.703-9.881 55.787Q-9.835 55.871-9.835 55.973Q-9.835 56.069-9.881 56.148Q-9.927 56.226-10.008 56.271Q-10.088 56.315-10.177 56.315Q-10.327 56.315-10.428 56.218Q-10.529 56.120-10.529 55.973Q-10.529 55.351-9.373 55.351Q-9.162 55.351-8.912 55.415Q-8.663 55.478-8.461 55.597Q-8.259 55.717-8.133 55.902Q-8.006 56.086-8.006 56.329L-8.006 57.905Q-8.006 58.021-7.945 58.117Q-7.883 58.212-7.770 58.212Q-7.661 58.212-7.596 58.118Q-7.531 58.024-7.531 57.905L-7.531 57.457L-7.265 57.457L-7.265 57.905Q-7.265 58.175-7.492 58.340Q-7.719 58.506-7.999 58.506Q-8.208 58.506-8.345 58.352Q-8.481 58.199-8.505 57.983Q-8.652 58.250-8.934 58.395Q-9.216 58.540-9.541 58.540Q-9.818 58.540-10.102 58.465Q-10.385 58.390-10.578 58.211Q-10.771 58.031-10.771 57.744M-10.156 57.744Q-10.156 57.918-10.055 58.048Q-9.955 58.178-9.799 58.248Q-9.643 58.318-9.479 58.318Q-9.261 58.318-9.052 58.221Q-8.844 58.123-8.716 57.942Q-8.587 57.761-8.587 57.535L-8.587 56.807Q-8.912 56.807-9.278 56.898Q-9.643 56.989-9.900 57.201Q-10.156 57.412-10.156 57.744M-6.848 58.465L-6.848 57.402Q-6.848 57.378-6.820 57.351Q-6.793 57.324-6.769 57.324L-6.660 57.324Q-6.595 57.324-6.581 57.382Q-6.485 57.816-6.239 58.067Q-5.993 58.318-5.580 58.318Q-5.238 58.318-4.985 58.185Q-4.732 58.052-4.732 57.744Q-4.732 57.587-4.826 57.472Q-4.920 57.358-5.058 57.289Q-5.197 57.221-5.364 57.183L-5.945 57.084Q-6.301 57.016-6.574 56.795Q-6.848 56.575-6.848 56.233Q-6.848 55.984-6.737 55.809Q-6.625 55.635-6.439 55.536Q-6.253 55.437-6.038 55.394Q-5.822 55.351-5.580 55.351Q-5.166 55.351-4.886 55.533L-4.670 55.358Q-4.660 55.355-4.653 55.353Q-4.646 55.351-4.636 55.351L-4.585 55.351Q-4.558 55.351-4.534 55.375Q-4.510 55.399-4.510 55.427L-4.510 56.274Q-4.510 56.295-4.534 56.322Q-4.558 56.349-4.585 56.349L-4.698 56.349Q-4.725 56.349-4.751 56.324Q-4.776 56.298-4.776 56.274Q-4.776 56.038-4.882 55.874Q-4.988 55.710-5.171 55.628Q-5.354 55.546-5.586 55.546Q-5.914 55.546-6.171 55.649Q-6.427 55.751-6.427 56.028Q-6.427 56.223-6.244 56.332Q-6.061 56.442-5.832 56.483L-5.258 56.589Q-5.012 56.637-4.799 56.765Q-4.585 56.893-4.448 57.096Q-4.311 57.300-4.311 57.549Q-4.311 58.062-4.677 58.301Q-5.043 58.540-5.580 58.540Q-6.075 58.540-6.407 58.246L-6.673 58.520Q-6.694 58.540-6.721 58.540L-6.769 58.540Q-6.793 58.540-6.820 58.513Q-6.848 58.486-6.848 58.465M-3.683 58.465L-3.683 57.402Q-3.683 57.378-3.655 57.351Q-3.628 57.324-3.604 57.324L-3.495 57.324Q-3.430 57.324-3.416 57.382Q-3.320 57.816-3.074 58.067Q-2.828 58.318-2.414 58.318Q-2.073 58.318-1.820 58.185Q-1.567 58.052-1.567 57.744Q-1.567 57.587-1.661 57.472Q-1.755 57.358-1.893 57.289Q-2.032 57.221-2.199 57.183L-2.780 57.084Q-3.136 57.016-3.409 56.795Q-3.683 56.575-3.683 56.233Q-3.683 55.984-3.571 55.809Q-3.460 55.635-3.274 55.536Q-3.088 55.437-2.873 55.394Q-2.657 55.351-2.414 55.351Q-2.001 55.351-1.721 55.533L-1.505 55.358Q-1.495 55.355-1.488 55.353Q-1.481 55.351-1.471 55.351L-1.420 55.351Q-1.393 55.351-1.369 55.375Q-1.345 55.399-1.345 55.427L-1.345 56.274Q-1.345 56.295-1.369 56.322Q-1.393 56.349-1.420 56.349L-1.533 56.349Q-1.560 56.349-1.586 56.324Q-1.611 56.298-1.611 56.274Q-1.611 56.038-1.717 55.874Q-1.823 55.710-2.006 55.628Q-2.189 55.546-2.421 55.546Q-2.749 55.546-3.006 55.649Q-3.262 55.751-3.262 56.028Q-3.262 56.223-3.079 56.332Q-2.896 56.442-2.667 56.483L-2.093 56.589Q-1.847 56.637-1.633 56.765Q-1.420 56.893-1.283 57.096Q-1.146 57.300-1.146 57.549Q-1.146 58.062-1.512 58.301Q-1.878 58.540-2.414 58.540Q-2.910 58.540-3.242 58.246L-3.508 58.520Q-3.529 58.540-3.556 58.540L-3.604 58.540Q-3.628 58.540-3.655 58.513Q-3.683 58.486-3.683 58.465M-0.559 56.937Q-0.559 56.616-0.434 56.327Q-0.309 56.038-0.083 55.815Q0.142 55.591 0.438 55.471Q0.733 55.351 1.051 55.351Q1.379 55.351 1.641 55.451Q1.902 55.550 2.078 55.732Q2.254 55.915 2.348 56.173Q2.442 56.431 2.442 56.763Q2.442 56.855 2.360 56.876L0.105 56.876L0.105 56.937Q0.105 57.525 0.388 57.908Q0.672 58.291 1.239 58.291Q1.561 58.291 1.829 58.098Q2.097 57.905 2.186 57.590Q2.193 57.549 2.268 57.535L2.360 57.535Q2.442 57.559 2.442 57.631Q2.442 57.638 2.436 57.665Q2.323 58.062 1.952 58.301Q1.581 58.540 1.157 58.540Q0.720 58.540 0.320 58.332Q-0.080 58.123-0.319 57.756Q-0.559 57.389-0.559 56.937M0.111 56.667L1.926 56.667Q1.926 56.390 1.829 56.138Q1.732 55.885 1.533 55.729Q1.335 55.574 1.051 55.574Q0.774 55.574 0.561 55.732Q0.347 55.891 0.229 56.146Q0.111 56.401 0.111 56.667M3.030 58.465L3.030 57.402Q3.030 57.378 3.058 57.351Q3.085 57.324 3.109 57.324L3.218 57.324Q3.283 57.324 3.297 57.382Q3.393 57.816 3.639 58.067Q3.885 58.318 4.298 58.318Q4.640 58.318 4.893 58.185Q5.146 58.052 5.146 57.744Q5.146 57.587 5.052 57.472Q4.958 57.358 4.820 57.289Q4.681 57.221 4.514 57.183L3.933 57.084Q3.577 57.016 3.304 56.795Q3.030 56.575 3.030 56.233Q3.030 55.984 3.141 55.809Q3.252 55.635 3.439 55.536Q3.625 55.437 3.840 55.394Q4.056 55.351 4.298 55.351Q4.712 55.351 4.992 55.533L5.208 55.358Q5.218 55.355 5.225 55.353Q5.232 55.351 5.242 55.351L5.293 55.351Q5.320 55.351 5.344 55.375Q5.368 55.399 5.368 55.427L5.368 56.274Q5.368 56.295 5.344 56.322Q5.320 56.349 5.293 56.349L5.180 56.349Q5.153 56.349 5.127 56.324Q5.102 56.298 5.102 56.274Q5.102 56.038 4.996 55.874Q4.890 55.710 4.707 55.628Q4.524 55.546 4.292 55.546Q3.963 55.546 3.707 55.649Q3.451 55.751 3.451 56.028Q3.451 56.223 3.634 56.332Q3.816 56.442 4.045 56.483L4.620 56.589Q4.866 56.637 5.079 56.765Q5.293 56.893 5.430 57.096Q5.566 57.300 5.566 57.549Q5.566 58.062 5.201 58.301Q4.835 58.540 4.298 58.540Q3.803 58.540 3.471 58.246L3.205 58.520Q3.184 58.540 3.157 58.540L3.109 58.540Q3.085 58.540 3.058 58.513Q3.030 58.486 3.030 58.465\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 -103.525)\">\u003Cpath d=\"M8.970 57.744Q8.970 57.412 9.193 57.185Q9.417 56.958 9.761 56.830Q10.104 56.701 10.477 56.649Q10.849 56.596 11.154 56.596L11.154 56.343Q11.154 56.138 11.046 55.958Q10.938 55.779 10.757 55.676Q10.576 55.574 10.368 55.574Q9.961 55.574 9.725 55.666Q9.814 55.703 9.860 55.787Q9.906 55.871 9.906 55.973Q9.906 56.069 9.860 56.148Q9.814 56.226 9.733 56.271Q9.653 56.315 9.564 56.315Q9.414 56.315 9.313 56.218Q9.212 56.120 9.212 55.973Q9.212 55.351 10.368 55.351Q10.579 55.351 10.829 55.415Q11.078 55.478 11.280 55.597Q11.482 55.717 11.608 55.902Q11.735 56.086 11.735 56.329L11.735 57.905Q11.735 58.021 11.796 58.117Q11.858 58.212 11.971 58.212Q12.080 58.212 12.145 58.118Q12.210 58.024 12.210 57.905L12.210 57.457L12.476 57.457L12.476 57.905Q12.476 58.175 12.249 58.340Q12.022 58.506 11.742 58.506Q11.533 58.506 11.396 58.352Q11.260 58.199 11.236 57.983Q11.089 58.250 10.807 58.395Q10.525 58.540 10.200 58.540Q9.923 58.540 9.639 58.465Q9.356 58.390 9.163 58.211Q8.970 58.031 8.970 57.744M9.585 57.744Q9.585 57.918 9.686 58.048Q9.786 58.178 9.942 58.248Q10.097 58.318 10.262 58.318Q10.480 58.318 10.689 58.221Q10.897 58.123 11.025 57.942Q11.154 57.761 11.154 57.535L11.154 56.807Q10.829 56.807 10.463 56.898Q10.097 56.989 9.841 57.201Q9.585 57.412 9.585 57.744M12.893 58.465L12.893 57.402Q12.893 57.378 12.921 57.351Q12.948 57.324 12.972 57.324L13.081 57.324Q13.146 57.324 13.160 57.382Q13.256 57.816 13.502 58.067Q13.748 58.318 14.161 58.318Q14.503 58.318 14.756 58.185Q15.009 58.052 15.009 57.744Q15.009 57.587 14.915 57.472Q14.821 57.358 14.683 57.289Q14.544 57.221 14.377 57.183L13.796 57.084Q13.440 57.016 13.167 56.795Q12.893 56.575 12.893 56.233Q12.893 55.984 13.004 55.809Q13.116 55.635 13.302 55.536Q13.488 55.437 13.703 55.394Q13.919 55.351 14.161 55.351Q14.575 55.351 14.855 55.533L15.071 55.358Q15.081 55.355 15.088 55.353Q15.095 55.351 15.105 55.351L15.156 55.351Q15.183 55.351 15.207 55.375Q15.231 55.399 15.231 55.427L15.231 56.274Q15.231 56.295 15.207 56.322Q15.183 56.349 15.156 56.349L15.043 56.349Q15.016 56.349 14.990 56.324Q14.965 56.298 14.965 56.274Q14.965 56.038 14.859 55.874Q14.753 55.710 14.570 55.628Q14.387 55.546 14.155 55.546Q13.826 55.546 13.570 55.649Q13.314 55.751 13.314 56.028Q13.314 56.223 13.497 56.332Q13.680 56.442 13.909 56.483L14.483 56.589Q14.729 56.637 14.942 56.765Q15.156 56.893 15.293 57.096Q15.430 57.300 15.430 57.549Q15.430 58.062 15.064 58.301Q14.698 58.540 14.161 58.540Q13.666 58.540 13.334 58.246L13.068 58.520Q13.047 58.540 13.020 58.540L12.972 58.540Q12.948 58.540 12.921 58.513Q12.893 58.486 12.893 58.465\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 -103.525)\">\u003Cpath d=\"M18.972 58.311Q18.972 58.270 18.979 58.246L19.970 54.251Q20.008 54.155 20.008 54.063Q20.008 53.971 19.574 53.971Q19.488 53.943 19.488 53.858L19.516 53.748Q19.523 53.707 19.594 53.690L20.575 53.615Q20.620 53.615 20.649 53.641Q20.678 53.666 20.678 53.718L19.957 56.596Q20.169 56.507 20.317 56.382Q20.466 56.257 20.804 55.953Q21.143 55.649 21.384 55.517Q21.625 55.386 21.884 55.386Q22.103 55.386 22.252 55.531Q22.401 55.676 22.401 55.895Q22.401 56.090 22.284 56.235Q22.168 56.380 21.980 56.380Q21.864 56.380 21.782 56.307Q21.700 56.233 21.700 56.114Q21.700 55.960 21.813 55.830Q21.925 55.700 22.079 55.700Q21.997 55.608 21.867 55.608Q21.608 55.608 21.358 55.777Q21.109 55.946 20.757 56.267Q20.404 56.589 20.230 56.695Q21.331 56.814 21.331 57.443Q21.331 57.542 21.295 57.706Q21.259 57.870 21.259 57.959Q21.259 58.318 21.498 58.318Q21.741 58.318 21.888 58.046Q22.035 57.775 22.113 57.443Q22.137 57.382 22.192 57.382L22.301 57.382Q22.336 57.382 22.358 57.407Q22.380 57.433 22.380 57.464Q22.380 57.477 22.373 57.491Q22.274 57.891 22.052 58.216Q21.830 58.540 21.485 58.540Q21.156 58.540 20.936 58.342Q20.716 58.144 20.716 57.823Q20.716 57.764 20.736 57.645Q20.757 57.525 20.757 57.464Q20.757 57.197 20.466 57.050Q20.175 56.903 19.882 56.903L19.536 58.298Q19.506 58.400 19.412 58.470Q19.318 58.540 19.215 58.540Q19.116 58.540 19.044 58.477Q18.972 58.414 18.972 58.311\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 -103.525)\">\u003Cpath d=\"M25.834 59.005Q25.834 58.759 26.031 58.575Q26.228 58.390 26.484 58.311Q26.347 58.199 26.275 58.038Q26.204 57.877 26.204 57.696Q26.204 57.375 26.415 57.129Q26.081 56.831 26.081 56.421Q26.081 55.960 26.470 55.673Q26.860 55.386 27.338 55.386Q27.810 55.386 28.145 55.632Q28.319 55.478 28.530 55.396Q28.740 55.314 28.969 55.314Q29.133 55.314 29.254 55.421Q29.375 55.529 29.375 55.693Q29.375 55.789 29.304 55.861Q29.232 55.932 29.140 55.932Q29.040 55.932 28.970 55.859Q28.900 55.785 28.900 55.686Q28.900 55.632 28.914 55.601L28.921 55.587Q28.928 55.567 28.936 55.556Q28.945 55.546 28.948 55.539Q28.593 55.539 28.306 55.762Q28.593 56.055 28.593 56.421Q28.593 56.736 28.408 56.968Q28.224 57.201 27.935 57.329Q27.646 57.457 27.338 57.457Q27.137 57.457 26.945 57.407Q26.754 57.358 26.576 57.248Q26.484 57.375 26.484 57.518Q26.484 57.700 26.612 57.835Q26.740 57.970 26.925 57.970L27.557 57.970Q28.005 57.970 28.374 58.041Q28.743 58.113 29.003 58.342Q29.263 58.571 29.263 59.005Q29.263 59.326 28.967 59.528Q28.671 59.730 28.268 59.819Q27.865 59.908 27.550 59.908Q27.232 59.908 26.829 59.819Q26.426 59.730 26.130 59.528Q25.834 59.326 25.834 59.005M26.289 59.005Q26.289 59.234 26.508 59.383Q26.727 59.532 27.019 59.600Q27.311 59.668 27.550 59.668Q27.714 59.668 27.923 59.632Q28.131 59.597 28.338 59.516Q28.545 59.436 28.676 59.308Q28.808 59.180 28.808 59.005Q28.808 58.653 28.427 58.559Q28.046 58.465 27.543 58.465L26.925 58.465Q26.686 58.465 26.487 58.616Q26.289 58.766 26.289 59.005M27.338 57.218Q28.005 57.218 28.005 56.421Q28.005 55.621 27.338 55.621Q26.668 55.621 26.668 56.421Q26.668 57.218 27.338 57.218M31.607 58.472L29.871 58.472L29.871 58.192Q30.100 58.192 30.249 58.158Q30.397 58.123 30.397 57.983L30.397 56.134Q30.397 55.864 30.290 55.803Q30.182 55.741 29.871 55.741L29.871 55.461L30.900 55.386L30.900 56.093Q31.030 55.785 31.272 55.586Q31.515 55.386 31.833 55.386Q32.052 55.386 32.223 55.510Q32.394 55.635 32.394 55.847Q32.394 55.984 32.294 56.083Q32.195 56.182 32.062 56.182Q31.925 56.182 31.826 56.083Q31.727 55.984 31.727 55.847Q31.727 55.707 31.826 55.608Q31.536 55.608 31.336 55.804Q31.136 56.001 31.043 56.295Q30.951 56.589 30.951 56.869L30.951 57.983Q30.951 58.192 31.607 58.192L31.607 58.472M32.937 56.989Q32.937 56.647 33.072 56.348Q33.207 56.049 33.446 55.825Q33.686 55.601 34.003 55.476Q34.321 55.351 34.653 55.351Q35.097 55.351 35.497 55.567Q35.897 55.782 36.131 56.160Q36.365 56.537 36.365 56.989Q36.365 57.330 36.223 57.614Q36.082 57.898 35.837 58.105Q35.593 58.311 35.283 58.426Q34.974 58.540 34.653 58.540Q34.222 58.540 33.821 58.339Q33.419 58.137 33.178 57.785Q32.937 57.433 32.937 56.989M34.653 58.291Q35.254 58.291 35.478 57.913Q35.702 57.535 35.702 56.903Q35.702 56.291 35.468 55.932Q35.234 55.574 34.653 55.574Q33.600 55.574 33.600 56.903Q33.600 57.535 33.826 57.913Q34.051 58.291 34.653 58.291\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 -103.525)\">\u003Cpath d=\"M38.145 58.445L37.164 55.946Q37.103 55.803 36.985 55.768Q36.867 55.734 36.651 55.734L36.651 55.454L38.131 55.454L38.131 55.734Q37.752 55.734 37.752 55.895Q37.752 55.905 37.766 55.946L38.480 57.778L39.153 56.073Q39.123 56.001 39.123 55.973Q39.123 55.946 39.095 55.946Q39.034 55.799 38.916 55.767Q38.798 55.734 38.586 55.734L38.586 55.454L39.984 55.454L39.984 55.734Q39.608 55.734 39.608 55.895Q39.608 55.926 39.615 55.946L40.370 57.884L41.057 56.134Q41.078 56.083 41.078 56.028Q41.078 55.888 40.965 55.811Q40.852 55.734 40.712 55.734L40.712 55.454L41.932 55.454L41.932 55.734Q41.727 55.734 41.572 55.840Q41.416 55.946 41.344 56.134L40.439 58.445Q40.404 58.540 40.292 58.540L40.223 58.540Q40.114 58.540 40.076 58.445L39.294 56.442L38.507 58.445Q38.473 58.540 38.360 58.540L38.292 58.540Q38.183 58.540 38.145 58.445M42.462 58.465L42.462 57.402Q42.462 57.378 42.489 57.351Q42.517 57.324 42.541 57.324L42.650 57.324Q42.715 57.324 42.729 57.382Q42.824 57.816 43.070 58.067Q43.317 58.318 43.730 58.318Q44.072 58.318 44.325 58.185Q44.578 58.052 44.578 57.744Q44.578 57.587 44.484 57.472Q44.390 57.358 44.251 57.289Q44.113 57.221 43.945 57.183L43.364 57.084Q43.009 57.016 42.735 56.795Q42.462 56.575 42.462 56.233Q42.462 55.984 42.573 55.809Q42.684 55.635 42.870 55.536Q43.057 55.437 43.272 55.394Q43.487 55.351 43.730 55.351Q44.144 55.351 44.424 55.533L44.639 55.358Q44.650 55.355 44.656 55.353Q44.663 55.351 44.673 55.351L44.725 55.351Q44.752 55.351 44.776 55.375Q44.800 55.399 44.800 55.427L44.800 56.274Q44.800 56.295 44.776 56.322Q44.752 56.349 44.725 56.349L44.612 56.349Q44.585 56.349 44.559 56.324Q44.533 56.298 44.533 56.274Q44.533 56.038 44.427 55.874Q44.321 55.710 44.139 55.628Q43.956 55.546 43.723 55.546Q43.395 55.546 43.139 55.649Q42.882 55.751 42.882 56.028Q42.882 56.223 43.065 56.332Q43.248 56.442 43.477 56.483L44.051 56.589Q44.297 56.637 44.511 56.765Q44.725 56.893 44.861 57.096Q44.998 57.300 44.998 57.549Q44.998 58.062 44.632 58.301Q44.267 58.540 43.730 58.540Q43.235 58.540 42.903 58.246L42.636 58.520Q42.616 58.540 42.589 58.540L42.541 58.540Q42.517 58.540 42.489 58.513Q42.462 58.486 42.462 58.465\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Merge passes versus fan-out for a fixed \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:1em;vertical-align:-0.25em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003Cspan class=\"mord\">\u002F\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">M\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>. Passes fall as \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:1em;vertical-align:-0.25em;\">\u003C\u002Fspan>\u003Cspan class=\"mopen\">⌈\u003C\u002Fspan>\u003Cspan class=\"mop\">\u003Cspan class=\"mop\">\u003Cspan class=\"mord mathrm\" style=\"margin-right:0.0139em;\">log\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"msupsub\">\u003Cspan class=\"vlist-t vlist-t2\">\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.242em;\">\u003Cspan style=\"top:-2.4559em;margin-right:0.05em;\">\u003Cspan class=\"pstrut\" style=\"height:2.7em;\">\u003C\u002Fspan>\u003Cspan class=\"sizing reset-size6 size3 mtight\">\u003Cspan class=\"mord mathnormal mtight\" style=\"margin-right:0.0315em;\">k\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-s\">​\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.2441em;\">\u003Cspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"mopen\">(\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003Cspan class=\"mord\">\u002F\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">M\u003C\u002Fspan>\u003Cspan class=\"mclose\">)⌉\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>, so a wider merge flattens the file in far fewer sequential sweeps; the gain shrinks as \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6944em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.0315em;\">k\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> grows.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:405.724px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 304.293 114.720\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg transform=\"translate(-27.862 -77.994)\">\u003Cpath d=\"M-11.359 16.334L-12.911 16.334L-12.911 16.054Q-12.685 16.054-12.536 16.020Q-12.388 15.985-12.388 15.845L-12.388 13.996Q-12.388 13.808-12.436 13.724Q-12.483 13.641-12.581 13.622Q-12.678 13.603-12.890 13.603L-12.890 13.323L-11.834 13.248L-11.834 15.845Q-11.834 15.985-11.702 16.020Q-11.571 16.054-11.359 16.054L-11.359 16.334M-12.630 12.027Q-12.630 11.856-12.507 11.737Q-12.384 11.617-12.213 11.617Q-12.046 11.617-11.923 11.737Q-11.800 11.856-11.800 12.027Q-11.800 12.202-11.923 12.325Q-12.046 12.448-12.213 12.448Q-12.384 12.448-12.507 12.325Q-12.630 12.202-12.630 12.027M-9.031 16.334L-10.665 16.334L-10.665 16.054Q-10.436 16.054-10.287 16.020Q-10.139 15.985-10.139 15.845L-10.139 13.996Q-10.139 13.726-10.246 13.665Q-10.354 13.603-10.665 13.603L-10.665 13.323L-9.605 13.248L-9.605 13.897Q-9.435 13.589-9.130 13.418Q-8.826 13.248-8.481 13.248Q-7.975 13.248-7.691 13.471Q-7.408 13.695-7.408 14.191L-7.408 15.845Q-7.408 15.982-7.259 16.018Q-7.110 16.054-6.885 16.054L-6.885 16.334L-8.515 16.334L-8.515 16.054Q-8.286 16.054-8.137 16.020Q-7.989 15.985-7.989 15.845L-7.989 14.205Q-7.989 13.870-8.108 13.670Q-8.228 13.470-8.542 13.470Q-8.812 13.470-9.047 13.606Q-9.281 13.743-9.419 13.977Q-9.558 14.211-9.558 14.485L-9.558 15.845Q-9.558 15.982-9.407 16.018Q-9.257 16.054-9.031 16.054L-9.031 16.334M-4.653 17.691L-6.283 17.691L-6.283 17.411Q-6.054 17.411-5.905 17.376Q-5.757 17.342-5.757 17.202L-5.757 13.856Q-5.757 13.685-5.894 13.644Q-6.030 13.603-6.283 13.603L-6.283 13.323L-5.203 13.248L-5.203 13.654Q-4.981 13.453-4.694 13.350Q-4.407 13.248-4.099 13.248Q-3.672 13.248-3.308 13.461Q-2.944 13.675-2.730 14.039Q-2.517 14.403-2.517 14.823Q-2.517 15.268-2.756 15.632Q-2.995 15.996-3.388 16.199Q-3.781 16.402-4.226 16.402Q-4.492 16.402-4.740 16.302Q-4.988 16.201-5.176 16.020L-5.176 17.202Q-5.176 17.339-5.027 17.375Q-4.878 17.411-4.653 17.411L-4.653 17.691M-5.176 14.003L-5.176 15.613Q-5.042 15.866-4.800 16.023Q-4.557 16.180-4.280 16.180Q-3.952 16.180-3.699 15.979Q-3.446 15.777-3.313 15.459Q-3.180 15.141-3.180 14.823Q-3.180 14.594-3.245 14.365Q-3.310 14.136-3.438 13.938Q-3.566 13.740-3.761 13.620Q-3.956 13.501-4.188 13.501Q-4.482 13.501-4.750 13.630Q-5.019 13.760-5.176 14.003M-1.307 15.500L-1.307 13.996Q-1.307 13.726-1.414 13.665Q-1.522 13.603-1.833 13.603L-1.833 13.323L-0.726 13.248L-0.726 15.480L-0.726 15.500Q-0.726 15.780-0.674 15.924Q-0.623 16.067-0.481 16.124Q-0.339 16.180-0.052 16.180Q0.201 16.180 0.406 16.040Q0.611 15.900 0.727 15.674Q0.843 15.449 0.843 15.199L0.843 13.996Q0.843 13.726 0.736 13.665Q0.628 13.603 0.317 13.603L0.317 13.323L1.424 13.248L1.424 15.661Q1.424 15.852 1.477 15.934Q1.530 16.016 1.631 16.035Q1.732 16.054 1.947 16.054L1.947 16.334L0.871 16.402L0.871 15.838Q0.761 16.020 0.616 16.143Q0.471 16.266 0.284 16.334Q0.098 16.402-0.103 16.402Q-1.307 16.402-1.307 15.500M3.062 15.493L3.062 13.596L2.422 13.596L2.422 13.374Q2.740 13.374 2.957 13.164Q3.174 12.954 3.275 12.644Q3.376 12.335 3.376 12.027L3.643 12.027L3.643 13.316L4.719 13.316L4.719 13.596L3.643 13.596L3.643 15.480Q3.643 15.756 3.747 15.955Q3.851 16.153 4.111 16.153Q4.268 16.153 4.374 16.049Q4.480 15.944 4.530 15.791Q4.579 15.637 4.579 15.480L4.579 15.066L4.846 15.066L4.846 15.493Q4.846 15.719 4.747 15.929Q4.648 16.139 4.463 16.271Q4.278 16.402 4.049 16.402Q3.612 16.402 3.337 16.165Q3.062 15.927 3.062 15.493\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M-22.537-54.798h18.494V-71.87h-18.494Z\"\u002F>\u003Cg transform=\"translate(-3.986 -77.412)\">\u003Cpath d=\"M-9.964 16.334L-12.494 16.334L-12.494 16.054Q-11.526 16.054-11.526 15.845L-11.526 12.226Q-11.919 12.414-12.541 12.414L-12.541 12.133Q-12.124 12.133-11.760 12.032Q-11.396 11.932-11.140 11.686L-11.014 11.686Q-10.949 11.703-10.932 11.771L-10.932 15.845Q-10.932 16.054-9.964 16.054L-9.964 16.334M-7.873 16.126Q-7.873 15.620-7.743 15.112Q-7.613 14.605-7.375 14.143Q-7.138 13.682-6.803 13.261L-6.157 12.448L-6.970 12.448Q-7.555 12.448-7.951 12.456Q-8.348 12.465-8.372 12.485Q-8.474 12.602-8.553 13.128L-8.819 13.128L-8.573 11.604L-8.307 11.604L-8.307 11.624Q-8.307 11.692-8.231 11.735Q-8.156 11.778-8.078 11.785Q-7.886 11.809-7.691 11.815Q-7.497 11.822-7.305 11.824Q-7.114 11.826-6.915 11.826L-5.494 11.826L-5.494 12.014Q-5.504 12.062-5.514 12.072L-6.570 13.395Q-6.789 13.668-6.912 13.981Q-7.035 14.293-7.093 14.642Q-7.151 14.991-7.165 15.322Q-7.179 15.654-7.179 16.126Q-7.179 16.276-7.278 16.375Q-7.377 16.474-7.524 16.474Q-7.674 16.474-7.773 16.375Q-7.873 16.276-7.873 16.126\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M1.648-54.798h18.494V-71.87H1.648Z\"\u002F>\u003Cg transform=\"translate(20.199 -77.412)\">\u003Cpath d=\"M-9.964 16.334L-12.849 16.334L-12.849 16.132Q-12.849 16.102-12.822 16.074L-11.574 14.857Q-11.502 14.782-11.460 14.740Q-11.417 14.697-11.338 14.618Q-10.925 14.205-10.694 13.847Q-10.463 13.490-10.463 13.066Q-10.463 12.834-10.542 12.631Q-10.621 12.427-10.762 12.277Q-10.904 12.126-11.099 12.046Q-11.294 11.966-11.526 11.966Q-11.837 11.966-12.095 12.125Q-12.353 12.284-12.483 12.561L-12.463 12.561Q-12.295 12.561-12.188 12.672Q-12.080 12.783-12.080 12.947Q-12.080 13.104-12.189 13.217Q-12.299 13.330-12.463 13.330Q-12.623 13.330-12.736 13.217Q-12.849 13.104-12.849 12.947Q-12.849 12.571-12.641 12.284Q-12.432 11.997-12.097 11.841Q-11.762 11.686-11.407 11.686Q-10.983 11.686-10.603 11.844Q-10.224 12.003-9.990 12.320Q-9.756 12.636-9.756 13.066Q-9.756 13.377-9.896 13.646Q-10.036 13.914-10.241 14.119Q-10.446 14.324-10.809 14.606Q-11.171 14.888-11.280 14.984L-12.135 15.712L-11.492 15.712Q-11.229 15.712-10.940 15.710Q-10.651 15.709-10.433 15.700Q-10.214 15.691-10.197 15.674Q-10.135 15.609-10.098 15.442Q-10.060 15.274-10.022 15.032L-9.756 15.032L-9.964 16.334M-8.501 15.572L-8.532 15.572Q-8.395 15.869-8.098 16.045Q-7.801 16.221-7.473 16.221Q-7.110 16.221-6.883 16.043Q-6.656 15.866-6.562 15.577Q-6.468 15.288-6.468 14.926Q-6.468 14.611-6.522 14.326Q-6.577 14.041-6.750 13.835Q-6.922 13.630-7.237 13.630Q-7.510 13.630-7.693 13.697Q-7.876 13.764-7.980 13.853Q-8.084 13.941-8.180 14.051Q-8.276 14.160-8.320 14.170L-8.399 14.170Q-8.471 14.153-8.488 14.082L-8.488 11.764Q-8.488 11.730-8.464 11.708Q-8.440 11.686-8.406 11.686L-8.378 11.686Q-8.091 11.802-7.823 11.856Q-7.555 11.911-7.278 11.911Q-7.001 11.911-6.731 11.856Q-6.461 11.802-6.181 11.686L-6.157 11.686Q-6.123 11.686-6.099 11.709Q-6.075 11.733-6.075 11.764L-6.075 11.833Q-6.075 11.860-6.095 11.880Q-6.369 12.195-6.753 12.371Q-7.138 12.547-7.551 12.547Q-7.890 12.547-8.207 12.461L-8.207 13.743Q-7.811 13.408-7.237 13.408Q-6.833 13.408-6.497 13.618Q-6.160 13.829-5.967 14.181Q-5.774 14.533-5.774 14.933Q-5.774 15.264-5.914 15.550Q-6.054 15.835-6.299 16.045Q-6.543 16.255-6.845 16.365Q-7.148 16.474-7.466 16.474Q-7.825 16.474-8.151 16.310Q-8.477 16.146-8.672 15.854Q-8.867 15.562-8.867 15.199Q-8.867 15.049-8.761 14.943Q-8.655 14.837-8.501 14.837Q-8.348 14.837-8.243 14.941Q-8.139 15.045-8.139 15.199Q-8.139 15.356-8.243 15.464Q-8.348 15.572-8.501 15.572\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M25.833-54.798h18.494V-71.87H25.833Z\"\u002F>\u003Cg transform=\"translate(46.377 -77.412)\">\u003Cpath d=\"M-12.316 16.020Q-12.196 16.136-12.019 16.178Q-11.841 16.221-11.625 16.221Q-11.386 16.221-11.176 16.112Q-10.966 16.002-10.812 15.820Q-10.658 15.637-10.559 15.404Q-10.392 14.977-10.392 14.157Q-10.542 14.451-10.805 14.630Q-11.068 14.810-11.386 14.810Q-11.820 14.810-12.167 14.601Q-12.514 14.393-12.712 14.032Q-12.911 13.671-12.911 13.248Q-12.911 12.913-12.781 12.624Q-12.651 12.335-12.420 12.121Q-12.189 11.908-11.890 11.797Q-11.591 11.686-11.260 11.686Q-10.402 11.686-10.046 12.400Q-9.691 13.114-9.691 14.071Q-9.691 14.488-9.819 14.916Q-9.947 15.343-10.204 15.698Q-10.460 16.054-10.822 16.264Q-11.185 16.474-11.625 16.474Q-12.080 16.474-12.398 16.286Q-12.716 16.098-12.716 15.674Q-12.716 15.524-12.617 15.425Q-12.518 15.326-12.367 15.326Q-12.299 15.326-12.232 15.353Q-12.165 15.380-12.121 15.425Q-12.077 15.469-12.049 15.536Q-12.022 15.603-12.022 15.674Q-12.022 15.804-12.102 15.902Q-12.183 15.999-12.316 16.020M-11.345 14.584Q-11.051 14.584-10.836 14.406Q-10.621 14.229-10.513 13.953Q-10.405 13.678-10.405 13.388Q-10.405 13.343-10.407 13.316Q-10.409 13.289-10.412 13.254Q-10.409 13.244-10.407 13.237Q-10.405 13.230-10.405 13.220Q-10.405 12.718-10.603 12.318Q-10.802 11.918-11.260 11.918Q-11.827 11.918-12.020 12.277Q-12.213 12.636-12.213 13.248Q-12.213 13.634-12.159 13.917Q-12.104 14.201-11.909 14.393Q-11.714 14.584-11.345 14.584\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M50.018-54.798h18.494V-71.87H50.018Z\"\u002F>\u003Cg transform=\"translate(68.568 -77.412)\">\u003Cpath d=\"M-12.494 15.787Q-12.374 15.944-12.183 16.043Q-11.991 16.143-11.776 16.182Q-11.561 16.221-11.338 16.221Q-11.041 16.221-10.846 16.066Q-10.651 15.910-10.561 15.656Q-10.470 15.401-10.470 15.117Q-10.470 14.823-10.562 14.572Q-10.655 14.321-10.853 14.165Q-11.051 14.010-11.345 14.010L-11.861 14.010Q-11.889 14.010-11.914 13.984Q-11.940 13.959-11.940 13.935L-11.940 13.863Q-11.940 13.832-11.914 13.810Q-11.889 13.788-11.861 13.788L-11.420 13.757Q-11.058 13.757-10.838 13.400Q-10.617 13.042-10.617 12.653Q-10.617 12.325-10.812 12.121Q-11.007 11.918-11.338 11.918Q-11.625 11.918-11.878 12.002Q-12.131 12.085-12.295 12.273Q-12.148 12.273-12.048 12.388Q-11.947 12.502-11.947 12.653Q-11.947 12.803-12.053 12.913Q-12.159 13.022-12.316 13.022Q-12.477 13.022-12.586 12.913Q-12.695 12.803-12.695 12.653Q-12.695 12.328-12.487 12.109Q-12.278 11.891-11.962 11.788Q-11.646 11.686-11.338 11.686Q-11.020 11.686-10.692 11.790Q-10.364 11.894-10.137 12.116Q-9.910 12.338-9.910 12.653Q-9.910 13.087-10.197 13.412Q-10.484 13.736-10.918 13.883Q-10.607 13.948-10.327 14.114Q-10.046 14.280-9.869 14.538Q-9.691 14.796-9.691 15.117Q-9.691 15.527-9.935 15.837Q-10.180 16.146-10.561 16.310Q-10.942 16.474-11.338 16.474Q-11.707 16.474-12.065 16.361Q-12.422 16.249-12.666 15.999Q-12.911 15.750-12.911 15.380Q-12.911 15.209-12.794 15.097Q-12.678 14.984-12.507 14.984Q-12.398 14.984-12.307 15.035Q-12.217 15.086-12.162 15.179Q-12.107 15.271-12.107 15.380Q-12.107 15.548-12.220 15.667Q-12.333 15.787-12.494 15.787M-7.319 16.474Q-7.955 16.474-8.319 16.129Q-8.683 15.784-8.818 15.259Q-8.953 14.734-8.953 14.109Q-8.953 13.084-8.597 12.385Q-8.242 11.686-7.319 11.686Q-6.393 11.686-6.040 12.385Q-5.688 13.084-5.688 14.109Q-5.688 14.734-5.823 15.259Q-5.958 15.784-6.321 16.129Q-6.683 16.474-7.319 16.474M-7.319 16.249Q-6.881 16.249-6.668 15.874Q-6.454 15.500-6.405 15.033Q-6.355 14.567-6.355 13.989Q-6.355 13.436-6.405 13.008Q-6.454 12.581-6.666 12.246Q-6.878 11.911-7.319 11.911Q-7.661 11.911-7.864 12.118Q-8.067 12.325-8.155 12.637Q-8.242 12.950-8.264 13.266Q-8.286 13.583-8.286 13.989Q-8.286 14.406-8.264 14.748Q-8.242 15.090-8.153 15.438Q-8.064 15.787-7.859 16.018Q-7.654 16.249-7.319 16.249\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M74.202-54.798h18.494V-71.87H74.202Z\"\u002F>\u003Cg transform=\"translate(92.753 -77.412)\">\u003Cpath d=\"M-9.964 16.334L-12.494 16.334L-12.494 16.054Q-11.526 16.054-11.526 15.845L-11.526 12.226Q-11.919 12.414-12.541 12.414L-12.541 12.133Q-12.124 12.133-11.760 12.032Q-11.396 11.932-11.140 11.686L-11.014 11.686Q-10.949 11.703-10.932 11.771L-10.932 15.845Q-10.932 16.054-9.964 16.054L-9.964 16.334M-5.982 16.334L-8.867 16.334L-8.867 16.132Q-8.867 16.102-8.840 16.074L-7.592 14.857Q-7.520 14.782-7.478 14.740Q-7.435 14.697-7.356 14.618Q-6.943 14.205-6.712 13.847Q-6.481 13.490-6.481 13.066Q-6.481 12.834-6.560 12.631Q-6.639 12.427-6.780 12.277Q-6.922 12.126-7.117 12.046Q-7.312 11.966-7.544 11.966Q-7.855 11.966-8.113 12.125Q-8.372 12.284-8.501 12.561L-8.481 12.561Q-8.313 12.561-8.206 12.672Q-8.098 12.783-8.098 12.947Q-8.098 13.104-8.207 13.217Q-8.317 13.330-8.481 13.330Q-8.642 13.330-8.754 13.217Q-8.867 13.104-8.867 12.947Q-8.867 12.571-8.659 12.284Q-8.450 11.997-8.115 11.841Q-7.780 11.686-7.425 11.686Q-7.001 11.686-6.622 11.844Q-6.242 12.003-6.008 12.320Q-5.774 12.636-5.774 13.066Q-5.774 13.377-5.914 13.646Q-6.054 13.914-6.259 14.119Q-6.464 14.324-6.827 14.606Q-7.189 14.888-7.298 14.984L-8.153 15.712L-7.510 15.712Q-7.247 15.712-6.958 15.710Q-6.669 15.709-6.451 15.700Q-6.232 15.691-6.215 15.674Q-6.153 15.609-6.116 15.442Q-6.078 15.274-6.040 15.032L-5.774 15.032\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M98.387-54.798h18.494V-71.87H98.387Z\"\u002F>\u003Cg transform=\"translate(116.938 -77.412)\">\u003Cpath d=\"M-10.973 15.186L-13.017 15.186L-13.017 14.905L-10.686 11.733Q-10.651 11.686-10.586 11.686L-10.450 11.686Q-10.405 11.686-10.378 11.713Q-10.351 11.740-10.351 11.785L-10.351 14.905L-9.588 14.905L-9.588 15.186L-10.351 15.186L-10.351 15.845Q-10.351 16.054-9.595 16.054L-9.595 16.334L-11.728 16.334L-11.728 16.054Q-10.973 16.054-10.973 15.845L-10.973 15.186M-10.925 12.461L-12.716 14.905L-10.925 14.905L-10.925 12.461M-5.982 16.334L-8.512 16.334L-8.512 16.054Q-7.544 16.054-7.544 15.845L-7.544 12.226Q-7.937 12.414-8.560 12.414L-8.560 12.133Q-8.143 12.133-7.779 12.032Q-7.415 11.932-7.158 11.686L-7.032 11.686Q-6.967 11.703-6.950 11.771L-6.950 15.845Q-6.950 16.054-5.982 16.054\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(145.797 -77.918)\">\u003Cpath d=\"M-12.917 15.606Q-12.917 15.274-12.694 15.047Q-12.470 14.820-12.126 14.692Q-11.783 14.563-11.410 14.511Q-11.038 14.458-10.733 14.458L-10.733 14.205Q-10.733 14-10.841 13.820Q-10.949 13.641-11.130 13.538Q-11.311 13.436-11.519 13.436Q-11.926 13.436-12.162 13.528Q-12.073 13.565-12.027 13.649Q-11.981 13.733-11.981 13.835Q-11.981 13.931-12.027 14.010Q-12.073 14.088-12.154 14.133Q-12.234 14.177-12.323 14.177Q-12.473 14.177-12.574 14.080Q-12.675 13.982-12.675 13.835Q-12.675 13.213-11.519 13.213Q-11.308 13.213-11.058 13.277Q-10.809 13.340-10.607 13.459Q-10.405 13.579-10.279 13.764Q-10.152 13.948-10.152 14.191L-10.152 15.767Q-10.152 15.883-10.091 15.979Q-10.029 16.074-9.916 16.074Q-9.807 16.074-9.742 15.980Q-9.677 15.886-9.677 15.767L-9.677 15.319L-9.411 15.319L-9.411 15.767Q-9.411 16.037-9.638 16.202Q-9.865 16.368-10.145 16.368Q-10.354 16.368-10.491 16.214Q-10.627 16.061-10.651 15.845Q-10.798 16.112-11.080 16.257Q-11.362 16.402-11.687 16.402Q-11.964 16.402-12.248 16.327Q-12.531 16.252-12.724 16.073Q-12.917 15.893-12.917 15.606M-12.302 15.606Q-12.302 15.780-12.201 15.910Q-12.101 16.040-11.945 16.110Q-11.790 16.180-11.625 16.180Q-11.407 16.180-11.198 16.083Q-10.990 15.985-10.862 15.804Q-10.733 15.623-10.733 15.397L-10.733 14.669Q-11.058 14.669-11.424 14.760Q-11.790 14.851-12.046 15.063Q-12.302 15.274-12.302 15.606M-7.244 16.334L-8.980 16.334L-8.980 16.054Q-8.751 16.054-8.602 16.020Q-8.454 15.985-8.454 15.845L-8.454 13.996Q-8.454 13.726-8.561 13.665Q-8.669 13.603-8.980 13.603L-8.980 13.323L-7.951 13.248L-7.951 13.955Q-7.821 13.647-7.579 13.448Q-7.336 13.248-7.018 13.248Q-6.799 13.248-6.628 13.372Q-6.457 13.497-6.457 13.709Q-6.457 13.846-6.557 13.945Q-6.656 14.044-6.789 14.044Q-6.926 14.044-7.025 13.945Q-7.124 13.846-7.124 13.709Q-7.124 13.569-7.025 13.470Q-7.315 13.470-7.515 13.666Q-7.715 13.863-7.808 14.157Q-7.900 14.451-7.900 14.731L-7.900 15.845Q-7.900 16.054-7.244 16.054L-7.244 16.334M-4.123 16.334L-5.859 16.334L-5.859 16.054Q-5.630 16.054-5.482 16.020Q-5.333 15.985-5.333 15.845L-5.333 13.996Q-5.333 13.726-5.441 13.665Q-5.548 13.603-5.859 13.603L-5.859 13.323L-4.831 13.248L-4.831 13.955Q-4.701 13.647-4.458 13.448Q-4.215 13.248-3.897 13.248Q-3.679 13.248-3.508 13.372Q-3.337 13.497-3.337 13.709Q-3.337 13.846-3.436 13.945Q-3.535 14.044-3.668 14.044Q-3.805 14.044-3.904 13.945Q-4.003 13.846-4.003 13.709Q-4.003 13.569-3.904 13.470Q-4.195 13.470-4.395 13.666Q-4.595 13.863-4.687 14.157Q-4.779 14.451-4.779 14.731L-4.779 15.845Q-4.779 16.054-4.123 16.054L-4.123 16.334M-1.136 16.334L-2.687 16.334L-2.687 16.054Q-2.462 16.054-2.313 16.020Q-2.165 15.985-2.165 15.845L-2.165 13.996Q-2.165 13.808-2.212 13.724Q-2.260 13.641-2.358 13.622Q-2.455 13.603-2.667 13.603L-2.667 13.323L-1.611 13.248L-1.611 15.845Q-1.611 15.985-1.479 16.020Q-1.348 16.054-1.136 16.054L-1.136 16.334M-2.407 12.027Q-2.407 11.856-2.284 11.737Q-2.161 11.617-1.990 11.617Q-1.823 11.617-1.700 11.737Q-1.577 11.856-1.577 12.027Q-1.577 12.202-1.700 12.325Q-1.823 12.448-1.990 12.448Q-2.161 12.448-2.284 12.325Q-2.407 12.202-2.407 12.027M1.100 16.307L-0.028 13.808Q-0.100 13.661-0.230 13.629Q-0.360 13.596-0.589 13.596L-0.589 13.316L0.925 13.316L0.925 13.596Q0.573 13.596 0.573 13.743Q0.573 13.788 0.584 13.808L1.448 15.726L2.228 13.996Q2.262 13.928 2.262 13.849Q2.262 13.736 2.178 13.666Q2.094 13.596 1.975 13.596L1.975 13.316L3.171 13.316L3.171 13.596Q2.952 13.596 2.781 13.699Q2.610 13.801 2.522 13.996L1.486 16.307Q1.438 16.402 1.332 16.402L1.253 16.402Q1.148 16.402 1.100 16.307M5.328 16.334L3.776 16.334L3.776 16.054Q4.002 16.054 4.150 16.020Q4.299 15.985 4.299 15.845L4.299 13.996Q4.299 13.808 4.251 13.724Q4.203 13.641 4.106 13.622Q4.008 13.603 3.796 13.603L3.796 13.323L4.853 13.248L4.853 15.845Q4.853 15.985 4.984 16.020Q5.116 16.054 5.328 16.054L5.328 16.334M4.056 12.027Q4.056 11.856 4.179 11.737Q4.302 11.617 4.473 11.617Q4.641 11.617 4.764 11.737Q4.887 11.856 4.887 12.027Q4.887 12.202 4.764 12.325Q4.641 12.448 4.473 12.448Q4.302 12.448 4.179 12.325Q4.056 12.202 4.056 12.027M7.655 16.334L6.022 16.334L6.022 16.054Q6.251 16.054 6.399 16.020Q6.548 15.985 6.548 15.845L6.548 13.996Q6.548 13.726 6.440 13.665Q6.333 13.603 6.022 13.603L6.022 13.323L7.081 13.248L7.081 13.897Q7.252 13.589 7.556 13.418Q7.860 13.248 8.206 13.248Q8.711 13.248 8.995 13.471Q9.279 13.695 9.279 14.191L9.279 15.845Q9.279 15.982 9.428 16.018Q9.576 16.054 9.802 16.054L9.802 16.334L8.171 16.334L8.171 16.054Q8.400 16.054 8.549 16.020Q8.698 15.985 8.698 15.845L8.698 14.205Q8.698 13.870 8.578 13.670Q8.459 13.470 8.144 13.470Q7.874 13.470 7.640 13.606Q7.406 13.743 7.267 13.977Q7.129 14.211 7.129 14.485L7.129 15.845Q7.129 15.982 7.279 16.018Q7.430 16.054 7.655 16.054L7.655 16.334M10.349 16.867Q10.349 16.621 10.545 16.437Q10.742 16.252 10.998 16.173Q10.861 16.061 10.790 15.900Q10.718 15.739 10.718 15.558Q10.718 15.237 10.930 14.991Q10.595 14.693 10.595 14.283Q10.595 13.822 10.984 13.535Q11.374 13.248 11.853 13.248Q12.324 13.248 12.659 13.494Q12.834 13.340 13.044 13.258Q13.254 13.176 13.483 13.176Q13.647 13.176 13.768 13.283Q13.890 13.391 13.890 13.555Q13.890 13.651 13.818 13.723Q13.746 13.794 13.654 13.794Q13.555 13.794 13.485 13.721Q13.415 13.647 13.415 13.548Q13.415 13.494 13.428 13.463L13.435 13.449Q13.442 13.429 13.450 13.418Q13.459 13.408 13.462 13.401Q13.107 13.401 12.820 13.624Q13.107 13.917 13.107 14.283Q13.107 14.598 12.922 14.830Q12.738 15.063 12.449 15.191Q12.160 15.319 11.853 15.319Q11.651 15.319 11.460 15.269Q11.268 15.220 11.090 15.110Q10.998 15.237 10.998 15.380Q10.998 15.562 11.126 15.697Q11.254 15.832 11.439 15.832L12.071 15.832Q12.519 15.832 12.888 15.903Q13.257 15.975 13.517 16.204Q13.777 16.433 13.777 16.867Q13.777 17.188 13.481 17.390Q13.186 17.592 12.782 17.681Q12.379 17.770 12.064 17.770Q11.747 17.770 11.343 17.681Q10.940 17.592 10.644 17.390Q10.349 17.188 10.349 16.867M10.803 16.867Q10.803 17.096 11.022 17.245Q11.241 17.394 11.533 17.462Q11.825 17.530 12.064 17.530Q12.229 17.530 12.437 17.494Q12.646 17.459 12.852 17.378Q13.059 17.298 13.191 17.170Q13.322 17.042 13.322 16.867Q13.322 16.515 12.941 16.421Q12.560 16.327 12.058 16.327L11.439 16.327Q11.200 16.327 11.002 16.478Q10.803 16.628 10.803 16.867M11.853 15.080Q12.519 15.080 12.519 14.283Q12.519 13.483 11.853 13.483Q11.183 13.483 11.183 14.283Q11.183 15.080 11.853 15.080\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(145.797 -77.918)\">\u003Cpath d=\"M18.837 16.334L17.101 16.334L17.101 16.054Q17.330 16.054 17.479 16.020Q17.627 15.985 17.627 15.845L17.627 13.996Q17.627 13.726 17.520 13.665Q17.412 13.603 17.101 13.603L17.101 13.323L18.130 13.248L18.130 13.955Q18.260 13.647 18.502 13.448Q18.745 13.248 19.063 13.248Q19.282 13.248 19.453 13.372Q19.624 13.497 19.624 13.709Q19.624 13.846 19.524 13.945Q19.425 14.044 19.292 14.044Q19.155 14.044 19.056 13.945Q18.957 13.846 18.957 13.709Q18.957 13.569 19.056 13.470Q18.766 13.470 18.566 13.666Q18.366 13.863 18.273 14.157Q18.181 14.451 18.181 14.731L18.181 15.845Q18.181 16.054 18.837 16.054L18.837 16.334M20.167 14.799Q20.167 14.478 20.292 14.189Q20.417 13.900 20.642 13.677Q20.868 13.453 21.163 13.333Q21.459 13.213 21.777 13.213Q22.105 13.213 22.367 13.313Q22.628 13.412 22.804 13.594Q22.980 13.777 23.074 14.035Q23.168 14.293 23.168 14.625Q23.168 14.717 23.086 14.738L20.830 14.738L20.830 14.799Q20.830 15.387 21.114 15.770Q21.398 16.153 21.965 16.153Q22.286 16.153 22.554 15.960Q22.823 15.767 22.912 15.452Q22.919 15.411 22.994 15.397L23.086 15.397Q23.168 15.421 23.168 15.493Q23.168 15.500 23.161 15.527Q23.048 15.924 22.678 16.163Q22.307 16.402 21.883 16.402Q21.445 16.402 21.045 16.194Q20.646 15.985 20.406 15.618Q20.167 15.251 20.167 14.799M20.837 14.529L22.652 14.529Q22.652 14.252 22.554 14Q22.457 13.747 22.259 13.591Q22.061 13.436 21.777 13.436Q21.500 13.436 21.286 13.594Q21.073 13.753 20.955 14.008Q20.837 14.263 20.837 14.529M23.756 14.823Q23.756 14.495 23.891 14.194Q24.026 13.894 24.262 13.673Q24.498 13.453 24.802 13.333Q25.106 13.213 25.431 13.213Q25.937 13.213 26.285 13.316Q26.634 13.418 26.634 13.794Q26.634 13.941 26.536 14.042Q26.439 14.143 26.292 14.143Q26.138 14.143 26.039 14.044Q25.940 13.945 25.940 13.794Q25.940 13.606 26.080 13.514Q25.878 13.463 25.438 13.463Q25.082 13.463 24.853 13.659Q24.624 13.856 24.523 14.165Q24.422 14.475 24.422 14.823Q24.422 15.172 24.549 15.478Q24.675 15.784 24.930 15.968Q25.185 16.153 25.540 16.153Q25.762 16.153 25.947 16.069Q26.131 15.985 26.266 15.830Q26.401 15.674 26.460 15.466Q26.473 15.411 26.528 15.411L26.641 15.411Q26.671 15.411 26.694 15.435Q26.716 15.459 26.716 15.493L26.716 15.514Q26.630 15.801 26.442 15.999Q26.254 16.197 25.990 16.300Q25.725 16.402 25.431 16.402Q25 16.402 24.612 16.196Q24.224 15.989 23.990 15.626Q23.756 15.264 23.756 14.823M27.263 14.851Q27.263 14.509 27.398 14.210Q27.533 13.911 27.772 13.687Q28.011 13.463 28.329 13.338Q28.647 13.213 28.979 13.213Q29.423 13.213 29.823 13.429Q30.223 13.644 30.457 14.022Q30.691 14.399 30.691 14.851Q30.691 15.192 30.549 15.476Q30.407 15.760 30.163 15.967Q29.919 16.173 29.609 16.288Q29.300 16.402 28.979 16.402Q28.548 16.402 28.146 16.201Q27.745 15.999 27.504 15.647Q27.263 15.295 27.263 14.851M28.979 16.153Q29.580 16.153 29.804 15.775Q30.028 15.397 30.028 14.765Q30.028 14.153 29.794 13.794Q29.560 13.436 28.979 13.436Q27.926 13.436 27.926 14.765Q27.926 15.397 28.151 15.775Q28.377 16.153 28.979 16.153M33.036 16.334L31.299 16.334L31.299 16.054Q31.528 16.054 31.677 16.020Q31.826 15.985 31.826 15.845L31.826 13.996Q31.826 13.726 31.718 13.665Q31.610 13.603 31.299 13.603L31.299 13.323L32.328 13.248L32.328 13.955Q32.458 13.647 32.701 13.448Q32.943 13.248 33.261 13.248Q33.480 13.248 33.651 13.372Q33.822 13.497 33.822 13.709Q33.822 13.846 33.723 13.945Q33.624 14.044 33.490 14.044Q33.354 14.044 33.254 13.945Q33.155 13.846 33.155 13.709Q33.155 13.569 33.254 13.470Q32.964 13.470 32.764 13.666Q32.564 13.863 32.472 14.157Q32.379 14.451 32.379 14.731L32.379 15.845Q32.379 16.054 33.036 16.054L33.036 16.334M34.406 14.823Q34.406 14.485 34.546 14.194Q34.687 13.904 34.931 13.690Q35.175 13.477 35.480 13.362Q35.784 13.248 36.108 13.248Q36.378 13.248 36.642 13.347Q36.905 13.446 37.096 13.624L37.096 12.226Q37.096 11.956 36.989 11.894Q36.881 11.833 36.570 11.833L36.570 11.552L37.647 11.477L37.647 15.661Q37.647 15.849 37.701 15.932Q37.756 16.016 37.857 16.035Q37.958 16.054 38.173 16.054L38.173 16.334L37.065 16.402L37.065 15.985Q36.648 16.402 36.023 16.402Q35.592 16.402 35.220 16.190Q34.847 15.979 34.627 15.618Q34.406 15.257 34.406 14.823M36.081 16.180Q36.290 16.180 36.476 16.108Q36.662 16.037 36.816 15.900Q36.970 15.763 37.065 15.585L37.065 13.976Q36.980 13.829 36.835 13.709Q36.690 13.589 36.520 13.530Q36.351 13.470 36.170 13.470Q35.609 13.470 35.341 13.859Q35.073 14.249 35.073 14.830Q35.073 15.401 35.307 15.791Q35.541 16.180 36.081 16.180M38.822 16.327L38.822 15.264Q38.822 15.240 38.850 15.213Q38.877 15.186 38.901 15.186L39.010 15.186Q39.075 15.186 39.089 15.244Q39.185 15.678 39.431 15.929Q39.677 16.180 40.090 16.180Q40.432 16.180 40.685 16.047Q40.938 15.914 40.938 15.606Q40.938 15.449 40.844 15.334Q40.750 15.220 40.612 15.151Q40.473 15.083 40.306 15.045L39.725 14.946Q39.369 14.878 39.096 14.657Q38.822 14.437 38.822 14.095Q38.822 13.846 38.933 13.671Q39.044 13.497 39.231 13.398Q39.417 13.299 39.632 13.256Q39.848 13.213 40.090 13.213Q40.504 13.213 40.784 13.395L41 13.220Q41.010 13.217 41.017 13.215Q41.023 13.213 41.034 13.213L41.085 13.213Q41.112 13.213 41.136 13.237Q41.160 13.261 41.160 13.289L41.160 14.136Q41.160 14.157 41.136 14.184Q41.112 14.211 41.085 14.211L40.972 14.211Q40.945 14.211 40.919 14.186Q40.894 14.160 40.894 14.136Q40.894 13.900 40.788 13.736Q40.682 13.572 40.499 13.490Q40.316 13.408 40.084 13.408Q39.755 13.408 39.499 13.511Q39.243 13.613 39.243 13.890Q39.243 14.085 39.426 14.194Q39.608 14.304 39.837 14.345L40.412 14.451Q40.658 14.499 40.871 14.627Q41.085 14.755 41.222 14.958Q41.358 15.162 41.358 15.411Q41.358 15.924 40.993 16.163Q40.627 16.402 40.090 16.402Q39.595 16.402 39.263 16.108L38.997 16.382Q38.976 16.402 38.949 16.402L38.901 16.402Q38.877 16.402 38.850 16.375Q38.822 16.348 38.822 16.327\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"M6.627-12.12v-28.452h96.74v28.453Zm96.74-28.452\" style=\"stroke-width:.8\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(35.847 -63.611)\">\u003Cpath d=\"M-11.294 16.334L-12.928 16.334L-12.928 16.054Q-12.699 16.054-12.550 16.020Q-12.401 15.985-12.401 15.845L-12.401 13.996Q-12.401 13.726-12.509 13.665Q-12.617 13.603-12.928 13.603L-12.928 13.323L-11.868 13.248L-11.868 13.897Q-11.697 13.589-11.393 13.418Q-11.089 13.248-10.744 13.248Q-10.344 13.248-10.067 13.388Q-9.790 13.528-9.705 13.876Q-9.537 13.583-9.238 13.415Q-8.939 13.248-8.594 13.248Q-8.088 13.248-7.804 13.471Q-7.520 13.695-7.520 14.191L-7.520 15.845Q-7.520 15.982-7.372 16.018Q-7.223 16.054-6.998 16.054L-6.998 16.334L-8.628 16.334L-8.628 16.054Q-8.402 16.054-8.252 16.018Q-8.102 15.982-8.102 15.845L-8.102 14.205Q-8.102 13.870-8.221 13.670Q-8.341 13.470-8.655 13.470Q-8.925 13.470-9.159 13.606Q-9.394 13.743-9.532 13.977Q-9.670 14.211-9.670 14.485L-9.670 15.845Q-9.670 15.982-9.522 16.018Q-9.373 16.054-9.147 16.054L-9.147 16.334L-10.778 16.334L-10.778 16.054Q-10.549 16.054-10.400 16.020Q-10.251 15.985-10.251 15.845L-10.251 14.205Q-10.251 13.870-10.371 13.670Q-10.491 13.470-10.805 13.470Q-11.075 13.470-11.309 13.606Q-11.543 13.743-11.682 13.977Q-11.820 14.211-11.820 14.485L-11.820 15.845Q-11.820 15.982-11.670 16.018Q-11.519 16.054-11.294 16.054L-11.294 16.334M-4.793 16.334L-6.345 16.334L-6.345 16.054Q-6.119 16.054-5.970 16.020Q-5.822 15.985-5.822 15.845L-5.822 13.996Q-5.822 13.808-5.870 13.724Q-5.917 13.641-6.015 13.622Q-6.112 13.603-6.324 13.603L-6.324 13.323L-5.268 13.248L-5.268 15.845Q-5.268 15.985-5.136 16.020Q-5.005 16.054-4.793 16.054L-4.793 16.334M-6.064 12.027Q-6.064 11.856-5.941 11.737Q-5.818 11.617-5.647 11.617Q-5.480 11.617-5.357 11.737Q-5.234 11.856-5.234 12.027Q-5.234 12.202-5.357 12.325Q-5.480 12.448-5.647 12.448Q-5.818 12.448-5.941 12.325Q-6.064 12.202-6.064 12.027M-2.465 16.334L-4.099 16.334L-4.099 16.054Q-3.870 16.054-3.721 16.020Q-3.573 15.985-3.573 15.845L-3.573 13.996Q-3.573 13.726-3.680 13.665Q-3.788 13.603-4.099 13.603L-4.099 13.323L-3.040 13.248L-3.040 13.897Q-2.869 13.589-2.564 13.418Q-2.260 13.248-1.915 13.248Q-1.409 13.248-1.125 13.471Q-0.842 13.695-0.842 14.191L-0.842 15.845Q-0.842 15.982-0.693 16.018Q-0.544 16.054-0.319 16.054L-0.319 16.334L-1.949 16.334L-1.949 16.054Q-1.720 16.054-1.571 16.020Q-1.423 15.985-1.423 15.845L-1.423 14.205Q-1.423 13.870-1.542 13.670Q-1.662 13.470-1.977 13.470Q-2.247 13.470-2.481 13.606Q-2.715 13.743-2.853 13.977Q-2.992 14.211-2.992 14.485L-2.992 15.845Q-2.992 15.982-2.841 16.018Q-2.691 16.054-2.465 16.054L-2.465 16.334M2.152 15.080L0.095 15.080L0.095 14.577L2.152 14.577L2.152 15.080M4.637 16.334L3.003 16.334L3.003 16.054Q3.232 16.054 3.381 16.020Q3.530 15.985 3.530 15.845L3.530 12.226Q3.530 11.956 3.422 11.894Q3.314 11.833 3.003 11.833L3.003 11.552L4.084 11.477L4.084 13.863Q4.189 13.678 4.367 13.536Q4.545 13.395 4.753 13.321Q4.962 13.248 5.188 13.248Q5.693 13.248 5.977 13.471Q6.261 13.695 6.261 14.191L6.261 15.845Q6.261 15.982 6.409 16.018Q6.558 16.054 6.784 16.054L6.784 16.334L5.153 16.334L5.153 16.054Q5.382 16.054 5.531 16.020Q5.680 15.985 5.680 15.845L5.680 14.205Q5.680 13.870 5.560 13.670Q5.440 13.470 5.126 13.470Q4.856 13.470 4.622 13.606Q4.388 13.743 4.249 13.977Q4.111 14.211 4.111 14.485L4.111 15.845Q4.111 15.982 4.261 16.018Q4.412 16.054 4.637 16.054L4.637 16.334M7.331 14.799Q7.331 14.478 7.455 14.189Q7.580 13.900 7.806 13.677Q8.031 13.453 8.327 13.333Q8.623 13.213 8.940 13.213Q9.269 13.213 9.530 13.313Q9.792 13.412 9.968 13.594Q10.144 13.777 10.238 14.035Q10.332 14.293 10.332 14.625Q10.332 14.717 10.250 14.738L7.994 14.738L7.994 14.799Q7.994 15.387 8.277 15.770Q8.561 16.153 9.128 16.153Q9.450 16.153 9.718 15.960Q9.986 15.767 10.075 15.452Q10.082 15.411 10.157 15.397L10.250 15.397Q10.332 15.421 10.332 15.493Q10.332 15.500 10.325 15.527Q10.212 15.924 9.841 16.163Q9.470 16.402 9.046 16.402Q8.609 16.402 8.209 16.194Q7.809 15.985 7.570 15.618Q7.331 15.251 7.331 14.799M8.001 14.529L9.815 14.529Q9.815 14.252 9.718 14Q9.621 13.747 9.422 13.591Q9.224 13.436 8.940 13.436Q8.664 13.436 8.450 13.594Q8.236 13.753 8.118 14.008Q8.001 14.263 8.001 14.529M10.978 15.606Q10.978 15.274 11.201 15.047Q11.425 14.820 11.769 14.692Q12.112 14.563 12.485 14.511Q12.857 14.458 13.162 14.458L13.162 14.205Q13.162 14 13.054 13.820Q12.946 13.641 12.765 13.538Q12.584 13.436 12.376 13.436Q11.969 13.436 11.733 13.528Q11.822 13.565 11.868 13.649Q11.914 13.733 11.914 13.835Q11.914 13.931 11.868 14.010Q11.822 14.088 11.741 14.133Q11.661 14.177 11.572 14.177Q11.422 14.177 11.321 14.080Q11.220 13.982 11.220 13.835Q11.220 13.213 12.376 13.213Q12.587 13.213 12.837 13.277Q13.086 13.340 13.288 13.459Q13.490 13.579 13.616 13.764Q13.743 13.948 13.743 14.191L13.743 15.767Q13.743 15.883 13.804 15.979Q13.866 16.074 13.979 16.074Q14.088 16.074 14.153 15.980Q14.218 15.886 14.218 15.767L14.218 15.319L14.484 15.319L14.484 15.767Q14.484 16.037 14.257 16.202Q14.030 16.368 13.750 16.368Q13.541 16.368 13.404 16.214Q13.268 16.061 13.244 15.845Q13.097 16.112 12.815 16.257Q12.533 16.402 12.208 16.402Q11.931 16.402 11.648 16.327Q11.364 16.252 11.171 16.073Q10.978 15.893 10.978 15.606M11.593 15.606Q11.593 15.780 11.694 15.910Q11.794 16.040 11.950 16.110Q12.106 16.180 12.270 16.180Q12.488 16.180 12.697 16.083Q12.905 15.985 13.033 15.804Q13.162 15.623 13.162 15.397L13.162 14.669Q12.837 14.669 12.471 14.760Q12.106 14.851 11.849 15.063Q11.593 15.274 11.593 15.606M16.545 17.691L14.915 17.691L14.915 17.411Q15.144 17.411 15.293 17.376Q15.441 17.342 15.441 17.202L15.441 13.856Q15.441 13.685 15.305 13.644Q15.168 13.603 14.915 13.603L14.915 13.323L15.995 13.248L15.995 13.654Q16.217 13.453 16.504 13.350Q16.792 13.248 17.099 13.248Q17.526 13.248 17.890 13.461Q18.254 13.675 18.468 14.039Q18.682 14.403 18.682 14.823Q18.682 15.268 18.442 15.632Q18.203 15.996 17.810 16.199Q17.417 16.402 16.973 16.402Q16.706 16.402 16.458 16.302Q16.210 16.201 16.023 16.020L16.023 17.202Q16.023 17.339 16.171 17.375Q16.320 17.411 16.545 17.411L16.545 17.691M16.023 14.003L16.023 15.613Q16.156 15.866 16.398 16.023Q16.641 16.180 16.918 16.180Q17.246 16.180 17.499 15.979Q17.752 15.777 17.885 15.459Q18.019 15.141 18.019 14.823Q18.019 14.594 17.954 14.365Q17.889 14.136 17.761 13.938Q17.632 13.740 17.438 13.620Q17.243 13.501 17.010 13.501Q16.716 13.501 16.448 13.630Q16.180 13.760 16.023 14.003\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(35.847 -63.611)\">\u003Cpath d=\"M24.168 18.084Q23.618 17.684 23.247 17.129Q22.876 16.573 22.695 15.927Q22.514 15.281 22.514 14.584Q22.514 14.071 22.614 13.576Q22.715 13.080 22.920 12.629Q23.125 12.178 23.438 11.786Q23.751 11.395 24.168 11.091Q24.178 11.087 24.185 11.086Q24.192 11.084 24.202 11.084L24.270 11.084Q24.305 11.084 24.327 11.108Q24.349 11.132 24.349 11.169Q24.349 11.214 24.322 11.231Q23.973 11.532 23.720 11.916Q23.467 12.301 23.315 12.742Q23.163 13.183 23.091 13.639Q23.019 14.095 23.019 14.584Q23.019 15.585 23.329 16.472Q23.638 17.359 24.322 17.944Q24.349 17.961 24.349 18.005Q24.349 18.043 24.327 18.067Q24.305 18.091 24.270 18.091L24.202 18.091Q24.195 18.087 24.187 18.086Q24.178 18.084 24.168 18.084M25.159 16.327L25.159 15.264Q25.159 15.240 25.186 15.213Q25.214 15.186 25.238 15.186L25.347 15.186Q25.412 15.186 25.426 15.244Q25.521 15.678 25.767 15.929Q26.014 16.180 26.427 16.180Q26.769 16.180 27.022 16.047Q27.275 15.914 27.275 15.606Q27.275 15.449 27.181 15.334Q27.087 15.220 26.948 15.151Q26.810 15.083 26.642 15.045L26.061 14.946Q25.706 14.878 25.432 14.657Q25.159 14.437 25.159 14.095Q25.159 13.846 25.270 13.671Q25.381 13.497 25.568 13.398Q25.754 13.299 25.969 13.256Q26.184 13.213 26.427 13.213Q26.841 13.213 27.121 13.395L27.336 13.220Q27.347 13.217 27.353 13.215Q27.360 13.213 27.370 13.213L27.422 13.213Q27.449 13.213 27.473 13.237Q27.497 13.261 27.497 13.289L27.497 14.136Q27.497 14.157 27.473 14.184Q27.449 14.211 27.422 14.211L27.309 14.211Q27.282 14.211 27.256 14.186Q27.230 14.160 27.230 14.136Q27.230 13.900 27.124 13.736Q27.018 13.572 26.836 13.490Q26.653 13.408 26.420 13.408Q26.092 13.408 25.836 13.511Q25.579 13.613 25.579 13.890Q25.579 14.085 25.762 14.194Q25.945 14.304 26.174 14.345L26.748 14.451Q26.995 14.499 27.208 14.627Q27.422 14.755 27.558 14.958Q27.695 15.162 27.695 15.411Q27.695 15.924 27.329 16.163Q26.964 16.402 26.427 16.402Q25.932 16.402 25.600 16.108L25.333 16.382Q25.313 16.402 25.286 16.402L25.238 16.402Q25.214 16.402 25.186 16.375Q25.159 16.348 25.159 16.327M29.941 16.334L28.389 16.334L28.389 16.054Q28.615 16.054 28.763 16.020Q28.912 15.985 28.912 15.845L28.912 13.996Q28.912 13.808 28.864 13.724Q28.816 13.641 28.719 13.622Q28.621 13.603 28.410 13.603L28.410 13.323L29.466 13.248L29.466 15.845Q29.466 15.985 29.597 16.020Q29.729 16.054 29.941 16.054L29.941 16.334M28.669 12.027Q28.669 11.856 28.792 11.737Q28.915 11.617 29.086 11.617Q29.254 11.617 29.377 11.737Q29.500 11.856 29.500 12.027Q29.500 12.202 29.377 12.325Q29.254 12.448 29.086 12.448Q28.915 12.448 28.792 12.325Q28.669 12.202 28.669 12.027M33.318 16.334L30.645 16.334Q30.600 16.334 30.573 16.307Q30.546 16.279 30.546 16.235L30.546 16.167Q30.546 16.126 30.573 16.095L32.682 13.542L32.043 13.542Q31.619 13.542 31.387 13.608Q31.154 13.675 31.035 13.885Q30.915 14.095 30.915 14.516L30.652 14.516L30.734 13.316L33.325 13.316Q33.366 13.316 33.395 13.343Q33.424 13.371 33.424 13.415L33.424 13.463Q33.424 13.507 33.400 13.535L31.294 16.081L31.974 16.081Q32.303 16.081 32.520 16.045Q32.737 16.009 32.904 15.859Q33.044 15.722 33.097 15.498Q33.150 15.274 33.178 14.946L33.444 14.946L33.318 16.334M34.094 14.799Q34.094 14.478 34.218 14.189Q34.343 13.900 34.569 13.677Q34.794 13.453 35.090 13.333Q35.386 13.213 35.703 13.213Q36.032 13.213 36.293 13.313Q36.555 13.412 36.731 13.594Q36.907 13.777 37.001 14.035Q37.095 14.293 37.095 14.625Q37.095 14.717 37.013 14.738L34.757 14.738L34.757 14.799Q34.757 15.387 35.040 15.770Q35.324 16.153 35.891 16.153Q36.213 16.153 36.481 15.960Q36.749 15.767 36.838 15.452Q36.845 15.411 36.920 15.397L37.013 15.397Q37.095 15.421 37.095 15.493Q37.095 15.500 37.088 15.527Q36.975 15.924 36.604 16.163Q36.233 16.402 35.809 16.402Q35.372 16.402 34.972 16.194Q34.572 15.985 34.333 15.618Q34.094 15.251 34.094 14.799M34.764 14.529L36.578 14.529Q36.578 14.252 36.481 14Q36.384 13.747 36.185 13.591Q35.987 13.436 35.703 13.436Q35.427 13.436 35.213 13.594Q34.999 13.753 34.881 14.008Q34.764 14.263 34.764 14.529\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(35.847 -63.611)\">\u003Cpath d=\"M42.244 16.334L40.675 16.334Q40.648 16.334 40.618 16.298Q40.589 16.262 40.589 16.221L40.620 16.108Q40.637 16.067 40.702 16.054Q40.996 16.054 41.200 15.961Q41.403 15.869 41.464 15.613L42.363 12.027Q42.370 12.010 42.375 11.981Q42.380 11.952 42.384 11.932Q42.384 11.877 42.326 11.860Q42.192 11.833 41.810 11.833Q41.717 11.809 41.717 11.720L41.745 11.610Q41.752 11.569 41.830 11.552L43.112 11.552Q43.156 11.552 43.192 11.580Q43.228 11.607 43.232 11.651L43.915 15.640L46.591 11.651Q46.667 11.552 46.766 11.552L47.989 11.552Q48.075 11.576 48.075 11.658L48.047 11.771Q48.041 11.815 47.969 11.833Q47.562 11.833 47.415 11.867Q47.295 11.901 47.248 12.079L46.304 15.859Q46.291 15.927 46.291 15.955Q46.291 16.009 46.345 16.026Q46.472 16.054 46.861 16.054Q46.954 16.078 46.954 16.160L46.926 16.272Q46.909 16.320 46.841 16.334L44.964 16.334Q44.934 16.334 44.908 16.298Q44.882 16.262 44.882 16.221L44.910 16.108Q44.927 16.067 44.995 16.054Q45.399 16.054 45.545 16.020Q45.665 15.985 45.710 15.808L46.701 11.839L43.754 16.235Q43.693 16.334 43.573 16.334Q43.454 16.334 43.433 16.235L42.691 11.911L41.752 15.661Q41.738 15.750 41.738 15.780Q41.738 15.955 41.892 16.004Q42.045 16.054 42.264 16.054Q42.357 16.081 42.357 16.160L42.326 16.272Q42.309 16.320 42.244 16.334\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(35.847 -63.611)\">\u003Cpath d=\"M49.099 18.091L49.030 18.091Q48.996 18.091 48.974 18.065Q48.952 18.040 48.952 18.005Q48.952 17.961 48.983 17.944Q49.338 17.640 49.588 17.250Q49.837 16.860 49.989 16.428Q50.141 15.996 50.211 15.527Q50.281 15.059 50.281 14.584Q50.281 14.105 50.211 13.639Q50.141 13.172 49.987 12.737Q49.834 12.301 49.582 11.913Q49.331 11.525 48.983 11.231Q48.952 11.214 48.952 11.169Q48.952 11.135 48.974 11.110Q48.996 11.084 49.030 11.084L49.099 11.084Q49.109 11.084 49.118 11.086Q49.126 11.087 49.136 11.091Q49.680 11.491 50.052 12.044Q50.425 12.598 50.606 13.244Q50.787 13.890 50.787 14.584Q50.787 15.285 50.606 15.932Q50.425 16.580 50.051 17.134Q49.676 17.688 49.136 18.084Q49.126 18.084 49.118 18.086Q49.109 18.087 49.099 18.091\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M11.606-17.81h18.495V-34.88H11.606Z\"\u002F>\u003Cg transform=\"translate(30.157 -40.424)\">\u003Cpath d=\"M-9.964 16.334L-12.494 16.334L-12.494 16.054Q-11.526 16.054-11.526 15.845L-11.526 12.226Q-11.919 12.414-12.541 12.414L-12.541 12.133Q-12.124 12.133-11.760 12.032Q-11.396 11.932-11.140 11.686L-11.014 11.686Q-10.949 11.703-10.932 11.771L-10.932 15.845Q-10.932 16.054-9.964 16.054L-9.964 16.334M-7.873 16.126Q-7.873 15.620-7.743 15.112Q-7.613 14.605-7.375 14.143Q-7.138 13.682-6.803 13.261L-6.157 12.448L-6.970 12.448Q-7.555 12.448-7.951 12.456Q-8.348 12.465-8.372 12.485Q-8.474 12.602-8.553 13.128L-8.819 13.128L-8.573 11.604L-8.307 11.604L-8.307 11.624Q-8.307 11.692-8.231 11.735Q-8.156 11.778-8.078 11.785Q-7.886 11.809-7.691 11.815Q-7.497 11.822-7.305 11.824Q-7.114 11.826-6.915 11.826L-5.494 11.826L-5.494 12.014Q-5.504 12.062-5.514 12.072L-6.570 13.395Q-6.789 13.668-6.912 13.981Q-7.035 14.293-7.093 14.642Q-7.151 14.991-7.165 15.322Q-7.179 15.654-7.179 16.126Q-7.179 16.276-7.278 16.375Q-7.377 16.474-7.524 16.474Q-7.674 16.474-7.773 16.375Q-7.873 16.276-7.873 16.126\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M31.523-17.81h18.494V-34.88H31.523Z\"\u002F>\u003Cg transform=\"translate(50.074 -40.424)\">\u003Cpath d=\"M-9.964 16.334L-12.849 16.334L-12.849 16.132Q-12.849 16.102-12.822 16.074L-11.574 14.857Q-11.502 14.782-11.460 14.740Q-11.417 14.697-11.338 14.618Q-10.925 14.205-10.694 13.847Q-10.463 13.490-10.463 13.066Q-10.463 12.834-10.542 12.631Q-10.621 12.427-10.762 12.277Q-10.904 12.126-11.099 12.046Q-11.294 11.966-11.526 11.966Q-11.837 11.966-12.095 12.125Q-12.353 12.284-12.483 12.561L-12.463 12.561Q-12.295 12.561-12.188 12.672Q-12.080 12.783-12.080 12.947Q-12.080 13.104-12.189 13.217Q-12.299 13.330-12.463 13.330Q-12.623 13.330-12.736 13.217Q-12.849 13.104-12.849 12.947Q-12.849 12.571-12.641 12.284Q-12.432 11.997-12.097 11.841Q-11.762 11.686-11.407 11.686Q-10.983 11.686-10.603 11.844Q-10.224 12.003-9.990 12.320Q-9.756 12.636-9.756 13.066Q-9.756 13.377-9.896 13.646Q-10.036 13.914-10.241 14.119Q-10.446 14.324-10.809 14.606Q-11.171 14.888-11.280 14.984L-12.135 15.712L-11.492 15.712Q-11.229 15.712-10.940 15.710Q-10.651 15.709-10.433 15.700Q-10.214 15.691-10.197 15.674Q-10.135 15.609-10.098 15.442Q-10.060 15.274-10.022 15.032L-9.756 15.032L-9.964 16.334M-8.501 15.572L-8.532 15.572Q-8.395 15.869-8.098 16.045Q-7.801 16.221-7.473 16.221Q-7.110 16.221-6.883 16.043Q-6.656 15.866-6.562 15.577Q-6.468 15.288-6.468 14.926Q-6.468 14.611-6.522 14.326Q-6.577 14.041-6.750 13.835Q-6.922 13.630-7.237 13.630Q-7.510 13.630-7.693 13.697Q-7.876 13.764-7.980 13.853Q-8.084 13.941-8.180 14.051Q-8.276 14.160-8.320 14.170L-8.399 14.170Q-8.471 14.153-8.488 14.082L-8.488 11.764Q-8.488 11.730-8.464 11.708Q-8.440 11.686-8.406 11.686L-8.378 11.686Q-8.091 11.802-7.823 11.856Q-7.555 11.911-7.278 11.911Q-7.001 11.911-6.731 11.856Q-6.461 11.802-6.181 11.686L-6.157 11.686Q-6.123 11.686-6.099 11.709Q-6.075 11.733-6.075 11.764L-6.075 11.833Q-6.075 11.860-6.095 11.880Q-6.369 12.195-6.753 12.371Q-7.138 12.547-7.551 12.547Q-7.890 12.547-8.207 12.461L-8.207 13.743Q-7.811 13.408-7.237 13.408Q-6.833 13.408-6.497 13.618Q-6.160 13.829-5.967 14.181Q-5.774 14.533-5.774 14.933Q-5.774 15.264-5.914 15.550Q-6.054 15.835-6.299 16.045Q-6.543 16.255-6.845 16.365Q-7.148 16.474-7.466 16.474Q-7.825 16.474-8.151 16.310Q-8.477 16.146-8.672 15.854Q-8.867 15.562-8.867 15.199Q-8.867 15.049-8.761 14.943Q-8.655 14.837-8.501 14.837Q-8.348 14.837-8.243 14.941Q-8.139 15.045-8.139 15.199Q-8.139 15.356-8.243 15.464Q-8.348 15.572-8.501 15.572\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M51.44-17.81h18.495V-34.88H51.44Z\"\u002F>\u003Cg transform=\"translate(69.991 -40.424)\">\u003Cpath d=\"M-12.494 15.787Q-12.374 15.944-12.183 16.043Q-11.991 16.143-11.776 16.182Q-11.561 16.221-11.338 16.221Q-11.041 16.221-10.846 16.066Q-10.651 15.910-10.561 15.656Q-10.470 15.401-10.470 15.117Q-10.470 14.823-10.562 14.572Q-10.655 14.321-10.853 14.165Q-11.051 14.010-11.345 14.010L-11.861 14.010Q-11.889 14.010-11.914 13.984Q-11.940 13.959-11.940 13.935L-11.940 13.863Q-11.940 13.832-11.914 13.810Q-11.889 13.788-11.861 13.788L-11.420 13.757Q-11.058 13.757-10.838 13.400Q-10.617 13.042-10.617 12.653Q-10.617 12.325-10.812 12.121Q-11.007 11.918-11.338 11.918Q-11.625 11.918-11.878 12.002Q-12.131 12.085-12.295 12.273Q-12.148 12.273-12.048 12.388Q-11.947 12.502-11.947 12.653Q-11.947 12.803-12.053 12.913Q-12.159 13.022-12.316 13.022Q-12.477 13.022-12.586 12.913Q-12.695 12.803-12.695 12.653Q-12.695 12.328-12.487 12.109Q-12.278 11.891-11.962 11.788Q-11.646 11.686-11.338 11.686Q-11.020 11.686-10.692 11.790Q-10.364 11.894-10.137 12.116Q-9.910 12.338-9.910 12.653Q-9.910 13.087-10.197 13.412Q-10.484 13.736-10.918 13.883Q-10.607 13.948-10.327 14.114Q-10.046 14.280-9.869 14.538Q-9.691 14.796-9.691 15.117Q-9.691 15.527-9.935 15.837Q-10.180 16.146-10.561 16.310Q-10.942 16.474-11.338 16.474Q-11.707 16.474-12.065 16.361Q-12.422 16.249-12.666 15.999Q-12.911 15.750-12.911 15.380Q-12.911 15.209-12.794 15.097Q-12.678 14.984-12.507 14.984Q-12.398 14.984-12.307 15.035Q-12.217 15.086-12.162 15.179Q-12.107 15.271-12.107 15.380Q-12.107 15.548-12.220 15.667Q-12.333 15.787-12.494 15.787M-7.319 16.474Q-7.955 16.474-8.319 16.129Q-8.683 15.784-8.818 15.259Q-8.953 14.734-8.953 14.109Q-8.953 13.084-8.597 12.385Q-8.242 11.686-7.319 11.686Q-6.393 11.686-6.040 12.385Q-5.688 13.084-5.688 14.109Q-5.688 14.734-5.823 15.259Q-5.958 15.784-6.321 16.129Q-6.683 16.474-7.319 16.474M-7.319 16.249Q-6.881 16.249-6.668 15.874Q-6.454 15.500-6.405 15.033Q-6.355 14.567-6.355 13.989Q-6.355 13.436-6.405 13.008Q-6.454 12.581-6.666 12.246Q-6.878 11.911-7.319 11.911Q-7.661 11.911-7.864 12.118Q-8.067 12.325-8.155 12.637Q-8.242 12.950-8.264 13.266Q-8.286 13.583-8.286 13.989Q-8.286 14.406-8.264 14.748Q-8.242 15.090-8.153 15.438Q-8.064 15.787-7.859 16.018Q-7.654 16.249-7.319 16.249\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M71.357-17.81h18.494V-34.88H71.357Z\"\u002F>\u003Cg transform=\"translate(89.908 -40.424)\">\u003Cpath d=\"M-10.973 15.186L-13.017 15.186L-13.017 14.905L-10.686 11.733Q-10.651 11.686-10.586 11.686L-10.450 11.686Q-10.405 11.686-10.378 11.713Q-10.351 11.740-10.351 11.785L-10.351 14.905L-9.588 14.905L-9.588 15.186L-10.351 15.186L-10.351 15.845Q-10.351 16.054-9.595 16.054L-9.595 16.334L-11.728 16.334L-11.728 16.054Q-10.973 16.054-10.973 15.845L-10.973 15.186M-10.925 12.461L-12.716 14.905L-10.925 14.905L-10.925 12.461M-5.982 16.334L-8.512 16.334L-8.512 16.054Q-7.544 16.054-7.544 15.845L-7.544 12.226Q-7.937 12.414-8.560 12.414L-8.560 12.133Q-8.143 12.133-7.779 12.032Q-7.415 11.932-7.158 11.686L-7.032 11.686Q-6.967 11.703-6.950 11.771L-6.950 15.845Q-6.950 16.054-5.982 16.054\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(128.725 -40.93)\">\u003Cpath d=\"M-11.178 16.334L-12.911 16.334L-12.911 16.054Q-12.685 16.054-12.536 16.020Q-12.388 15.985-12.388 15.845L-12.388 13.596L-12.976 13.596L-12.976 13.316L-12.388 13.316L-12.388 12.499Q-12.388 12.181-12.210 11.933Q-12.032 11.686-11.742 11.545Q-11.451 11.405-11.140 11.405Q-10.884 11.405-10.680 11.547Q-10.477 11.689-10.477 11.932Q-10.477 12.068-10.576 12.167Q-10.675 12.267-10.812 12.267Q-10.949 12.267-11.048 12.167Q-11.147 12.068-11.147 11.932Q-11.147 11.751-11.007 11.658Q-11.085 11.631-11.185 11.631Q-11.393 11.631-11.547 11.764Q-11.701 11.897-11.781 12.101Q-11.861 12.304-11.861 12.513L-11.861 13.316L-10.973 13.316L-10.973 13.596L-11.834 13.596L-11.834 15.845Q-11.834 16.054-11.178 16.054L-11.178 16.334M-8.748 16.334L-10.484 16.334L-10.484 16.054Q-10.255 16.054-10.106 16.020Q-9.957 15.985-9.957 15.845L-9.957 13.996Q-9.957 13.726-10.065 13.665Q-10.173 13.603-10.484 13.603L-10.484 13.323L-9.455 13.248L-9.455 13.955Q-9.325 13.647-9.082 13.448Q-8.840 13.248-8.522 13.248Q-8.303 13.248-8.132 13.372Q-7.961 13.497-7.961 13.709Q-7.961 13.846-8.061 13.945Q-8.160 14.044-8.293 14.044Q-8.430 14.044-8.529 13.945Q-8.628 13.846-8.628 13.709Q-8.628 13.569-8.529 13.470Q-8.819 13.470-9.019 13.666Q-9.219 13.863-9.311 14.157Q-9.404 14.451-9.404 14.731L-9.404 15.845Q-9.404 16.054-8.748 16.054L-8.748 16.334M-7.418 14.851Q-7.418 14.509-7.283 14.210Q-7.148 13.911-6.909 13.687Q-6.669 13.463-6.352 13.338Q-6.034 13.213-5.702 13.213Q-5.258 13.213-4.858 13.429Q-4.458 13.644-4.224 14.022Q-3.990 14.399-3.990 14.851Q-3.990 15.192-4.132 15.476Q-4.273 15.760-4.518 15.967Q-4.762 16.173-5.071 16.288Q-5.381 16.402-5.702 16.402Q-6.133 16.402-6.534 16.201Q-6.936 15.999-7.177 15.647Q-7.418 15.295-7.418 14.851M-5.702 16.153Q-5.101 16.153-4.877 15.775Q-4.653 15.397-4.653 14.765Q-4.653 14.153-4.887 13.794Q-5.121 13.436-5.702 13.436Q-6.755 13.436-6.755 14.765Q-6.755 15.397-6.529 15.775Q-6.304 16.153-5.702 16.153M-0.664 16.334L-3.337 16.334Q-3.381 16.334-3.409 16.307Q-3.436 16.279-3.436 16.235L-3.436 16.167Q-3.436 16.126-3.409 16.095L-1.300 13.542L-1.939 13.542Q-2.363 13.542-2.595 13.608Q-2.828 13.675-2.947 13.885Q-3.067 14.095-3.067 14.516L-3.330 14.516L-3.248 13.316L-0.657 13.316Q-0.616 13.316-0.587 13.343Q-0.558 13.371-0.558 13.415L-0.558 13.463Q-0.558 13.507-0.582 13.535L-2.687 16.081L-2.007 16.081Q-1.679 16.081-1.462 16.045Q-1.245 16.009-1.078 15.859Q-0.937 15.722-0.884 15.498Q-0.832 15.274-0.804 14.946L-0.538 14.946L-0.664 16.334M0.112 14.799Q0.112 14.478 0.237 14.189Q0.361 13.900 0.587 13.677Q0.813 13.453 1.108 13.333Q1.404 13.213 1.722 13.213Q2.050 13.213 2.311 13.313Q2.573 13.412 2.749 13.594Q2.925 13.777 3.019 14.035Q3.113 14.293 3.113 14.625Q3.113 14.717 3.031 14.738L0.775 14.738L0.775 14.799Q0.775 15.387 1.059 15.770Q1.342 16.153 1.910 16.153Q2.231 16.153 2.499 15.960Q2.768 15.767 2.856 15.452Q2.863 15.411 2.939 15.397L3.031 15.397Q3.113 15.421 3.113 15.493Q3.113 15.500 3.106 15.527Q2.993 15.924 2.622 16.163Q2.252 16.402 1.828 16.402Q1.390 16.402 0.990 16.194Q0.590 15.985 0.351 15.618Q0.112 15.251 0.112 14.799M0.782 14.529L2.597 14.529Q2.597 14.252 2.499 14Q2.402 13.747 2.204 13.591Q2.005 13.436 1.722 13.436Q1.445 13.436 1.231 13.594Q1.018 13.753 0.900 14.008Q0.782 14.263 0.782 14.529M5.382 16.334L3.749 16.334L3.749 16.054Q3.978 16.054 4.126 16.020Q4.275 15.985 4.275 15.845L4.275 13.996Q4.275 13.726 4.167 13.665Q4.060 13.603 3.749 13.603L3.749 13.323L4.808 13.248L4.808 13.897Q4.979 13.589 5.283 13.418Q5.587 13.248 5.933 13.248Q6.439 13.248 6.722 13.471Q7.006 13.695 7.006 14.191L7.006 15.845Q7.006 15.982 7.155 16.018Q7.303 16.054 7.529 16.054L7.529 16.334L5.898 16.334L5.898 16.054Q6.127 16.054 6.276 16.020Q6.425 15.985 6.425 15.845L6.425 14.205Q6.425 13.870 6.305 13.670Q6.186 13.470 5.871 13.470Q5.601 13.470 5.367 13.606Q5.133 13.743 4.994 13.977Q4.856 14.211 4.856 14.485L4.856 15.845Q4.856 15.982 5.006 16.018Q5.157 16.054 5.382 16.054\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(128.725 -40.93)\">\u003Cpath d=\"M11.497 16.020Q11.617 16.136 11.794 16.178Q11.972 16.221 12.188 16.221Q12.427 16.221 12.637 16.112Q12.847 16.002 13.001 15.820Q13.155 15.637 13.254 15.404Q13.421 14.977 13.421 14.157Q13.271 14.451 13.008 14.630Q12.745 14.810 12.427 14.810Q11.993 14.810 11.646 14.601Q11.299 14.393 11.101 14.032Q10.902 13.671 10.902 13.248Q10.902 12.913 11.032 12.624Q11.162 12.335 11.393 12.121Q11.624 11.908 11.923 11.797Q12.222 11.686 12.553 11.686Q13.411 11.686 13.767 12.400Q14.122 13.114 14.122 14.071Q14.122 14.488 13.994 14.916Q13.866 15.343 13.609 15.698Q13.353 16.054 12.991 16.264Q12.628 16.474 12.188 16.474Q11.733 16.474 11.415 16.286Q11.097 16.098 11.097 15.674Q11.097 15.524 11.196 15.425Q11.295 15.326 11.446 15.326Q11.514 15.326 11.581 15.353Q11.648 15.380 11.692 15.425Q11.736 15.469 11.764 15.536Q11.791 15.603 11.791 15.674Q11.791 15.804 11.711 15.902Q11.630 15.999 11.497 16.020M12.468 14.584Q12.762 14.584 12.977 14.406Q13.192 14.229 13.300 13.953Q13.408 13.678 13.408 13.388Q13.408 13.343 13.406 13.316Q13.404 13.289 13.401 13.254Q13.404 13.244 13.406 13.237Q13.408 13.230 13.408 13.220Q13.408 12.718 13.210 12.318Q13.011 11.918 12.553 11.918Q11.986 11.918 11.793 12.277Q11.600 12.636 11.600 13.248Q11.600 13.634 11.654 13.917Q11.709 14.201 11.904 14.393Q12.099 14.584 12.468 14.584M15.318 17.564Q15.318 17.530 15.346 17.503Q15.616 17.274 15.764 16.951Q15.913 16.628 15.913 16.272L15.913 16.235Q15.804 16.334 15.640 16.334Q15.459 16.334 15.339 16.214Q15.219 16.095 15.219 15.914Q15.219 15.739 15.339 15.620Q15.459 15.500 15.640 15.500Q15.896 15.500 16.016 15.739Q16.135 15.979 16.135 16.272Q16.135 16.672 15.966 17.043Q15.797 17.414 15.500 17.670Q15.469 17.691 15.441 17.691Q15.400 17.691 15.359 17.650Q15.318 17.609 15.318 17.564\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(128.725 -40.93)\">\u003Cpath d=\"M22.793 16.334L20.263 16.334L20.263 16.054Q21.231 16.054 21.231 15.845L21.231 12.226Q20.838 12.414 20.216 12.414L20.216 12.133Q20.633 12.133 20.997 12.032Q21.361 11.932 21.617 11.686L21.743 11.686Q21.808 11.703 21.825 11.771L21.825 15.845Q21.825 16.054 22.793 16.054L22.793 16.334M26.775 16.334L23.890 16.334L23.890 16.132Q23.890 16.102 23.917 16.074L25.165 14.857Q25.237 14.782 25.279 14.740Q25.322 14.697 25.401 14.618Q25.814 14.205 26.045 13.847Q26.276 13.490 26.276 13.066Q26.276 12.834 26.197 12.631Q26.118 12.427 25.977 12.277Q25.835 12.126 25.640 12.046Q25.445 11.966 25.213 11.966Q24.902 11.966 24.644 12.125Q24.385 12.284 24.256 12.561L24.276 12.561Q24.444 12.561 24.551 12.672Q24.659 12.783 24.659 12.947Q24.659 13.104 24.550 13.217Q24.440 13.330 24.276 13.330Q24.115 13.330 24.003 13.217Q23.890 13.104 23.890 12.947Q23.890 12.571 24.098 12.284Q24.307 11.997 24.642 11.841Q24.977 11.686 25.332 11.686Q25.756 11.686 26.135 11.844Q26.515 12.003 26.749 12.320Q26.983 12.636 26.983 13.066Q26.983 13.377 26.843 13.646Q26.703 13.914 26.498 14.119Q26.293 14.324 25.930 14.606Q25.568 14.888 25.459 14.984L24.604 15.712L25.247 15.712Q25.510 15.712 25.799 15.710Q26.088 15.709 26.306 15.700Q26.525 15.691 26.542 15.674Q26.604 15.609 26.641 15.442Q26.679 15.274 26.717 15.032L26.983 15.032\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(128.725 -40.93)\">\u003Cpath d=\"M30.448 16.327L30.448 15.264Q30.448 15.240 30.476 15.213Q30.503 15.186 30.527 15.186L30.636 15.186Q30.701 15.186 30.715 15.244Q30.811 15.678 31.057 15.929Q31.303 16.180 31.717 16.180Q32.058 16.180 32.311 16.047Q32.564 15.914 32.564 15.606Q32.564 15.449 32.470 15.334Q32.376 15.220 32.238 15.151Q32.099 15.083 31.932 15.045L31.351 14.946Q30.995 14.878 30.722 14.657Q30.448 14.437 30.448 14.095Q30.448 13.846 30.560 13.671Q30.671 13.497 30.857 13.398Q31.043 13.299 31.259 13.256Q31.474 13.213 31.717 13.213Q32.130 13.213 32.410 13.395L32.626 13.220Q32.636 13.217 32.643 13.215Q32.650 13.213 32.660 13.213L32.711 13.213Q32.738 13.213 32.762 13.237Q32.786 13.261 32.786 13.289L32.786 14.136Q32.786 14.157 32.762 14.184Q32.738 14.211 32.711 14.211L32.598 14.211Q32.571 14.211 32.545 14.186Q32.520 14.160 32.520 14.136Q32.520 13.900 32.414 13.736Q32.308 13.572 32.125 13.490Q31.942 13.408 31.710 13.408Q31.382 13.408 31.125 13.511Q30.869 13.613 30.869 13.890Q30.869 14.085 31.052 14.194Q31.235 14.304 31.464 14.345L32.038 14.451Q32.284 14.499 32.498 14.627Q32.711 14.755 32.848 14.958Q32.985 15.162 32.985 15.411Q32.985 15.924 32.619 16.163Q32.253 16.402 31.717 16.402Q31.221 16.402 30.889 16.108L30.623 16.382Q30.602 16.402 30.575 16.402L30.527 16.402Q30.503 16.402 30.476 16.375Q30.448 16.348 30.448 16.327M33.572 14.799Q33.572 14.478 33.697 14.189Q33.822 13.900 34.048 13.677Q34.273 13.453 34.569 13.333Q34.864 13.213 35.182 13.213Q35.510 13.213 35.772 13.313Q36.033 13.412 36.209 13.594Q36.385 13.777 36.479 14.035Q36.573 14.293 36.573 14.625Q36.573 14.717 36.491 14.738L34.236 14.738L34.236 14.799Q34.236 15.387 34.519 15.770Q34.803 16.153 35.370 16.153Q35.692 16.153 35.960 15.960Q36.228 15.767 36.317 15.452Q36.324 15.411 36.399 15.397L36.491 15.397Q36.573 15.421 36.573 15.493Q36.573 15.500 36.567 15.527Q36.454 15.924 36.083 16.163Q35.712 16.402 35.288 16.402Q34.851 16.402 34.451 16.194Q34.051 15.985 33.812 15.618Q33.572 15.251 33.572 14.799M34.242 14.529L36.057 14.529Q36.057 14.252 35.960 14Q35.863 13.747 35.664 13.591Q35.466 13.436 35.182 13.436Q34.905 13.436 34.692 13.594Q34.478 13.753 34.360 14.008Q34.242 14.263 34.242 14.529M37.120 14.799Q37.120 14.478 37.245 14.189Q37.370 13.900 37.595 13.677Q37.821 13.453 38.117 13.333Q38.412 13.213 38.730 13.213Q39.058 13.213 39.320 13.313Q39.581 13.412 39.757 13.594Q39.933 13.777 40.027 14.035Q40.121 14.293 40.121 14.625Q40.121 14.717 40.039 14.738L37.783 14.738L37.783 14.799Q37.783 15.387 38.067 15.770Q38.351 16.153 38.918 16.153Q39.239 16.153 39.508 15.960Q39.776 15.767 39.865 15.452Q39.872 15.411 39.947 15.397L40.039 15.397Q40.121 15.421 40.121 15.493Q40.121 15.500 40.114 15.527Q40.002 15.924 39.631 16.163Q39.260 16.402 38.836 16.402Q38.399 16.402 37.999 16.194Q37.599 15.985 37.360 15.618Q37.120 15.251 37.120 14.799M37.790 14.529L39.605 14.529Q39.605 14.252 39.508 14Q39.410 13.747 39.212 13.591Q39.014 13.436 38.730 13.436Q38.453 13.436 38.240 13.594Q38.026 13.753 37.908 14.008Q37.790 14.263 37.790 14.529M40.709 14.823Q40.709 14.485 40.849 14.194Q40.989 13.904 41.234 13.690Q41.478 13.477 41.782 13.362Q42.087 13.248 42.411 13.248Q42.681 13.248 42.945 13.347Q43.208 13.446 43.399 13.624L43.399 12.226Q43.399 11.956 43.291 11.894Q43.184 11.833 42.873 11.833L42.873 11.552L43.949 11.477L43.949 15.661Q43.949 15.849 44.004 15.932Q44.059 16.016 44.160 16.035Q44.260 16.054 44.476 16.054L44.476 16.334L43.368 16.402L43.368 15.985Q42.951 16.402 42.326 16.402Q41.895 16.402 41.523 16.190Q41.150 15.979 40.930 15.618Q40.709 15.257 40.709 14.823M42.384 16.180Q42.592 16.180 42.779 16.108Q42.965 16.037 43.119 15.900Q43.273 15.763 43.368 15.585L43.368 13.976Q43.283 13.829 43.138 13.709Q42.992 13.589 42.823 13.530Q42.654 13.470 42.473 13.470Q41.912 13.470 41.644 13.859Q41.376 14.249 41.376 14.830Q41.376 15.401 41.610 15.791Q41.844 16.180 42.384 16.180\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(128.725 -40.93)\">\u003Cpath d=\"M49.520 16.334L47.886 16.334L47.886 16.054Q48.115 16.054 48.264 16.020Q48.413 15.985 48.413 15.845L48.413 13.996Q48.413 13.726 48.305 13.665Q48.197 13.603 47.886 13.603L47.886 13.323L48.946 13.248L48.946 13.897Q49.117 13.589 49.421 13.418Q49.725 13.248 50.070 13.248Q50.576 13.248 50.860 13.471Q51.144 13.695 51.144 14.191L51.144 15.845Q51.144 15.982 51.292 16.018Q51.441 16.054 51.667 16.054L51.667 16.334L50.036 16.334L50.036 16.054Q50.265 16.054 50.414 16.020Q50.563 15.985 50.563 15.845L50.563 14.205Q50.563 13.870 50.443 13.670Q50.323 13.470 50.009 13.470Q49.739 13.470 49.505 13.606Q49.271 13.743 49.132 13.977Q48.994 14.211 48.994 14.485L48.994 15.845Q48.994 15.982 49.144 16.018Q49.295 16.054 49.520 16.054L49.520 16.334M52.213 14.799Q52.213 14.478 52.338 14.189Q52.463 13.900 52.689 13.677Q52.914 13.453 53.210 13.333Q53.505 13.213 53.823 13.213Q54.151 13.213 54.413 13.313Q54.674 13.412 54.850 13.594Q55.026 13.777 55.120 14.035Q55.214 14.293 55.214 14.625Q55.214 14.717 55.132 14.738L52.877 14.738L52.877 14.799Q52.877 15.387 53.160 15.770Q53.444 16.153 54.011 16.153Q54.333 16.153 54.601 15.960Q54.869 15.767 54.958 15.452Q54.965 15.411 55.040 15.397L55.132 15.397Q55.214 15.421 55.214 15.493Q55.214 15.500 55.208 15.527Q55.095 15.924 54.724 16.163Q54.353 16.402 53.929 16.402Q53.492 16.402 53.092 16.194Q52.692 15.985 52.453 15.618Q52.213 15.251 52.213 14.799M52.883 14.529L54.698 14.529Q54.698 14.252 54.601 14Q54.503 13.747 54.305 13.591Q54.107 13.436 53.823 13.436Q53.546 13.436 53.333 13.594Q53.119 13.753 53.001 14.008Q52.883 14.263 52.883 14.529M56.985 16.334L55.662 16.334L55.662 16.054Q56.223 16.054 56.602 15.654L57.316 14.857L56.404 13.808Q56.267 13.661 56.118 13.629Q55.970 13.596 55.703 13.596L55.703 13.316L57.204 13.316L57.204 13.596Q57.012 13.596 57.012 13.730Q57.012 13.760 57.043 13.808L57.638 14.492L58.079 13.996Q58.191 13.866 58.191 13.750Q58.191 13.688 58.154 13.642Q58.116 13.596 58.058 13.596L58.058 13.316L59.374 13.316L59.374 13.596Q58.814 13.596 58.434 13.996L57.812 14.697L58.807 15.845Q58.906 15.944 59.007 15.989Q59.107 16.033 59.219 16.043Q59.330 16.054 59.507 16.054L59.507 16.334L58.014 16.334L58.014 16.054Q58.079 16.054 58.139 16.020Q58.198 15.985 58.198 15.920Q58.198 15.873 58.168 15.845L57.491 15.059L56.958 15.654Q56.845 15.784 56.845 15.900Q56.845 15.965 56.886 16.009Q56.927 16.054 56.985 16.054L56.985 16.334M60.529 15.493L60.529 13.596L59.890 13.596L59.890 13.374Q60.208 13.374 60.425 13.164Q60.642 12.954 60.743 12.644Q60.844 12.335 60.844 12.027L61.110 12.027L61.110 13.316L62.187 13.316L62.187 13.596L61.110 13.596L61.110 15.480Q61.110 15.756 61.215 15.955Q61.319 16.153 61.579 16.153Q61.736 16.153 61.842 16.049Q61.948 15.944 61.997 15.791Q62.047 15.637 62.047 15.480L62.047 15.066L62.314 15.066L62.314 15.493Q62.314 15.719 62.214 15.929Q62.115 16.139 61.931 16.271Q61.746 16.402 61.517 16.402Q61.080 16.402 60.805 16.165Q60.529 15.927 60.529 15.493\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(128.725 -40.93)\">\u003Cpath d=\"M67.582 16.334L65.846 16.334L65.846 16.054Q66.075 16.054 66.224 16.020Q66.372 15.985 66.372 15.845L66.372 13.996Q66.372 13.726 66.265 13.665Q66.157 13.603 65.846 13.603L65.846 13.323L66.875 13.248L66.875 13.955Q67.005 13.647 67.247 13.448Q67.490 13.248 67.808 13.248Q68.027 13.248 68.198 13.372Q68.369 13.497 68.369 13.709Q68.369 13.846 68.269 13.945Q68.170 14.044 68.037 14.044Q67.900 14.044 67.801 13.945Q67.702 13.846 67.702 13.709Q67.702 13.569 67.801 13.470Q67.511 13.470 67.311 13.666Q67.111 13.863 67.018 14.157Q66.926 14.451 66.926 14.731L66.926 15.845Q66.926 16.054 67.582 16.054L67.582 16.334M69.527 15.500L69.527 13.996Q69.527 13.726 69.420 13.665Q69.312 13.603 69.001 13.603L69.001 13.323L70.108 13.248L70.108 15.480L70.108 15.500Q70.108 15.780 70.160 15.924Q70.211 16.067 70.353 16.124Q70.495 16.180 70.782 16.180Q71.035 16.180 71.240 16.040Q71.445 15.900 71.561 15.674Q71.677 15.449 71.677 15.199L71.677 13.996Q71.677 13.726 71.570 13.665Q71.462 13.603 71.151 13.603L71.151 13.323L72.258 13.248L72.258 15.661Q72.258 15.852 72.311 15.934Q72.364 16.016 72.465 16.035Q72.566 16.054 72.781 16.054L72.781 16.334L71.705 16.402L71.705 15.838Q71.595 16.020 71.450 16.143Q71.305 16.266 71.118 16.334Q70.932 16.402 70.730 16.402Q69.527 16.402 69.527 15.500M75.051 16.334L73.417 16.334L73.417 16.054Q73.646 16.054 73.795 16.020Q73.943 15.985 73.943 15.845L73.943 13.996Q73.943 13.726 73.836 13.665Q73.728 13.603 73.417 13.603L73.417 13.323L74.476 13.248L74.476 13.897Q74.647 13.589 74.952 13.418Q75.256 13.248 75.601 13.248Q76.107 13.248 76.391 13.471Q76.674 13.695 76.674 14.191L76.674 15.845Q76.674 15.982 76.823 16.018Q76.972 16.054 77.197 16.054L77.197 16.334L75.567 16.334L75.567 16.054Q75.796 16.054 75.945 16.020Q76.093 15.985 76.093 15.845L76.093 14.205Q76.093 13.870 75.974 13.670Q75.854 13.470 75.539 13.470Q75.269 13.470 75.035 13.606Q74.801 13.743 74.663 13.977Q74.524 14.211 74.524 14.485L74.524 15.845Q74.524 15.982 74.675 16.018Q74.825 16.054 75.051 16.054\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-48.98 13.534)\">\u003Cpath d=\"M-12.976 14.823Q-12.976 14.495-12.841 14.194Q-12.706 13.894-12.470 13.673Q-12.234 13.453-11.930 13.333Q-11.625 13.213-11.301 13.213Q-10.795 13.213-10.446 13.316Q-10.098 13.418-10.098 13.794Q-10.098 13.941-10.195 14.042Q-10.292 14.143-10.439 14.143Q-10.593 14.143-10.692 14.044Q-10.791 13.945-10.791 13.794Q-10.791 13.606-10.651 13.514Q-10.853 13.463-11.294 13.463Q-11.649 13.463-11.878 13.659Q-12.107 13.856-12.208 14.165Q-12.309 14.475-12.309 14.823Q-12.309 15.172-12.183 15.478Q-12.056 15.784-11.801 15.968Q-11.547 16.153-11.191 16.153Q-10.969 16.153-10.785 16.069Q-10.600 15.985-10.465 15.830Q-10.330 15.674-10.272 15.466Q-10.258 15.411-10.204 15.411L-10.091 15.411Q-10.060 15.411-10.038 15.435Q-10.016 15.459-10.016 15.493L-10.016 15.514Q-10.101 15.801-10.289 15.999Q-10.477 16.197-10.742 16.300Q-11.007 16.402-11.301 16.402Q-11.731 16.402-12.119 16.196Q-12.507 15.989-12.741 15.626Q-12.976 15.264-12.976 14.823M-8.853 15.500L-8.853 13.996Q-8.853 13.726-8.961 13.665Q-9.069 13.603-9.380 13.603L-9.380 13.323L-8.272 13.248L-8.272 15.480L-8.272 15.500Q-8.272 15.780-8.221 15.924Q-8.170 16.067-8.028 16.124Q-7.886 16.180-7.599 16.180Q-7.346 16.180-7.141 16.040Q-6.936 15.900-6.820 15.674Q-6.704 15.449-6.704 15.199L-6.704 13.996Q-6.704 13.726-6.811 13.665Q-6.919 13.603-7.230 13.603L-7.230 13.323L-6.123 13.248L-6.123 15.661Q-6.123 15.852-6.070 15.934Q-6.017 16.016-5.916 16.035Q-5.815 16.054-5.600 16.054L-5.600 16.334L-6.676 16.402L-6.676 15.838Q-6.786 16.020-6.931 16.143Q-7.076 16.266-7.262 16.334Q-7.449 16.402-7.650 16.402Q-8.853 16.402-8.853 15.500M-3.262 16.334L-4.998 16.334L-4.998 16.054Q-4.769 16.054-4.620 16.020Q-4.472 15.985-4.472 15.845L-4.472 13.996Q-4.472 13.726-4.579 13.665Q-4.687 13.603-4.998 13.603L-4.998 13.323L-3.969 13.248L-3.969 13.955Q-3.839 13.647-3.597 13.448Q-3.354 13.248-3.036 13.248Q-2.817 13.248-2.646 13.372Q-2.476 13.497-2.476 13.709Q-2.476 13.846-2.575 13.945Q-2.674 14.044-2.807 14.044Q-2.944 14.044-3.043 13.945Q-3.142 13.846-3.142 13.709Q-3.142 13.569-3.043 13.470Q-3.333 13.470-3.533 13.666Q-3.733 13.863-3.826 14.157Q-3.918 14.451-3.918 14.731L-3.918 15.845Q-3.918 16.054-3.262 16.054L-3.262 16.334M-0.141 16.334L-1.877 16.334L-1.877 16.054Q-1.648 16.054-1.500 16.020Q-1.351 15.985-1.351 15.845L-1.351 13.996Q-1.351 13.726-1.459 13.665Q-1.566 13.603-1.877 13.603L-1.877 13.323L-0.849 13.248L-0.849 13.955Q-0.719 13.647-0.476 13.448Q-0.233 13.248 0.085 13.248Q0.303 13.248 0.474 13.372Q0.645 13.497 0.645 13.709Q0.645 13.846 0.546 13.945Q0.447 14.044 0.314 14.044Q0.177 14.044 0.078 13.945Q-0.021 13.846-0.021 13.709Q-0.021 13.569 0.078 13.470Q-0.213 13.470-0.413 13.666Q-0.613 13.863-0.705 14.157Q-0.797 14.451-0.797 14.731L-0.797 15.845Q-0.797 16.054-0.141 16.054L-0.141 16.334M1.189 14.799Q1.189 14.478 1.313 14.189Q1.438 13.900 1.664 13.677Q1.889 13.453 2.185 13.333Q2.481 13.213 2.798 13.213Q3.127 13.213 3.388 13.313Q3.649 13.412 3.825 13.594Q4.002 13.777 4.095 14.035Q4.189 14.293 4.189 14.625Q4.189 14.717 4.107 14.738L1.852 14.738L1.852 14.799Q1.852 15.387 2.135 15.770Q2.419 16.153 2.986 16.153Q3.308 16.153 3.576 15.960Q3.844 15.767 3.933 15.452Q3.940 15.411 4.015 15.397L4.107 15.397Q4.189 15.421 4.189 15.493Q4.189 15.500 4.183 15.527Q4.070 15.924 3.699 16.163Q3.328 16.402 2.904 16.402Q2.467 16.402 2.067 16.194Q1.667 15.985 1.428 15.618Q1.189 15.251 1.189 14.799M1.858 14.529L3.673 14.529Q3.673 14.252 3.576 14Q3.479 13.747 3.280 13.591Q3.082 13.436 2.798 13.436Q2.522 13.436 2.308 13.594Q2.094 13.753 1.976 14.008Q1.858 14.263 1.858 14.529M6.459 16.334L4.825 16.334L4.825 16.054Q5.054 16.054 5.203 16.020Q5.352 15.985 5.352 15.845L5.352 13.996Q5.352 13.726 5.244 13.665Q5.136 13.603 4.825 13.603L4.825 13.323L5.885 13.248L5.885 13.897Q6.056 13.589 6.360 13.418Q6.664 13.248 7.009 13.248Q7.515 13.248 7.799 13.471Q8.083 13.695 8.083 14.191L8.083 15.845Q8.083 15.982 8.231 16.018Q8.380 16.054 8.606 16.054L8.606 16.334L6.975 16.334L6.975 16.054Q7.204 16.054 7.353 16.020Q7.502 15.985 7.502 15.845L7.502 14.205Q7.502 13.870 7.382 13.670Q7.262 13.470 6.948 13.470Q6.678 13.470 6.444 13.606Q6.210 13.743 6.071 13.977Q5.933 14.211 5.933 14.485L5.933 15.845Q5.933 15.982 6.083 16.018Q6.233 16.054 6.459 16.054\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-48.98 13.534)\">\u003Cpath d=\"M9.530 15.493L9.530 13.596L8.891 13.596L8.891 13.374Q9.209 13.374 9.426 13.164Q9.643 12.954 9.743 12.644Q9.844 12.335 9.844 12.027L10.111 12.027L10.111 13.316L11.188 13.316L11.188 13.596L10.111 13.596L10.111 15.480Q10.111 15.756 10.215 15.955Q10.319 16.153 10.579 16.153Q10.736 16.153 10.842 16.049Q10.948 15.944 10.998 15.791Q11.047 15.637 11.047 15.480L11.047 15.066L11.314 15.066L11.314 15.493Q11.314 15.719 11.215 15.929Q11.116 16.139 10.931 16.271Q10.747 16.402 10.518 16.402Q10.080 16.402 9.805 16.165Q9.530 15.927 9.530 15.493\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-48.98 13.534)\">\u003Cpath d=\"M16.573 16.334L14.837 16.334L14.837 16.054Q15.066 16.054 15.215 16.020Q15.363 15.985 15.363 15.845L15.363 13.996Q15.363 13.726 15.256 13.665Q15.148 13.603 14.837 13.603L14.837 13.323L15.866 13.248L15.866 13.955Q15.996 13.647 16.238 13.448Q16.481 13.248 16.799 13.248Q17.018 13.248 17.189 13.372Q17.360 13.497 17.360 13.709Q17.360 13.846 17.260 13.945Q17.161 14.044 17.028 14.044Q16.891 14.044 16.792 13.945Q16.693 13.846 16.693 13.709Q16.693 13.569 16.792 13.470Q16.502 13.470 16.302 13.666Q16.102 13.863 16.009 14.157Q15.917 14.451 15.917 14.731L15.917 15.845Q15.917 16.054 16.573 16.054L16.573 16.334M18.518 15.500L18.518 13.996Q18.518 13.726 18.411 13.665Q18.303 13.603 17.992 13.603L17.992 13.323L19.099 13.248L19.099 15.480L19.099 15.500Q19.099 15.780 19.151 15.924Q19.202 16.067 19.344 16.124Q19.486 16.180 19.773 16.180Q20.026 16.180 20.231 16.040Q20.436 15.900 20.552 15.674Q20.668 15.449 20.668 15.199L20.668 13.996Q20.668 13.726 20.561 13.665Q20.453 13.603 20.142 13.603L20.142 13.323L21.249 13.248L21.249 15.661Q21.249 15.852 21.302 15.934Q21.355 16.016 21.456 16.035Q21.557 16.054 21.772 16.054L21.772 16.334L20.696 16.402L20.696 15.838Q20.586 16.020 20.441 16.143Q20.296 16.266 20.109 16.334Q19.923 16.402 19.721 16.402Q18.518 16.402 18.518 15.500M24.042 16.334L22.408 16.334L22.408 16.054Q22.637 16.054 22.786 16.020Q22.934 15.985 22.934 15.845L22.934 13.996Q22.934 13.726 22.827 13.665Q22.719 13.603 22.408 13.603L22.408 13.323L23.467 13.248L23.467 13.897Q23.638 13.589 23.943 13.418Q24.247 13.248 24.592 13.248Q25.098 13.248 25.382 13.471Q25.665 13.695 25.665 14.191L25.665 15.845Q25.665 15.982 25.814 16.018Q25.963 16.054 26.188 16.054L26.188 16.334L24.558 16.334L24.558 16.054Q24.787 16.054 24.936 16.020Q25.084 15.985 25.084 15.845L25.084 14.205Q25.084 13.870 24.965 13.670Q24.845 13.470 24.530 13.470Q24.260 13.470 24.026 13.606Q23.792 13.743 23.654 13.977Q23.515 14.211 23.515 14.485L23.515 15.845Q23.515 15.982 23.666 16.018Q23.816 16.054 24.042 16.054\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M-22.537 36.25h18.494V19.18h-18.494Z\"\u002F>\u003Cg transform=\"translate(-1.993 13.636)\">\u003Cpath d=\"M-12.483 15.572L-12.514 15.572Q-12.377 15.869-12.080 16.045Q-11.783 16.221-11.455 16.221Q-11.092 16.221-10.865 16.043Q-10.638 15.866-10.544 15.577Q-10.450 15.288-10.450 14.926Q-10.450 14.611-10.504 14.326Q-10.559 14.041-10.732 13.835Q-10.904 13.630-11.219 13.630Q-11.492 13.630-11.675 13.697Q-11.858 13.764-11.962 13.853Q-12.066 13.941-12.162 14.051Q-12.258 14.160-12.302 14.170L-12.381 14.170Q-12.453 14.153-12.470 14.082L-12.470 11.764Q-12.470 11.730-12.446 11.708Q-12.422 11.686-12.388 11.686L-12.360 11.686Q-12.073 11.802-11.805 11.856Q-11.537 11.911-11.260 11.911Q-10.983 11.911-10.713 11.856Q-10.443 11.802-10.163 11.686L-10.139 11.686Q-10.104 11.686-10.081 11.709Q-10.057 11.733-10.057 11.764L-10.057 11.833Q-10.057 11.860-10.077 11.880Q-10.351 12.195-10.735 12.371Q-11.120 12.547-11.533 12.547Q-11.872 12.547-12.189 12.461L-12.189 13.743Q-11.793 13.408-11.219 13.408Q-10.815 13.408-10.479 13.618Q-10.142 13.829-9.949 14.181Q-9.756 14.533-9.756 14.933Q-9.756 15.264-9.896 15.550Q-10.036 15.835-10.280 16.045Q-10.525 16.255-10.827 16.365Q-11.130 16.474-11.448 16.474Q-11.807 16.474-12.133 16.310Q-12.459 16.146-12.654 15.854Q-12.849 15.562-12.849 15.199Q-12.849 15.049-12.743 14.943Q-12.637 14.837-12.483 14.837Q-12.330 14.837-12.225 14.941Q-12.121 15.045-12.121 15.199Q-12.121 15.356-12.225 15.464Q-12.330 15.572-12.483 15.572\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M1.648 36.25h18.494V19.18H1.648Z\"\u002F>\u003Cg transform=\"translate(22.192 13.636)\">\u003Cpath d=\"M-12.911 15.257Q-12.911 14.816-12.608 14.495Q-12.306 14.174-11.854 13.982L-12.094 13.842Q-12.364 13.682-12.530 13.424Q-12.695 13.166-12.695 12.868Q-12.695 12.516-12.490 12.244Q-12.285 11.973-11.964 11.829Q-11.643 11.686-11.301 11.686Q-10.979 11.686-10.656 11.802Q-10.333 11.918-10.122 12.159Q-9.910 12.400-9.910 12.735Q-9.910 13.097-10.154 13.360Q-10.398 13.624-10.778 13.801L-10.378 14.037Q-10.183 14.150-10.024 14.319Q-9.865 14.488-9.778 14.697Q-9.691 14.905-9.691 15.138Q-9.691 15.541-9.925 15.845Q-10.159 16.149-10.533 16.312Q-10.908 16.474-11.301 16.474Q-11.687 16.474-12.056 16.337Q-12.425 16.201-12.668 15.924Q-12.911 15.647-12.911 15.257M-12.463 15.257Q-12.463 15.544-12.294 15.767Q-12.124 15.989-11.856 16.105Q-11.588 16.221-11.301 16.221Q-10.863 16.221-10.501 16.004Q-10.139 15.787-10.139 15.380Q-10.139 15.179-10.267 15.001Q-10.395 14.823-10.573 14.724L-11.595 14.129Q-11.834 14.239-12.032 14.405Q-12.230 14.570-12.347 14.786Q-12.463 15.001-12.463 15.257M-11.940 13.128L-11.020 13.661Q-10.713 13.501-10.511 13.268Q-10.310 13.036-10.310 12.735Q-10.310 12.496-10.455 12.306Q-10.600 12.116-10.832 12.017Q-11.065 11.918-11.301 11.918Q-11.523 11.918-11.752 11.988Q-11.981 12.058-12.138 12.215Q-12.295 12.373-12.295 12.602Q-12.295 12.916-11.940 13.128\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M25.833 36.25h18.494V19.18H25.833Z\"\u002F>\u003Cg transform=\"translate(44.384 13.636)\">\u003Cpath d=\"M-9.964 16.334L-12.494 16.334L-12.494 16.054Q-11.526 16.054-11.526 15.845L-11.526 12.226Q-11.919 12.414-12.541 12.414L-12.541 12.133Q-12.124 12.133-11.760 12.032Q-11.396 11.932-11.140 11.686L-11.014 11.686Q-10.949 11.703-10.932 11.771L-10.932 15.845Q-10.932 16.054-9.964 16.054L-9.964 16.334M-5.982 16.334L-8.512 16.334L-8.512 16.054Q-7.544 16.054-7.544 15.845L-7.544 12.226Q-7.937 12.414-8.560 12.414L-8.560 12.133Q-8.143 12.133-7.779 12.032Q-7.415 11.932-7.158 11.686L-7.032 11.686Q-6.967 11.703-6.950 11.771L-6.950 15.845Q-6.950 16.054-5.982 16.054\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\">\u003Cpath d=\"M50.018 36.25h18.494V19.18H50.018Z\"\u002F>\u003Cg transform=\"translate(68.569 13.636)\">\u003Cpath d=\"M-9.964 16.334L-12.494 16.334L-12.494 16.054Q-11.526 16.054-11.526 15.845L-11.526 12.226Q-11.919 12.414-12.541 12.414L-12.541 12.133Q-12.124 12.133-11.760 12.032Q-11.396 11.932-11.140 11.686L-11.014 11.686Q-10.949 11.703-10.932 11.771L-10.932 15.845Q-10.932 16.054-9.964 16.054L-9.964 16.334M-6.991 15.186L-9.035 15.186L-9.035 14.905L-6.704 11.733Q-6.669 11.686-6.604 11.686L-6.468 11.686Q-6.423 11.686-6.396 11.713Q-6.369 11.740-6.369 11.785L-6.369 14.905L-5.606 14.905L-5.606 15.186L-6.369 15.186L-6.369 15.845Q-6.369 16.054-5.613 16.054L-5.613 16.334L-7.746 16.334L-7.746 16.054Q-6.991 16.054-6.991 15.845L-6.991 15.186M-6.943 12.461L-8.734 14.905L-6.943 14.905\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(94.582 13.13)\">\u003Cpath d=\"M-12.976 16.327L-12.976 15.264Q-12.976 15.240-12.948 15.213Q-12.921 15.186-12.897 15.186L-12.788 15.186Q-12.723 15.186-12.709 15.244Q-12.613 15.678-12.367 15.929Q-12.121 16.180-11.707 16.180Q-11.366 16.180-11.113 16.047Q-10.860 15.914-10.860 15.606Q-10.860 15.449-10.954 15.334Q-11.048 15.220-11.186 15.151Q-11.325 15.083-11.492 15.045L-12.073 14.946Q-12.429 14.878-12.702 14.657Q-12.976 14.437-12.976 14.095Q-12.976 13.846-12.864 13.671Q-12.753 13.497-12.567 13.398Q-12.381 13.299-12.165 13.256Q-11.950 13.213-11.707 13.213Q-11.294 13.213-11.014 13.395L-10.798 13.220Q-10.788 13.217-10.781 13.215Q-10.774 13.213-10.764 13.213L-10.713 13.213Q-10.686 13.213-10.662 13.237Q-10.638 13.261-10.638 13.289L-10.638 14.136Q-10.638 14.157-10.662 14.184Q-10.686 14.211-10.713 14.211L-10.826 14.211Q-10.853 14.211-10.879 14.186Q-10.904 14.160-10.904 14.136Q-10.904 13.900-11.010 13.736Q-11.116 13.572-11.299 13.490Q-11.482 13.408-11.714 13.408Q-12.042 13.408-12.299 13.511Q-12.555 13.613-12.555 13.890Q-12.555 14.085-12.372 14.194Q-12.189 14.304-11.960 14.345L-11.386 14.451Q-11.140 14.499-10.926 14.627Q-10.713 14.755-10.576 14.958Q-10.439 15.162-10.439 15.411Q-10.439 15.924-10.805 16.163Q-11.171 16.402-11.707 16.402Q-12.203 16.402-12.535 16.108L-12.801 16.382Q-12.822 16.402-12.849 16.402L-12.897 16.402Q-12.921 16.402-12.948 16.375Q-12.976 16.348-12.976 16.327M-9.852 14.851Q-9.852 14.509-9.717 14.210Q-9.582 13.911-9.342 13.687Q-9.103 13.463-8.785 13.338Q-8.467 13.213-8.136 13.213Q-7.691 13.213-7.291 13.429Q-6.892 13.644-6.657 14.022Q-6.423 14.399-6.423 14.851Q-6.423 15.192-6.565 15.476Q-6.707 15.760-6.951 15.967Q-7.196 16.173-7.505 16.288Q-7.814 16.402-8.136 16.402Q-8.566 16.402-8.968 16.201Q-9.370 15.999-9.611 15.647Q-9.852 15.295-9.852 14.851M-8.136 16.153Q-7.534 16.153-7.310 15.775Q-7.086 15.397-7.086 14.765Q-7.086 14.153-7.321 13.794Q-7.555 13.436-8.136 13.436Q-9.188 13.436-9.188 14.765Q-9.188 15.397-8.963 15.775Q-8.737 16.153-8.136 16.153M-4.079 16.334L-5.815 16.334L-5.815 16.054Q-5.586 16.054-5.437 16.020Q-5.289 15.985-5.289 15.845L-5.289 13.996Q-5.289 13.726-5.396 13.665Q-5.504 13.603-5.815 13.603L-5.815 13.323L-4.786 13.248L-4.786 13.955Q-4.656 13.647-4.414 13.448Q-4.171 13.248-3.853 13.248Q-3.634 13.248-3.463 13.372Q-3.292 13.497-3.292 13.709Q-3.292 13.846-3.392 13.945Q-3.491 14.044-3.624 14.044Q-3.761 14.044-3.860 13.945Q-3.959 13.846-3.959 13.709Q-3.959 13.569-3.860 13.470Q-4.150 13.470-4.350 13.666Q-4.550 13.863-4.643 14.157Q-4.735 14.451-4.735 14.731L-4.735 15.845Q-4.735 16.054-4.079 16.054L-4.079 16.334M-2.182 15.493L-2.182 13.596L-2.821 13.596L-2.821 13.374Q-2.503 13.374-2.286 13.164Q-2.069 12.954-1.968 12.644Q-1.867 12.335-1.867 12.027L-1.601 12.027L-1.601 13.316L-0.524 13.316L-0.524 13.596L-1.601 13.596L-1.601 15.480Q-1.601 15.756-1.496 15.955Q-1.392 16.153-1.132 16.153Q-0.975 16.153-0.869 16.049Q-0.763 15.944-0.714 15.791Q-0.664 15.637-0.664 15.480L-0.664 15.066L-0.397 15.066L-0.397 15.493Q-0.397 15.719-0.497 15.929Q-0.596 16.139-0.780 16.271Q-0.965 16.402-1.194 16.402Q-1.631 16.402-1.906 16.165Q-2.182 15.927-2.182 15.493M0.372 14.799Q0.372 14.478 0.496 14.189Q0.621 13.900 0.847 13.677Q1.072 13.453 1.368 13.333Q1.664 13.213 1.981 13.213Q2.310 13.213 2.571 13.313Q2.833 13.412 3.009 13.594Q3.185 13.777 3.279 14.035Q3.373 14.293 3.373 14.625Q3.373 14.717 3.291 14.738L1.035 14.738L1.035 14.799Q1.035 15.387 1.318 15.770Q1.602 16.153 2.169 16.153Q2.491 16.153 2.759 15.960Q3.027 15.767 3.116 15.452Q3.123 15.411 3.198 15.397L3.291 15.397Q3.373 15.421 3.373 15.493Q3.373 15.500 3.366 15.527Q3.253 15.924 2.882 16.163Q2.511 16.402 2.087 16.402Q1.650 16.402 1.250 16.194Q0.850 15.985 0.611 15.618Q0.372 15.251 0.372 14.799M1.042 14.529L2.856 14.529Q2.856 14.252 2.759 14Q2.662 13.747 2.463 13.591Q2.265 13.436 1.981 13.436Q1.705 13.436 1.491 13.594Q1.277 13.753 1.159 14.008Q1.042 14.263 1.042 14.529M3.960 14.823Q3.960 14.485 4.101 14.194Q4.241 13.904 4.485 13.690Q4.730 13.477 5.034 13.362Q5.338 13.248 5.663 13.248Q5.933 13.248 6.196 13.347Q6.459 13.446 6.650 13.624L6.650 12.226Q6.650 11.956 6.543 11.894Q6.435 11.833 6.124 11.833L6.124 11.552L7.201 11.477L7.201 15.661Q7.201 15.849 7.255 15.932Q7.310 16.016 7.411 16.035Q7.512 16.054 7.727 16.054L7.727 16.334L6.620 16.402L6.620 15.985Q6.203 16.402 5.577 16.402Q5.147 16.402 4.774 16.190Q4.401 15.979 4.181 15.618Q3.960 15.257 3.960 14.823M5.635 16.180Q5.844 16.180 6.030 16.108Q6.216 16.037 6.370 15.900Q6.524 15.763 6.620 15.585L6.620 13.976Q6.534 13.829 6.389 13.709Q6.244 13.589 6.075 13.530Q5.905 13.470 5.724 13.470Q5.164 13.470 4.895 13.859Q4.627 14.249 4.627 14.830Q4.627 15.401 4.861 15.791Q5.095 16.180 5.635 16.180\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(94.582 13.13)\">\u003Cpath d=\"M11.054 14.851Q11.054 14.509 11.189 14.210Q11.324 13.911 11.564 13.687Q11.803 13.463 12.121 13.338Q12.439 13.213 12.770 13.213Q13.215 13.213 13.614 13.429Q14.014 13.644 14.249 14.022Q14.483 14.399 14.483 14.851Q14.483 15.192 14.341 15.476Q14.199 15.760 13.955 15.967Q13.710 16.173 13.401 16.288Q13.092 16.402 12.770 16.402Q12.340 16.402 11.938 16.201Q11.536 15.999 11.295 15.647Q11.054 15.295 11.054 14.851M12.770 16.153Q13.372 16.153 13.596 15.775Q13.820 15.397 13.820 14.765Q13.820 14.153 13.585 13.794Q13.351 13.436 12.770 13.436Q11.718 13.436 11.718 14.765Q11.718 15.397 11.943 15.775Q12.169 16.153 12.770 16.153M15.652 15.500L15.652 13.996Q15.652 13.726 15.544 13.665Q15.436 13.603 15.125 13.603L15.125 13.323L16.233 13.248L16.233 15.480L16.233 15.500Q16.233 15.780 16.284 15.924Q16.335 16.067 16.477 16.124Q16.619 16.180 16.906 16.180Q17.159 16.180 17.364 16.040Q17.569 15.900 17.685 15.674Q17.802 15.449 17.802 15.199L17.802 13.996Q17.802 13.726 17.694 13.665Q17.586 13.603 17.275 13.603L17.275 13.323L18.383 13.248L18.383 15.661Q18.383 15.852 18.436 15.934Q18.489 16.016 18.589 16.035Q18.690 16.054 18.906 16.054L18.906 16.334L17.829 16.402L17.829 15.838Q17.719 16.020 17.574 16.143Q17.429 16.266 17.243 16.334Q17.056 16.402 16.855 16.402Q15.652 16.402 15.652 15.500M20.020 15.493L20.020 13.596L19.381 13.596L19.381 13.374Q19.698 13.374 19.916 13.164Q20.133 12.954 20.233 12.644Q20.334 12.335 20.334 12.027L20.601 12.027L20.601 13.316L21.677 13.316L21.677 13.596L20.601 13.596L20.601 15.480Q20.601 15.756 20.705 15.955Q20.809 16.153 21.069 16.153Q21.226 16.153 21.332 16.049Q21.438 15.944 21.488 15.791Q21.537 15.637 21.537 15.480L21.537 15.066L21.804 15.066L21.804 15.493Q21.804 15.719 21.705 15.929Q21.606 16.139 21.421 16.271Q21.237 16.402 21.008 16.402Q20.570 16.402 20.295 16.165Q20.020 15.927 20.020 15.493M24.258 17.691L22.628 17.691L22.628 17.411Q22.857 17.411 23.005 17.376Q23.154 17.342 23.154 17.202L23.154 13.856Q23.154 13.685 23.017 13.644Q22.881 13.603 22.628 13.603L22.628 13.323L23.708 13.248L23.708 13.654Q23.930 13.453 24.217 13.350Q24.504 13.248 24.812 13.248Q25.239 13.248 25.603 13.461Q25.967 13.675 26.181 14.039Q26.394 14.403 26.394 14.823Q26.394 15.268 26.155 15.632Q25.916 15.996 25.523 16.199Q25.130 16.402 24.685 16.402Q24.419 16.402 24.171 16.302Q23.923 16.201 23.735 16.020L23.735 17.202Q23.735 17.339 23.884 17.375Q24.032 17.411 24.258 17.411L24.258 17.691M23.735 14.003L23.735 15.613Q23.868 15.866 24.111 16.023Q24.354 16.180 24.631 16.180Q24.959 16.180 25.212 15.979Q25.465 15.777 25.598 15.459Q25.731 15.141 25.731 14.823Q25.731 14.594 25.666 14.365Q25.601 14.136 25.473 13.938Q25.345 13.740 25.150 13.620Q24.955 13.501 24.723 13.501Q24.429 13.501 24.161 13.630Q23.892 13.760 23.735 14.003M27.604 15.500L27.604 13.996Q27.604 13.726 27.497 13.665Q27.389 13.603 27.078 13.603L27.078 13.323L28.185 13.248L28.185 15.480L28.185 15.500Q28.185 15.780 28.237 15.924Q28.288 16.067 28.430 16.124Q28.572 16.180 28.859 16.180Q29.112 16.180 29.317 16.040Q29.522 15.900 29.638 15.674Q29.754 15.449 29.754 15.199L29.754 13.996Q29.754 13.726 29.646 13.665Q29.539 13.603 29.228 13.603L29.228 13.323L30.335 13.248L30.335 15.661Q30.335 15.852 30.388 15.934Q30.441 16.016 30.542 16.035Q30.643 16.054 30.858 16.054L30.858 16.334L29.781 16.402L29.781 15.838Q29.672 16.020 29.527 16.143Q29.382 16.266 29.195 16.334Q29.009 16.402 28.807 16.402Q27.604 16.402 27.604 15.500M31.972 15.493L31.972 13.596L31.333 13.596L31.333 13.374Q31.651 13.374 31.868 13.164Q32.085 12.954 32.186 12.644Q32.287 12.335 32.287 12.027L32.553 12.027L32.553 13.316L33.630 13.316L33.630 13.596L32.553 13.596L32.553 15.480Q32.553 15.756 32.658 15.955Q32.762 16.153 33.022 16.153Q33.179 16.153 33.285 16.049Q33.391 15.944 33.440 15.791Q33.490 15.637 33.490 15.480L33.490 15.066L33.757 15.066L33.757 15.493Q33.757 15.719 33.657 15.929Q33.558 16.139 33.374 16.271Q33.189 16.402 32.960 16.402Q32.523 16.402 32.248 16.165Q31.972 15.927 31.972 15.493M35.066 17.564Q35.066 17.530 35.093 17.503Q35.363 17.274 35.512 16.951Q35.660 16.628 35.660 16.272L35.660 16.235Q35.551 16.334 35.387 16.334Q35.206 16.334 35.086 16.214Q34.967 16.095 34.967 15.914Q34.967 15.739 35.086 15.620Q35.206 15.500 35.387 15.500Q35.643 15.500 35.763 15.739Q35.883 15.979 35.883 16.272Q35.883 16.672 35.713 17.043Q35.544 17.414 35.247 17.670Q35.216 17.691 35.189 17.691Q35.148 17.691 35.107 17.650Q35.066 17.609 35.066 17.564\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(94.582 13.13)\">\u003Cpath d=\"M39.599 15.606Q39.599 15.274 39.822 15.047Q40.046 14.820 40.390 14.692Q40.733 14.563 41.106 14.511Q41.478 14.458 41.783 14.458L41.783 14.205Q41.783 14 41.675 13.820Q41.567 13.641 41.386 13.538Q41.205 13.436 40.997 13.436Q40.590 13.436 40.354 13.528Q40.443 13.565 40.489 13.649Q40.535 13.733 40.535 13.835Q40.535 13.931 40.489 14.010Q40.443 14.088 40.362 14.133Q40.282 14.177 40.193 14.177Q40.043 14.177 39.942 14.080Q39.841 13.982 39.841 13.835Q39.841 13.213 40.997 13.213Q41.208 13.213 41.458 13.277Q41.707 13.340 41.909 13.459Q42.111 13.579 42.237 13.764Q42.364 13.948 42.364 14.191L42.364 15.767Q42.364 15.883 42.425 15.979Q42.487 16.074 42.600 16.074Q42.709 16.074 42.774 15.980Q42.839 15.886 42.839 15.767L42.839 15.319L43.105 15.319L43.105 15.767Q43.105 16.037 42.878 16.202Q42.651 16.368 42.371 16.368Q42.162 16.368 42.025 16.214Q41.889 16.061 41.865 15.845Q41.718 16.112 41.436 16.257Q41.154 16.402 40.829 16.402Q40.552 16.402 40.268 16.327Q39.985 16.252 39.792 16.073Q39.599 15.893 39.599 15.606M40.214 15.606Q40.214 15.780 40.315 15.910Q40.415 16.040 40.571 16.110Q40.726 16.180 40.891 16.180Q41.109 16.180 41.318 16.083Q41.526 15.985 41.654 15.804Q41.783 15.623 41.783 15.397L41.783 14.669Q41.458 14.669 41.092 14.760Q40.726 14.851 40.470 15.063Q40.214 15.274 40.214 15.606M44.329 16.334L44.062 16.334L44.062 12.226Q44.062 11.956 43.955 11.894Q43.847 11.833 43.536 11.833L43.536 11.552L44.616 11.477L44.616 13.647Q44.825 13.456 45.110 13.352Q45.395 13.248 45.693 13.248Q46.011 13.248 46.308 13.369Q46.605 13.490 46.828 13.706Q47.050 13.921 47.176 14.206Q47.303 14.492 47.303 14.823Q47.303 15.268 47.063 15.632Q46.824 15.996 46.431 16.199Q46.038 16.402 45.594 16.402Q45.399 16.402 45.209 16.346Q45.019 16.290 44.859 16.185Q44.698 16.081 44.558 15.920L44.329 16.334M44.643 13.989L44.643 15.606Q44.780 15.866 45.021 16.023Q45.262 16.180 45.539 16.180Q45.833 16.180 46.045 16.073Q46.257 15.965 46.390 15.773Q46.523 15.582 46.581 15.343Q46.640 15.104 46.640 14.823Q46.640 14.464 46.546 14.160Q46.452 13.856 46.224 13.663Q45.997 13.470 45.631 13.470Q45.330 13.470 45.064 13.606Q44.797 13.743 44.643 13.989\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(94.582 13.13)\">\u003Cpath d=\"M48.117 14.851Q48.117 14.509 48.252 14.210Q48.387 13.911 48.627 13.687Q48.866 13.463 49.184 13.338Q49.502 13.213 49.833 13.213Q50.278 13.213 50.677 13.429Q51.077 13.644 51.312 14.022Q51.546 14.399 51.546 14.851Q51.546 15.192 51.404 15.476Q51.262 15.760 51.018 15.967Q50.773 16.173 50.464 16.288Q50.155 16.402 49.833 16.402Q49.403 16.402 49.001 16.201Q48.599 15.999 48.358 15.647Q48.117 15.295 48.117 14.851M49.833 16.153Q50.435 16.153 50.659 15.775Q50.883 15.397 50.883 14.765Q50.883 14.153 50.648 13.794Q50.414 13.436 49.833 13.436Q48.781 13.436 48.781 14.765Q48.781 15.397 49.006 15.775Q49.232 16.153 49.833 16.153M52.715 15.500L52.715 13.996Q52.715 13.726 52.607 13.665Q52.499 13.603 52.188 13.603L52.188 13.323L53.296 13.248L53.296 15.480L53.296 15.500Q53.296 15.780 53.347 15.924Q53.398 16.067 53.540 16.124Q53.682 16.180 53.969 16.180Q54.222 16.180 54.427 16.040Q54.632 15.900 54.748 15.674Q54.865 15.449 54.865 15.199L54.865 13.996Q54.865 13.726 54.757 13.665Q54.649 13.603 54.338 13.603L54.338 13.323L55.446 13.248L55.446 15.661Q55.446 15.852 55.499 15.934Q55.552 16.016 55.652 16.035Q55.753 16.054 55.969 16.054L55.969 16.334L54.892 16.402L54.892 15.838Q54.782 16.020 54.637 16.143Q54.492 16.266 54.306 16.334Q54.119 16.402 53.918 16.402Q52.715 16.402 52.715 15.500M57.083 15.493L57.083 13.596L56.444 13.596L56.444 13.374Q56.761 13.374 56.979 13.164Q57.196 12.954 57.296 12.644Q57.397 12.335 57.397 12.027L57.664 12.027L57.664 13.316L58.740 13.316L58.740 13.596L57.664 13.596L57.664 15.480Q57.664 15.756 57.768 15.955Q57.872 16.153 58.132 16.153Q58.289 16.153 58.395 16.049Q58.501 15.944 58.551 15.791Q58.600 15.637 58.600 15.480L58.600 15.066L58.867 15.066L58.867 15.493Q58.867 15.719 58.768 15.929Q58.669 16.139 58.484 16.271Q58.300 16.402 58.071 16.402Q57.633 16.402 57.358 16.165Q57.083 15.927 57.083 15.493\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(94.582 13.13)\">\u003Cpath d=\"M62.907 15.493L62.907 13.596L62.268 13.596L62.268 13.374Q62.586 13.374 62.803 13.164Q63.020 12.954 63.120 12.644Q63.221 12.335 63.221 12.027L63.488 12.027L63.488 13.316L64.565 13.316L64.565 13.596L63.488 13.596L63.488 15.480Q63.488 15.756 63.592 15.955Q63.696 16.153 63.956 16.153Q64.113 16.153 64.219 16.049Q64.325 15.944 64.375 15.791Q64.424 15.637 64.424 15.480L64.424 15.066L64.691 15.066L64.691 15.493Q64.691 15.719 64.592 15.929Q64.493 16.139 64.308 16.271Q64.124 16.402 63.895 16.402Q63.457 16.402 63.182 16.165Q62.907 15.927 62.907 15.493\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(94.582 13.13)\">\u003Cpath d=\"M66.678 16.307L65.697 13.808Q65.636 13.665 65.518 13.630Q65.400 13.596 65.184 13.596L65.184 13.316L66.664 13.316L66.664 13.596Q66.285 13.596 66.285 13.757Q66.285 13.767 66.299 13.808L67.013 15.640L67.686 13.935Q67.656 13.863 67.656 13.835Q67.656 13.808 67.628 13.808Q67.567 13.661 67.449 13.629Q67.331 13.596 67.119 13.596L67.119 13.316L68.517 13.316L68.517 13.596Q68.141 13.596 68.141 13.757Q68.141 13.788 68.148 13.808L68.903 15.746L69.590 13.996Q69.611 13.945 69.611 13.890Q69.611 13.750 69.498 13.673Q69.385 13.596 69.245 13.596L69.245 13.316L70.465 13.316L70.465 13.596Q70.260 13.596 70.105 13.702Q69.949 13.808 69.877 13.996L68.972 16.307Q68.937 16.402 68.825 16.402L68.756 16.402Q68.647 16.402 68.609 16.307L67.827 14.304L67.040 16.307Q67.006 16.402 66.893 16.402L66.825 16.402Q66.716 16.402 66.678 16.307M72.612 16.334L71.060 16.334L71.060 16.054Q71.286 16.054 71.434 16.020Q71.583 15.985 71.583 15.845L71.583 13.996Q71.583 13.808 71.535 13.724Q71.487 13.641 71.390 13.622Q71.292 13.603 71.080 13.603L71.080 13.323L72.137 13.248L72.137 15.845Q72.137 15.985 72.268 16.020Q72.400 16.054 72.612 16.054L72.612 16.334M71.340 12.027Q71.340 11.856 71.463 11.737Q71.586 11.617 71.757 11.617Q71.925 11.617 72.048 11.737Q72.171 11.856 72.171 12.027Q72.171 12.202 72.048 12.325Q71.925 12.448 71.757 12.448Q71.586 12.448 71.463 12.325Q71.340 12.202 71.340 12.027M73.258 14.823Q73.258 14.495 73.393 14.194Q73.528 13.894 73.764 13.673Q73.999 13.453 74.304 13.333Q74.608 13.213 74.933 13.213Q75.438 13.213 75.787 13.316Q76.136 13.418 76.136 13.794Q76.136 13.941 76.038 14.042Q75.941 14.143 75.794 14.143Q75.640 14.143 75.541 14.044Q75.442 13.945 75.442 13.794Q75.442 13.606 75.582 13.514Q75.380 13.463 74.939 13.463Q74.584 13.463 74.355 13.659Q74.126 13.856 74.025 14.165Q73.924 14.475 73.924 14.823Q73.924 15.172 74.051 15.478Q74.177 15.784 74.432 15.968Q74.686 16.153 75.042 16.153Q75.264 16.153 75.449 16.069Q75.633 15.985 75.768 15.830Q75.903 15.674 75.961 15.466Q75.975 15.411 76.030 15.411L76.143 15.411Q76.173 15.411 76.195 15.435Q76.218 15.459 76.218 15.493L76.218 15.514Q76.132 15.801 75.944 15.999Q75.756 16.197 75.491 16.300Q75.226 16.402 74.933 16.402Q74.502 16.402 74.114 16.196Q73.726 15.989 73.492 15.626Q73.258 15.264 73.258 14.823M76.765 14.799Q76.765 14.478 76.889 14.189Q77.014 13.900 77.240 13.677Q77.465 13.453 77.761 13.333Q78.057 13.213 78.374 13.213Q78.703 13.213 78.964 13.313Q79.226 13.412 79.402 13.594Q79.578 13.777 79.672 14.035Q79.766 14.293 79.766 14.625Q79.766 14.717 79.684 14.738L77.428 14.738L77.428 14.799Q77.428 15.387 77.711 15.770Q77.995 16.153 78.562 16.153Q78.884 16.153 79.152 15.960Q79.420 15.767 79.509 15.452Q79.516 15.411 79.591 15.397L79.684 15.397Q79.766 15.421 79.766 15.493Q79.766 15.500 79.759 15.527Q79.646 15.924 79.275 16.163Q78.904 16.402 78.480 16.402Q78.043 16.402 77.643 16.194Q77.243 15.985 77.004 15.618Q76.765 15.251 76.765 14.799M77.434 14.529L79.249 14.529Q79.249 14.252 79.152 14Q79.055 13.747 78.856 13.591Q78.658 13.436 78.374 13.436Q78.098 13.436 77.884 13.594Q77.670 13.753 77.552 14.008Q77.434 14.263 77.434 14.529\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(94.582 13.13)\">\u003Cpath d=\"M84.750 16.334L83.116 16.334L83.116 16.054Q83.345 16.054 83.494 16.020Q83.643 15.985 83.643 15.845L83.643 13.996Q83.643 13.726 83.535 13.665Q83.427 13.603 83.116 13.603L83.116 13.323L84.176 13.248L84.176 13.897Q84.347 13.589 84.651 13.418Q84.955 13.248 85.300 13.248Q85.700 13.248 85.977 13.388Q86.254 13.528 86.339 13.876Q86.507 13.583 86.806 13.415Q87.105 13.248 87.450 13.248Q87.956 13.248 88.240 13.471Q88.524 13.695 88.524 14.191L88.524 15.845Q88.524 15.982 88.672 16.018Q88.821 16.054 89.046 16.054L89.046 16.334L87.416 16.334L87.416 16.054Q87.642 16.054 87.792 16.018Q87.942 15.982 87.942 15.845L87.942 14.205Q87.942 13.870 87.823 13.670Q87.703 13.470 87.389 13.470Q87.119 13.470 86.885 13.606Q86.650 13.743 86.512 13.977Q86.374 14.211 86.374 14.485L86.374 15.845Q86.374 15.982 86.522 16.018Q86.671 16.054 86.897 16.054L86.897 16.334L85.266 16.334L85.266 16.054Q85.495 16.054 85.644 16.020Q85.793 15.985 85.793 15.845L85.793 14.205Q85.793 13.870 85.673 13.670Q85.553 13.470 85.239 13.470Q84.969 13.470 84.735 13.606Q84.501 13.743 84.362 13.977Q84.224 14.211 84.224 14.485L84.224 15.845Q84.224 15.982 84.374 16.018Q84.525 16.054 84.750 16.054L84.750 16.334M89.593 14.799Q89.593 14.478 89.718 14.189Q89.843 13.900 90.068 13.677Q90.294 13.453 90.590 13.333Q90.885 13.213 91.203 13.213Q91.531 13.213 91.793 13.313Q92.054 13.412 92.230 13.594Q92.406 13.777 92.500 14.035Q92.594 14.293 92.594 14.625Q92.594 14.717 92.512 14.738L90.256 14.738L90.256 14.799Q90.256 15.387 90.540 15.770Q90.824 16.153 91.391 16.153Q91.712 16.153 91.981 15.960Q92.249 15.767 92.338 15.452Q92.345 15.411 92.420 15.397L92.512 15.397Q92.594 15.421 92.594 15.493Q92.594 15.500 92.587 15.527Q92.475 15.924 92.104 16.163Q91.733 16.402 91.309 16.402Q90.872 16.402 90.472 16.194Q90.072 15.985 89.833 15.618Q89.593 15.251 89.593 14.799M90.263 14.529L92.078 14.529Q92.078 14.252 91.981 14Q91.883 13.747 91.685 13.591Q91.487 13.436 91.203 13.436Q90.926 13.436 90.713 13.594Q90.499 13.753 90.381 14.008Q90.263 14.263 90.263 14.529M94.864 16.334L93.230 16.334L93.230 16.054Q93.459 16.054 93.608 16.020Q93.756 15.985 93.756 15.845L93.756 13.996Q93.756 13.726 93.649 13.665Q93.541 13.603 93.230 13.603L93.230 13.323L94.290 13.248L94.290 13.897Q94.461 13.589 94.765 13.418Q95.069 13.248 95.414 13.248Q95.814 13.248 96.091 13.388Q96.368 13.528 96.453 13.876Q96.621 13.583 96.920 13.415Q97.219 13.248 97.564 13.248Q98.070 13.248 98.354 13.471Q98.637 13.695 98.637 14.191L98.637 15.845Q98.637 15.982 98.786 16.018Q98.935 16.054 99.160 16.054L99.160 16.334L97.530 16.334L97.530 16.054Q97.755 16.054 97.906 16.018Q98.056 15.982 98.056 15.845L98.056 14.205Q98.056 13.870 97.937 13.670Q97.817 13.470 97.503 13.470Q97.233 13.470 96.998 13.606Q96.764 13.743 96.626 13.977Q96.487 14.211 96.487 14.485L96.487 15.845Q96.487 15.982 96.636 16.018Q96.785 16.054 97.010 16.054L97.010 16.334L95.380 16.334L95.380 16.054Q95.609 16.054 95.758 16.020Q95.906 15.985 95.906 15.845L95.906 14.205Q95.906 13.870 95.787 13.670Q95.667 13.470 95.353 13.470Q95.083 13.470 94.848 13.606Q94.614 13.743 94.476 13.977Q94.337 14.211 94.337 14.485L94.337 15.845Q94.337 15.982 94.488 16.018Q94.638 16.054 94.864 16.054L94.864 16.334M99.707 14.851Q99.707 14.509 99.842 14.210Q99.977 13.911 100.216 13.687Q100.456 13.463 100.774 13.338Q101.091 13.213 101.423 13.213Q101.867 13.213 102.267 13.429Q102.667 13.644 102.901 14.022Q103.135 14.399 103.135 14.851Q103.135 15.192 102.994 15.476Q102.852 15.760 102.607 15.967Q102.363 16.173 102.054 16.288Q101.744 16.402 101.423 16.402Q100.992 16.402 100.591 16.201Q100.189 15.999 99.948 15.647Q99.707 15.295 99.707 14.851M101.423 16.153Q102.025 16.153 102.248 15.775Q102.472 15.397 102.472 14.765Q102.472 14.153 102.238 13.794Q102.004 13.436 101.423 13.436Q100.370 13.436 100.370 14.765Q100.370 15.397 100.596 15.775Q100.821 16.153 101.423 16.153M105.480 16.334L103.744 16.334L103.744 16.054Q103.973 16.054 104.121 16.020Q104.270 15.985 104.270 15.845L104.270 13.996Q104.270 13.726 104.162 13.665Q104.055 13.603 103.744 13.603L103.744 13.323L104.773 13.248L104.773 13.955Q104.902 13.647 105.145 13.448Q105.388 13.248 105.706 13.248Q105.924 13.248 106.095 13.372Q106.266 13.497 106.266 13.709Q106.266 13.846 106.167 13.945Q106.068 14.044 105.935 14.044Q105.798 14.044 105.699 13.945Q105.600 13.846 105.600 13.709Q105.600 13.569 105.699 13.470Q105.408 13.470 105.208 13.666Q105.008 13.863 104.916 14.157Q104.824 14.451 104.824 14.731L104.824 15.845Q104.824 16.054 105.480 16.054L105.480 16.334M107.186 17.469Q107.316 17.537 107.452 17.537Q107.623 17.537 107.774 17.448Q107.924 17.359 108.035 17.214Q108.146 17.069 108.225 16.901L108.488 16.334L107.319 13.808Q107.244 13.661 107.114 13.629Q106.984 13.596 106.752 13.596L106.752 13.316L108.273 13.316L108.273 13.596Q107.924 13.596 107.924 13.743Q107.927 13.764 107.929 13.781Q107.931 13.798 107.931 13.808L108.789 15.667L109.561 13.996Q109.595 13.928 109.595 13.849Q109.595 13.736 109.512 13.666Q109.428 13.596 109.315 13.596L109.315 13.316L110.511 13.316L110.511 13.596Q110.293 13.596 110.120 13.700Q109.947 13.805 109.855 13.996L108.519 16.901Q108.348 17.271 108.078 17.517Q107.808 17.763 107.452 17.763Q107.182 17.763 106.963 17.597Q106.745 17.431 106.745 17.168Q106.745 17.031 106.837 16.942Q106.929 16.854 107.069 16.854Q107.206 16.854 107.295 16.942Q107.384 17.031 107.384 17.168Q107.384 17.271 107.331 17.349Q107.278 17.428 107.186 17.469\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(94.582 13.13)\">\u003Cpath d=\"M115.437 16.334L113.834 16.334L113.834 16.054Q114.060 16.054 114.209 16.020Q114.357 15.985 114.357 15.845L114.357 12.226Q114.357 11.956 114.250 11.894Q114.142 11.833 113.834 11.833L113.834 11.552L114.911 11.477L114.911 15.845Q114.911 15.982 115.061 16.018Q115.212 16.054 115.437 16.054L115.437 16.334M115.991 14.851Q115.991 14.509 116.126 14.210Q116.261 13.911 116.500 13.687Q116.740 13.463 117.058 13.338Q117.375 13.213 117.707 13.213Q118.151 13.213 118.551 13.429Q118.951 13.644 119.185 14.022Q119.419 14.399 119.419 14.851Q119.419 15.192 119.278 15.476Q119.136 15.760 118.891 15.967Q118.647 16.173 118.338 16.288Q118.028 16.402 117.707 16.402Q117.276 16.402 116.875 16.201Q116.473 15.999 116.232 15.647Q115.991 15.295 115.991 14.851M117.707 16.153Q118.309 16.153 118.532 15.775Q118.756 15.397 118.756 14.765Q118.756 14.153 118.522 13.794Q118.288 13.436 117.707 13.436Q116.654 13.436 116.654 14.765Q116.654 15.397 116.880 15.775Q117.105 16.153 117.707 16.153M121.696 16.334L120.062 16.334L120.062 16.054Q120.291 16.054 120.440 16.020Q120.588 15.985 120.588 15.845L120.588 13.996Q120.588 13.726 120.481 13.665Q120.373 13.603 120.062 13.603L120.062 13.323L121.122 13.248L121.122 13.897Q121.292 13.589 121.597 13.418Q121.901 13.248 122.246 13.248Q122.752 13.248 123.036 13.471Q123.319 13.695 123.319 14.191L123.319 15.845Q123.319 15.982 123.468 16.018Q123.617 16.054 123.842 16.054L123.842 16.334L122.212 16.334L122.212 16.054Q122.441 16.054 122.590 16.020Q122.738 15.985 122.738 15.845L122.738 14.205Q122.738 13.870 122.619 13.670Q122.499 13.470 122.184 13.470Q121.914 13.470 121.680 13.606Q121.446 13.743 121.308 13.977Q121.169 14.211 121.169 14.485L121.169 15.845Q121.169 15.982 121.320 16.018Q121.470 16.054 121.696 16.054L121.696 16.334M124.389 16.867Q124.389 16.621 124.586 16.437Q124.782 16.252 125.038 16.173Q124.902 16.061 124.830 15.900Q124.758 15.739 124.758 15.558Q124.758 15.237 124.970 14.991Q124.635 14.693 124.635 14.283Q124.635 13.822 125.025 13.535Q125.414 13.248 125.893 13.248Q126.365 13.248 126.700 13.494Q126.874 13.340 127.084 13.258Q127.294 13.176 127.523 13.176Q127.687 13.176 127.809 13.283Q127.930 13.391 127.930 13.555Q127.930 13.651 127.858 13.723Q127.787 13.794 127.694 13.794Q127.595 13.794 127.525 13.721Q127.455 13.647 127.455 13.548Q127.455 13.494 127.469 13.463L127.476 13.449Q127.482 13.429 127.491 13.418Q127.499 13.408 127.503 13.401Q127.147 13.401 126.860 13.624Q127.147 13.917 127.147 14.283Q127.147 14.598 126.963 14.830Q126.778 15.063 126.489 15.191Q126.201 15.319 125.893 15.319Q125.691 15.319 125.500 15.269Q125.309 15.220 125.131 15.110Q125.038 15.237 125.038 15.380Q125.038 15.562 125.167 15.697Q125.295 15.832 125.479 15.832L126.112 15.832Q126.559 15.832 126.929 15.903Q127.298 15.975 127.558 16.204Q127.817 16.433 127.817 16.867Q127.817 17.188 127.522 17.390Q127.226 17.592 126.823 17.681Q126.419 17.770 126.105 17.770Q125.787 17.770 125.384 17.681Q124.980 17.592 124.685 17.390Q124.389 17.188 124.389 16.867M124.844 16.867Q124.844 17.096 125.062 17.245Q125.281 17.394 125.573 17.462Q125.866 17.530 126.105 17.530Q126.269 17.530 126.477 17.494Q126.686 17.459 126.893 17.378Q127.100 17.298 127.231 17.170Q127.363 17.042 127.363 16.867Q127.363 16.515 126.982 16.421Q126.601 16.327 126.098 16.327L125.479 16.327Q125.240 16.327 125.042 16.478Q124.844 16.628 124.844 16.867M125.893 15.080Q126.559 15.080 126.559 14.283Q126.559 13.483 125.893 13.483Q125.223 13.483 125.223 14.283Q125.223 15.080 125.893 15.080\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M54.997-10.696c0 13.507-19.917 14.66-19.917 24.042\"\u002F>\u003Cpath d=\"m35.08 16.332 1.576-4.169-1.576 1.383-1.577-1.383Z\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Replacement selection. Records arriving \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.7719em;vertical-align:-0.136em;\">\u003C\u002Fspan>\u003Cspan class=\"mrel\">≥\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> the last output (green) extend the current run through the heap; smaller arrivals (blue outline) are frozen in memory to seed the next run. Average run length \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.4831em;\">\u003C\u002Fspan>\u003Cspan class=\"mrel\">≈\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.2778em;\">\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6833em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">2\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">M\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>, double a fixed-batch sort.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:440.764px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 330.573 96.776\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M53.448-27.09c0-23.572-19.107-42.68-42.679-42.68-23.57 0-42.679 19.108-42.679 42.68 0 23.57 19.108 42.678 42.68 42.678 23.57 0 42.678-19.108 42.678-42.679Zm-42.679 0\" style=\"stroke-width:5\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"M53.448-27.09c0-23.572-19.107-42.68-42.679-42.68-23.57 0-42.679 19.108-42.679 42.68A42.68 42.68 0 0 0-16.664 5.602\" style=\"stroke-width:5\"\u002F>\u003Cpath fill=\"var(--tk-accent)\" stroke=\"none\" d=\"M56.448-27.09a3 3 0 1 0-6 0 3 3 0 0 0 6 0m-3 0\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(53.325 1.75)\">\u003Cpath d=\"M12.727-25.734L11.097-25.734L11.097-26.014Q11.326-26.014 11.475-26.049Q11.623-26.083 11.623-26.223L11.623-29.569Q11.623-29.740 11.487-29.781Q11.350-29.822 11.097-29.822L11.097-30.102L12.177-30.177L12.177-29.771Q12.399-29.972 12.686-30.075Q12.974-30.177 13.281-30.177Q13.708-30.177 14.072-29.964Q14.436-29.750 14.650-29.386Q14.864-29.022 14.864-28.602Q14.864-28.157 14.624-27.793Q14.385-27.429 13.992-27.226Q13.599-27.023 13.155-27.023Q12.888-27.023 12.640-27.123Q12.393-27.224 12.205-27.405L12.205-26.223Q12.205-26.086 12.353-26.050Q12.502-26.014 12.727-26.014L12.727-25.734M12.205-29.422L12.205-27.812Q12.338-27.559 12.581-27.402Q12.823-27.245 13.100-27.245Q13.428-27.245 13.681-27.446Q13.934-27.648 14.067-27.966Q14.201-28.284 14.201-28.602Q14.201-28.831 14.136-29.060Q14.071-29.289 13.943-29.487Q13.814-29.685 13.620-29.805Q13.425-29.924 13.192-29.924Q12.898-29.924 12.630-29.795Q12.362-29.665 12.205-29.422M17.167-27.091L15.564-27.091L15.564-27.371Q15.790-27.371 15.939-27.405Q16.087-27.440 16.087-27.580L16.087-31.199Q16.087-31.469 15.980-31.531Q15.872-31.592 15.564-31.592L15.564-31.873L16.641-31.948L16.641-27.580Q16.641-27.443 16.791-27.407Q16.942-27.371 17.167-27.371L17.167-27.091M17.721-28.574Q17.721-28.916 17.856-29.215Q17.991-29.514 18.230-29.738Q18.470-29.962 18.788-30.087Q19.105-30.212 19.437-30.212Q19.881-30.212 20.281-29.996Q20.681-29.781 20.915-29.403Q21.149-29.026 21.149-28.574Q21.149-28.233 21.008-27.949Q20.866-27.665 20.621-27.458Q20.377-27.252 20.068-27.137Q19.758-27.023 19.437-27.023Q19.006-27.023 18.605-27.224Q18.203-27.426 17.962-27.778Q17.721-28.130 17.721-28.574M19.437-27.272Q20.039-27.272 20.262-27.650Q20.486-28.028 20.486-28.660Q20.486-29.272 20.252-29.631Q20.018-29.989 19.437-29.989Q18.384-29.989 18.384-28.660Q18.384-28.028 18.610-27.650Q18.835-27.272 19.437-27.272\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(53.325 1.75)\">\u003Cpath d=\"M22.923-27.118L21.942-29.617Q21.881-29.760 21.763-29.795Q21.645-29.829 21.429-29.829L21.429-30.109L22.909-30.109L22.909-29.829Q22.530-29.829 22.530-29.668Q22.530-29.658 22.544-29.617L23.258-27.785L23.931-29.490Q23.901-29.562 23.901-29.590Q23.901-29.617 23.873-29.617Q23.812-29.764 23.694-29.796Q23.576-29.829 23.364-29.829L23.364-30.109L24.762-30.109L24.762-29.829Q24.386-29.829 24.386-29.668Q24.386-29.637 24.393-29.617L25.148-27.679L25.835-29.429Q25.856-29.480 25.856-29.535Q25.856-29.675 25.743-29.752Q25.630-29.829 25.490-29.829L25.490-30.109L26.710-30.109L26.710-29.829Q26.505-29.829 26.350-29.723Q26.194-29.617 26.122-29.429L25.217-27.118Q25.182-27.023 25.070-27.023L25.001-27.023Q24.892-27.023 24.854-27.118L24.072-29.121L23.285-27.118Q23.251-27.023 23.138-27.023L23.070-27.023Q22.961-27.023 22.923-27.118\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(53.325 1.75)\">\u003Cpath d=\"M32.068-25.341Q31.518-25.741 31.147-26.296Q30.776-26.852 30.595-27.498Q30.414-28.144 30.414-28.841Q30.414-29.354 30.514-29.849Q30.615-30.345 30.820-30.796Q31.025-31.247 31.338-31.639Q31.651-32.030 32.068-32.334Q32.078-32.338 32.085-32.339Q32.092-32.341 32.102-32.341L32.170-32.341Q32.205-32.341 32.227-32.317Q32.249-32.293 32.249-32.256Q32.249-32.211 32.222-32.194Q31.873-31.893 31.620-31.509Q31.367-31.124 31.215-30.683Q31.063-30.242 30.991-29.786Q30.919-29.330 30.919-28.841Q30.919-27.840 31.229-26.953Q31.538-26.066 32.222-25.481Q32.249-25.464 32.249-25.420Q32.249-25.382 32.227-25.358Q32.205-25.334 32.170-25.334L32.102-25.334Q32.095-25.338 32.087-25.339Q32.078-25.341 32.068-25.341M34.741-27.091L33.107-27.091L33.107-27.371Q33.336-27.371 33.485-27.405Q33.633-27.440 33.633-27.580L33.633-31.199Q33.633-31.469 33.526-31.531Q33.418-31.592 33.107-31.592L33.107-31.873L34.187-31.948L34.187-29.562Q34.293-29.747 34.471-29.889Q34.648-30.030 34.857-30.104Q35.065-30.177 35.291-30.177Q35.797-30.177 36.081-29.954Q36.364-29.730 36.364-29.234L36.364-27.580Q36.364-27.443 36.513-27.407Q36.662-27.371 36.887-27.371L36.887-27.091L35.257-27.091L35.257-27.371Q35.486-27.371 35.634-27.405Q35.783-27.440 35.783-27.580L35.783-29.220Q35.783-29.555 35.664-29.755Q35.544-29.955 35.229-29.955Q34.959-29.955 34.725-29.819Q34.491-29.682 34.353-29.448Q34.214-29.214 34.214-28.940L34.214-27.580Q34.214-27.443 34.365-27.407Q34.515-27.371 34.741-27.371L34.741-27.091M37.434-28.626Q37.434-28.947 37.559-29.236Q37.684-29.525 37.909-29.748Q38.135-29.972 38.430-30.092Q38.726-30.212 39.044-30.212Q39.372-30.212 39.634-30.112Q39.895-30.013 40.071-29.831Q40.247-29.648 40.341-29.390Q40.435-29.132 40.435-28.800Q40.435-28.708 40.353-28.687L38.097-28.687L38.097-28.626Q38.097-28.038 38.381-27.655Q38.665-27.272 39.232-27.272Q39.553-27.272 39.822-27.465Q40.090-27.658 40.179-27.973Q40.186-28.014 40.261-28.028L40.353-28.028Q40.435-28.004 40.435-27.932Q40.435-27.925 40.428-27.898Q40.315-27.501 39.945-27.262Q39.574-27.023 39.150-27.023Q38.712-27.023 38.312-27.231Q37.913-27.440 37.673-27.807Q37.434-28.174 37.434-28.626M38.104-28.896L39.919-28.896Q39.919-29.173 39.822-29.425Q39.724-29.678 39.526-29.834Q39.328-29.989 39.044-29.989Q38.767-29.989 38.553-29.831Q38.340-29.672 38.222-29.417Q38.104-29.162 38.104-28.896M41.081-27.819Q41.081-28.151 41.305-28.378Q41.529-28.605 41.872-28.733Q42.216-28.862 42.588-28.914Q42.961-28.967 43.265-28.967L43.265-29.220Q43.265-29.425 43.157-29.605Q43.050-29.784 42.869-29.887Q42.687-29.989 42.479-29.989Q42.072-29.989 41.836-29.897Q41.925-29.860 41.971-29.776Q42.018-29.692 42.018-29.590Q42.018-29.494 41.971-29.415Q41.925-29.337 41.845-29.292Q41.765-29.248 41.676-29.248Q41.525-29.248 41.425-29.345Q41.324-29.443 41.324-29.590Q41.324-30.212 42.479-30.212Q42.691-30.212 42.940-30.148Q43.190-30.085 43.392-29.966Q43.593-29.846 43.720-29.661Q43.846-29.477 43.846-29.234L43.846-27.658Q43.846-27.542 43.908-27.446Q43.969-27.351 44.082-27.351Q44.191-27.351 44.256-27.445Q44.321-27.539 44.321-27.658L44.321-28.106L44.588-28.106L44.588-27.658Q44.588-27.388 44.361-27.223Q44.133-27.057 43.853-27.057Q43.645-27.057 43.508-27.211Q43.371-27.364 43.347-27.580Q43.200-27.313 42.918-27.168Q42.636-27.023 42.311-27.023Q42.035-27.023 41.751-27.098Q41.467-27.173 41.274-27.352Q41.081-27.532 41.081-27.819M41.696-27.819Q41.696-27.645 41.797-27.515Q41.898-27.385 42.053-27.315Q42.209-27.245 42.373-27.245Q42.592-27.245 42.800-27.342Q43.009-27.440 43.137-27.621Q43.265-27.802 43.265-28.028L43.265-28.756Q42.940-28.756 42.575-28.665Q42.209-28.574 41.953-28.362Q41.696-28.151 41.696-27.819M46.649-25.734L45.019-25.734L45.019-26.014Q45.248-26.014 45.396-26.049Q45.545-26.083 45.545-26.223L45.545-29.569Q45.545-29.740 45.408-29.781Q45.271-29.822 45.019-29.822L45.019-30.102L46.099-30.177L46.099-29.771Q46.321-29.972 46.608-30.075Q46.895-30.177 47.203-30.177Q47.630-30.177 47.994-29.964Q48.358-29.750 48.572-29.386Q48.785-29.022 48.785-28.602Q48.785-28.157 48.546-27.793Q48.307-27.429 47.914-27.226Q47.520-27.023 47.076-27.023Q46.810-27.023 46.562-27.123Q46.314-27.224 46.126-27.405L46.126-26.223Q46.126-26.086 46.275-26.050Q46.423-26.014 46.649-26.014L46.649-25.734M46.126-29.422L46.126-27.812Q46.259-27.559 46.502-27.402Q46.745-27.245 47.021-27.245Q47.350-27.245 47.603-27.446Q47.855-27.648 47.989-27.966Q48.122-28.284 48.122-28.602Q48.122-28.831 48.057-29.060Q47.992-29.289 47.864-29.487Q47.736-29.685 47.541-29.805Q47.346-29.924 47.114-29.924Q46.820-29.924 46.551-29.795Q46.283-29.665 46.126-29.422M49.742-25.334L49.674-25.334Q49.640-25.334 49.617-25.360Q49.595-25.385 49.595-25.420Q49.595-25.464 49.626-25.481Q49.981-25.785 50.231-26.175Q50.480-26.565 50.633-26.997Q50.785-27.429 50.855-27.898Q50.925-28.366 50.925-28.841Q50.925-29.320 50.855-29.786Q50.785-30.253 50.631-30.688Q50.477-31.124 50.226-31.512Q49.975-31.900 49.626-32.194Q49.595-32.211 49.595-32.256Q49.595-32.290 49.617-32.315Q49.640-32.341 49.674-32.341L49.742-32.341Q49.752-32.341 49.761-32.339Q49.770-32.338 49.780-32.334Q50.323-31.934 50.696-31.381Q51.068-30.827 51.249-30.181Q51.431-29.535 51.431-28.841Q51.431-28.140 51.249-27.493Q51.068-26.845 50.694-26.291Q50.320-25.737 49.780-25.341Q49.770-25.341 49.761-25.339Q49.752-25.338 49.742-25.334\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-76.373 -33.135)\">\u003Cpath d=\"M11.083-27.098L11.083-28.161Q11.083-28.185 11.111-28.212Q11.138-28.239 11.162-28.239L11.271-28.239Q11.336-28.239 11.350-28.181Q11.446-27.747 11.692-27.496Q11.938-27.245 12.352-27.245Q12.693-27.245 12.946-27.378Q13.199-27.511 13.199-27.819Q13.199-27.976 13.105-28.091Q13.011-28.205 12.873-28.274Q12.734-28.342 12.567-28.380L11.986-28.479Q11.630-28.547 11.357-28.768Q11.083-28.988 11.083-29.330Q11.083-29.579 11.195-29.754Q11.306-29.928 11.492-30.027Q11.678-30.126 11.894-30.169Q12.109-30.212 12.352-30.212Q12.765-30.212 13.045-30.030L13.261-30.205Q13.271-30.208 13.278-30.210Q13.285-30.212 13.295-30.212L13.346-30.212Q13.373-30.212 13.397-30.188Q13.421-30.164 13.421-30.136L13.421-29.289Q13.421-29.268 13.397-29.241Q13.373-29.214 13.346-29.214L13.233-29.214Q13.206-29.214 13.180-29.239Q13.155-29.265 13.155-29.289Q13.155-29.525 13.049-29.689Q12.943-29.853 12.760-29.935Q12.577-30.017 12.345-30.017Q12.017-30.017 11.760-29.914Q11.504-29.812 11.504-29.535Q11.504-29.340 11.687-29.231Q11.870-29.121 12.099-29.080L12.673-28.974Q12.919-28.926 13.133-28.798Q13.346-28.670 13.483-28.467Q13.620-28.263 13.620-28.014Q13.620-27.501 13.254-27.262Q12.888-27.023 12.352-27.023Q11.856-27.023 11.524-27.317L11.258-27.043Q11.237-27.023 11.210-27.023L11.162-27.023Q11.138-27.023 11.111-27.050Q11.083-27.077 11.083-27.098M15.930-27.091L14.296-27.091L14.296-27.371Q14.525-27.371 14.674-27.405Q14.823-27.440 14.823-27.580L14.823-29.429Q14.823-29.699 14.715-29.760Q14.607-29.822 14.296-29.822L14.296-30.102L15.356-30.177L15.356-29.528Q15.527-29.836 15.831-30.007Q16.135-30.177 16.480-30.177Q16.986-30.177 17.270-29.954Q17.554-29.730 17.554-29.234L17.554-27.580Q17.554-27.443 17.702-27.407Q17.851-27.371 18.077-27.371L18.077-27.091L16.446-27.091L16.446-27.371Q16.675-27.371 16.824-27.405Q16.973-27.440 16.973-27.580L16.973-29.220Q16.973-29.555 16.853-29.755Q16.733-29.955 16.419-29.955Q16.149-29.955 15.915-29.819Q15.681-29.682 15.542-29.448Q15.404-29.214 15.404-28.940L15.404-27.580Q15.404-27.443 15.554-27.407Q15.705-27.371 15.930-27.371L15.930-27.091M18.623-28.574Q18.623-28.916 18.759-29.215Q18.894-29.514 19.133-29.738Q19.372-29.962 19.690-30.087Q20.008-30.212 20.339-30.212Q20.784-30.212 21.184-29.996Q21.583-29.781 21.818-29.403Q22.052-29.026 22.052-28.574Q22.052-28.233 21.910-27.949Q21.768-27.665 21.524-27.458Q21.279-27.252 20.970-27.137Q20.661-27.023 20.339-27.023Q19.909-27.023 19.507-27.224Q19.105-27.426 18.864-27.778Q18.623-28.130 18.623-28.574M20.339-27.272Q20.941-27.272 21.165-27.650Q21.389-28.028 21.389-28.660Q21.389-29.272 21.154-29.631Q20.920-29.989 20.339-29.989Q19.287-29.989 19.287-28.660Q19.287-28.028 19.512-27.650Q19.738-27.272 20.339-27.272\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-76.373 -33.135)\">\u003Cpath d=\"M23.827-27.118L22.846-29.617Q22.785-29.760 22.667-29.795Q22.549-29.829 22.333-29.829L22.333-30.109L23.813-30.109L23.813-29.829Q23.434-29.829 23.434-29.668Q23.434-29.658 23.448-29.617L24.162-27.785L24.835-29.490Q24.805-29.562 24.805-29.590Q24.805-29.617 24.777-29.617Q24.716-29.764 24.598-29.796Q24.480-29.829 24.268-29.829L24.268-30.109L25.666-30.109L25.666-29.829Q25.290-29.829 25.290-29.668Q25.290-29.637 25.297-29.617L26.052-27.679L26.739-29.429Q26.760-29.480 26.760-29.535Q26.760-29.675 26.647-29.752Q26.534-29.829 26.394-29.829L26.394-30.109L27.614-30.109L27.614-29.829Q27.409-29.829 27.254-29.723Q27.098-29.617 27.026-29.429L26.121-27.118Q26.086-27.023 25.974-27.023L25.905-27.023Q25.796-27.023 25.758-27.118L24.976-29.121L24.189-27.118Q24.155-27.023 24.042-27.023L23.974-27.023Q23.865-27.023 23.827-27.118\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-76.373 -33.135)\">\u003Cpath d=\"M30.901-27.819Q30.901-28.151 31.124-28.378Q31.348-28.605 31.692-28.733Q32.035-28.862 32.408-28.914Q32.780-28.967 33.085-28.967L33.085-29.220Q33.085-29.425 32.977-29.605Q32.869-29.784 32.688-29.887Q32.507-29.989 32.299-29.989Q31.892-29.989 31.656-29.897Q31.745-29.860 31.791-29.776Q31.837-29.692 31.837-29.590Q31.837-29.494 31.791-29.415Q31.745-29.337 31.664-29.292Q31.584-29.248 31.495-29.248Q31.345-29.248 31.244-29.345Q31.143-29.443 31.143-29.590Q31.143-30.212 32.299-30.212Q32.510-30.212 32.760-30.148Q33.009-30.085 33.211-29.966Q33.413-29.846 33.539-29.661Q33.666-29.477 33.666-29.234L33.666-27.658Q33.666-27.542 33.727-27.446Q33.789-27.351 33.902-27.351Q34.011-27.351 34.076-27.445Q34.141-27.539 34.141-27.658L34.141-28.106L34.407-28.106L34.407-27.658Q34.407-27.388 34.180-27.223Q33.953-27.057 33.673-27.057Q33.464-27.057 33.327-27.211Q33.191-27.364 33.167-27.580Q33.020-27.313 32.738-27.168Q32.456-27.023 32.131-27.023Q31.854-27.023 31.570-27.098Q31.287-27.173 31.094-27.352Q30.901-27.532 30.901-27.819M31.516-27.819Q31.516-27.645 31.617-27.515Q31.717-27.385 31.873-27.315Q32.028-27.245 32.193-27.245Q32.411-27.245 32.620-27.342Q32.828-27.440 32.956-27.621Q33.085-27.802 33.085-28.028L33.085-28.756Q32.760-28.756 32.394-28.665Q32.028-28.574 31.772-28.362Q31.516-28.151 31.516-27.819M36.506-27.091L34.872-27.091L34.872-27.371Q35.101-27.371 35.250-27.405Q35.399-27.440 35.399-27.580L35.399-31.199Q35.399-31.469 35.291-31.531Q35.183-31.592 34.872-31.592L34.872-31.873L35.952-31.948L35.952-29.562Q36.058-29.747 36.236-29.889Q36.414-30.030 36.622-30.104Q36.831-30.177 37.056-30.177Q37.562-30.177 37.846-29.954Q38.130-29.730 38.130-29.234L38.130-27.580Q38.130-27.443 38.278-27.407Q38.427-27.371 38.653-27.371L38.653-27.091L37.022-27.091L37.022-27.371Q37.251-27.371 37.400-27.405Q37.549-27.440 37.549-27.580L37.549-29.220Q37.549-29.555 37.429-29.755Q37.309-29.955 36.995-29.955Q36.725-29.955 36.491-29.819Q36.257-29.682 36.118-29.448Q35.980-29.214 35.980-28.940L35.980-27.580Q35.980-27.443 36.130-27.407Q36.280-27.371 36.506-27.371L36.506-27.091M39.199-28.626Q39.199-28.947 39.324-29.236Q39.449-29.525 39.674-29.748Q39.900-29.972 40.196-30.092Q40.491-30.212 40.809-30.212Q41.137-30.212 41.399-30.112Q41.660-30.013 41.836-29.831Q42.012-29.648 42.106-29.390Q42.200-29.132 42.200-28.800Q42.200-28.708 42.118-28.687L39.862-28.687L39.862-28.626Q39.862-28.038 40.146-27.655Q40.430-27.272 40.997-27.272Q41.319-27.272 41.587-27.465Q41.855-27.658 41.944-27.973Q41.951-28.014 42.026-28.028L42.118-28.028Q42.200-28.004 42.200-27.932Q42.200-27.925 42.194-27.898Q42.081-27.501 41.710-27.262Q41.339-27.023 40.915-27.023Q40.478-27.023 40.078-27.231Q39.678-27.440 39.439-27.807Q39.199-28.174 39.199-28.626M39.869-28.896L41.684-28.896Q41.684-29.173 41.587-29.425Q41.489-29.678 41.291-29.834Q41.093-29.989 40.809-29.989Q40.532-29.989 40.319-29.831Q40.105-29.672 39.987-29.417Q39.869-29.162 39.869-28.896M42.846-27.819Q42.846-28.151 43.070-28.378Q43.294-28.605 43.638-28.733Q43.981-28.862 44.354-28.914Q44.726-28.967 45.030-28.967L45.030-29.220Q45.030-29.425 44.923-29.605Q44.815-29.784 44.634-29.887Q44.453-29.989 44.244-29.989Q43.838-29.989 43.602-29.897Q43.691-29.860 43.737-29.776Q43.783-29.692 43.783-29.590Q43.783-29.494 43.737-29.415Q43.691-29.337 43.610-29.292Q43.530-29.248 43.441-29.248Q43.291-29.248 43.190-29.345Q43.089-29.443 43.089-29.590Q43.089-30.212 44.244-30.212Q44.456-30.212 44.706-30.148Q44.955-30.085 45.157-29.966Q45.359-29.846 45.485-29.661Q45.611-29.477 45.611-29.234L45.611-27.658Q45.611-27.542 45.673-27.446Q45.735-27.351 45.847-27.351Q45.957-27.351 46.022-27.445Q46.087-27.539 46.087-27.658L46.087-28.106L46.353-28.106L46.353-27.658Q46.353-27.388 46.126-27.223Q45.899-27.057 45.618-27.057Q45.410-27.057 45.273-27.211Q45.136-27.364 45.112-27.580Q44.965-27.313 44.684-27.168Q44.402-27.023 44.077-27.023Q43.800-27.023 43.516-27.098Q43.233-27.173 43.039-27.352Q42.846-27.532 42.846-27.819M43.462-27.819Q43.462-27.645 43.562-27.515Q43.663-27.385 43.819-27.315Q43.974-27.245 44.138-27.245Q44.357-27.245 44.566-27.342Q44.774-27.440 44.902-27.621Q45.030-27.802 45.030-28.028L45.030-28.756Q44.706-28.756 44.340-28.665Q43.974-28.574 43.718-28.362Q43.462-28.151 43.462-27.819M46.770-28.602Q46.770-28.940 46.910-29.231Q47.050-29.521 47.295-29.735Q47.539-29.948 47.843-30.063Q48.148-30.177 48.472-30.177Q48.742-30.177 49.006-30.078Q49.269-29.979 49.460-29.801L49.460-31.199Q49.460-31.469 49.352-31.531Q49.245-31.592 48.934-31.592L48.934-31.873L50.010-31.948L50.010-27.764Q50.010-27.576 50.065-27.493Q50.120-27.409 50.221-27.390Q50.321-27.371 50.537-27.371L50.537-27.091L49.429-27.023L49.429-27.440Q49.012-27.023 48.387-27.023Q47.956-27.023 47.584-27.235Q47.211-27.446 46.991-27.807Q46.770-28.168 46.770-28.602M48.445-27.245Q48.653-27.245 48.840-27.317Q49.026-27.388 49.180-27.525Q49.334-27.662 49.429-27.840L49.429-29.449Q49.344-29.596 49.199-29.716Q49.053-29.836 48.884-29.895Q48.715-29.955 48.534-29.955Q47.973-29.955 47.705-29.566Q47.437-29.176 47.437-28.595Q47.437-28.024 47.671-27.634Q47.905-27.245 48.445-27.245\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-33.682 42.264)\">\u003Cpath d=\"M11.083-28.602Q11.083-28.930 11.218-29.231Q11.353-29.531 11.589-29.752Q11.825-29.972 12.129-30.092Q12.434-30.212 12.758-30.212Q13.264-30.212 13.613-30.109Q13.961-30.007 13.961-29.631Q13.961-29.484 13.864-29.383Q13.767-29.282 13.620-29.282Q13.466-29.282 13.367-29.381Q13.268-29.480 13.268-29.631Q13.268-29.819 13.408-29.911Q13.206-29.962 12.765-29.962Q12.410-29.962 12.181-29.766Q11.952-29.569 11.851-29.260Q11.750-28.950 11.750-28.602Q11.750-28.253 11.876-27.947Q12.003-27.641 12.258-27.457Q12.512-27.272 12.868-27.272Q13.090-27.272 13.274-27.356Q13.459-27.440 13.594-27.595Q13.729-27.751 13.787-27.959Q13.801-28.014 13.855-28.014L13.968-28.014Q13.999-28.014 14.021-27.990Q14.043-27.966 14.043-27.932L14.043-27.911Q13.958-27.624 13.770-27.426Q13.582-27.228 13.317-27.125Q13.052-27.023 12.758-27.023Q12.328-27.023 11.940-27.229Q11.552-27.436 11.318-27.799Q11.083-28.161 11.083-28.602M16.299-27.091L14.696-27.091L14.696-27.371Q14.922-27.371 15.071-27.405Q15.219-27.440 15.219-27.580L15.219-31.199Q15.219-31.469 15.112-31.531Q15.004-31.592 14.696-31.592L14.696-31.873L15.773-31.948L15.773-27.580Q15.773-27.443 15.923-27.407Q16.074-27.371 16.299-27.371L16.299-27.091M16.853-28.626Q16.853-28.947 16.978-29.236Q17.102-29.525 17.328-29.748Q17.554-29.972 17.849-30.092Q18.145-30.212 18.463-30.212Q18.791-30.212 19.052-30.112Q19.314-30.013 19.490-29.831Q19.666-29.648 19.760-29.390Q19.854-29.132 19.854-28.800Q19.854-28.708 19.772-28.687L17.516-28.687L17.516-28.626Q17.516-28.038 17.800-27.655Q18.083-27.272 18.651-27.272Q18.972-27.272 19.240-27.465Q19.509-27.658 19.598-27.973Q19.604-28.014 19.680-28.028L19.772-28.028Q19.854-28.004 19.854-27.932Q19.854-27.925 19.847-27.898Q19.734-27.501 19.363-27.262Q18.993-27.023 18.569-27.023Q18.131-27.023 17.731-27.231Q17.331-27.440 17.092-27.807Q16.853-28.174 16.853-28.626M17.523-28.896L19.338-28.896Q19.338-29.173 19.240-29.425Q19.143-29.678 18.945-29.834Q18.747-29.989 18.463-29.989Q18.186-29.989 17.972-29.831Q17.759-29.672 17.641-29.417Q17.523-29.162 17.523-28.896M20.500-27.819Q20.500-28.151 20.724-28.378Q20.948-28.605 21.291-28.733Q21.635-28.862 22.007-28.914Q22.380-28.967 22.684-28.967L22.684-29.220Q22.684-29.425 22.576-29.605Q22.469-29.784 22.288-29.887Q22.106-29.989 21.898-29.989Q21.491-29.989 21.255-29.897Q21.344-29.860 21.390-29.776Q21.436-29.692 21.436-29.590Q21.436-29.494 21.390-29.415Q21.344-29.337 21.264-29.292Q21.184-29.248 21.095-29.248Q20.944-29.248 20.843-29.345Q20.743-29.443 20.743-29.590Q20.743-30.212 21.898-30.212Q22.110-30.212 22.359-30.148Q22.609-30.085 22.811-29.966Q23.012-29.846 23.139-29.661Q23.265-29.477 23.265-29.234L23.265-27.658Q23.265-27.542 23.327-27.446Q23.388-27.351 23.501-27.351Q23.610-27.351 23.675-27.445Q23.740-27.539 23.740-27.658L23.740-28.106L24.007-28.106L24.007-27.658Q24.007-27.388 23.779-27.223Q23.552-27.057 23.272-27.057Q23.063-27.057 22.927-27.211Q22.790-27.364 22.766-27.580Q22.619-27.313 22.337-27.168Q22.055-27.023 21.730-27.023Q21.454-27.023 21.170-27.098Q20.886-27.173 20.693-27.352Q20.500-27.532 20.500-27.819M21.115-27.819Q21.115-27.645 21.216-27.515Q21.317-27.385 21.472-27.315Q21.628-27.245 21.792-27.245Q22.011-27.245 22.219-27.342Q22.428-27.440 22.556-27.621Q22.684-27.802 22.684-28.028L22.684-28.756Q22.359-28.756 21.994-28.665Q21.628-28.574 21.372-28.362Q21.115-28.151 21.115-27.819M26.174-27.091L24.437-27.091L24.437-27.371Q24.666-27.371 24.815-27.405Q24.964-27.440 24.964-27.580L24.964-29.429Q24.964-29.699 24.856-29.760Q24.748-29.822 24.437-29.822L24.437-30.102L25.466-30.177L25.466-29.470Q25.596-29.778 25.839-29.977Q26.081-30.177 26.399-30.177Q26.618-30.177 26.789-30.053Q26.960-29.928 26.960-29.716Q26.960-29.579 26.861-29.480Q26.762-29.381 26.628-29.381Q26.492-29.381 26.393-29.480Q26.293-29.579 26.293-29.716Q26.293-29.856 26.393-29.955Q26.102-29.955 25.902-29.759Q25.702-29.562 25.610-29.268Q25.518-28.974 25.518-28.694L25.518-27.580Q25.518-27.371 26.174-27.371L26.174-27.091M27.503-28.626Q27.503-28.947 27.628-29.236Q27.753-29.525 27.978-29.748Q28.204-29.972 28.500-30.092Q28.795-30.212 29.113-30.212Q29.441-30.212 29.703-30.112Q29.964-30.013 30.140-29.831Q30.316-29.648 30.410-29.390Q30.504-29.132 30.504-28.800Q30.504-28.708 30.422-28.687L28.166-28.687L28.166-28.626Q28.166-28.038 28.450-27.655Q28.734-27.272 29.301-27.272Q29.623-27.272 29.891-27.465Q30.159-27.658 30.248-27.973Q30.255-28.014 30.330-28.028L30.422-28.028Q30.504-28.004 30.504-27.932Q30.504-27.925 30.498-27.898Q30.385-27.501 30.014-27.262Q29.643-27.023 29.219-27.023Q28.782-27.023 28.382-27.231Q27.982-27.440 27.743-27.807Q27.503-28.174 27.503-28.626M28.173-28.896L29.988-28.896Q29.988-29.173 29.891-29.425Q29.793-29.678 29.595-29.834Q29.397-29.989 29.113-29.989Q28.836-29.989 28.623-29.831Q28.409-29.672 28.291-29.417Q28.173-29.162 28.173-28.896M31.092-28.602Q31.092-28.940 31.232-29.231Q31.373-29.521 31.617-29.735Q31.861-29.948 32.165-30.063Q32.470-30.177 32.794-30.177Q33.064-30.177 33.328-30.078Q33.591-29.979 33.782-29.801L33.782-31.199Q33.782-31.469 33.675-31.531Q33.567-31.592 33.256-31.592L33.256-31.873L34.332-31.948L34.332-27.764Q34.332-27.576 34.387-27.493Q34.442-27.409 34.543-27.390Q34.644-27.371 34.859-27.371L34.859-27.091L33.751-27.023L33.751-27.440Q33.334-27.023 32.709-27.023Q32.278-27.023 31.906-27.235Q31.533-27.446 31.313-27.807Q31.092-28.168 31.092-28.602M32.767-27.245Q32.976-27.245 33.162-27.317Q33.348-27.388 33.502-27.525Q33.656-27.662 33.751-27.840L33.751-29.449Q33.666-29.596 33.521-29.716Q33.375-29.836 33.206-29.895Q33.037-29.955 32.856-29.955Q32.295-29.955 32.027-29.566Q31.759-29.176 31.759-28.595Q31.759-28.024 31.993-27.634Q32.227-27.245 32.767-27.245\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(100.272 -15.322)\">\u003Cpath d=\"M11.083-27.098L11.083-28.161Q11.083-28.185 11.111-28.212Q11.138-28.239 11.162-28.239L11.271-28.239Q11.336-28.239 11.350-28.181Q11.446-27.747 11.692-27.496Q11.938-27.245 12.352-27.245Q12.693-27.245 12.946-27.378Q13.199-27.511 13.199-27.819Q13.199-27.976 13.105-28.091Q13.011-28.205 12.873-28.274Q12.734-28.342 12.567-28.380L11.986-28.479Q11.630-28.547 11.357-28.768Q11.083-28.988 11.083-29.330Q11.083-29.579 11.195-29.754Q11.306-29.928 11.492-30.027Q11.678-30.126 11.894-30.169Q12.109-30.212 12.352-30.212Q12.765-30.212 13.045-30.030L13.261-30.205Q13.271-30.208 13.278-30.210Q13.285-30.212 13.295-30.212L13.346-30.212Q13.373-30.212 13.397-30.188Q13.421-30.164 13.421-30.136L13.421-29.289Q13.421-29.268 13.397-29.241Q13.373-29.214 13.346-29.214L13.233-29.214Q13.206-29.214 13.180-29.239Q13.155-29.265 13.155-29.289Q13.155-29.525 13.049-29.689Q12.943-29.853 12.760-29.935Q12.577-30.017 12.345-30.017Q12.017-30.017 11.760-29.914Q11.504-29.812 11.504-29.535Q11.504-29.340 11.687-29.231Q11.870-29.121 12.099-29.080L12.673-28.974Q12.919-28.926 13.133-28.798Q13.346-28.670 13.483-28.467Q13.620-28.263 13.620-28.014Q13.620-27.501 13.254-27.262Q12.888-27.023 12.352-27.023Q11.856-27.023 11.524-27.317L11.258-27.043Q11.237-27.023 11.210-27.023L11.162-27.023Q11.138-27.023 11.111-27.050Q11.083-27.077 11.083-27.098M15.930-27.091L14.296-27.091L14.296-27.371Q14.525-27.371 14.674-27.405Q14.823-27.440 14.823-27.580L14.823-29.429Q14.823-29.699 14.715-29.760Q14.607-29.822 14.296-29.822L14.296-30.102L15.356-30.177L15.356-29.528Q15.527-29.836 15.831-30.007Q16.135-30.177 16.480-30.177Q16.986-30.177 17.270-29.954Q17.554-29.730 17.554-29.234L17.554-27.580Q17.554-27.443 17.702-27.407Q17.851-27.371 18.077-27.371L18.077-27.091L16.446-27.091L16.446-27.371Q16.675-27.371 16.824-27.405Q16.973-27.440 16.973-27.580L16.973-29.220Q16.973-29.555 16.853-29.755Q16.733-29.955 16.419-29.955Q16.149-29.955 15.915-29.819Q15.681-29.682 15.542-29.448Q15.404-29.214 15.404-28.940L15.404-27.580Q15.404-27.443 15.554-27.407Q15.705-27.371 15.930-27.371L15.930-27.091M18.623-28.574Q18.623-28.916 18.759-29.215Q18.894-29.514 19.133-29.738Q19.372-29.962 19.690-30.087Q20.008-30.212 20.339-30.212Q20.784-30.212 21.184-29.996Q21.583-29.781 21.818-29.403Q22.052-29.026 22.052-28.574Q22.052-28.233 21.910-27.949Q21.768-27.665 21.524-27.458Q21.279-27.252 20.970-27.137Q20.661-27.023 20.339-27.023Q19.909-27.023 19.507-27.224Q19.105-27.426 18.864-27.778Q18.623-28.130 18.623-28.574M20.339-27.272Q20.941-27.272 21.165-27.650Q21.389-28.028 21.389-28.660Q21.389-29.272 21.154-29.631Q20.920-29.989 20.339-29.989Q19.287-29.989 19.287-28.660Q19.287-28.028 19.512-27.650Q19.738-27.272 20.339-27.272\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -15.322)\">\u003Cpath d=\"M23.827-27.118L22.846-29.617Q22.785-29.760 22.667-29.795Q22.549-29.829 22.333-29.829L22.333-30.109L23.813-30.109L23.813-29.829Q23.434-29.829 23.434-29.668Q23.434-29.658 23.448-29.617L24.162-27.785L24.835-29.490Q24.805-29.562 24.805-29.590Q24.805-29.617 24.777-29.617Q24.716-29.764 24.598-29.796Q24.480-29.829 24.268-29.829L24.268-30.109L25.666-30.109L25.666-29.829Q25.290-29.829 25.290-29.668Q25.290-29.637 25.297-29.617L26.052-27.679L26.739-29.429Q26.760-29.480 26.760-29.535Q26.760-29.675 26.647-29.752Q26.534-29.829 26.394-29.829L26.394-30.109L27.614-30.109L27.614-29.829Q27.409-29.829 27.254-29.723Q27.098-29.617 27.026-29.429L26.121-27.118Q26.086-27.023 25.974-27.023L25.905-27.023Q25.796-27.023 25.758-27.118L24.976-29.121L24.189-27.118Q24.155-27.023 24.042-27.023L23.974-27.023Q23.865-27.023 23.827-27.118\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -15.322)\">\u003Cpath d=\"M30.901-27.819Q30.901-28.151 31.124-28.378Q31.348-28.605 31.692-28.733Q32.035-28.862 32.408-28.914Q32.780-28.967 33.085-28.967L33.085-29.220Q33.085-29.425 32.977-29.605Q32.869-29.784 32.688-29.887Q32.507-29.989 32.299-29.989Q31.892-29.989 31.656-29.897Q31.745-29.860 31.791-29.776Q31.837-29.692 31.837-29.590Q31.837-29.494 31.791-29.415Q31.745-29.337 31.664-29.292Q31.584-29.248 31.495-29.248Q31.345-29.248 31.244-29.345Q31.143-29.443 31.143-29.590Q31.143-30.212 32.299-30.212Q32.510-30.212 32.760-30.148Q33.009-30.085 33.211-29.966Q33.413-29.846 33.539-29.661Q33.666-29.477 33.666-29.234L33.666-27.658Q33.666-27.542 33.727-27.446Q33.789-27.351 33.902-27.351Q34.011-27.351 34.076-27.445Q34.141-27.539 34.141-27.658L34.141-28.106L34.407-28.106L34.407-27.658Q34.407-27.388 34.180-27.223Q33.953-27.057 33.673-27.057Q33.464-27.057 33.327-27.211Q33.191-27.364 33.167-27.580Q33.020-27.313 32.738-27.168Q32.456-27.023 32.131-27.023Q31.854-27.023 31.570-27.098Q31.287-27.173 31.094-27.352Q30.901-27.532 30.901-27.819M31.516-27.819Q31.516-27.645 31.617-27.515Q31.717-27.385 31.873-27.315Q32.028-27.245 32.193-27.245Q32.411-27.245 32.620-27.342Q32.828-27.440 32.956-27.621Q33.085-27.802 33.085-28.028L33.085-28.756Q32.760-28.756 32.394-28.665Q32.028-28.574 31.772-28.362Q31.516-28.151 31.516-27.819M36.506-27.091L34.872-27.091L34.872-27.371Q35.101-27.371 35.250-27.405Q35.399-27.440 35.399-27.580L35.399-31.199Q35.399-31.469 35.291-31.531Q35.183-31.592 34.872-31.592L34.872-31.873L35.952-31.948L35.952-29.562Q36.058-29.747 36.236-29.889Q36.414-30.030 36.622-30.104Q36.831-30.177 37.056-30.177Q37.562-30.177 37.846-29.954Q38.130-29.730 38.130-29.234L38.130-27.580Q38.130-27.443 38.278-27.407Q38.427-27.371 38.653-27.371L38.653-27.091L37.022-27.091L37.022-27.371Q37.251-27.371 37.400-27.405Q37.549-27.440 37.549-27.580L37.549-29.220Q37.549-29.555 37.429-29.755Q37.309-29.955 36.995-29.955Q36.725-29.955 36.491-29.819Q36.257-29.682 36.118-29.448Q35.980-29.214 35.980-28.940L35.980-27.580Q35.980-27.443 36.130-27.407Q36.280-27.371 36.506-27.371L36.506-27.091M39.199-28.626Q39.199-28.947 39.324-29.236Q39.449-29.525 39.674-29.748Q39.900-29.972 40.196-30.092Q40.491-30.212 40.809-30.212Q41.137-30.212 41.399-30.112Q41.660-30.013 41.836-29.831Q42.012-29.648 42.106-29.390Q42.200-29.132 42.200-28.800Q42.200-28.708 42.118-28.687L39.862-28.687L39.862-28.626Q39.862-28.038 40.146-27.655Q40.430-27.272 40.997-27.272Q41.319-27.272 41.587-27.465Q41.855-27.658 41.944-27.973Q41.951-28.014 42.026-28.028L42.118-28.028Q42.200-28.004 42.200-27.932Q42.200-27.925 42.194-27.898Q42.081-27.501 41.710-27.262Q41.339-27.023 40.915-27.023Q40.478-27.023 40.078-27.231Q39.678-27.440 39.439-27.807Q39.199-28.174 39.199-28.626M39.869-28.896L41.684-28.896Q41.684-29.173 41.587-29.425Q41.489-29.678 41.291-29.834Q41.093-29.989 40.809-29.989Q40.532-29.989 40.319-29.831Q40.105-29.672 39.987-29.417Q39.869-29.162 39.869-28.896M42.846-27.819Q42.846-28.151 43.070-28.378Q43.294-28.605 43.638-28.733Q43.981-28.862 44.354-28.914Q44.726-28.967 45.030-28.967L45.030-29.220Q45.030-29.425 44.923-29.605Q44.815-29.784 44.634-29.887Q44.453-29.989 44.244-29.989Q43.838-29.989 43.602-29.897Q43.691-29.860 43.737-29.776Q43.783-29.692 43.783-29.590Q43.783-29.494 43.737-29.415Q43.691-29.337 43.610-29.292Q43.530-29.248 43.441-29.248Q43.291-29.248 43.190-29.345Q43.089-29.443 43.089-29.590Q43.089-30.212 44.244-30.212Q44.456-30.212 44.706-30.148Q44.955-30.085 45.157-29.966Q45.359-29.846 45.485-29.661Q45.611-29.477 45.611-29.234L45.611-27.658Q45.611-27.542 45.673-27.446Q45.735-27.351 45.847-27.351Q45.957-27.351 46.022-27.445Q46.087-27.539 46.087-27.658L46.087-28.106L46.353-28.106L46.353-27.658Q46.353-27.388 46.126-27.223Q45.899-27.057 45.618-27.057Q45.410-27.057 45.273-27.211Q45.136-27.364 45.112-27.580Q44.965-27.313 44.684-27.168Q44.402-27.023 44.077-27.023Q43.800-27.023 43.516-27.098Q43.233-27.173 43.039-27.352Q42.846-27.532 42.846-27.819M43.462-27.819Q43.462-27.645 43.562-27.515Q43.663-27.385 43.819-27.315Q43.974-27.245 44.138-27.245Q44.357-27.245 44.566-27.342Q44.774-27.440 44.902-27.621Q45.030-27.802 45.030-28.028L45.030-28.756Q44.706-28.756 44.340-28.665Q43.974-28.574 43.718-28.362Q43.462-28.151 43.462-27.819M46.770-28.602Q46.770-28.940 46.910-29.231Q47.050-29.521 47.295-29.735Q47.539-29.948 47.843-30.063Q48.148-30.177 48.472-30.177Q48.742-30.177 49.006-30.078Q49.269-29.979 49.460-29.801L49.460-31.199Q49.460-31.469 49.352-31.531Q49.245-31.592 48.934-31.592L48.934-31.873L50.010-31.948L50.010-27.764Q50.010-27.576 50.065-27.493Q50.120-27.409 50.221-27.390Q50.321-27.371 50.537-27.371L50.537-27.091L49.429-27.023L49.429-27.440Q49.012-27.023 48.387-27.023Q47.956-27.023 47.584-27.235Q47.211-27.446 46.991-27.807Q46.770-28.168 46.770-28.602M48.445-27.245Q48.653-27.245 48.840-27.317Q49.026-27.388 49.180-27.525Q49.334-27.662 49.429-27.840L49.429-29.449Q49.344-29.596 49.199-29.716Q49.053-29.836 48.884-29.895Q48.715-29.955 48.534-29.955Q47.973-29.955 47.705-29.566Q47.437-29.176 47.437-28.595Q47.437-28.024 47.671-27.634Q47.905-27.245 48.445-27.245\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -15.322)\">\u003Cpath d=\"M55.514-27.091L53.962-27.091L53.962-27.371Q54.188-27.371 54.337-27.405Q54.485-27.440 54.485-27.580L54.485-29.429Q54.485-29.617 54.437-29.701Q54.390-29.784 54.292-29.803Q54.195-29.822 53.983-29.822L53.983-30.102L55.039-30.177L55.039-27.580Q55.039-27.440 55.171-27.405Q55.302-27.371 55.514-27.371L55.514-27.091M54.243-31.398Q54.243-31.569 54.366-31.688Q54.489-31.808 54.660-31.808Q54.827-31.808 54.950-31.688Q55.073-31.569 55.073-31.398Q55.073-31.223 54.950-31.100Q54.827-30.977 54.660-30.977Q54.489-30.977 54.366-31.100Q54.243-31.223 54.243-31.398M56.160-27.098L56.160-28.161Q56.160-28.185 56.187-28.212Q56.215-28.239 56.239-28.239L56.348-28.239Q56.413-28.239 56.427-28.181Q56.522-27.747 56.769-27.496Q57.015-27.245 57.428-27.245Q57.770-27.245 58.023-27.378Q58.276-27.511 58.276-27.819Q58.276-27.976 58.182-28.091Q58.088-28.205 57.949-28.274Q57.811-28.342 57.644-28.380L57.062-28.479Q56.707-28.547 56.434-28.768Q56.160-28.988 56.160-29.330Q56.160-29.579 56.271-29.754Q56.382-29.928 56.569-30.027Q56.755-30.126 56.970-30.169Q57.186-30.212 57.428-30.212Q57.842-30.212 58.122-30.030L58.337-30.205Q58.348-30.208 58.354-30.210Q58.361-30.212 58.372-30.212L58.423-30.212Q58.450-30.212 58.474-30.188Q58.498-30.164 58.498-30.136L58.498-29.289Q58.498-29.268 58.474-29.241Q58.450-29.214 58.423-29.214L58.310-29.214Q58.283-29.214 58.257-29.239Q58.231-29.265 58.231-29.289Q58.231-29.525 58.125-29.689Q58.020-29.853 57.837-29.935Q57.654-30.017 57.421-30.017Q57.093-30.017 56.837-29.914Q56.581-29.812 56.581-29.535Q56.581-29.340 56.763-29.231Q56.946-29.121 57.175-29.080L57.750-28.974Q57.996-28.926 58.209-28.798Q58.423-28.670 58.560-28.467Q58.696-28.263 58.696-28.014Q58.696-27.501 58.331-27.262Q57.965-27.023 57.428-27.023Q56.933-27.023 56.601-27.317L56.334-27.043Q56.314-27.023 56.287-27.023L56.239-27.023Q56.215-27.023 56.187-27.050Q56.160-27.077 56.160-27.098\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -15.322)\">\u003Cpath d=\"M62.083-27.819Q62.083-28.151 62.306-28.378Q62.530-28.605 62.874-28.733Q63.217-28.862 63.590-28.914Q63.962-28.967 64.267-28.967L64.267-29.220Q64.267-29.425 64.159-29.605Q64.051-29.784 63.870-29.887Q63.689-29.989 63.481-29.989Q63.074-29.989 62.838-29.897Q62.927-29.860 62.973-29.776Q63.019-29.692 63.019-29.590Q63.019-29.494 62.973-29.415Q62.927-29.337 62.846-29.292Q62.766-29.248 62.677-29.248Q62.527-29.248 62.426-29.345Q62.325-29.443 62.325-29.590Q62.325-30.212 63.481-30.212Q63.692-30.212 63.942-30.148Q64.191-30.085 64.393-29.966Q64.595-29.846 64.721-29.661Q64.848-29.477 64.848-29.234L64.848-27.658Q64.848-27.542 64.909-27.446Q64.971-27.351 65.084-27.351Q65.193-27.351 65.258-27.445Q65.323-27.539 65.323-27.658L65.323-28.106L65.589-28.106L65.589-27.658Q65.589-27.388 65.362-27.223Q65.135-27.057 64.855-27.057Q64.646-27.057 64.509-27.211Q64.373-27.364 64.349-27.580Q64.202-27.313 63.920-27.168Q63.638-27.023 63.313-27.023Q63.036-27.023 62.752-27.098Q62.469-27.173 62.276-27.352Q62.083-27.532 62.083-27.819M62.698-27.819Q62.698-27.645 62.799-27.515Q62.899-27.385 63.055-27.315Q63.210-27.245 63.375-27.245Q63.593-27.245 63.802-27.342Q64.010-27.440 64.138-27.621Q64.267-27.802 64.267-28.028L64.267-28.756Q63.942-28.756 63.576-28.665Q63.210-28.574 62.954-28.362Q62.698-28.151 62.698-27.819M66.813-27.091L66.546-27.091L66.546-31.199Q66.546-31.469 66.439-31.531Q66.331-31.592 66.020-31.592L66.020-31.873L67.100-31.948L67.100-29.778Q67.309-29.969 67.594-30.073Q67.879-30.177 68.177-30.177Q68.495-30.177 68.792-30.056Q69.089-29.935 69.312-29.719Q69.534-29.504 69.660-29.219Q69.787-28.933 69.787-28.602Q69.787-28.157 69.547-27.793Q69.308-27.429 68.915-27.226Q68.522-27.023 68.078-27.023Q67.883-27.023 67.693-27.079Q67.503-27.135 67.343-27.240Q67.182-27.344 67.042-27.505L66.813-27.091M67.127-29.436L67.127-27.819Q67.264-27.559 67.505-27.402Q67.746-27.245 68.023-27.245Q68.317-27.245 68.529-27.352Q68.741-27.460 68.874-27.652Q69.007-27.843 69.065-28.082Q69.124-28.321 69.124-28.602Q69.124-28.961 69.030-29.265Q68.936-29.569 68.708-29.762Q68.481-29.955 68.115-29.955Q67.814-29.955 67.548-29.819Q67.281-29.682 67.127-29.436\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -15.322)\">\u003Cpath d=\"M70.601-28.574Q70.601-28.916 70.736-29.215Q70.871-29.514 71.111-29.738Q71.350-29.962 71.668-30.087Q71.986-30.212 72.317-30.212Q72.762-30.212 73.161-29.996Q73.561-29.781 73.796-29.403Q74.030-29.026 74.030-28.574Q74.030-28.233 73.888-27.949Q73.746-27.665 73.502-27.458Q73.257-27.252 72.948-27.137Q72.639-27.023 72.317-27.023Q71.887-27.023 71.485-27.224Q71.083-27.426 70.842-27.778Q70.601-28.130 70.601-28.574M72.317-27.272Q72.919-27.272 73.143-27.650Q73.367-28.028 73.367-28.660Q73.367-29.272 73.132-29.631Q72.898-29.989 72.317-29.989Q71.265-29.989 71.265-28.660Q71.265-28.028 71.490-27.650Q71.716-27.272 72.317-27.272M75.199-27.925L75.199-29.429Q75.199-29.699 75.091-29.760Q74.983-29.822 74.672-29.822L74.672-30.102L75.780-30.177L75.780-27.945L75.780-27.925Q75.780-27.645 75.831-27.501Q75.882-27.358 76.024-27.301Q76.166-27.245 76.453-27.245Q76.706-27.245 76.911-27.385Q77.116-27.525 77.232-27.751Q77.349-27.976 77.349-28.226L77.349-29.429Q77.349-29.699 77.241-29.760Q77.133-29.822 76.822-29.822L76.822-30.102L77.930-30.177L77.930-27.764Q77.930-27.573 77.983-27.491Q78.036-27.409 78.136-27.390Q78.237-27.371 78.453-27.371L78.453-27.091L77.376-27.023L77.376-27.587Q77.266-27.405 77.121-27.282Q76.976-27.159 76.790-27.091Q76.603-27.023 76.402-27.023Q75.199-27.023 75.199-27.925M79.567-27.932L79.567-29.829L78.928-29.829L78.928-30.051Q79.245-30.051 79.463-30.261Q79.680-30.471 79.780-30.781Q79.881-31.090 79.881-31.398L80.148-31.398L80.148-30.109L81.224-30.109L81.224-29.829L80.148-29.829L80.148-27.945Q80.148-27.669 80.252-27.470Q80.356-27.272 80.616-27.272Q80.773-27.272 80.879-27.376Q80.985-27.481 81.035-27.634Q81.084-27.788 81.084-27.945L81.084-28.359L81.351-28.359L81.351-27.932Q81.351-27.706 81.252-27.496Q81.153-27.286 80.968-27.154Q80.784-27.023 80.555-27.023Q80.117-27.023 79.842-27.260Q79.567-27.498 79.567-27.932\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -15.322)\">\u003Cpath d=\"M85.391-27.932L85.391-29.829L84.752-29.829L84.752-30.051Q85.070-30.051 85.287-30.261Q85.504-30.471 85.604-30.781Q85.705-31.090 85.705-31.398L85.972-31.398L85.972-30.109L87.049-30.109L87.049-29.829L85.972-29.829L85.972-27.945Q85.972-27.669 86.076-27.470Q86.180-27.272 86.440-27.272Q86.597-27.272 86.703-27.376Q86.809-27.481 86.859-27.634Q86.908-27.788 86.908-27.945L86.908-28.359L87.175-28.359L87.175-27.932Q87.175-27.706 87.076-27.496Q86.977-27.286 86.792-27.154Q86.608-27.023 86.379-27.023Q85.941-27.023 85.666-27.260Q85.391-27.498 85.391-27.932\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -15.322)\">\u003Cpath d=\"M89.162-27.118L88.181-29.617Q88.120-29.760 88.002-29.795Q87.884-29.829 87.668-29.829L87.668-30.109L89.148-30.109L89.148-29.829Q88.769-29.829 88.769-29.668Q88.769-29.658 88.783-29.617L89.497-27.785L90.170-29.490Q90.140-29.562 90.140-29.590Q90.140-29.617 90.112-29.617Q90.051-29.764 89.933-29.796Q89.815-29.829 89.603-29.829L89.603-30.109L91.001-30.109L91.001-29.829Q90.625-29.829 90.625-29.668Q90.625-29.637 90.632-29.617L91.387-27.679L92.074-29.429Q92.095-29.480 92.095-29.535Q92.095-29.675 91.982-29.752Q91.869-29.829 91.729-29.829L91.729-30.109L92.949-30.109L92.949-29.829Q92.744-29.829 92.589-29.723Q92.433-29.617 92.361-29.429L91.456-27.118Q91.421-27.023 91.309-27.023L91.240-27.023Q91.131-27.023 91.093-27.118L90.311-29.121L89.524-27.118Q89.490-27.023 89.377-27.023L89.309-27.023Q89.200-27.023 89.162-27.118M95.096-27.091L93.544-27.091L93.544-27.371Q93.770-27.371 93.918-27.405Q94.067-27.440 94.067-27.580L94.067-29.429Q94.067-29.617 94.019-29.701Q93.971-29.784 93.874-29.803Q93.776-29.822 93.564-29.822L93.564-30.102L94.621-30.177L94.621-27.580Q94.621-27.440 94.752-27.405Q94.884-27.371 95.096-27.371L95.096-27.091M93.824-31.398Q93.824-31.569 93.947-31.688Q94.070-31.808 94.241-31.808Q94.409-31.808 94.532-31.688Q94.655-31.569 94.655-31.398Q94.655-31.223 94.532-31.100Q94.409-30.977 94.241-30.977Q94.070-30.977 93.947-31.100Q93.824-31.223 93.824-31.398M95.742-28.602Q95.742-28.930 95.877-29.231Q96.012-29.531 96.248-29.752Q96.483-29.972 96.788-30.092Q97.092-30.212 97.417-30.212Q97.922-30.212 98.271-30.109Q98.620-30.007 98.620-29.631Q98.620-29.484 98.522-29.383Q98.425-29.282 98.278-29.282Q98.124-29.282 98.025-29.381Q97.926-29.480 97.926-29.631Q97.926-29.819 98.066-29.911Q97.864-29.962 97.423-29.962Q97.068-29.962 96.839-29.766Q96.610-29.569 96.509-29.260Q96.408-28.950 96.408-28.602Q96.408-28.253 96.535-27.947Q96.661-27.641 96.916-27.457Q97.170-27.272 97.526-27.272Q97.748-27.272 97.933-27.356Q98.117-27.440 98.252-27.595Q98.387-27.751 98.445-27.959Q98.459-28.014 98.514-28.014L98.627-28.014Q98.657-28.014 98.679-27.990Q98.702-27.966 98.702-27.932L98.702-27.911Q98.616-27.624 98.428-27.426Q98.240-27.228 97.975-27.125Q97.710-27.023 97.417-27.023Q96.986-27.023 96.598-27.229Q96.210-27.436 95.976-27.799Q95.742-28.161 95.742-28.602M99.249-28.626Q99.249-28.947 99.373-29.236Q99.498-29.525 99.724-29.748Q99.949-29.972 100.245-30.092Q100.541-30.212 100.858-30.212Q101.187-30.212 101.448-30.112Q101.710-30.013 101.886-29.831Q102.062-29.648 102.156-29.390Q102.250-29.132 102.250-28.800Q102.250-28.708 102.168-28.687L99.912-28.687L99.912-28.626Q99.912-28.038 100.195-27.655Q100.479-27.272 101.046-27.272Q101.368-27.272 101.636-27.465Q101.904-27.658 101.993-27.973Q102-28.014 102.075-28.028L102.168-28.028Q102.250-28.004 102.250-27.932Q102.250-27.925 102.243-27.898Q102.130-27.501 101.759-27.262Q101.388-27.023 100.964-27.023Q100.527-27.023 100.127-27.231Q99.727-27.440 99.488-27.807Q99.249-28.174 99.249-28.626M99.918-28.896L101.733-28.896Q101.733-29.173 101.636-29.425Q101.539-29.678 101.340-29.834Q101.142-29.989 100.858-29.989Q100.582-29.989 100.368-29.831Q100.154-29.672 100.036-29.417Q99.918-29.162 99.918-28.896\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -15.322)\">\u003Cpath d=\"M107.196-25.734L105.566-25.734L105.566-26.014Q105.795-26.014 105.944-26.049Q106.092-26.083 106.092-26.223L106.092-29.569Q106.092-29.740 105.956-29.781Q105.819-29.822 105.566-29.822L105.566-30.102L106.646-30.177L106.646-29.771Q106.868-29.972 107.155-30.075Q107.443-30.177 107.750-30.177Q108.177-30.177 108.541-29.964Q108.905-29.750 109.119-29.386Q109.333-29.022 109.333-28.602Q109.333-28.157 109.093-27.793Q108.854-27.429 108.461-27.226Q108.068-27.023 107.624-27.023Q107.357-27.023 107.109-27.123Q106.862-27.224 106.674-27.405L106.674-26.223Q106.674-26.086 106.822-26.050Q106.971-26.014 107.196-26.014L107.196-25.734M106.674-29.422L106.674-27.812Q106.807-27.559 107.050-27.402Q107.292-27.245 107.569-27.245Q107.897-27.245 108.150-27.446Q108.403-27.648 108.536-27.966Q108.670-28.284 108.670-28.602Q108.670-28.831 108.605-29.060Q108.540-29.289 108.412-29.487Q108.283-29.685 108.089-29.805Q107.894-29.924 107.661-29.924Q107.367-29.924 107.099-29.795Q106.831-29.665 106.674-29.422M111.636-27.091L110.033-27.091L110.033-27.371Q110.259-27.371 110.408-27.405Q110.556-27.440 110.556-27.580L110.556-31.199Q110.556-31.469 110.449-31.531Q110.341-31.592 110.033-31.592L110.033-31.873L111.110-31.948L111.110-27.580Q111.110-27.443 111.260-27.407Q111.411-27.371 111.636-27.371L111.636-27.091M112.190-28.574Q112.190-28.916 112.325-29.215Q112.460-29.514 112.699-29.738Q112.939-29.962 113.257-30.087Q113.574-30.212 113.906-30.212Q114.350-30.212 114.750-29.996Q115.150-29.781 115.384-29.403Q115.618-29.026 115.618-28.574Q115.618-28.233 115.477-27.949Q115.335-27.665 115.090-27.458Q114.846-27.252 114.537-27.137Q114.227-27.023 113.906-27.023Q113.475-27.023 113.074-27.224Q112.672-27.426 112.431-27.778Q112.190-28.130 112.190-28.574M113.906-27.272Q114.508-27.272 114.731-27.650Q114.955-28.028 114.955-28.660Q114.955-29.272 114.721-29.631Q114.487-29.989 113.906-29.989Q112.853-29.989 112.853-28.660Q112.853-28.028 113.079-27.650Q113.304-27.272 113.906-27.272\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -15.322)\">\u003Cpath d=\"M117.391-27.118L116.410-29.617Q116.349-29.760 116.231-29.795Q116.113-29.829 115.897-29.829L115.897-30.109L117.377-30.109L117.377-29.829Q116.998-29.829 116.998-29.668Q116.998-29.658 117.012-29.617L117.726-27.785L118.399-29.490Q118.369-29.562 118.369-29.590Q118.369-29.617 118.341-29.617Q118.280-29.764 118.162-29.796Q118.044-29.829 117.832-29.829L117.832-30.109L119.230-30.109L119.230-29.829Q118.854-29.829 118.854-29.668Q118.854-29.637 118.861-29.617L119.616-27.679L120.303-29.429Q120.324-29.480 120.324-29.535Q120.324-29.675 120.211-29.752Q120.098-29.829 119.958-29.829L119.958-30.109L121.178-30.109L121.178-29.829Q120.973-29.829 120.818-29.723Q120.662-29.617 120.590-29.429L119.685-27.118Q119.650-27.023 119.538-27.023L119.469-27.023Q119.360-27.023 119.322-27.118L118.540-29.121L117.753-27.118Q117.719-27.023 117.606-27.023L117.538-27.023Q117.429-27.023 117.391-27.118\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -15.322)\">\u003Cpath d=\"M126.074-27.091L124.471-27.091L124.471-27.371Q124.697-27.371 124.846-27.405Q124.994-27.440 124.994-27.580L124.994-31.199Q124.994-31.469 124.887-31.531Q124.779-31.592 124.471-31.592L124.471-31.873L125.548-31.948L125.548-27.580Q125.548-27.443 125.698-27.407Q125.849-27.371 126.074-27.371L126.074-27.091M126.628-28.626Q126.628-28.947 126.753-29.236Q126.878-29.525 127.103-29.748Q127.329-29.972 127.624-30.092Q127.920-30.212 128.238-30.212Q128.566-30.212 128.828-30.112Q129.089-30.013 129.265-29.831Q129.441-29.648 129.535-29.390Q129.629-29.132 129.629-28.800Q129.629-28.708 129.547-28.687L127.291-28.687L127.291-28.626Q127.291-28.038 127.575-27.655Q127.859-27.272 128.426-27.272Q128.747-27.272 129.016-27.465Q129.284-27.658 129.373-27.973Q129.380-28.014 129.455-28.028L129.547-28.028Q129.629-28.004 129.629-27.932Q129.629-27.925 129.622-27.898Q129.509-27.501 129.139-27.262Q128.768-27.023 128.344-27.023Q127.906-27.023 127.507-27.231Q127.107-27.440 126.867-27.807Q126.628-28.174 126.628-28.626M127.298-28.896L129.113-28.896Q129.113-29.173 129.016-29.425Q128.918-29.678 128.720-29.834Q128.522-29.989 128.238-29.989Q127.961-29.989 127.748-29.831Q127.534-29.672 127.416-29.417Q127.298-29.162 127.298-28.896M131.899-27.091L130.265-27.091L130.265-27.371Q130.494-27.371 130.643-27.405Q130.791-27.440 130.791-27.580L130.791-29.429Q130.791-29.699 130.684-29.760Q130.576-29.822 130.265-29.822L130.265-30.102L131.324-30.177L131.324-29.528Q131.495-29.836 131.800-30.007Q132.104-30.177 132.449-30.177Q132.955-30.177 133.238-29.954Q133.522-29.730 133.522-29.234L133.522-27.580Q133.522-27.443 133.671-27.407Q133.820-27.371 134.045-27.371L134.045-27.091L132.415-27.091L132.415-27.371Q132.644-27.371 132.792-27.405Q132.941-27.440 132.941-27.580L132.941-29.220Q132.941-29.555 132.821-29.755Q132.702-29.955 132.387-29.955Q132.117-29.955 131.883-29.819Q131.649-29.682 131.511-29.448Q131.372-29.214 131.372-28.940L131.372-27.580Q131.372-27.443 131.523-27.407Q131.673-27.371 131.899-27.371L131.899-27.091M134.592-26.558Q134.592-26.804 134.789-26.988Q134.985-27.173 135.241-27.252Q135.105-27.364 135.033-27.525Q134.961-27.686 134.961-27.867Q134.961-28.188 135.173-28.434Q134.838-28.732 134.838-29.142Q134.838-29.603 135.228-29.890Q135.617-30.177 136.096-30.177Q136.568-30.177 136.903-29.931Q137.077-30.085 137.287-30.167Q137.497-30.249 137.726-30.249Q137.890-30.249 138.012-30.142Q138.133-30.034 138.133-29.870Q138.133-29.774 138.061-29.702Q137.989-29.631 137.897-29.631Q137.798-29.631 137.728-29.704Q137.658-29.778 137.658-29.877Q137.658-29.931 137.672-29.962L137.678-29.976Q137.685-29.996 137.694-30.007Q137.702-30.017 137.706-30.024Q137.350-30.024 137.063-29.801Q137.350-29.508 137.350-29.142Q137.350-28.827 137.166-28.595Q136.981-28.362 136.692-28.234Q136.404-28.106 136.096-28.106Q135.894-28.106 135.703-28.156Q135.511-28.205 135.334-28.315Q135.241-28.188 135.241-28.045Q135.241-27.863 135.370-27.728Q135.498-27.593 135.682-27.593L136.315-27.593Q136.762-27.593 137.132-27.522Q137.501-27.450 137.760-27.221Q138.020-26.992 138.020-26.558Q138.020-26.237 137.725-26.035Q137.429-25.833 137.026-25.744Q136.622-25.655 136.308-25.655Q135.990-25.655 135.587-25.744Q135.183-25.833 134.888-26.035Q134.592-26.237 134.592-26.558M135.047-26.558Q135.047-26.329 135.265-26.180Q135.484-26.031 135.776-25.963Q136.069-25.895 136.308-25.895Q136.472-25.895 136.680-25.931Q136.889-25.966 137.096-26.047Q137.302-26.127 137.434-26.255Q137.566-26.383 137.566-26.558Q137.566-26.910 137.185-27.004Q136.803-27.098 136.301-27.098L135.682-27.098Q135.443-27.098 135.245-26.947Q135.047-26.797 135.047-26.558M136.096-28.345Q136.762-28.345 136.762-29.142Q136.762-29.942 136.096-29.942Q135.426-29.942 135.426-29.142Q135.426-28.345 136.096-28.345M139.141-27.932L139.141-29.829L138.502-29.829L138.502-30.051Q138.820-30.051 139.037-30.261Q139.254-30.471 139.355-30.781Q139.456-31.090 139.456-31.398L139.722-31.398L139.722-30.109L140.799-30.109L140.799-29.829L139.722-29.829L139.722-27.945Q139.722-27.669 139.827-27.470Q139.931-27.272 140.191-27.272Q140.348-27.272 140.454-27.376Q140.560-27.481 140.609-27.634Q140.659-27.788 140.659-27.945L140.659-28.359L140.925-28.359L140.925-27.932Q140.925-27.706 140.826-27.496Q140.727-27.286 140.543-27.154Q140.358-27.023 140.129-27.023Q139.692-27.023 139.416-27.260Q139.141-27.498 139.141-27.932M143.417-27.091L141.783-27.091L141.783-27.371Q142.012-27.371 142.161-27.405Q142.310-27.440 142.310-27.580L142.310-31.199Q142.310-31.469 142.202-31.531Q142.094-31.592 141.783-31.592L141.783-31.873L142.863-31.948L142.863-29.562Q142.969-29.747 143.147-29.889Q143.325-30.030 143.533-30.104Q143.742-30.177 143.967-30.177Q144.473-30.177 144.757-29.954Q145.041-29.730 145.041-29.234L145.041-27.580Q145.041-27.443 145.189-27.407Q145.338-27.371 145.564-27.371L145.564-27.091L143.933-27.091L143.933-27.371Q144.162-27.371 144.311-27.405Q144.460-27.440 144.460-27.580L144.460-29.220Q144.460-29.555 144.340-29.755Q144.220-29.955 143.906-29.955Q143.636-29.955 143.402-29.819Q143.168-29.682 143.029-29.448Q142.891-29.214 142.891-28.940L142.891-27.580Q142.891-27.443 143.041-27.407Q143.192-27.371 143.417-27.371\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(100.272 1.75)\">\u003Cpath d=\"M11.083-28.602Q11.083-28.930 11.218-29.231Q11.353-29.531 11.589-29.752Q11.825-29.972 12.129-30.092Q12.434-30.212 12.758-30.212Q13.264-30.212 13.613-30.109Q13.961-30.007 13.961-29.631Q13.961-29.484 13.864-29.383Q13.767-29.282 13.620-29.282Q13.466-29.282 13.367-29.381Q13.268-29.480 13.268-29.631Q13.268-29.819 13.408-29.911Q13.206-29.962 12.765-29.962Q12.410-29.962 12.181-29.766Q11.952-29.569 11.851-29.260Q11.750-28.950 11.750-28.602Q11.750-28.253 11.876-27.947Q12.003-27.641 12.258-27.457Q12.512-27.272 12.868-27.272Q13.090-27.272 13.274-27.356Q13.459-27.440 13.594-27.595Q13.729-27.751 13.787-27.959Q13.801-28.014 13.855-28.014L13.968-28.014Q13.999-28.014 14.021-27.990Q14.043-27.966 14.043-27.932L14.043-27.911Q13.958-27.624 13.770-27.426Q13.582-27.228 13.317-27.125Q13.052-27.023 12.758-27.023Q12.328-27.023 11.940-27.229Q11.552-27.436 11.318-27.799Q11.083-28.161 11.083-28.602M16.299-27.091L14.696-27.091L14.696-27.371Q14.922-27.371 15.071-27.405Q15.219-27.440 15.219-27.580L15.219-31.199Q15.219-31.469 15.112-31.531Q15.004-31.592 14.696-31.592L14.696-31.873L15.773-31.948L15.773-27.580Q15.773-27.443 15.923-27.407Q16.074-27.371 16.299-27.371L16.299-27.091M16.853-28.626Q16.853-28.947 16.978-29.236Q17.102-29.525 17.328-29.748Q17.554-29.972 17.849-30.092Q18.145-30.212 18.463-30.212Q18.791-30.212 19.052-30.112Q19.314-30.013 19.490-29.831Q19.666-29.648 19.760-29.390Q19.854-29.132 19.854-28.800Q19.854-28.708 19.772-28.687L17.516-28.687L17.516-28.626Q17.516-28.038 17.800-27.655Q18.083-27.272 18.651-27.272Q18.972-27.272 19.240-27.465Q19.509-27.658 19.598-27.973Q19.604-28.014 19.680-28.028L19.772-28.028Q19.854-28.004 19.854-27.932Q19.854-27.925 19.847-27.898Q19.734-27.501 19.363-27.262Q18.993-27.023 18.569-27.023Q18.131-27.023 17.731-27.231Q17.331-27.440 17.092-27.807Q16.853-28.174 16.853-28.626M17.523-28.896L19.338-28.896Q19.338-29.173 19.240-29.425Q19.143-29.678 18.945-29.834Q18.747-29.989 18.463-29.989Q18.186-29.989 17.972-29.831Q17.759-29.672 17.641-29.417Q17.523-29.162 17.523-28.896M20.500-27.819Q20.500-28.151 20.724-28.378Q20.948-28.605 21.291-28.733Q21.635-28.862 22.007-28.914Q22.380-28.967 22.684-28.967L22.684-29.220Q22.684-29.425 22.576-29.605Q22.469-29.784 22.288-29.887Q22.106-29.989 21.898-29.989Q21.491-29.989 21.255-29.897Q21.344-29.860 21.390-29.776Q21.436-29.692 21.436-29.590Q21.436-29.494 21.390-29.415Q21.344-29.337 21.264-29.292Q21.184-29.248 21.095-29.248Q20.944-29.248 20.843-29.345Q20.743-29.443 20.743-29.590Q20.743-30.212 21.898-30.212Q22.110-30.212 22.359-30.148Q22.609-30.085 22.811-29.966Q23.012-29.846 23.139-29.661Q23.265-29.477 23.265-29.234L23.265-27.658Q23.265-27.542 23.327-27.446Q23.388-27.351 23.501-27.351Q23.610-27.351 23.675-27.445Q23.740-27.539 23.740-27.658L23.740-28.106L24.007-28.106L24.007-27.658Q24.007-27.388 23.779-27.223Q23.552-27.057 23.272-27.057Q23.063-27.057 22.927-27.211Q22.790-27.364 22.766-27.580Q22.619-27.313 22.337-27.168Q22.055-27.023 21.730-27.023Q21.454-27.023 21.170-27.098Q20.886-27.173 20.693-27.352Q20.500-27.532 20.500-27.819M21.115-27.819Q21.115-27.645 21.216-27.515Q21.317-27.385 21.472-27.315Q21.628-27.245 21.792-27.245Q22.011-27.245 22.219-27.342Q22.428-27.440 22.556-27.621Q22.684-27.802 22.684-28.028L22.684-28.756Q22.359-28.756 21.994-28.665Q21.628-28.574 21.372-28.362Q21.115-28.151 21.115-27.819M26.174-27.091L24.437-27.091L24.437-27.371Q24.666-27.371 24.815-27.405Q24.964-27.440 24.964-27.580L24.964-29.429Q24.964-29.699 24.856-29.760Q24.748-29.822 24.437-29.822L24.437-30.102L25.466-30.177L25.466-29.470Q25.596-29.778 25.839-29.977Q26.081-30.177 26.399-30.177Q26.618-30.177 26.789-30.053Q26.960-29.928 26.960-29.716Q26.960-29.579 26.861-29.480Q26.762-29.381 26.628-29.381Q26.492-29.381 26.393-29.480Q26.293-29.579 26.293-29.716Q26.293-29.856 26.393-29.955Q26.102-29.955 25.902-29.759Q25.702-29.562 25.610-29.268Q25.518-28.974 25.518-28.694L25.518-27.580Q25.518-27.371 26.174-27.371L26.174-27.091M27.503-28.626Q27.503-28.947 27.628-29.236Q27.753-29.525 27.978-29.748Q28.204-29.972 28.500-30.092Q28.795-30.212 29.113-30.212Q29.441-30.212 29.703-30.112Q29.964-30.013 30.140-29.831Q30.316-29.648 30.410-29.390Q30.504-29.132 30.504-28.800Q30.504-28.708 30.422-28.687L28.166-28.687L28.166-28.626Q28.166-28.038 28.450-27.655Q28.734-27.272 29.301-27.272Q29.623-27.272 29.891-27.465Q30.159-27.658 30.248-27.973Q30.255-28.014 30.330-28.028L30.422-28.028Q30.504-28.004 30.504-27.932Q30.504-27.925 30.498-27.898Q30.385-27.501 30.014-27.262Q29.643-27.023 29.219-27.023Q28.782-27.023 28.382-27.231Q27.982-27.440 27.743-27.807Q27.503-28.174 27.503-28.626M28.173-28.896L29.988-28.896Q29.988-29.173 29.891-29.425Q29.793-29.678 29.595-29.834Q29.397-29.989 29.113-29.989Q28.836-29.989 28.623-29.831Q28.409-29.672 28.291-29.417Q28.173-29.162 28.173-28.896M31.092-28.602Q31.092-28.940 31.232-29.231Q31.373-29.521 31.617-29.735Q31.861-29.948 32.165-30.063Q32.470-30.177 32.794-30.177Q33.064-30.177 33.328-30.078Q33.591-29.979 33.782-29.801L33.782-31.199Q33.782-31.469 33.675-31.531Q33.567-31.592 33.256-31.592L33.256-31.873L34.332-31.948L34.332-27.764Q34.332-27.576 34.387-27.493Q34.442-27.409 34.543-27.390Q34.644-27.371 34.859-27.371L34.859-27.091L33.751-27.023L33.751-27.440Q33.334-27.023 32.709-27.023Q32.278-27.023 31.906-27.235Q31.533-27.446 31.313-27.807Q31.092-28.168 31.092-28.602M32.767-27.245Q32.976-27.245 33.162-27.317Q33.348-27.388 33.502-27.525Q33.656-27.662 33.751-27.840L33.751-29.449Q33.666-29.596 33.521-29.716Q33.375-29.836 33.206-29.895Q33.037-29.955 32.856-29.955Q32.295-29.955 32.027-29.566Q31.759-29.176 31.759-28.595Q31.759-28.024 31.993-27.634Q32.227-27.245 32.767-27.245\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 1.75)\">\u003Cpath d=\"M39.880-25.734L38.250-25.734L38.250-26.014Q38.479-26.014 38.628-26.049Q38.776-26.083 38.776-26.223L38.776-29.569Q38.776-29.740 38.640-29.781Q38.503-29.822 38.250-29.822L38.250-30.102L39.330-30.177L39.330-29.771Q39.552-29.972 39.839-30.075Q40.127-30.177 40.434-30.177Q40.861-30.177 41.225-29.964Q41.589-29.750 41.803-29.386Q42.017-29.022 42.017-28.602Q42.017-28.157 41.777-27.793Q41.538-27.429 41.145-27.226Q40.752-27.023 40.308-27.023Q40.041-27.023 39.793-27.123Q39.546-27.224 39.358-27.405L39.358-26.223Q39.358-26.086 39.506-26.050Q39.655-26.014 39.880-26.014L39.880-25.734M39.358-29.422L39.358-27.812Q39.491-27.559 39.734-27.402Q39.976-27.245 40.253-27.245Q40.581-27.245 40.834-27.446Q41.087-27.648 41.220-27.966Q41.354-28.284 41.354-28.602Q41.354-28.831 41.289-29.060Q41.224-29.289 41.096-29.487Q40.967-29.685 40.773-29.805Q40.578-29.924 40.345-29.924Q40.051-29.924 39.783-29.795Q39.515-29.665 39.358-29.422\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 1.75)\">\u003Cpath d=\"M42.827-28.626Q42.827-28.947 42.952-29.236Q43.077-29.525 43.303-29.748Q43.528-29.972 43.824-30.092Q44.119-30.212 44.437-30.212Q44.765-30.212 45.027-30.112Q45.288-30.013 45.464-29.831Q45.640-29.648 45.734-29.390Q45.828-29.132 45.828-28.800Q45.828-28.708 45.746-28.687L43.491-28.687L43.491-28.626Q43.491-28.038 43.774-27.655Q44.058-27.272 44.625-27.272Q44.947-27.272 45.215-27.465Q45.483-27.658 45.572-27.973Q45.579-28.014 45.654-28.028L45.746-28.028Q45.828-28.004 45.828-27.932Q45.828-27.925 45.822-27.898Q45.709-27.501 45.338-27.262Q44.967-27.023 44.543-27.023Q44.106-27.023 43.706-27.231Q43.306-27.440 43.067-27.807Q42.827-28.174 42.827-28.626M43.497-28.896L45.312-28.896Q45.312-29.173 45.215-29.425Q45.117-29.678 44.919-29.834Q44.721-29.989 44.437-29.989Q44.160-29.989 43.947-29.831Q43.733-29.672 43.615-29.417Q43.497-29.162 43.497-28.896M48.166-27.091L46.430-27.091L46.430-27.371Q46.659-27.371 46.808-27.405Q46.956-27.440 46.956-27.580L46.956-29.429Q46.956-29.699 46.849-29.760Q46.741-29.822 46.430-29.822L46.430-30.102L47.459-30.177L47.459-29.470Q47.589-29.778 47.831-29.977Q48.074-30.177 48.392-30.177Q48.611-30.177 48.782-30.053Q48.952-29.928 48.952-29.716Q48.952-29.579 48.853-29.480Q48.754-29.381 48.621-29.381Q48.484-29.381 48.385-29.480Q48.286-29.579 48.286-29.716Q48.286-29.856 48.385-29.955Q48.095-29.955 47.895-29.759Q47.695-29.562 47.602-29.268Q47.510-28.974 47.510-28.694L47.510-27.580Q47.510-27.371 48.166-27.371\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 1.75)\">\u003Cpath d=\"M52.243-28.602Q52.243-28.930 52.378-29.231Q52.513-29.531 52.749-29.752Q52.985-29.972 53.289-30.092Q53.594-30.212 53.918-30.212Q54.424-30.212 54.773-30.109Q55.121-30.007 55.121-29.631Q55.121-29.484 55.024-29.383Q54.927-29.282 54.780-29.282Q54.626-29.282 54.527-29.381Q54.428-29.480 54.428-29.631Q54.428-29.819 54.568-29.911Q54.366-29.962 53.925-29.962Q53.570-29.962 53.341-29.766Q53.112-29.569 53.011-29.260Q52.910-28.950 52.910-28.602Q52.910-28.253 53.036-27.947Q53.163-27.641 53.418-27.457Q53.672-27.272 54.028-27.272Q54.250-27.272 54.434-27.356Q54.619-27.440 54.754-27.595Q54.889-27.751 54.947-27.959Q54.961-28.014 55.015-28.014L55.128-28.014Q55.159-28.014 55.181-27.990Q55.203-27.966 55.203-27.932L55.203-27.911Q55.118-27.624 54.930-27.426Q54.742-27.228 54.477-27.125Q54.212-27.023 53.918-27.023Q53.488-27.023 53.100-27.229Q52.712-27.436 52.478-27.799Q52.243-28.161 52.243-28.602M56.126-25.956Q56.256-25.888 56.393-25.888Q56.564-25.888 56.714-25.977Q56.865-26.066 56.976-26.211Q57.087-26.356 57.165-26.524L57.429-27.091L56.260-29.617Q56.184-29.764 56.054-29.796Q55.925-29.829 55.692-29.829L55.692-30.109L57.213-30.109L57.213-29.829Q56.865-29.829 56.865-29.682Q56.868-29.661 56.870-29.644Q56.871-29.627 56.871-29.617L57.729-27.758L58.502-29.429Q58.536-29.497 58.536-29.576Q58.536-29.689 58.452-29.759Q58.368-29.829 58.256-29.829L58.256-30.109L59.452-30.109L59.452-29.829Q59.233-29.829 59.061-29.725Q58.888-29.620 58.796-29.429L57.459-26.524Q57.288-26.154 57.018-25.908Q56.748-25.662 56.393-25.662Q56.123-25.662 55.904-25.828Q55.685-25.994 55.685-26.257Q55.685-26.394 55.778-26.483Q55.870-26.571 56.010-26.571Q56.147-26.571 56.236-26.483Q56.325-26.394 56.325-26.257Q56.325-26.154 56.272-26.076Q56.219-25.997 56.126-25.956M59.992-28.602Q59.992-28.930 60.127-29.231Q60.262-29.531 60.498-29.752Q60.734-29.972 61.038-30.092Q61.342-30.212 61.667-30.212Q62.173-30.212 62.521-30.109Q62.870-30.007 62.870-29.631Q62.870-29.484 62.773-29.383Q62.675-29.282 62.528-29.282Q62.374-29.282 62.275-29.381Q62.176-29.480 62.176-29.631Q62.176-29.819 62.316-29.911Q62.115-29.962 61.674-29.962Q61.318-29.962 61.089-29.766Q60.860-29.569 60.759-29.260Q60.658-28.950 60.658-28.602Q60.658-28.253 60.785-27.947Q60.911-27.641 61.166-27.457Q61.421-27.272 61.776-27.272Q61.998-27.272 62.183-27.356Q62.367-27.440 62.502-27.595Q62.637-27.751 62.696-27.959Q62.709-28.014 62.764-28.014L62.877-28.014Q62.908-28.014 62.930-27.990Q62.952-27.966 62.952-27.932L62.952-27.911Q62.867-27.624 62.679-27.426Q62.491-27.228 62.226-27.125Q61.961-27.023 61.667-27.023Q61.236-27.023 60.848-27.229Q60.460-27.436 60.226-27.799Q59.992-28.161 59.992-28.602M65.208-27.091L63.605-27.091L63.605-27.371Q63.830-27.371 63.979-27.405Q64.128-27.440 64.128-27.580L64.128-31.199Q64.128-31.469 64.020-31.531Q63.912-31.592 63.605-31.592L63.605-31.873L64.681-31.948L64.681-27.580Q64.681-27.443 64.832-27.407Q64.982-27.371 65.208-27.371L65.208-27.091M65.762-28.626Q65.762-28.947 65.886-29.236Q66.011-29.525 66.237-29.748Q66.462-29.972 66.758-30.092Q67.054-30.212 67.371-30.212Q67.700-30.212 67.961-30.112Q68.222-30.013 68.398-29.831Q68.575-29.648 68.669-29.390Q68.762-29.132 68.762-28.800Q68.762-28.708 68.680-28.687L66.425-28.687L66.425-28.626Q66.425-28.038 66.708-27.655Q66.992-27.272 67.559-27.272Q67.881-27.272 68.149-27.465Q68.417-27.658 68.506-27.973Q68.513-28.014 68.588-28.028L68.680-28.028Q68.762-28.004 68.762-27.932Q68.762-27.925 68.756-27.898Q68.643-27.501 68.272-27.262Q67.901-27.023 67.477-27.023Q67.040-27.023 66.640-27.231Q66.240-27.440 66.001-27.807Q65.762-28.174 65.762-28.626M66.431-28.896L68.246-28.896Q68.246-29.173 68.149-29.425Q68.052-29.678 67.853-29.834Q67.655-29.989 67.371-29.989Q67.095-29.989 66.881-29.831Q66.667-29.672 66.549-29.417Q66.431-29.162 66.431-28.896\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 1.75)\">\u003Cpath d=\"M73.687-27.091L72.135-27.091L72.135-27.371Q72.361-27.371 72.510-27.405Q72.658-27.440 72.658-27.580L72.658-29.429Q72.658-29.617 72.610-29.701Q72.563-29.784 72.465-29.803Q72.368-29.822 72.156-29.822L72.156-30.102L73.212-30.177L73.212-27.580Q73.212-27.440 73.344-27.405Q73.475-27.371 73.687-27.371L73.687-27.091M72.416-31.398Q72.416-31.569 72.539-31.688Q72.662-31.808 72.833-31.808Q73-31.808 73.123-31.688Q73.246-31.569 73.246-31.398Q73.246-31.223 73.123-31.100Q73-30.977 72.833-30.977Q72.662-30.977 72.539-31.100Q72.416-31.223 72.416-31.398M74.333-27.098L74.333-28.161Q74.333-28.185 74.360-28.212Q74.388-28.239 74.412-28.239L74.521-28.239Q74.586-28.239 74.600-28.181Q74.695-27.747 74.942-27.496Q75.188-27.245 75.601-27.245Q75.943-27.245 76.196-27.378Q76.449-27.511 76.449-27.819Q76.449-27.976 76.355-28.091Q76.261-28.205 76.122-28.274Q75.984-28.342 75.817-28.380L75.235-28.479Q74.880-28.547 74.607-28.768Q74.333-28.988 74.333-29.330Q74.333-29.579 74.444-29.754Q74.555-29.928 74.742-30.027Q74.928-30.126 75.143-30.169Q75.359-30.212 75.601-30.212Q76.015-30.212 76.295-30.030L76.510-30.205Q76.521-30.208 76.527-30.210Q76.534-30.212 76.545-30.212L76.596-30.212Q76.623-30.212 76.647-30.188Q76.671-30.164 76.671-30.136L76.671-29.289Q76.671-29.268 76.647-29.241Q76.623-29.214 76.596-29.214L76.483-29.214Q76.456-29.214 76.430-29.239Q76.404-29.265 76.404-29.289Q76.404-29.525 76.298-29.689Q76.193-29.853 76.010-29.935Q75.827-30.017 75.594-30.017Q75.266-30.017 75.010-29.914Q74.754-29.812 74.754-29.535Q74.754-29.340 74.936-29.231Q75.119-29.121 75.348-29.080L75.923-28.974Q76.169-28.926 76.382-28.798Q76.596-28.670 76.733-28.467Q76.869-28.263 76.869-28.014Q76.869-27.501 76.504-27.262Q76.138-27.023 75.601-27.023Q75.106-27.023 74.774-27.317L74.507-27.043Q74.487-27.023 74.460-27.023L74.412-27.023Q74.388-27.023 74.360-27.050Q74.333-27.077 74.333-27.098\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 1.75)\">\u003Cpath d=\"M80.255-27.819Q80.255-28.151 80.478-28.378Q80.702-28.605 81.046-28.733Q81.389-28.862 81.762-28.914Q82.134-28.967 82.439-28.967L82.439-29.220Q82.439-29.425 82.331-29.605Q82.223-29.784 82.042-29.887Q81.861-29.989 81.653-29.989Q81.246-29.989 81.010-29.897Q81.099-29.860 81.145-29.776Q81.191-29.692 81.191-29.590Q81.191-29.494 81.145-29.415Q81.099-29.337 81.018-29.292Q80.938-29.248 80.849-29.248Q80.699-29.248 80.598-29.345Q80.497-29.443 80.497-29.590Q80.497-30.212 81.653-30.212Q81.864-30.212 82.114-30.148Q82.363-30.085 82.565-29.966Q82.767-29.846 82.893-29.661Q83.020-29.477 83.020-29.234L83.020-27.658Q83.020-27.542 83.081-27.446Q83.143-27.351 83.256-27.351Q83.365-27.351 83.430-27.445Q83.495-27.539 83.495-27.658L83.495-28.106L83.761-28.106L83.761-27.658Q83.761-27.388 83.534-27.223Q83.307-27.057 83.027-27.057Q82.818-27.057 82.681-27.211Q82.545-27.364 82.521-27.580Q82.374-27.313 82.092-27.168Q81.810-27.023 81.485-27.023Q81.208-27.023 80.924-27.098Q80.641-27.173 80.448-27.352Q80.255-27.532 80.255-27.819M80.870-27.819Q80.870-27.645 80.971-27.515Q81.071-27.385 81.227-27.315Q81.382-27.245 81.547-27.245Q81.765-27.245 81.974-27.342Q82.182-27.440 82.310-27.621Q82.439-27.802 82.439-28.028L82.439-28.756Q82.114-28.756 81.748-28.665Q81.382-28.574 81.126-28.362Q80.870-28.151 80.870-27.819M84.985-27.091L84.718-27.091L84.718-31.199Q84.718-31.469 84.611-31.531Q84.503-31.592 84.192-31.592L84.192-31.873L85.272-31.948L85.272-29.778Q85.481-29.969 85.766-30.073Q86.051-30.177 86.349-30.177Q86.667-30.177 86.964-30.056Q87.261-29.935 87.484-29.719Q87.706-29.504 87.832-29.219Q87.959-28.933 87.959-28.602Q87.959-28.157 87.719-27.793Q87.480-27.429 87.087-27.226Q86.694-27.023 86.250-27.023Q86.055-27.023 85.865-27.079Q85.675-27.135 85.515-27.240Q85.354-27.344 85.214-27.505L84.985-27.091M85.299-29.436L85.299-27.819Q85.436-27.559 85.677-27.402Q85.918-27.245 86.195-27.245Q86.489-27.245 86.701-27.352Q86.913-27.460 87.046-27.652Q87.179-27.843 87.237-28.082Q87.296-28.321 87.296-28.602Q87.296-28.961 87.202-29.265Q87.108-29.569 86.880-29.762Q86.653-29.955 86.287-29.955Q85.986-29.955 85.720-29.819Q85.453-29.682 85.299-29.436\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 1.75)\">\u003Cpath d=\"M88.773-28.574Q88.773-28.916 88.908-29.215Q89.043-29.514 89.283-29.738Q89.522-29.962 89.840-30.087Q90.158-30.212 90.489-30.212Q90.934-30.212 91.333-29.996Q91.733-29.781 91.968-29.403Q92.202-29.026 92.202-28.574Q92.202-28.233 92.060-27.949Q91.918-27.665 91.674-27.458Q91.429-27.252 91.120-27.137Q90.811-27.023 90.489-27.023Q90.059-27.023 89.657-27.224Q89.255-27.426 89.014-27.778Q88.773-28.130 88.773-28.574M90.489-27.272Q91.091-27.272 91.315-27.650Q91.539-28.028 91.539-28.660Q91.539-29.272 91.304-29.631Q91.070-29.989 90.489-29.989Q89.437-29.989 89.437-28.660Q89.437-28.028 89.662-27.650Q89.888-27.272 90.489-27.272M93.371-27.925L93.371-29.429Q93.371-29.699 93.263-29.760Q93.155-29.822 92.844-29.822L92.844-30.102L93.952-30.177L93.952-27.945L93.952-27.925Q93.952-27.645 94.003-27.501Q94.054-27.358 94.196-27.301Q94.338-27.245 94.625-27.245Q94.878-27.245 95.083-27.385Q95.288-27.525 95.404-27.751Q95.521-27.976 95.521-28.226L95.521-29.429Q95.521-29.699 95.413-29.760Q95.305-29.822 94.994-29.822L94.994-30.102L96.102-30.177L96.102-27.764Q96.102-27.573 96.155-27.491Q96.208-27.409 96.308-27.390Q96.409-27.371 96.625-27.371L96.625-27.091L95.548-27.023L95.548-27.587Q95.438-27.405 95.293-27.282Q95.148-27.159 94.962-27.091Q94.775-27.023 94.574-27.023Q93.371-27.023 93.371-27.925M97.739-27.932L97.739-29.829L97.100-29.829L97.100-30.051Q97.417-30.051 97.635-30.261Q97.852-30.471 97.952-30.781Q98.053-31.090 98.053-31.398L98.320-31.398L98.320-30.109L99.396-30.109L99.396-29.829L98.320-29.829L98.320-27.945Q98.320-27.669 98.424-27.470Q98.528-27.272 98.788-27.272Q98.945-27.272 99.051-27.376Q99.157-27.481 99.207-27.634Q99.256-27.788 99.256-27.945L99.256-28.359L99.523-28.359L99.523-27.932Q99.523-27.706 99.424-27.496Q99.325-27.286 99.140-27.154Q98.956-27.023 98.727-27.023Q98.289-27.023 98.014-27.260Q97.739-27.498 97.739-27.932\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 1.75)\">\u003Cpath d=\"M103.037-28.602Q103.037-28.940 103.178-29.231Q103.318-29.521 103.562-29.735Q103.806-29.948 104.111-30.063Q104.415-30.177 104.740-30.177Q105.010-30.177 105.273-30.078Q105.536-29.979 105.727-29.801L105.727-31.199Q105.727-31.469 105.620-31.531Q105.512-31.592 105.201-31.592L105.201-31.873L106.278-31.948L106.278-27.764Q106.278-27.576 106.332-27.493Q106.387-27.409 106.488-27.390Q106.589-27.371 106.804-27.371L106.804-27.091L105.697-27.023L105.697-27.440Q105.280-27.023 104.654-27.023Q104.223-27.023 103.851-27.235Q103.478-27.446 103.258-27.807Q103.037-28.168 103.037-28.602M104.712-27.245Q104.921-27.245 105.107-27.317Q105.293-27.388 105.447-27.525Q105.601-27.662 105.697-27.840L105.697-29.449Q105.611-29.596 105.466-29.716Q105.321-29.836 105.151-29.895Q104.982-29.955 104.801-29.955Q104.241-29.955 103.972-29.566Q103.704-29.176 103.704-28.595Q103.704-28.024 103.938-27.634Q104.172-27.245 104.712-27.245M107.412-28.574Q107.412-28.916 107.547-29.215Q107.682-29.514 107.922-29.738Q108.161-29.962 108.479-30.087Q108.797-30.212 109.128-30.212Q109.573-30.212 109.973-29.996Q110.372-29.781 110.607-29.403Q110.841-29.026 110.841-28.574Q110.841-28.233 110.699-27.949Q110.557-27.665 110.313-27.458Q110.068-27.252 109.759-27.137Q109.450-27.023 109.128-27.023Q108.698-27.023 108.296-27.224Q107.894-27.426 107.653-27.778Q107.412-28.130 107.412-28.574M109.128-27.272Q109.730-27.272 109.954-27.650Q110.178-28.028 110.178-28.660Q110.178-29.272 109.943-29.631Q109.709-29.989 109.128-29.989Q108.076-29.989 108.076-28.660Q108.076-28.028 108.301-27.650Q108.527-27.272 109.128-27.272M112.010-27.925L112.010-29.429Q112.010-29.699 111.902-29.760Q111.794-29.822 111.483-29.822L111.483-30.102L112.591-30.177L112.591-27.945L112.591-27.925Q112.591-27.645 112.642-27.501Q112.693-27.358 112.835-27.301Q112.977-27.245 113.264-27.245Q113.517-27.245 113.722-27.385Q113.927-27.525 114.043-27.751Q114.160-27.976 114.160-28.226L114.160-29.429Q114.160-29.699 114.052-29.760Q113.944-29.822 113.633-29.822L113.633-30.102L114.741-30.177L114.741-27.764Q114.741-27.573 114.794-27.491Q114.847-27.409 114.947-27.390Q115.048-27.371 115.264-27.371L115.264-27.091L114.187-27.023L114.187-27.587Q114.077-27.405 113.932-27.282Q113.787-27.159 113.601-27.091Q113.414-27.023 113.213-27.023Q112.010-27.023 112.010-27.925M116.658-27.091L116.391-27.091L116.391-31.199Q116.391-31.469 116.284-31.531Q116.176-31.592 115.865-31.592L115.865-31.873L116.945-31.948L116.945-29.778Q117.154-29.969 117.439-30.073Q117.724-30.177 118.022-30.177Q118.340-30.177 118.637-30.056Q118.934-29.935 119.157-29.719Q119.379-29.504 119.505-29.219Q119.632-28.933 119.632-28.602Q119.632-28.157 119.392-27.793Q119.153-27.429 118.760-27.226Q118.367-27.023 117.923-27.023Q117.728-27.023 117.538-27.079Q117.348-27.135 117.188-27.240Q117.027-27.344 116.887-27.505L116.658-27.091M116.973-29.436L116.973-27.819Q117.109-27.559 117.350-27.402Q117.591-27.245 117.868-27.245Q118.162-27.245 118.374-27.352Q118.586-27.460 118.719-27.652Q118.852-27.843 118.910-28.082Q118.969-28.321 118.969-28.602Q118.969-28.961 118.875-29.265Q118.781-29.569 118.553-29.762Q118.326-29.955 117.960-29.955Q117.660-29.955 117.393-29.819Q117.126-29.682 116.973-29.436M121.935-27.091L120.332-27.091L120.332-27.371Q120.558-27.371 120.707-27.405Q120.855-27.440 120.855-27.580L120.855-31.199Q120.855-31.469 120.748-31.531Q120.640-31.592 120.332-31.592L120.332-31.873L121.409-31.948L121.409-27.580Q121.409-27.443 121.559-27.407Q121.710-27.371 121.935-27.371L121.935-27.091M122.489-28.626Q122.489-28.947 122.614-29.236Q122.739-29.525 122.964-29.748Q123.190-29.972 123.485-30.092Q123.781-30.212 124.099-30.212Q124.427-30.212 124.689-30.112Q124.950-30.013 125.126-29.831Q125.302-29.648 125.396-29.390Q125.490-29.132 125.490-28.800Q125.490-28.708 125.408-28.687L123.152-28.687L123.152-28.626Q123.152-28.038 123.436-27.655Q123.720-27.272 124.287-27.272Q124.608-27.272 124.877-27.465Q125.145-27.658 125.234-27.973Q125.241-28.014 125.316-28.028L125.408-28.028Q125.490-28.004 125.490-27.932Q125.490-27.925 125.483-27.898Q125.370-27.501 125-27.262Q124.629-27.023 124.205-27.023Q123.767-27.023 123.368-27.231Q122.968-27.440 122.728-27.807Q122.489-28.174 122.489-28.626M123.159-28.896L124.974-28.896Q124.974-29.173 124.877-29.425Q124.779-29.678 124.581-29.834Q124.383-29.989 124.099-29.989Q123.822-29.989 123.608-29.831Q123.395-29.672 123.277-29.417Q123.159-29.162 123.159-28.896\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M11.083-27.098L11.083-28.161Q11.083-28.185 11.111-28.212Q11.138-28.239 11.162-28.239L11.271-28.239Q11.336-28.239 11.350-28.181Q11.446-27.747 11.692-27.496Q11.938-27.245 12.352-27.245Q12.693-27.245 12.946-27.378Q13.199-27.511 13.199-27.819Q13.199-27.976 13.105-28.091Q13.011-28.205 12.873-28.274Q12.734-28.342 12.567-28.380L11.986-28.479Q11.630-28.547 11.357-28.768Q11.083-28.988 11.083-29.330Q11.083-29.579 11.195-29.754Q11.306-29.928 11.492-30.027Q11.678-30.126 11.894-30.169Q12.109-30.212 12.352-30.212Q12.765-30.212 13.045-30.030L13.261-30.205Q13.271-30.208 13.278-30.210Q13.285-30.212 13.295-30.212L13.346-30.212Q13.373-30.212 13.397-30.188Q13.421-30.164 13.421-30.136L13.421-29.289Q13.421-29.268 13.397-29.241Q13.373-29.214 13.346-29.214L13.233-29.214Q13.206-29.214 13.180-29.239Q13.155-29.265 13.155-29.289Q13.155-29.525 13.049-29.689Q12.943-29.853 12.760-29.935Q12.577-30.017 12.345-30.017Q12.017-30.017 11.760-29.914Q11.504-29.812 11.504-29.535Q11.504-29.340 11.687-29.231Q11.870-29.121 12.099-29.080L12.673-28.974Q12.919-28.926 13.133-28.798Q13.346-28.670 13.483-28.467Q13.620-28.263 13.620-28.014Q13.620-27.501 13.254-27.262Q12.888-27.023 12.352-27.023Q11.856-27.023 11.524-27.317L11.258-27.043Q11.237-27.023 11.210-27.023L11.162-27.023Q11.138-27.023 11.111-27.050Q11.083-27.077 11.083-27.098M14.207-28.574Q14.207-28.916 14.342-29.215Q14.477-29.514 14.717-29.738Q14.956-29.962 15.274-30.087Q15.592-30.212 15.923-30.212Q16.368-30.212 16.768-29.996Q17.167-29.781 17.402-29.403Q17.636-29.026 17.636-28.574Q17.636-28.233 17.494-27.949Q17.352-27.665 17.108-27.458Q16.863-27.252 16.554-27.137Q16.245-27.023 15.923-27.023Q15.493-27.023 15.091-27.224Q14.689-27.426 14.448-27.778Q14.207-28.130 14.207-28.574M15.923-27.272Q16.525-27.272 16.749-27.650Q16.973-28.028 16.973-28.660Q16.973-29.272 16.738-29.631Q16.504-29.989 15.923-29.989Q14.871-29.989 14.871-28.660Q14.871-28.028 15.096-27.650Q15.322-27.272 15.923-27.272\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M20.891-28.626Q20.891-28.947 21.016-29.236Q21.141-29.525 21.367-29.748Q21.592-29.972 21.888-30.092Q22.183-30.212 22.501-30.212Q22.829-30.212 23.091-30.112Q23.352-30.013 23.528-29.831Q23.704-29.648 23.798-29.390Q23.892-29.132 23.892-28.800Q23.892-28.708 23.810-28.687L21.555-28.687L21.555-28.626Q21.555-28.038 21.838-27.655Q22.122-27.272 22.689-27.272Q23.011-27.272 23.279-27.465Q23.547-27.658 23.636-27.973Q23.643-28.014 23.718-28.028L23.810-28.028Q23.892-28.004 23.892-27.932Q23.892-27.925 23.886-27.898Q23.773-27.501 23.402-27.262Q23.031-27.023 22.607-27.023Q22.170-27.023 21.770-27.231Q21.370-27.440 21.131-27.807Q20.891-28.174 20.891-28.626M21.561-28.896L23.376-28.896Q23.376-29.173 23.279-29.425Q23.181-29.678 22.983-29.834Q22.785-29.989 22.501-29.989Q22.224-29.989 22.011-29.831Q21.797-29.672 21.679-29.417Q21.561-29.162 21.561-28.896M24.538-27.819Q24.538-28.151 24.762-28.378Q24.986-28.605 25.330-28.733Q25.673-28.862 26.046-28.914Q26.418-28.967 26.722-28.967L26.722-29.220Q26.722-29.425 26.615-29.605Q26.507-29.784 26.326-29.887Q26.145-29.989 25.936-29.989Q25.530-29.989 25.294-29.897Q25.383-29.860 25.429-29.776Q25.475-29.692 25.475-29.590Q25.475-29.494 25.429-29.415Q25.383-29.337 25.302-29.292Q25.222-29.248 25.133-29.248Q24.983-29.248 24.882-29.345Q24.781-29.443 24.781-29.590Q24.781-30.212 25.936-30.212Q26.148-30.212 26.398-30.148Q26.647-30.085 26.849-29.966Q27.051-29.846 27.177-29.661Q27.304-29.477 27.304-29.234L27.304-27.658Q27.304-27.542 27.365-27.446Q27.427-27.351 27.539-27.351Q27.649-27.351 27.714-27.445Q27.779-27.539 27.779-27.658L27.779-28.106L28.045-28.106L28.045-27.658Q28.045-27.388 27.818-27.223Q27.591-27.057 27.310-27.057Q27.102-27.057 26.965-27.211Q26.828-27.364 26.805-27.580Q26.658-27.313 26.376-27.168Q26.094-27.023 25.769-27.023Q25.492-27.023 25.208-27.098Q24.925-27.173 24.732-27.352Q24.538-27.532 24.538-27.819M25.154-27.819Q25.154-27.645 25.254-27.515Q25.355-27.385 25.511-27.315Q25.666-27.245 25.830-27.245Q26.049-27.245 26.258-27.342Q26.466-27.440 26.594-27.621Q26.722-27.802 26.722-28.028L26.722-28.756Q26.398-28.756 26.032-28.665Q25.666-28.574 25.410-28.362Q25.154-28.151 25.154-27.819M28.462-28.602Q28.462-28.930 28.597-29.231Q28.732-29.531 28.968-29.752Q29.204-29.972 29.508-30.092Q29.812-30.212 30.137-30.212Q30.643-30.212 30.992-30.109Q31.340-30.007 31.340-29.631Q31.340-29.484 31.243-29.383Q31.145-29.282 30.998-29.282Q30.845-29.282 30.745-29.381Q30.646-29.480 30.646-29.631Q30.646-29.819 30.786-29.911Q30.585-29.962 30.144-29.962Q29.788-29.962 29.559-29.766Q29.330-29.569 29.230-29.260Q29.129-28.950 29.129-28.602Q29.129-28.253 29.255-27.947Q29.382-27.641 29.636-27.457Q29.891-27.272 30.246-27.272Q30.469-27.272 30.653-27.356Q30.838-27.440 30.973-27.595Q31.108-27.751 31.166-27.959Q31.180-28.014 31.234-28.014L31.347-28.014Q31.378-28.014 31.400-27.990Q31.422-27.966 31.422-27.932L31.422-27.911Q31.337-27.624 31.149-27.426Q30.961-27.228 30.696-27.125Q30.431-27.023 30.137-27.023Q29.706-27.023 29.318-27.229Q28.930-27.436 28.696-27.799Q28.462-28.161 28.462-28.602\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M33.496-27.091L31.862-27.091L31.862-27.371Q32.091-27.371 32.240-27.405Q32.389-27.440 32.389-27.580L32.389-31.199Q32.389-31.469 32.281-31.531Q32.173-31.592 31.862-31.592L31.862-31.873L32.942-31.948L32.942-29.562Q33.048-29.747 33.226-29.889Q33.404-30.030 33.612-30.104Q33.821-30.177 34.046-30.177Q34.552-30.177 34.836-29.954Q35.120-29.730 35.120-29.234L35.120-27.580Q35.120-27.443 35.268-27.407Q35.417-27.371 35.643-27.371L35.643-27.091L34.012-27.091L34.012-27.371Q34.241-27.371 34.390-27.405Q34.539-27.440 34.539-27.580L34.539-29.220Q34.539-29.555 34.419-29.755Q34.299-29.955 33.985-29.955Q33.715-29.955 33.481-29.819Q33.247-29.682 33.108-29.448Q32.970-29.214 32.970-28.940L32.970-27.580Q32.970-27.443 33.120-27.407Q33.271-27.371 33.496-27.371\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M40.675-27.091L38.939-27.091L38.939-27.371Q39.168-27.371 39.317-27.405Q39.465-27.440 39.465-27.580L39.465-29.429Q39.465-29.699 39.358-29.760Q39.250-29.822 38.939-29.822L38.939-30.102L39.968-30.177L39.968-29.470Q40.098-29.778 40.340-29.977Q40.583-30.177 40.901-30.177Q41.120-30.177 41.291-30.053Q41.462-29.928 41.462-29.716Q41.462-29.579 41.362-29.480Q41.263-29.381 41.130-29.381Q40.993-29.381 40.894-29.480Q40.795-29.579 40.795-29.716Q40.795-29.856 40.894-29.955Q40.604-29.955 40.404-29.759Q40.204-29.562 40.111-29.268Q40.019-28.974 40.019-28.694L40.019-27.580Q40.019-27.371 40.675-27.371L40.675-27.091M42.620-27.925L42.620-29.429Q42.620-29.699 42.513-29.760Q42.405-29.822 42.094-29.822L42.094-30.102L43.201-30.177L43.201-27.945L43.201-27.925Q43.201-27.645 43.253-27.501Q43.304-27.358 43.446-27.301Q43.588-27.245 43.875-27.245Q44.128-27.245 44.333-27.385Q44.538-27.525 44.654-27.751Q44.770-27.976 44.770-28.226L44.770-29.429Q44.770-29.699 44.663-29.760Q44.555-29.822 44.244-29.822L44.244-30.102L45.351-30.177L45.351-27.764Q45.351-27.573 45.404-27.491Q45.457-27.409 45.558-27.390Q45.659-27.371 45.874-27.371L45.874-27.091L44.798-27.023L44.798-27.587Q44.688-27.405 44.543-27.282Q44.398-27.159 44.211-27.091Q44.025-27.023 43.823-27.023Q42.620-27.023 42.620-27.925M48.144-27.091L46.510-27.091L46.510-27.371Q46.739-27.371 46.888-27.405Q47.036-27.440 47.036-27.580L47.036-29.429Q47.036-29.699 46.929-29.760Q46.821-29.822 46.510-29.822L46.510-30.102L47.569-30.177L47.569-29.528Q47.740-29.836 48.045-30.007Q48.349-30.177 48.694-30.177Q49.200-30.177 49.484-29.954Q49.767-29.730 49.767-29.234L49.767-27.580Q49.767-27.443 49.916-27.407Q50.065-27.371 50.290-27.371L50.290-27.091L48.660-27.091L48.660-27.371Q48.889-27.371 49.038-27.405Q49.186-27.440 49.186-27.580L49.186-29.220Q49.186-29.555 49.067-29.755Q48.947-29.955 48.632-29.955Q48.362-29.955 48.128-29.819Q47.894-29.682 47.756-29.448Q47.617-29.214 47.617-28.940L47.617-27.580Q47.617-27.443 47.768-27.407Q47.918-27.371 48.144-27.371\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M53.637-27.819Q53.637-28.151 53.860-28.378Q54.084-28.605 54.428-28.733Q54.771-28.862 55.144-28.914Q55.516-28.967 55.821-28.967L55.821-29.220Q55.821-29.425 55.713-29.605Q55.605-29.784 55.424-29.887Q55.243-29.989 55.035-29.989Q54.628-29.989 54.392-29.897Q54.481-29.860 54.527-29.776Q54.573-29.692 54.573-29.590Q54.573-29.494 54.527-29.415Q54.481-29.337 54.400-29.292Q54.320-29.248 54.231-29.248Q54.081-29.248 53.980-29.345Q53.879-29.443 53.879-29.590Q53.879-30.212 55.035-30.212Q55.246-30.212 55.496-30.148Q55.745-30.085 55.947-29.966Q56.149-29.846 56.275-29.661Q56.402-29.477 56.402-29.234L56.402-27.658Q56.402-27.542 56.463-27.446Q56.525-27.351 56.638-27.351Q56.747-27.351 56.812-27.445Q56.877-27.539 56.877-27.658L56.877-28.106L57.143-28.106L57.143-27.658Q57.143-27.388 56.916-27.223Q56.689-27.057 56.409-27.057Q56.200-27.057 56.063-27.211Q55.927-27.364 55.903-27.580Q55.756-27.313 55.474-27.168Q55.192-27.023 54.867-27.023Q54.590-27.023 54.306-27.098Q54.023-27.173 53.830-27.352Q53.637-27.532 53.637-27.819M54.252-27.819Q54.252-27.645 54.353-27.515Q54.453-27.385 54.609-27.315Q54.764-27.245 54.929-27.245Q55.147-27.245 55.356-27.342Q55.564-27.440 55.692-27.621Q55.821-27.802 55.821-28.028L55.821-28.756Q55.496-28.756 55.130-28.665Q54.764-28.574 54.508-28.362Q54.252-28.151 54.252-27.819\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M58.939-27.118L57.811-29.617Q57.739-29.764 57.609-29.796Q57.479-29.829 57.250-29.829L57.250-30.109L58.764-30.109L58.764-29.829Q58.412-29.829 58.412-29.682Q58.412-29.637 58.423-29.617L59.287-27.699L60.067-29.429Q60.101-29.497 60.101-29.576Q60.101-29.689 60.017-29.759Q59.933-29.829 59.814-29.829L59.814-30.109L61.010-30.109L61.010-29.829Q60.791-29.829 60.620-29.726Q60.450-29.624 60.361-29.429L59.325-27.118Q59.277-27.023 59.171-27.023L59.093-27.023Q58.987-27.023 58.939-27.118\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M61.294-28.626Q61.294-28.947 61.419-29.236Q61.544-29.525 61.770-29.748Q61.995-29.972 62.291-30.092Q62.586-30.212 62.904-30.212Q63.232-30.212 63.494-30.112Q63.755-30.013 63.931-29.831Q64.107-29.648 64.201-29.390Q64.295-29.132 64.295-28.800Q64.295-28.708 64.213-28.687L61.958-28.687L61.958-28.626Q61.958-28.038 62.241-27.655Q62.525-27.272 63.092-27.272Q63.414-27.272 63.682-27.465Q63.950-27.658 64.039-27.973Q64.046-28.014 64.121-28.028L64.213-28.028Q64.295-28.004 64.295-27.932Q64.295-27.925 64.289-27.898Q64.176-27.501 63.805-27.262Q63.434-27.023 63.010-27.023Q62.573-27.023 62.173-27.231Q61.773-27.440 61.534-27.807Q61.294-28.174 61.294-28.626M61.964-28.896L63.779-28.896Q63.779-29.173 63.682-29.425Q63.584-29.678 63.386-29.834Q63.188-29.989 62.904-29.989Q62.627-29.989 62.414-29.831Q62.200-29.672 62.082-29.417Q61.964-29.162 61.964-28.896M66.633-27.091L64.897-27.091L64.897-27.371Q65.126-27.371 65.275-27.405Q65.423-27.440 65.423-27.580L65.423-29.429Q65.423-29.699 65.316-29.760Q65.208-29.822 64.897-29.822L64.897-30.102L65.926-30.177L65.926-29.470Q66.056-29.778 66.298-29.977Q66.541-30.177 66.859-30.177Q67.078-30.177 67.249-30.053Q67.419-29.928 67.419-29.716Q67.419-29.579 67.320-29.480Q67.221-29.381 67.088-29.381Q66.951-29.381 66.852-29.480Q66.753-29.579 66.753-29.716Q66.753-29.856 66.852-29.955Q66.562-29.955 66.362-29.759Q66.162-29.562 66.069-29.268Q65.977-28.974 65.977-28.694L65.977-27.580Q65.977-27.371 66.633-27.371L66.633-27.091M68.062-27.819Q68.062-28.151 68.286-28.378Q68.510-28.605 68.853-28.733Q69.197-28.862 69.569-28.914Q69.942-28.967 70.246-28.967L70.246-29.220Q70.246-29.425 70.138-29.605Q70.031-29.784 69.850-29.887Q69.668-29.989 69.460-29.989Q69.053-29.989 68.817-29.897Q68.906-29.860 68.952-29.776Q68.999-29.692 68.999-29.590Q68.999-29.494 68.952-29.415Q68.906-29.337 68.826-29.292Q68.746-29.248 68.657-29.248Q68.506-29.248 68.406-29.345Q68.305-29.443 68.305-29.590Q68.305-30.212 69.460-30.212Q69.672-30.212 69.921-30.148Q70.171-30.085 70.373-29.966Q70.574-29.846 70.701-29.661Q70.827-29.477 70.827-29.234L70.827-27.658Q70.827-27.542 70.889-27.446Q70.950-27.351 71.063-27.351Q71.172-27.351 71.237-27.445Q71.302-27.539 71.302-27.658L71.302-28.106L71.569-28.106L71.569-27.658Q71.569-27.388 71.342-27.223Q71.114-27.057 70.834-27.057Q70.625-27.057 70.489-27.211Q70.352-27.364 70.328-27.580Q70.181-27.313 69.899-27.168Q69.617-27.023 69.292-27.023Q69.016-27.023 68.732-27.098Q68.448-27.173 68.255-27.352Q68.062-27.532 68.062-27.819M68.677-27.819Q68.677-27.645 68.778-27.515Q68.879-27.385 69.034-27.315Q69.190-27.245 69.354-27.245Q69.573-27.245 69.781-27.342Q69.990-27.440 70.118-27.621Q70.246-27.802 70.246-28.028L70.246-28.756Q69.921-28.756 69.556-28.665Q69.190-28.574 68.934-28.362Q68.677-28.151 68.677-27.819M71.945-26.558Q71.945-26.804 72.141-26.988Q72.338-27.173 72.594-27.252Q72.458-27.364 72.386-27.525Q72.314-27.686 72.314-27.867Q72.314-28.188 72.526-28.434Q72.191-28.732 72.191-29.142Q72.191-29.603 72.581-29.890Q72.970-30.177 73.449-30.177Q73.920-30.177 74.255-29.931Q74.430-30.085 74.640-30.167Q74.850-30.249 75.079-30.249Q75.243-30.249 75.365-30.142Q75.486-30.034 75.486-29.870Q75.486-29.774 75.414-29.702Q75.342-29.631 75.250-29.631Q75.151-29.631 75.081-29.704Q75.011-29.778 75.011-29.877Q75.011-29.931 75.024-29.962L75.031-29.976Q75.038-29.996 75.047-30.007Q75.055-30.017 75.059-30.024Q74.703-30.024 74.416-29.801Q74.703-29.508 74.703-29.142Q74.703-28.827 74.519-28.595Q74.334-28.362 74.045-28.234Q73.756-28.106 73.449-28.106Q73.247-28.106 73.056-28.156Q72.864-28.205 72.687-28.315Q72.594-28.188 72.594-28.045Q72.594-27.863 72.722-27.728Q72.851-27.593 73.035-27.593L73.667-27.593Q74.115-27.593 74.484-27.522Q74.854-27.450 75.113-27.221Q75.373-26.992 75.373-26.558Q75.373-26.237 75.077-26.035Q74.782-25.833 74.378-25.744Q73.975-25.655 73.661-25.655Q73.343-25.655 72.939-25.744Q72.536-25.833 72.240-26.035Q71.945-26.237 71.945-26.558M72.399-26.558Q72.399-26.329 72.618-26.180Q72.837-26.031 73.129-25.963Q73.421-25.895 73.661-25.895Q73.825-25.895 74.033-25.931Q74.242-25.966 74.448-26.047Q74.655-26.127 74.787-26.255Q74.918-26.383 74.918-26.558Q74.918-26.910 74.537-27.004Q74.156-27.098 73.654-27.098L73.035-27.098Q72.796-27.098 72.598-26.947Q72.399-26.797 72.399-26.558M73.449-28.345Q74.115-28.345 74.115-29.142Q74.115-29.942 73.449-29.942Q72.779-29.942 72.779-29.142Q72.779-28.345 73.449-28.345M75.927-28.626Q75.927-28.947 76.052-29.236Q76.176-29.525 76.402-29.748Q76.627-29.972 76.923-30.092Q77.219-30.212 77.537-30.212Q77.865-30.212 78.126-30.112Q78.388-30.013 78.564-29.831Q78.740-29.648 78.834-29.390Q78.928-29.132 78.928-28.800Q78.928-28.708 78.846-28.687L76.590-28.687L76.590-28.626Q76.590-28.038 76.874-27.655Q77.157-27.272 77.725-27.272Q78.046-27.272 78.314-27.465Q78.583-27.658 78.671-27.973Q78.678-28.014 78.753-28.028L78.846-28.028Q78.928-28.004 78.928-27.932Q78.928-27.925 78.921-27.898Q78.808-27.501 78.437-27.262Q78.066-27.023 77.643-27.023Q77.205-27.023 76.805-27.231Q76.405-27.440 76.166-27.807Q75.927-28.174 75.927-28.626M76.597-28.896L78.412-28.896Q78.412-29.173 78.314-29.425Q78.217-29.678 78.019-29.834Q77.820-29.989 77.537-29.989Q77.260-29.989 77.046-29.831Q76.833-29.672 76.715-29.417Q76.597-29.162 76.597-28.896M79.516-27.098L79.516-28.161Q79.516-28.185 79.543-28.212Q79.570-28.239 79.594-28.239L79.704-28.239Q79.769-28.239 79.782-28.181Q79.878-27.747 80.124-27.496Q80.370-27.245 80.784-27.245Q81.125-27.245 81.378-27.378Q81.631-27.511 81.631-27.819Q81.631-27.976 81.537-28.091Q81.443-28.205 81.305-28.274Q81.167-28.342 80.999-28.380L80.418-28.479Q80.063-28.547 79.789-28.768Q79.516-28.988 79.516-29.330Q79.516-29.579 79.627-29.754Q79.738-29.928 79.924-30.027Q80.110-30.126 80.326-30.169Q80.541-30.212 80.784-30.212Q81.197-30.212 81.478-30.030L81.693-30.205Q81.703-30.208 81.710-30.210Q81.717-30.212 81.727-30.212L81.778-30.212Q81.806-30.212 81.830-30.188Q81.854-30.164 81.854-30.136L81.854-29.289Q81.854-29.268 81.830-29.241Q81.806-29.214 81.778-29.214L81.666-29.214Q81.638-29.214 81.613-29.239Q81.587-29.265 81.587-29.289Q81.587-29.525 81.481-29.689Q81.375-29.853 81.192-29.935Q81.009-30.017 80.777-30.017Q80.449-30.017 80.192-29.914Q79.936-29.812 79.936-29.535Q79.936-29.340 80.119-29.231Q80.302-29.121 80.531-29.080L81.105-28.974Q81.351-28.926 81.565-28.798Q81.778-28.670 81.915-28.467Q82.052-28.263 82.052-28.014Q82.052-27.501 81.686-27.262Q81.320-27.023 80.784-27.023Q80.288-27.023 79.957-27.317L79.690-27.043Q79.669-27.023 79.642-27.023L79.594-27.023Q79.570-27.023 79.543-27.050Q79.516-27.077 79.516-27.098\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M85.933-27.932L85.933-29.829L85.294-29.829L85.294-30.051Q85.612-30.051 85.829-30.261Q86.046-30.471 86.146-30.781Q86.247-31.090 86.247-31.398L86.514-31.398L86.514-30.109L87.591-30.109L87.591-29.829L86.514-29.829L86.514-27.945Q86.514-27.669 86.618-27.470Q86.722-27.272 86.982-27.272Q87.139-27.272 87.245-27.376Q87.351-27.481 87.401-27.634Q87.450-27.788 87.450-27.945L87.450-28.359L87.717-28.359L87.717-27.932Q87.717-27.706 87.618-27.496Q87.519-27.286 87.334-27.154Q87.150-27.023 86.921-27.023Q86.483-27.023 86.208-27.260Q85.933-27.498 85.933-27.932\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M89.704-27.118L88.723-29.617Q88.662-29.760 88.544-29.795Q88.426-29.829 88.210-29.829L88.210-30.109L89.690-30.109L89.690-29.829Q89.311-29.829 89.311-29.668Q89.311-29.658 89.325-29.617L90.039-27.785L90.712-29.490Q90.682-29.562 90.682-29.590Q90.682-29.617 90.654-29.617Q90.593-29.764 90.475-29.796Q90.357-29.829 90.145-29.829L90.145-30.109L91.543-30.109L91.543-29.829Q91.167-29.829 91.167-29.668Q91.167-29.637 91.174-29.617L91.929-27.679L92.616-29.429Q92.637-29.480 92.637-29.535Q92.637-29.675 92.524-29.752Q92.411-29.829 92.271-29.829L92.271-30.109L93.491-30.109L93.491-29.829Q93.286-29.829 93.131-29.723Q92.975-29.617 92.903-29.429L91.998-27.118Q91.963-27.023 91.851-27.023L91.782-27.023Q91.673-27.023 91.635-27.118L90.853-29.121L90.066-27.118Q90.032-27.023 89.919-27.023L89.851-27.023Q89.742-27.023 89.704-27.118\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M93.768-28.574Q93.768-28.916 93.903-29.215Q94.038-29.514 94.278-29.738Q94.517-29.962 94.835-30.087Q95.153-30.212 95.484-30.212Q95.929-30.212 96.328-29.996Q96.728-29.781 96.963-29.403Q97.197-29.026 97.197-28.574Q97.197-28.233 97.055-27.949Q96.913-27.665 96.669-27.458Q96.424-27.252 96.115-27.137Q95.806-27.023 95.484-27.023Q95.054-27.023 94.652-27.224Q94.250-27.426 94.009-27.778Q93.768-28.130 93.768-28.574M95.484-27.272Q96.086-27.272 96.310-27.650Q96.534-28.028 96.534-28.660Q96.534-29.272 96.299-29.631Q96.065-29.989 95.484-29.989Q94.432-29.989 94.432-28.660Q94.432-28.028 94.657-27.650Q94.883-27.272 95.484-27.272\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M102.171-27.091L100.537-27.091L100.537-27.371Q100.766-27.371 100.915-27.405Q101.064-27.440 101.064-27.580L101.064-29.429Q101.064-29.699 100.956-29.760Q100.848-29.822 100.537-29.822L100.537-30.102L101.597-30.177L101.597-29.528Q101.768-29.836 102.072-30.007Q102.376-30.177 102.721-30.177Q103.121-30.177 103.398-30.037Q103.675-29.897 103.760-29.549Q103.928-29.842 104.227-30.010Q104.526-30.177 104.871-30.177Q105.377-30.177 105.661-29.954Q105.945-29.730 105.945-29.234L105.945-27.580Q105.945-27.443 106.093-27.407Q106.242-27.371 106.467-27.371L106.467-27.091L104.837-27.091L104.837-27.371Q105.063-27.371 105.213-27.407Q105.363-27.443 105.363-27.580L105.363-29.220Q105.363-29.555 105.244-29.755Q105.124-29.955 104.810-29.955Q104.540-29.955 104.306-29.819Q104.071-29.682 103.933-29.448Q103.795-29.214 103.795-28.940L103.795-27.580Q103.795-27.443 103.943-27.407Q104.092-27.371 104.318-27.371L104.318-27.091L102.687-27.091L102.687-27.371Q102.916-27.371 103.065-27.405Q103.214-27.440 103.214-27.580L103.214-29.220Q103.214-29.555 103.094-29.755Q102.974-29.955 102.660-29.955Q102.390-29.955 102.156-29.819Q101.922-29.682 101.783-29.448Q101.645-29.214 101.645-28.940L101.645-27.580Q101.645-27.443 101.795-27.407Q101.946-27.371 102.171-27.371L102.171-27.091M107.014-28.626Q107.014-28.947 107.139-29.236Q107.264-29.525 107.489-29.748Q107.715-29.972 108.011-30.092Q108.306-30.212 108.624-30.212Q108.952-30.212 109.214-30.112Q109.475-30.013 109.651-29.831Q109.827-29.648 109.921-29.390Q110.015-29.132 110.015-28.800Q110.015-28.708 109.933-28.687L107.677-28.687L107.677-28.626Q107.677-28.038 107.961-27.655Q108.245-27.272 108.812-27.272Q109.133-27.272 109.402-27.465Q109.670-27.658 109.759-27.973Q109.766-28.014 109.841-28.028L109.933-28.028Q110.015-28.004 110.015-27.932Q110.015-27.925 110.008-27.898Q109.896-27.501 109.525-27.262Q109.154-27.023 108.730-27.023Q108.293-27.023 107.893-27.231Q107.493-27.440 107.254-27.807Q107.014-28.174 107.014-28.626M107.684-28.896L109.499-28.896Q109.499-29.173 109.402-29.425Q109.304-29.678 109.106-29.834Q108.908-29.989 108.624-29.989Q108.347-29.989 108.134-29.831Q107.920-29.672 107.802-29.417Q107.684-29.162 107.684-28.896M112.285-27.091L110.651-27.091L110.651-27.371Q110.880-27.371 111.029-27.405Q111.177-27.440 111.177-27.580L111.177-29.429Q111.177-29.699 111.070-29.760Q110.962-29.822 110.651-29.822L110.651-30.102L111.711-30.177L111.711-29.528Q111.882-29.836 112.186-30.007Q112.490-30.177 112.835-30.177Q113.235-30.177 113.512-30.037Q113.789-29.897 113.874-29.549Q114.042-29.842 114.341-30.010Q114.640-30.177 114.985-30.177Q115.491-30.177 115.775-29.954Q116.058-29.730 116.058-29.234L116.058-27.580Q116.058-27.443 116.207-27.407Q116.356-27.371 116.581-27.371L116.581-27.091L114.951-27.091L114.951-27.371Q115.176-27.371 115.327-27.407Q115.477-27.443 115.477-27.580L115.477-29.220Q115.477-29.555 115.358-29.755Q115.238-29.955 114.924-29.955Q114.654-29.955 114.419-29.819Q114.185-29.682 114.047-29.448Q113.908-29.214 113.908-28.940L113.908-27.580Q113.908-27.443 114.057-27.407Q114.206-27.371 114.431-27.371L114.431-27.091L112.801-27.091L112.801-27.371Q113.030-27.371 113.179-27.405Q113.327-27.440 113.327-27.580L113.327-29.220Q113.327-29.555 113.208-29.755Q113.088-29.955 112.774-29.955Q112.504-29.955 112.269-29.819Q112.035-29.682 111.897-29.448Q111.758-29.214 111.758-28.940L111.758-27.580Q111.758-27.443 111.909-27.407Q112.059-27.371 112.285-27.371L112.285-27.091M117.128-28.574Q117.128-28.916 117.263-29.215Q117.398-29.514 117.637-29.738Q117.877-29.962 118.195-30.087Q118.512-30.212 118.844-30.212Q119.288-30.212 119.688-29.996Q120.088-29.781 120.322-29.403Q120.556-29.026 120.556-28.574Q120.556-28.233 120.415-27.949Q120.273-27.665 120.028-27.458Q119.784-27.252 119.475-27.137Q119.165-27.023 118.844-27.023Q118.413-27.023 118.012-27.224Q117.610-27.426 117.369-27.778Q117.128-28.130 117.128-28.574M118.844-27.272Q119.446-27.272 119.669-27.650Q119.893-28.028 119.893-28.660Q119.893-29.272 119.659-29.631Q119.425-29.989 118.844-29.989Q117.791-29.989 117.791-28.660Q117.791-28.028 118.017-27.650Q118.242-27.272 118.844-27.272M122.901-27.091L121.165-27.091L121.165-27.371Q121.394-27.371 121.542-27.405Q121.691-27.440 121.691-27.580L121.691-29.429Q121.691-29.699 121.583-29.760Q121.476-29.822 121.165-29.822L121.165-30.102L122.194-30.177L122.194-29.470Q122.323-29.778 122.566-29.977Q122.809-30.177 123.127-30.177Q123.345-30.177 123.516-30.053Q123.687-29.928 123.687-29.716Q123.687-29.579 123.588-29.480Q123.489-29.381 123.356-29.381Q123.219-29.381 123.120-29.480Q123.021-29.579 123.021-29.716Q123.021-29.856 123.120-29.955Q122.829-29.955 122.629-29.759Q122.429-29.562 122.337-29.268Q122.245-28.974 122.245-28.694L122.245-27.580Q122.245-27.371 122.901-27.371L122.901-27.091M124.607-25.956Q124.737-25.888 124.873-25.888Q125.044-25.888 125.195-25.977Q125.345-26.066 125.456-26.211Q125.567-26.356 125.646-26.524L125.909-27.091L124.740-29.617Q124.665-29.764 124.535-29.796Q124.405-29.829 124.173-29.829L124.173-30.109L125.694-30.109L125.694-29.829Q125.345-29.829 125.345-29.682Q125.348-29.661 125.350-29.644Q125.352-29.627 125.352-29.617L126.210-27.758L126.982-29.429Q127.016-29.497 127.016-29.576Q127.016-29.689 126.933-29.759Q126.849-29.829 126.736-29.829L126.736-30.109L127.932-30.109L127.932-29.829Q127.714-29.829 127.541-29.725Q127.368-29.620 127.276-29.429L125.940-26.524Q125.769-26.154 125.499-25.908Q125.229-25.662 124.873-25.662Q124.603-25.662 124.384-25.828Q124.166-25.994 124.166-26.257Q124.166-26.394 124.258-26.483Q124.350-26.571 124.490-26.571Q124.627-26.571 124.716-26.483Q124.805-26.394 124.805-26.257Q124.805-26.154 124.752-26.076Q124.699-25.997 124.607-25.956\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 18.822)\">\u003Cpath d=\"M132.859-27.091L131.256-27.091L131.256-27.371Q131.482-27.371 131.631-27.405Q131.779-27.440 131.779-27.580L131.779-31.199Q131.779-31.469 131.672-31.531Q131.564-31.592 131.256-31.592L131.256-31.873L132.333-31.948L132.333-27.580Q132.333-27.443 132.483-27.407Q132.634-27.371 132.859-27.371L132.859-27.091M133.413-28.574Q133.413-28.916 133.548-29.215Q133.683-29.514 133.922-29.738Q134.162-29.962 134.480-30.087Q134.797-30.212 135.129-30.212Q135.573-30.212 135.973-29.996Q136.373-29.781 136.607-29.403Q136.841-29.026 136.841-28.574Q136.841-28.233 136.700-27.949Q136.558-27.665 136.313-27.458Q136.069-27.252 135.760-27.137Q135.450-27.023 135.129-27.023Q134.698-27.023 134.297-27.224Q133.895-27.426 133.654-27.778Q133.413-28.130 133.413-28.574M135.129-27.272Q135.731-27.272 135.954-27.650Q136.178-28.028 136.178-28.660Q136.178-29.272 135.944-29.631Q135.710-29.989 135.129-29.989Q134.076-29.989 134.076-28.660Q134.076-28.028 134.302-27.650Q134.527-27.272 135.129-27.272M137.494-27.819Q137.494-28.151 137.718-28.378Q137.942-28.605 138.285-28.733Q138.629-28.862 139.002-28.914Q139.374-28.967 139.678-28.967L139.678-29.220Q139.678-29.425 139.571-29.605Q139.463-29.784 139.282-29.887Q139.101-29.989 138.892-29.989Q138.485-29.989 138.250-29.897Q138.338-29.860 138.385-29.776Q138.431-29.692 138.431-29.590Q138.431-29.494 138.385-29.415Q138.338-29.337 138.258-29.292Q138.178-29.248 138.089-29.248Q137.939-29.248 137.838-29.345Q137.737-29.443 137.737-29.590Q137.737-30.212 138.892-30.212Q139.104-30.212 139.354-30.148Q139.603-30.085 139.805-29.966Q140.006-29.846 140.133-29.661Q140.259-29.477 140.259-29.234L140.259-27.658Q140.259-27.542 140.321-27.446Q140.382-27.351 140.495-27.351Q140.605-27.351 140.669-27.445Q140.734-27.539 140.734-27.658L140.734-28.106L141.001-28.106L141.001-27.658Q141.001-27.388 140.774-27.223Q140.546-27.057 140.266-27.057Q140.058-27.057 139.921-27.211Q139.784-27.364 139.760-27.580Q139.613-27.313 139.331-27.168Q139.049-27.023 138.725-27.023Q138.448-27.023 138.164-27.098Q137.880-27.173 137.687-27.352Q137.494-27.532 137.494-27.819M138.109-27.819Q138.109-27.645 138.210-27.515Q138.311-27.385 138.467-27.315Q138.622-27.245 138.786-27.245Q139.005-27.245 139.213-27.342Q139.422-27.440 139.550-27.621Q139.678-27.802 139.678-28.028L139.678-28.756Q139.354-28.756 138.988-28.665Q138.622-28.574 138.366-28.362Q138.109-28.151 138.109-27.819M141.418-28.602Q141.418-28.940 141.558-29.231Q141.698-29.521 141.943-29.735Q142.187-29.948 142.491-30.063Q142.795-30.177 143.120-30.177Q143.390-30.177 143.653-30.078Q143.917-29.979 144.108-29.801L144.108-31.199Q144.108-31.469 144-31.531Q143.893-31.592 143.582-31.592L143.582-31.873L144.658-31.948L144.658-27.764Q144.658-27.576 144.713-27.493Q144.768-27.409 144.868-27.390Q144.969-27.371 145.185-27.371L145.185-27.091L144.077-27.023L144.077-27.440Q143.660-27.023 143.035-27.023Q142.604-27.023 142.231-27.235Q141.859-27.446 141.638-27.807Q141.418-28.168 141.418-28.602M143.093-27.245Q143.301-27.245 143.488-27.317Q143.674-27.388 143.828-27.525Q143.981-27.662 144.077-27.840L144.077-29.449Q143.992-29.596 143.846-29.716Q143.701-29.836 143.532-29.895Q143.363-29.955 143.182-29.955Q142.621-29.955 142.353-29.566Q142.085-29.176 142.085-28.595Q142.085-28.024 142.319-27.634Q142.553-27.245 143.093-27.245M145.834-27.098L145.834-28.161Q145.834-28.185 145.861-28.212Q145.889-28.239 145.913-28.239L146.022-28.239Q146.087-28.239 146.101-28.181Q146.196-27.747 146.442-27.496Q146.689-27.245 147.102-27.245Q147.444-27.245 147.697-27.378Q147.950-27.511 147.950-27.819Q147.950-27.976 147.856-28.091Q147.762-28.205 147.623-28.274Q147.485-28.342 147.317-28.380L146.736-28.479Q146.381-28.547 146.107-28.768Q145.834-28.988 145.834-29.330Q145.834-29.579 145.945-29.754Q146.056-29.928 146.242-30.027Q146.429-30.126 146.644-30.169Q146.859-30.212 147.102-30.212Q147.516-30.212 147.796-30.030L148.011-30.205Q148.022-30.208 148.028-30.210Q148.035-30.212 148.045-30.212L148.097-30.212Q148.124-30.212 148.148-30.188Q148.172-30.164 148.172-30.136L148.172-29.289Q148.172-29.268 148.148-29.241Q148.124-29.214 148.097-29.214L147.984-29.214Q147.957-29.214 147.931-29.239Q147.905-29.265 147.905-29.289Q147.905-29.525 147.799-29.689Q147.693-29.853 147.511-29.935Q147.328-30.017 147.095-30.017Q146.767-30.017 146.511-29.914Q146.254-29.812 146.254-29.535Q146.254-29.340 146.437-29.231Q146.620-29.121 146.849-29.080L147.423-28.974Q147.669-28.926 147.883-28.798Q148.097-28.670 148.233-28.467Q148.370-28.263 148.370-28.014Q148.370-27.501 148.004-27.262Q147.639-27.023 147.102-27.023Q146.606-27.023 146.275-27.317L146.008-27.043Q145.988-27.023 145.960-27.023L145.913-27.023Q145.889-27.023 145.861-27.050Q145.834-27.077 145.834-27.098\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The snowplow argument. On a circular road snow falls uniformly while one plow clears it; in steady state the plow always faces about twice its own length of snow. The heap is the plow, the cleared length is one run, hence runs \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.4831em;\">\u003C\u002Fspan>\u003Cspan class=\"mrel\">≈\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.2778em;\">\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6833em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\">2\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">M\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:383.734px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 287.800 88.020\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-11.954-66.38a5.69 5.69 0 1 0-11.381 0 5.69 5.69 0 0 0 11.38 0Zm-5.69 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-34.716-40.772a5.69 5.69 0 1 0-11.381 0 5.69 5.69 0 0 0 11.38 0Zm-5.691 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M10.808-40.772a5.69 5.69 0 1 0-11.38 0 5.69 5.69 0 0 0 11.38 0Zm-5.69 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-46.097-15.164a5.69 5.69 0 1 0-11.381 0 5.69 5.69 0 0 0 11.38 0Zm-5.69 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-23.335-15.164a5.69 5.69 0 1 0-11.381 0 5.69 5.69 0 0 0 11.38 0Zm-5.69 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-.573-15.164a5.69 5.69 0 1 0-11.381 0 5.69 5.69 0 0 0 11.38 0Zm-5.69 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M22.189-15.164a5.69 5.69 0 1 0-11.381 0 5.69 5.69 0 0 0 11.381 0Zm-5.69 0\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m-21.558-61.977-14.936 16.803M-13.732-61.977 1.204-45.174M-42.8-35.39l-6.596 14.843M-38.015-35.39l6.597 14.843M2.725-35.39l-6.597 14.843M7.51-35.39l6.596 14.843\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-44.626 -2.96)\">\u003Cpath d=\"M-16.903 7.360L-16.903 3.270L-17.325 3.270Q-17.532 3.246-17.575 3.032L-17.575 2.942Q-17.532 2.735-17.325 2.711L-16.508 2.711Q-16.313 2.735-16.262 2.942L-16.262 4.453Q-16.051 4.285-15.788 4.198Q-15.524 4.110-15.254 4.110Q-14.915 4.110-14.618 4.254Q-14.321 4.399-14.106 4.651Q-13.891 4.903-13.776 5.215Q-13.661 5.528-13.661 5.871Q-13.661 6.336-13.887 6.746Q-14.114 7.157-14.500 7.397Q-14.887 7.637-15.356 7.637Q-15.875 7.637-16.262 7.270L-16.262 7.360Q-16.313 7.578-16.508 7.598L-16.653 7.598Q-16.844 7.575-16.903 7.360M-15.399 7.078Q-15.090 7.078-14.840 6.909Q-14.590 6.739-14.446 6.457Q-14.301 6.176-14.301 5.871Q-14.301 5.582-14.426 5.303Q-14.551 5.024-14.784 4.846Q-15.016 4.668-15.317 4.668Q-15.637 4.668-15.899 4.854Q-16.161 5.039-16.262 5.340L-16.262 6.192Q-16.172 6.559-15.952 6.819Q-15.731 7.078-15.399 7.078M-12.782 7.360L-12.782 7.270Q-12.731 7.063-12.536 7.039L-11.497 7.039L-11.497 4.711L-12.469 4.711Q-12.668 4.688-12.719 4.469L-12.719 4.383Q-12.668 4.172-12.469 4.149L-11.102 4.149Q-10.907 4.168-10.856 4.383L-10.856 7.039L-9.942 7.039Q-9.747 7.063-9.696 7.270L-9.696 7.360Q-9.747 7.575-9.942 7.598L-12.536 7.598Q-12.731 7.575-12.782 7.360M-11.750 3.172L-11.750 3.118Q-11.750 2.946-11.614 2.825Q-11.477 2.703-11.301 2.703Q-11.129 2.703-10.993 2.825Q-10.856 2.946-10.856 3.118L-10.856 3.172Q-10.856 3.348-10.993 3.469Q-11.129 3.590-11.301 3.590Q-11.477 3.590-11.614 3.469Q-11.750 3.348-11.750 3.172M-9.082 7.360L-9.082 7.270Q-9.040 7.063-8.832 7.039L-8.411 7.039L-8.411 4.711L-8.832 4.711Q-9.040 4.688-9.082 4.469L-9.082 4.383Q-9.036 4.172-8.832 4.149L-8.016 4.149Q-7.821 4.172-7.770 4.383L-7.770 4.469L-7.778 4.493Q-7.551 4.313-7.278 4.211Q-7.004 4.110-6.711 4.110Q-6.364 4.110-6.125 4.250Q-5.887 4.391-5.772 4.649Q-5.657 4.907-5.657 5.262L-5.657 7.039L-5.231 7.039Q-5.024 7.063-4.985 7.270L-4.985 7.360Q-5.024 7.575-5.231 7.598L-6.625 7.598Q-6.821 7.575-6.872 7.360L-6.872 7.270Q-6.821 7.059-6.625 7.039L-6.297 7.039L-6.297 5.293Q-6.297 4.985-6.387 4.827Q-6.477 4.668-6.770 4.668Q-7.040 4.668-7.268 4.799Q-7.497 4.930-7.633 5.159Q-7.770 5.387-7.770 5.653L-7.770 7.039L-7.344 7.039Q-7.137 7.063-7.098 7.270L-7.098 7.360Q-7.137 7.575-7.344 7.598L-8.832 7.598Q-9.040 7.575-9.082 7.360M-4.500 6.485Q-4.500 6.039-4.086 5.782Q-3.672 5.524-3.131 5.424Q-2.590 5.325-2.082 5.317Q-2.082 5.102-2.217 4.950Q-2.352 4.797-2.559 4.721Q-2.766 4.645-2.977 4.645Q-3.321 4.645-3.481 4.668L-3.481 4.727Q-3.481 4.895-3.600 5.010Q-3.719 5.125-3.883 5.125Q-4.059 5.125-4.174 5.002Q-4.290 4.879-4.290 4.711Q-4.290 4.305-3.909 4.196Q-3.528 4.086-2.969 4.086Q-2.700 4.086-2.432 4.164Q-2.165 4.243-1.940 4.393Q-1.715 4.543-1.579 4.764Q-1.442 4.985-1.442 5.262L-1.442 6.981Q-1.442 7.039-0.915 7.039Q-0.719 7.059-0.668 7.270L-0.668 7.360Q-0.719 7.575-0.915 7.598L-1.059 7.598Q-1.403 7.598-1.631 7.551Q-1.860 7.504-2.004 7.317Q-2.465 7.637-3.172 7.637Q-3.508 7.637-3.813 7.496Q-4.118 7.356-4.309 7.094Q-4.500 6.832-4.500 6.485M-3.860 6.493Q-3.860 6.766-3.618 6.922Q-3.375 7.078-3.090 7.078Q-2.872 7.078-2.639 7.020Q-2.407 6.961-2.245 6.823Q-2.082 6.684-2.082 6.461L-2.082 5.871Q-2.364 5.871-2.780 5.928Q-3.196 5.985-3.528 6.123Q-3.860 6.262-3.860 6.493M-0.438 7.360L-0.438 7.270Q-0.379 7.063-0.188 7.039L0.523 7.039L0.523 4.711L-0.188 4.711Q-0.383 4.688-0.438 4.469L-0.438 4.383Q-0.379 4.172-0.188 4.149L0.914 4.149Q1.113 4.168 1.164 4.383L1.164 4.711Q1.425 4.426 1.781 4.268Q2.136 4.110 2.523 4.110Q2.816 4.110 3.050 4.244Q3.285 4.379 3.285 4.645Q3.285 4.813 3.175 4.930Q3.066 5.047 2.898 5.047Q2.746 5.047 2.630 4.936Q2.515 4.825 2.515 4.668Q2.140 4.668 1.826 4.869Q1.511 5.071 1.337 5.405Q1.164 5.739 1.164 6.118L1.164 7.039L2.109 7.039Q2.316 7.063 2.355 7.270L2.355 7.360Q2.316 7.575 2.109 7.598L-0.188 7.598Q-0.379 7.575-0.438 7.360M3.929 8.719Q3.929 8.610 3.980 8.518Q4.031 8.426 4.123 8.375Q4.214 8.325 4.320 8.325Q4.429 8.325 4.521 8.375Q4.613 8.426 4.664 8.518Q4.714 8.610 4.714 8.719L4.570 8.719Q4.570 8.856 4.593 8.856Q4.851 8.856 5.039 8.664Q5.226 8.473 5.312 8.207L5.523 7.598L4.386 4.711L4.058 4.711Q3.863 4.688 3.808 4.469L3.808 4.383Q3.867 4.172 4.058 4.149L5.218 4.149Q5.414 4.172 5.464 4.383L5.464 4.469Q5.414 4.688 5.218 4.711L4.953 4.711Q5.289 5.559 5.533 6.213Q5.777 6.868 5.777 6.957L5.785 6.957Q5.785 6.899 5.876 6.606Q5.968 6.313 6.162 5.729Q6.355 5.145 6.496 4.711L6.218 4.711Q6.007 4.688 5.968 4.469L5.968 4.383Q6.019 4.168 6.218 4.149L7.371 4.149Q7.578 4.172 7.617 4.383L7.617 4.469Q7.578 4.688 7.371 4.711L7.050 4.711L5.875 8.207Q5.707 8.707 5.380 9.061Q5.054 9.414 4.593 9.414Q4.320 9.414 4.125 9.203Q3.929 8.993 3.929 8.719M9.398 7.039Q9.398 6.817 9.564 6.651Q9.730 6.485 9.960 6.485Q10.109 6.485 10.236 6.563Q10.363 6.641 10.437 6.766Q10.511 6.891 10.511 7.039Q10.511 7.266 10.345 7.432Q10.179 7.598 9.960 7.598Q9.734 7.598 9.566 7.430Q9.398 7.262 9.398 7.039M9.398 4.703Q9.398 4.481 9.564 4.315Q9.730 4.149 9.960 4.149Q10.109 4.149 10.236 4.227Q10.363 4.305 10.437 4.430Q10.511 4.555 10.511 4.703Q10.511 4.930 10.345 5.096Q10.179 5.262 9.960 5.262Q9.734 5.262 9.566 5.094Q9.398 4.926 9.398 4.703\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.626 -2.96)\">\u003Cpath d=\"M22.469 7.637Q22.004 7.637 21.639 7.387Q21.274 7.137 21.069 6.733Q20.864 6.328 20.864 5.871Q20.864 5.528 20.989 5.207Q21.114 4.887 21.346 4.637Q21.579 4.387 21.883 4.248Q22.188 4.110 22.544 4.110Q23.055 4.110 23.461 4.430L23.461 3.270L23.040 3.270Q22.829 3.246 22.790 3.032L22.790 2.942Q22.829 2.735 23.040 2.711L23.852 2.711Q24.051 2.735 24.102 2.942L24.102 7.039L24.528 7.039Q24.735 7.063 24.774 7.270L24.774 7.360Q24.735 7.575 24.528 7.598L23.711 7.598Q23.512 7.575 23.461 7.360L23.461 7.231Q23.266 7.422 23.004 7.530Q22.743 7.637 22.469 7.637M22.508 7.078Q22.868 7.078 23.120 6.809Q23.372 6.539 23.461 6.164L23.461 5.332Q23.403 5.145 23.276 4.994Q23.149 4.844 22.971 4.756Q22.794 4.668 22.598 4.668Q22.290 4.668 22.040 4.838Q21.790 5.008 21.645 5.293Q21.501 5.578 21.501 5.879Q21.501 6.328 21.786 6.703Q22.071 7.078 22.508 7.078M28.364 6.110L25.922 6.110Q25.977 6.387 26.174 6.610Q26.372 6.832 26.649 6.955Q26.926 7.078 27.211 7.078Q27.684 7.078 27.907 6.789Q27.915 6.778 27.971 6.672Q28.028 6.567 28.077 6.524Q28.126 6.481 28.219 6.469L28.364 6.469Q28.555 6.489 28.614 6.703L28.614 6.758Q28.547 7.059 28.317 7.256Q28.086 7.453 27.774 7.545Q27.461 7.637 27.157 7.637Q26.672 7.637 26.233 7.409Q25.794 7.180 25.526 6.780Q25.258 6.379 25.258 5.887L25.258 5.828Q25.258 5.360 25.504 4.957Q25.751 4.555 26.159 4.321Q26.567 4.086 27.036 4.086Q27.540 4.086 27.893 4.309Q28.247 4.532 28.430 4.920Q28.614 5.309 28.614 5.813L28.614 5.871Q28.555 6.086 28.364 6.110M25.930 5.559L27.958 5.559Q27.911 5.149 27.672 4.897Q27.434 4.645 27.036 4.645Q26.641 4.645 26.335 4.907Q26.028 5.168 25.930 5.559M29.169 9.141L29.169 9.055Q29.211 8.836 29.419 8.813L29.840 8.813L29.840 4.711L29.419 4.711Q29.211 4.688 29.169 4.469L29.169 4.383Q29.215 4.172 29.419 4.149L30.235 4.149Q30.430 4.168 30.481 4.383L30.481 4.453Q30.692 4.285 30.956 4.198Q31.219 4.110 31.489 4.110Q31.829 4.110 32.126 4.254Q32.422 4.399 32.637 4.651Q32.852 4.903 32.967 5.215Q33.083 5.528 33.083 5.871Q33.083 6.336 32.856 6.746Q32.629 7.157 32.243 7.397Q31.856 7.637 31.387 7.637Q30.868 7.637 30.481 7.270L30.481 8.813L30.907 8.813Q31.114 8.836 31.153 9.055L31.153 9.141Q31.114 9.352 30.907 9.375L29.419 9.375Q29.215 9.352 29.169 9.141M31.344 7.078Q31.653 7.078 31.903 6.909Q32.153 6.739 32.297 6.457Q32.442 6.176 32.442 5.871Q32.442 5.582 32.317 5.303Q32.192 5.024 31.960 4.846Q31.727 4.668 31.426 4.668Q31.106 4.668 30.844 4.854Q30.583 5.039 30.481 5.340L30.481 6.192Q30.571 6.559 30.792 6.819Q31.012 7.078 31.344 7.078M34.544 6.493L34.544 4.711L33.794 4.711Q33.594 4.688 33.544 4.469L33.544 4.383Q33.594 4.172 33.794 4.149L34.544 4.149L34.544 3.399Q34.594 3.192 34.794 3.164L34.938 3.164Q35.133 3.192 35.184 3.399L35.184 4.149L36.544 4.149Q36.735 4.168 36.794 4.383L36.794 4.469Q36.739 4.688 36.544 4.711L35.184 4.711L35.184 6.461Q35.184 7.078 35.758 7.078Q36.008 7.078 36.172 6.893Q36.336 6.707 36.336 6.461Q36.336 6.368 36.409 6.297Q36.481 6.227 36.583 6.215L36.727 6.215Q36.926 6.239 36.977 6.446L36.977 6.493Q36.977 6.817 36.794 7.080Q36.610 7.344 36.317 7.491Q36.024 7.637 35.704 7.637Q35.192 7.637 34.868 7.327Q34.544 7.016 34.544 6.493M37.661 7.360L37.661 7.270Q37.704 7.063 37.911 7.039L38.333 7.039L38.333 3.270L37.911 3.270Q37.704 3.246 37.661 3.032L37.661 2.942Q37.704 2.735 37.911 2.711L38.727 2.711Q38.922 2.735 38.973 2.942L38.973 4.493Q39.434 4.110 40.032 4.110Q40.379 4.110 40.618 4.250Q40.856 4.391 40.971 4.649Q41.086 4.907 41.086 5.262L41.086 7.039L41.512 7.039Q41.719 7.063 41.758 7.270L41.758 7.360Q41.719 7.575 41.512 7.598L40.118 7.598Q39.922 7.575 39.872 7.360L39.872 7.270Q39.922 7.059 40.118 7.039L40.446 7.039L40.446 5.293Q40.446 4.985 40.356 4.827Q40.266 4.668 39.973 4.668Q39.704 4.668 39.475 4.799Q39.247 4.930 39.110 5.159Q38.973 5.387 38.973 5.653L38.973 7.039L39.399 7.039Q39.606 7.063 39.645 7.270L39.645 7.360Q39.606 7.575 39.399 7.598L37.911 7.598Q37.704 7.575 37.661 7.360\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.626 -2.96)\">\u003Cpath d=\"M46.555 7.360L46.555 7.270Q46.606 7.063 46.801 7.039L47.907 7.039L47.907 3.270L46.801 3.270Q46.606 3.246 46.555 3.032L46.555 2.942Q46.606 2.735 46.801 2.711L48.297 2.711Q48.489 2.735 48.547 2.942L48.547 7.039L49.649 7.039Q49.848 7.063 49.899 7.270L49.899 7.360Q49.848 7.575 49.649 7.598L46.801 7.598Q46.606 7.575 46.555 7.360M52.473 7.637Q52.001 7.637 51.616 7.393Q51.231 7.149 51.008 6.739Q50.786 6.328 50.786 5.871Q50.786 5.528 50.911 5.205Q51.036 4.883 51.266 4.629Q51.497 4.375 51.803 4.231Q52.110 4.086 52.473 4.086Q52.836 4.086 53.149 4.233Q53.461 4.379 53.684 4.625Q53.907 4.871 54.034 5.192Q54.161 5.512 54.161 5.871Q54.161 6.328 53.936 6.741Q53.711 7.153 53.327 7.395Q52.942 7.637 52.473 7.637M52.473 7.078Q52.938 7.078 53.229 6.684Q53.520 6.289 53.520 5.805Q53.520 5.512 53.385 5.244Q53.251 4.977 53.010 4.811Q52.770 4.645 52.473 4.645Q52.169 4.645 51.930 4.811Q51.692 4.977 51.557 5.244Q51.422 5.512 51.422 5.805Q51.422 6.285 51.715 6.682Q52.008 7.078 52.473 7.078M54.836 8.246Q54.836 7.946 54.985 7.684Q55.133 7.422 55.383 7.262Q55.200 7.008 55.200 6.688Q55.200 6.403 55.352 6.141Q55.102 5.817 55.102 5.399Q55.102 5.039 55.294 4.743Q55.485 4.446 55.803 4.278Q56.122 4.110 56.485 4.110Q56.692 4.110 56.895 4.170Q57.098 4.231 57.262 4.332Q57.645 4.071 58.118 4.071Q58.356 4.071 58.538 4.202Q58.719 4.332 58.719 4.559Q58.719 4.707 58.618 4.813Q58.516 4.918 58.360 4.918Q58.227 4.918 58.131 4.840Q58.036 4.762 58.004 4.637Q57.860 4.645 57.661 4.735Q57.864 5.047 57.864 5.399Q57.864 5.680 57.752 5.912Q57.641 6.145 57.446 6.323Q57.251 6.500 56.999 6.598Q56.747 6.696 56.485 6.696Q56.098 6.696 55.766 6.508Q55.754 6.508 55.745 6.580Q55.735 6.653 55.735 6.688Q55.735 6.809 55.801 6.916Q55.868 7.024 55.989 7.063Q56.004 7.059 56.018 7.057Q56.032 7.055 56.055 7.055Q56.071 7.055 56.102 7.063Q56.133 7.071 56.141 7.071L56.735 7.071Q57.516 7.071 58.057 7.313Q58.598 7.555 58.598 8.246Q58.598 8.547 58.419 8.774Q58.239 9 57.942 9.145Q57.645 9.289 57.325 9.356Q57.004 9.422 56.719 9.422Q56.329 9.422 55.887 9.299Q55.446 9.176 55.141 8.909Q54.836 8.641 54.836 8.246M55.376 8.239Q55.376 8.457 55.616 8.598Q55.856 8.739 56.180 8.805Q56.504 8.871 56.719 8.871Q56.934 8.871 57.258 8.805Q57.583 8.739 57.823 8.598Q58.063 8.457 58.063 8.239Q58.063 7.950 57.838 7.811Q57.614 7.672 57.333 7.639Q57.051 7.606 56.704 7.606L56.086 7.606Q55.903 7.606 55.741 7.686Q55.579 7.766 55.477 7.912Q55.376 8.059 55.376 8.239M56.485 6.141Q56.786 6.141 57.004 5.922Q57.223 5.703 57.223 5.399Q57.223 5.243 57.169 5.112Q57.114 4.981 57.008 4.875Q56.903 4.770 56.772 4.715Q56.641 4.660 56.485 4.660Q56.180 4.660 55.961 4.879Q55.743 5.098 55.743 5.399Q55.743 5.696 55.965 5.918Q56.188 6.141 56.485 6.141M59.270 7.360L59.270 7.285Q59.301 7.118 59.403 7.071L60.692 6.004Q61.024 5.727 61.206 5.575Q61.387 5.422 61.583 5.202Q61.778 4.981 61.899 4.731Q62.020 4.481 62.020 4.215Q62.020 3.891 61.844 3.657Q61.669 3.422 61.389 3.307Q61.110 3.192 60.790 3.192Q60.532 3.192 60.303 3.315Q60.075 3.438 59.973 3.653Q60.075 3.785 60.075 3.934Q60.075 4.094 59.956 4.217Q59.836 4.340 59.676 4.340Q59.501 4.340 59.385 4.215Q59.270 4.090 59.270 3.918Q59.270 3.625 59.405 3.383Q59.540 3.141 59.778 2.969Q60.016 2.797 60.284 2.713Q60.551 2.629 60.844 2.629Q61.325 2.629 61.741 2.819Q62.157 3.008 62.409 3.369Q62.661 3.731 62.661 4.215Q62.661 4.559 62.528 4.862Q62.395 5.164 62.170 5.424Q61.946 5.684 61.637 5.946Q61.329 6.207 61.118 6.383L60.309 7.039L62.020 7.039L62.020 6.895Q62.071 6.684 62.270 6.660L62.411 6.660Q62.610 6.680 62.661 6.895L62.661 7.360Q62.610 7.575 62.411 7.598L59.516 7.598Q59.321 7.578 59.270 7.360\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.626 -2.96)\">\u003Cpath d=\"M67.555 7.360L67.555 7.270Q67.606 7.063 67.805 7.039L68.075 7.039L68.075 3.270L67.805 3.270Q67.606 3.246 67.555 3.032L67.555 2.942Q67.606 2.735 67.805 2.711L68.586 2.711Q68.715 2.711 68.821 2.785Q68.926 2.860 68.965 2.973Q69.243 3.762 69.403 4.211Q69.563 4.660 69.817 5.379Q70.071 6.098 70.210 6.508Q70.348 6.918 70.348 6.957L70.348 3.270L70.075 3.270Q69.879 3.246 69.829 3.032L69.829 2.942Q69.879 2.735 70.075 2.711L71.149 2.711Q71.344 2.735 71.395 2.942L71.395 3.032Q71.344 3.246 71.149 3.270L70.876 3.270L70.876 7.360Q70.825 7.575 70.629 7.598L70.364 7.598Q70.239 7.598 70.135 7.524Q70.032 7.450 69.989 7.332Q69.692 6.485 69.319 5.436Q68.946 4.387 68.776 3.899Q68.606 3.410 68.602 3.352L68.602 7.039L68.876 7.039Q69.067 7.063 69.126 7.270L69.126 7.360Q69.067 7.575 68.876 7.598L67.805 7.598Q67.606 7.575 67.555 7.360\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M110.393-56.42h85.358v-14.227h-85.358Z\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M97.589-25.123h36.988v-14.226H97.59Z\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M171.566-25.123h36.989v-14.226h-36.989Z\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"M153.072-56.22 116.083-39.55M153.072-56.22 190.06-39.55\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(117.59 -17.185)\">\u003Cpath d=\"M-16.903 7.360L-16.903 3.270L-17.325 3.270Q-17.532 3.246-17.575 3.032L-17.575 2.942Q-17.532 2.735-17.325 2.711L-16.508 2.711Q-16.313 2.735-16.262 2.942L-16.262 4.453Q-16.051 4.285-15.788 4.198Q-15.524 4.110-15.254 4.110Q-14.915 4.110-14.618 4.254Q-14.321 4.399-14.106 4.651Q-13.891 4.903-13.776 5.215Q-13.661 5.528-13.661 5.871Q-13.661 6.336-13.887 6.746Q-14.114 7.157-14.500 7.397Q-14.887 7.637-15.356 7.637Q-15.875 7.637-16.262 7.270L-16.262 7.360Q-16.313 7.578-16.508 7.598L-16.653 7.598Q-16.844 7.575-16.903 7.360M-15.399 7.078Q-15.090 7.078-14.840 6.909Q-14.590 6.739-14.446 6.457Q-14.301 6.176-14.301 5.871Q-14.301 5.582-14.426 5.303Q-14.551 5.024-14.784 4.846Q-15.016 4.668-15.317 4.668Q-15.637 4.668-15.899 4.854Q-16.161 5.039-16.262 5.340L-16.262 6.192Q-16.172 6.559-15.952 6.819Q-15.731 7.078-15.399 7.078M-12.950 7.360L-12.950 7.270Q-12.899 7.063-12.704 7.039L-11.598 7.039L-11.598 3.270L-12.704 3.270Q-12.899 3.246-12.950 3.032L-12.950 2.942Q-12.899 2.735-12.704 2.711L-11.207 2.711Q-11.016 2.735-10.957 2.942L-10.957 7.039L-9.856 7.039Q-9.657 7.063-9.606 7.270L-9.606 7.360Q-9.657 7.575-9.856 7.598L-12.704 7.598Q-12.899 7.575-12.950 7.360M-7.032 7.637Q-7.504 7.637-7.889 7.393Q-8.274 7.149-8.497 6.739Q-8.719 6.328-8.719 5.871Q-8.719 5.528-8.594 5.205Q-8.469 4.883-8.239 4.629Q-8.008 4.375-7.702 4.231Q-7.395 4.086-7.032 4.086Q-6.668 4.086-6.356 4.233Q-6.043 4.379-5.821 4.625Q-5.598 4.871-5.471 5.192Q-5.344 5.512-5.344 5.871Q-5.344 6.328-5.569 6.741Q-5.793 7.153-6.178 7.395Q-6.563 7.637-7.032 7.637M-7.032 7.078Q-6.567 7.078-6.276 6.684Q-5.985 6.289-5.985 5.805Q-5.985 5.512-6.120 5.244Q-6.254 4.977-6.495 4.811Q-6.735 4.645-7.032 4.645Q-7.336 4.645-7.575 4.811Q-7.813 4.977-7.948 5.244Q-8.082 5.512-8.082 5.805Q-8.082 6.285-7.790 6.682Q-7.497 7.078-7.032 7.078M-4.348 5.871Q-4.348 5.391-4.104 4.977Q-3.860 4.563-3.444 4.325Q-3.028 4.086-2.547 4.086Q-1.993 4.086-1.614 4.196Q-1.235 4.305-1.235 4.711Q-1.235 4.879-1.348 5.002Q-1.461 5.125-1.633 5.125Q-1.805 5.125-1.924 5.010Q-2.043 4.895-2.043 4.727L-2.043 4.668Q-2.204 4.645-2.540 4.645Q-2.868 4.645-3.135 4.815Q-3.403 4.985-3.555 5.268Q-3.707 5.551-3.707 5.871Q-3.707 6.192-3.536 6.473Q-3.364 6.754-3.079 6.916Q-2.793 7.078-2.465 7.078Q-2.153 7.078-2.026 6.975Q-1.899 6.871-1.782 6.682Q-1.665 6.493-1.547 6.477L-1.379 6.477Q-1.274 6.489-1.209 6.557Q-1.145 6.625-1.145 6.727Q-1.145 6.774-1.165 6.813Q-1.274 7.106-1.477 7.285Q-1.680 7.465-1.956 7.551Q-2.231 7.637-2.547 7.637Q-3.032 7.637-3.448 7.399Q-3.864 7.160-4.106 6.758Q-4.348 6.356-4.348 5.871M-0.516 7.360L-0.516 7.270Q-0.465 7.063-0.270 7.039L0.195 7.039L0.195 3.270L-0.270 3.270Q-0.465 3.246-0.516 3.032L-0.516 2.942Q-0.465 2.735-0.270 2.711L0.476 2.711Q0.671 2.731 0.722 2.942L0.722 5.766L1.867 4.711L1.570 4.711Q1.363 4.688 1.324 4.469L1.324 4.383Q1.363 4.172 1.570 4.149L3.019 4.149Q3.222 4.172 3.269 4.383L3.269 4.469Q3.226 4.688 3.019 4.711L2.652 4.711L1.707 5.575L2.859 7.039L3.195 7.039Q3.402 7.063 3.445 7.270L3.445 7.360Q3.402 7.575 3.195 7.598L2.027 7.598Q1.832 7.575 1.781 7.360L1.781 7.270Q1.832 7.063 2.027 7.039L2.187 7.039L1.324 5.934L0.722 6.485L0.722 7.039L1.187 7.039Q1.378 7.063 1.437 7.270L1.437 7.360Q1.378 7.575 1.187 7.598L-0.270 7.598Q-0.465 7.575-0.516 7.360M7.082 5.461L4.339 5.461Q4.214 5.450 4.128 5.364Q4.043 5.278 4.043 5.149Q4.043 5.020 4.128 4.938Q4.214 4.856 4.339 4.844L7.082 4.844Q7.207 4.856 7.289 4.938Q7.371 5.020 7.371 5.149Q7.371 5.278 7.289 5.364Q7.207 5.450 7.082 5.461M8.839 7.375L8.375 4.711L8.214 4.711Q8.007 4.688 7.968 4.469L7.968 4.383Q8.007 4.172 8.214 4.149L9.382 4.149Q9.593 4.172 9.632 4.383L9.632 4.469Q9.593 4.688 9.382 4.711L8.910 4.711Q9.023 5.356 9.101 5.801Q9.179 6.246 9.230 6.565Q9.281 6.883 9.281 6.957Q9.289 6.785 9.574 5.789Q9.613 5.676 9.710 5.602Q9.808 5.528 9.929 5.528L10.007 5.528Q10.128 5.528 10.226 5.602Q10.324 5.676 10.359 5.789Q10.468 6.172 10.550 6.496Q10.632 6.821 10.632 6.957Q10.644 6.668 10.992 4.711L10.519 4.711Q10.312 4.688 10.273 4.469L10.273 4.383Q10.312 4.172 10.519 4.149L11.695 4.149Q11.886 4.172 11.945 4.383L11.945 4.469Q11.890 4.688 11.695 4.711L11.527 4.711L11.062 7.375Q11.039 7.493 10.951 7.565Q10.863 7.637 10.742 7.637L10.601 7.637Q10.480 7.637 10.384 7.565Q10.289 7.493 10.246 7.375Q10.199 7.196 10.126 6.940Q10.054 6.684 10.011 6.475Q9.968 6.266 9.968 6.164Q9.960 6.446 9.679 7.375Q9.652 7.485 9.554 7.561Q9.457 7.637 9.335 7.637L9.160 7.637Q9.039 7.637 8.951 7.565Q8.863 7.493 8.839 7.375M12.695 7.360L12.695 7.270Q12.746 7.063 12.941 7.039L13.980 7.039L13.980 4.711L13.007 4.711Q12.808 4.688 12.757 4.469L12.757 4.383Q12.808 4.172 13.007 4.149L14.375 4.149Q14.570 4.168 14.621 4.383L14.621 7.039L15.535 7.039Q15.730 7.063 15.781 7.270L15.781 7.360Q15.730 7.575 15.535 7.598L12.941 7.598Q12.746 7.575 12.695 7.360M13.726 3.172L13.726 3.118Q13.726 2.946 13.863 2.825Q14 2.703 14.175 2.703Q14.347 2.703 14.484 2.825Q14.621 2.946 14.621 3.118L14.621 3.172Q14.621 3.348 14.484 3.469Q14.347 3.590 14.175 3.590Q14 3.590 13.863 3.469Q13.726 3.348 13.726 3.172M18.187 7.637Q17.722 7.637 17.357 7.387Q16.992 7.137 16.787 6.733Q16.582 6.328 16.582 5.871Q16.582 5.528 16.707 5.207Q16.832 4.887 17.064 4.637Q17.296 4.387 17.601 4.248Q17.906 4.110 18.261 4.110Q18.773 4.110 19.179 4.430L19.179 3.270L18.757 3.270Q18.546 3.246 18.507 3.032L18.507 2.942Q18.546 2.735 18.757 2.711L19.570 2.711Q19.769 2.735 19.820 2.942L19.820 7.039L20.246 7.039Q20.453 7.063 20.492 7.270L20.492 7.360Q20.453 7.575 20.246 7.598L19.429 7.598Q19.230 7.575 19.179 7.360L19.179 7.231Q18.984 7.422 18.722 7.530Q18.460 7.637 18.187 7.637M18.226 7.078Q18.585 7.078 18.837 6.809Q19.089 6.539 19.179 6.164L19.179 5.332Q19.121 5.145 18.994 4.994Q18.867 4.844 18.689 4.756Q18.511 4.668 18.316 4.668Q18.007 4.668 17.757 4.838Q17.507 5.008 17.363 5.293Q17.218 5.578 17.218 5.879Q17.218 6.328 17.503 6.703Q17.789 7.078 18.226 7.078M24.082 6.110L21.640 6.110Q21.695 6.387 21.892 6.610Q22.089 6.832 22.367 6.955Q22.644 7.078 22.929 7.078Q23.402 7.078 23.625 6.789Q23.632 6.778 23.689 6.672Q23.746 6.567 23.794 6.524Q23.843 6.481 23.937 6.469L24.082 6.469Q24.273 6.489 24.332 6.703L24.332 6.758Q24.265 7.059 24.035 7.256Q23.804 7.453 23.492 7.545Q23.179 7.637 22.875 7.637Q22.390 7.637 21.951 7.409Q21.511 7.180 21.244 6.780Q20.976 6.379 20.976 5.887L20.976 5.828Q20.976 5.360 21.222 4.957Q21.468 4.555 21.876 4.321Q22.285 4.086 22.753 4.086Q23.257 4.086 23.611 4.309Q23.964 4.532 24.148 4.920Q24.332 5.309 24.332 5.813L24.332 5.871Q24.273 6.086 24.082 6.110M21.648 5.559L23.675 5.559Q23.628 5.149 23.390 4.897Q23.152 4.645 22.753 4.645Q22.359 4.645 22.052 4.907Q21.746 5.168 21.648 5.559M26.382 7.039Q26.382 6.817 26.548 6.651Q26.714 6.485 26.945 6.485Q27.093 6.485 27.220 6.563Q27.347 6.641 27.421 6.766Q27.496 6.891 27.496 7.039Q27.496 7.266 27.330 7.432Q27.164 7.598 26.945 7.598Q26.718 7.598 26.550 7.430Q26.382 7.262 26.382 7.039M26.382 4.703Q26.382 4.481 26.548 4.315Q26.714 4.149 26.945 4.149Q27.093 4.149 27.220 4.227Q27.347 4.305 27.421 4.430Q27.496 4.555 27.496 4.703Q27.496 4.930 27.330 5.096Q27.164 5.262 26.945 5.262Q26.718 5.262 26.550 5.094Q26.382 4.926 26.382 4.703\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(117.59 -17.185)\">\u003Cpath d=\"M39.469 7.637Q39.004 7.637 38.639 7.387Q38.274 7.137 38.069 6.733Q37.864 6.328 37.864 5.871Q37.864 5.528 37.989 5.207Q38.114 4.887 38.346 4.637Q38.579 4.387 38.883 4.248Q39.188 4.110 39.544 4.110Q40.055 4.110 40.461 4.430L40.461 3.270L40.040 3.270Q39.829 3.246 39.790 3.032L39.790 2.942Q39.829 2.735 40.040 2.711L40.852 2.711Q41.051 2.735 41.102 2.942L41.102 7.039L41.528 7.039Q41.735 7.063 41.774 7.270L41.774 7.360Q41.735 7.575 41.528 7.598L40.711 7.598Q40.512 7.575 40.461 7.360L40.461 7.231Q40.266 7.422 40.004 7.530Q39.743 7.637 39.469 7.637M39.508 7.078Q39.868 7.078 40.120 6.809Q40.372 6.539 40.461 6.164L40.461 5.332Q40.403 5.145 40.276 4.994Q40.149 4.844 39.971 4.756Q39.794 4.668 39.598 4.668Q39.290 4.668 39.040 4.838Q38.790 5.008 38.645 5.293Q38.501 5.578 38.501 5.879Q38.501 6.328 38.786 6.703Q39.071 7.078 39.508 7.078M45.364 6.110L42.922 6.110Q42.977 6.387 43.174 6.610Q43.372 6.832 43.649 6.955Q43.926 7.078 44.211 7.078Q44.684 7.078 44.907 6.789Q44.915 6.778 44.971 6.672Q45.028 6.567 45.077 6.524Q45.126 6.481 45.219 6.469L45.364 6.469Q45.555 6.489 45.614 6.703L45.614 6.758Q45.547 7.059 45.317 7.256Q45.086 7.453 44.774 7.545Q44.461 7.637 44.157 7.637Q43.672 7.637 43.233 7.409Q42.794 7.180 42.526 6.780Q42.258 6.379 42.258 5.887L42.258 5.828Q42.258 5.360 42.504 4.957Q42.751 4.555 43.159 4.321Q43.567 4.086 44.036 4.086Q44.540 4.086 44.893 4.309Q45.247 4.532 45.430 4.920Q45.614 5.309 45.614 5.813L45.614 5.871Q45.555 6.086 45.364 6.110M42.930 5.559L44.958 5.559Q44.911 5.149 44.672 4.897Q44.434 4.645 44.036 4.645Q43.641 4.645 43.335 4.907Q43.028 5.168 42.930 5.559M46.169 9.141L46.169 9.055Q46.211 8.836 46.419 8.813L46.840 8.813L46.840 4.711L46.419 4.711Q46.211 4.688 46.169 4.469L46.169 4.383Q46.215 4.172 46.419 4.149L47.235 4.149Q47.430 4.168 47.481 4.383L47.481 4.453Q47.692 4.285 47.956 4.198Q48.219 4.110 48.489 4.110Q48.829 4.110 49.126 4.254Q49.422 4.399 49.637 4.651Q49.852 4.903 49.967 5.215Q50.083 5.528 50.083 5.871Q50.083 6.336 49.856 6.746Q49.629 7.157 49.243 7.397Q48.856 7.637 48.387 7.637Q47.868 7.637 47.481 7.270L47.481 8.813L47.907 8.813Q48.114 8.836 48.153 9.055L48.153 9.141Q48.114 9.352 47.907 9.375L46.419 9.375Q46.215 9.352 46.169 9.141M48.344 7.078Q48.653 7.078 48.903 6.909Q49.153 6.739 49.297 6.457Q49.442 6.176 49.442 5.871Q49.442 5.582 49.317 5.303Q49.192 5.024 48.960 4.846Q48.727 4.668 48.426 4.668Q48.106 4.668 47.844 4.854Q47.583 5.039 47.481 5.340L47.481 6.192Q47.571 6.559 47.792 6.819Q48.012 7.078 48.344 7.078M51.544 6.493L51.544 4.711L50.794 4.711Q50.594 4.688 50.544 4.469L50.544 4.383Q50.594 4.172 50.794 4.149L51.544 4.149L51.544 3.399Q51.594 3.192 51.794 3.164L51.938 3.164Q52.133 3.192 52.184 3.399L52.184 4.149L53.544 4.149Q53.735 4.168 53.794 4.383L53.794 4.469Q53.739 4.688 53.544 4.711L52.184 4.711L52.184 6.461Q52.184 7.078 52.758 7.078Q53.008 7.078 53.172 6.893Q53.336 6.707 53.336 6.461Q53.336 6.368 53.409 6.297Q53.481 6.227 53.583 6.215L53.727 6.215Q53.926 6.239 53.977 6.446L53.977 6.493Q53.977 6.817 53.794 7.080Q53.610 7.344 53.317 7.491Q53.024 7.637 52.704 7.637Q52.192 7.637 51.868 7.327Q51.544 7.016 51.544 6.493M54.661 7.360L54.661 7.270Q54.704 7.063 54.911 7.039L55.333 7.039L55.333 3.270L54.911 3.270Q54.704 3.246 54.661 3.032L54.661 2.942Q54.704 2.735 54.911 2.711L55.727 2.711Q55.922 2.735 55.973 2.942L55.973 4.493Q56.434 4.110 57.032 4.110Q57.379 4.110 57.618 4.250Q57.856 4.391 57.971 4.649Q58.086 4.907 58.086 5.262L58.086 7.039L58.512 7.039Q58.719 7.063 58.758 7.270L58.758 7.360Q58.719 7.575 58.512 7.598L57.118 7.598Q56.922 7.575 56.872 7.360L56.872 7.270Q56.922 7.059 57.118 7.039L57.446 7.039L57.446 5.293Q57.446 4.985 57.356 4.827Q57.266 4.668 56.973 4.668Q56.704 4.668 56.475 4.799Q56.247 4.930 56.110 5.159Q55.973 5.387 55.973 5.653L55.973 7.039L56.399 7.039Q56.606 7.063 56.645 7.270L56.645 7.360Q56.606 7.575 56.399 7.598L54.911 7.598Q54.704 7.575 54.661 7.360\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(117.59 -17.185)\">\u003Cpath d=\"M63.555 7.360L63.555 7.270Q63.606 7.063 63.801 7.039L64.907 7.039L64.907 3.270L63.801 3.270Q63.606 3.246 63.555 3.032L63.555 2.942Q63.606 2.735 63.801 2.711L65.297 2.711Q65.489 2.735 65.547 2.942L65.547 7.039L66.649 7.039Q66.848 7.063 66.899 7.270L66.899 7.360Q66.848 7.575 66.649 7.598L63.801 7.598Q63.606 7.575 63.555 7.360M69.473 7.637Q69.001 7.637 68.616 7.393Q68.231 7.149 68.008 6.739Q67.786 6.328 67.786 5.871Q67.786 5.528 67.911 5.205Q68.036 4.883 68.266 4.629Q68.497 4.375 68.803 4.231Q69.110 4.086 69.473 4.086Q69.836 4.086 70.149 4.233Q70.461 4.379 70.684 4.625Q70.907 4.871 71.034 5.192Q71.161 5.512 71.161 5.871Q71.161 6.328 70.936 6.741Q70.711 7.153 70.327 7.395Q69.942 7.637 69.473 7.637M69.473 7.078Q69.938 7.078 70.229 6.684Q70.520 6.289 70.520 5.805Q70.520 5.512 70.385 5.244Q70.251 4.977 70.010 4.811Q69.770 4.645 69.473 4.645Q69.168 4.645 68.930 4.811Q68.692 4.977 68.557 5.244Q68.422 5.512 68.422 5.805Q68.422 6.285 68.715 6.682Q69.008 7.078 69.473 7.078M71.836 8.246Q71.836 7.946 71.985 7.684Q72.133 7.422 72.383 7.262Q72.200 7.008 72.200 6.688Q72.200 6.403 72.352 6.141Q72.102 5.817 72.102 5.399Q72.102 5.039 72.293 4.743Q72.485 4.446 72.803 4.278Q73.122 4.110 73.485 4.110Q73.692 4.110 73.895 4.170Q74.098 4.231 74.262 4.332Q74.645 4.071 75.118 4.071Q75.356 4.071 75.538 4.202Q75.719 4.332 75.719 4.559Q75.719 4.707 75.618 4.813Q75.516 4.918 75.360 4.918Q75.227 4.918 75.131 4.840Q75.036 4.762 75.004 4.637Q74.860 4.645 74.661 4.735Q74.864 5.047 74.864 5.399Q74.864 5.680 74.752 5.912Q74.641 6.145 74.446 6.323Q74.251 6.500 73.999 6.598Q73.747 6.696 73.485 6.696Q73.098 6.696 72.766 6.508Q72.754 6.508 72.745 6.580Q72.735 6.653 72.735 6.688Q72.735 6.809 72.801 6.916Q72.868 7.024 72.989 7.063Q73.004 7.059 73.018 7.057Q73.032 7.055 73.055 7.055Q73.071 7.055 73.102 7.063Q73.133 7.071 73.141 7.071L73.735 7.071Q74.516 7.071 75.057 7.313Q75.598 7.555 75.598 8.246Q75.598 8.547 75.418 8.774Q75.239 9 74.942 9.145Q74.645 9.289 74.325 9.356Q74.004 9.422 73.719 9.422Q73.329 9.422 72.887 9.299Q72.446 9.176 72.141 8.909Q71.836 8.641 71.836 8.246M72.376 8.239Q72.376 8.457 72.616 8.598Q72.856 8.739 73.180 8.805Q73.504 8.871 73.719 8.871Q73.934 8.871 74.258 8.805Q74.583 8.739 74.823 8.598Q75.063 8.457 75.063 8.239Q75.063 7.950 74.838 7.811Q74.614 7.672 74.333 7.639Q74.051 7.606 73.704 7.606L73.086 7.606Q72.903 7.606 72.741 7.686Q72.579 7.766 72.477 7.912Q72.376 8.059 72.376 8.239M73.485 6.141Q73.786 6.141 74.004 5.922Q74.223 5.703 74.223 5.399Q74.223 5.243 74.168 5.112Q74.114 4.981 74.008 4.875Q73.903 4.770 73.772 4.715Q73.641 4.660 73.485 4.660Q73.180 4.660 72.961 4.879Q72.743 5.098 72.743 5.399Q72.743 5.696 72.965 5.918Q73.188 6.141 73.485 6.141M76.012 7.360L76.012 7.270Q76.051 7.063 76.258 7.039L76.547 7.039L76.547 3.270L76.258 3.270Q76.051 3.246 76.012 3.032L76.012 2.942Q76.051 2.735 76.258 2.711L78.219 2.711Q78.489 2.711 78.729 2.807Q78.969 2.903 79.161 3.073Q79.352 3.243 79.461 3.471Q79.571 3.700 79.571 3.965Q79.571 4.332 79.331 4.621Q79.090 4.910 78.723 5.039Q79.004 5.102 79.237 5.276Q79.469 5.450 79.604 5.705Q79.739 5.961 79.739 6.246Q79.739 6.606 79.557 6.916Q79.376 7.227 79.061 7.412Q78.747 7.598 78.387 7.598L76.258 7.598Q76.051 7.575 76.012 7.360M77.188 5.332L77.188 7.039L78.219 7.039Q78.446 7.039 78.649 6.936Q78.852 6.832 78.977 6.653Q79.102 6.473 79.102 6.246Q79.102 6.016 79.001 5.807Q78.899 5.598 78.717 5.465Q78.536 5.332 78.309 5.332L77.188 5.332M77.188 3.270L77.188 4.774L78.051 4.774Q78.395 4.774 78.665 4.539Q78.934 4.305 78.934 3.965Q78.934 3.778 78.836 3.618Q78.739 3.457 78.573 3.364Q78.407 3.270 78.219 3.270\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(117.59 -17.185)\">\u003Cpath d=\"M84.556 7.360L84.556 7.270Q84.607 7.063 84.806 7.039L85.076 7.039L85.076 3.270L84.806 3.270Q84.607 3.246 84.556 3.032L84.556 2.942Q84.607 2.735 84.806 2.711L85.587 2.711Q85.716 2.711 85.822 2.785Q85.927 2.860 85.966 2.973Q86.244 3.762 86.404 4.211Q86.564 4.660 86.818 5.379Q87.072 6.098 87.211 6.508Q87.349 6.918 87.349 6.957L87.349 3.270L87.076 3.270Q86.880 3.246 86.830 3.032L86.830 2.942Q86.880 2.735 87.076 2.711L88.150 2.711Q88.345 2.735 88.396 2.942L88.396 3.032Q88.345 3.246 88.150 3.270L87.877 3.270L87.877 7.360Q87.826 7.575 87.630 7.598L87.365 7.598Q87.240 7.598 87.136 7.524Q87.033 7.450 86.990 7.332Q86.693 6.485 86.320 5.436Q85.947 4.387 85.777 3.899Q85.607 3.410 85.603 3.352L85.603 7.039L85.877 7.039Q86.068 7.063 86.127 7.270L86.127 7.360Q86.068 7.575 85.877 7.598L84.806 7.598Q84.607 7.575 84.556 7.360\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Fan-out shrinks the depth. A binary structure over \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6833em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> items is \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.9386em;vertical-align:-0.2441em;\">\u003C\u002Fspan>\u003Cspan class=\"mop\">\u003Cspan class=\"mop\">\u003Cspan class=\"mord mathrm\" style=\"margin-right:0.0139em;\">log\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"msupsub\">\u003Cspan class=\"vlist-t vlist-t2\">\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.207em;\">\u003Cspan style=\"top:-2.4559em;margin-right:0.05em;\">\u003Cspan class=\"pstrut\" style=\"height:2.7em;\">\u003C\u002Fspan>\u003Cspan class=\"sizing reset-size6 size3 mtight\">\u003Cspan class=\"mord mtight\">2\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-s\">​\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.2441em;\">\u003Cspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.1667em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> deep; a block-wide one is \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.9386em;vertical-align:-0.2441em;\">\u003C\u002Fspan>\u003Cspan class=\"mop\">\u003Cspan class=\"mop\">\u003Cspan class=\"mord mathrm\" style=\"margin-right:0.0139em;\">log\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"msupsub\">\u003Cspan class=\"vlist-t vlist-t2\">\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.2342em;\">\u003Cspan style=\"top:-2.4559em;margin-right:0.05em;\">\u003Cspan class=\"pstrut\" style=\"height:2.7em;\">\u003C\u002Fspan>\u003Cspan class=\"sizing reset-size6 size3 mtight\">\u003Cspan class=\"mord mathnormal mtight\" style=\"margin-right:0.0502em;\">B\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-s\">​\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.2441em;\">\u003Cspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.1667em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> deep. The same idea drives \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6944em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.0315em;\">k\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>-way merge (fewer passes) and the B-tree (fewer seeks per search).\u003C\u002Ffigcaption>",1785117737424]