[{"data":1,"prerenderedAt":7553},["ShallowReactive",2],{"nav:computer-architecture":3,"lesson:\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":304,"course-wordcounts":2101,"ref-card-index":3012,"tikz:1e10cbe5d2adb4a31aba7fae62a6f66d89e625fea0dd01f69b5ae22c03b6ef87":7546,"tikz:c98a922eeae2c3c521eea4151db7aa72bd7e4ad68f85af612db8fa58cf6a3ea6":7547,"tikz:33f9ceb8faac02577c51366031c042d1c818e7d1d7090cf77122687810020cac":7548,"tikz:2a8533b40f86a7ea33420cf8153b5a375e9c9a4408b2b2365b18e12b221dab8f":7549,"tikz:3d209e771db84fdf8aa1f93aed00c3321492bcca8df7dac92a63d8ccfafd2139":7550,"tikz:8c8cb8deee60d35253b22a9e7a9c3397bab561711a54c5bc37e583eb5417ba1e":7551,"tikz:41a150d5da7c6c0508e9f5d14d0ab0cadcc84d59029f18fa574e4ed0adbd48c8":7552},[4,38,79,108,137,166,195,224,244,259,289],{"module":5,"moduleNumber":6,"slug":7,"lessons":8},"Foundations",1,"foundations",[9,14,20,26,32],{"title":10,"path":11,"lessonNumber":6,"topics":12,"summary":13},"Bits, Bytes, and Words","\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words",[5],"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",{"title":15,"path":16,"lessonNumber":17,"topics":18,"summary":19},"Integer Representation","\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation",2,[5],"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",{"title":21,"path":22,"lessonNumber":23,"topics":24,"summary":25},"Integer Arithmetic","\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic",3,[5],"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",{"title":27,"path":28,"lessonNumber":29,"topics":30,"summary":31},"Floating Point","\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point",4,[5],"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",{"title":33,"path":34,"lessonNumber":35,"topics":36,"summary":37},"Boolean Algebra and Bit Manipulation","\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation",5,[5],"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",{"module":39,"moduleNumber":17,"slug":40,"lessons":41},"Machine-Level Programming","machine-level-x86-64",[42,47,52,57,62,67,73],{"title":43,"path":44,"lessonNumber":6,"topics":45,"summary":46},"The Machine's View","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view",[39],"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",{"title":48,"path":49,"lessonNumber":17,"topics":50,"summary":51},"Data Movement","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement",[39],"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",{"title":53,"path":54,"lessonNumber":23,"topics":55,"summary":56},"Arithmetic and Logic","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic",[39],"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",{"title":58,"path":59,"lessonNumber":29,"topics":60,"summary":61},"Control Flow","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow",[39],"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",{"title":63,"path":64,"lessonNumber":35,"topics":65,"summary":66},"Procedures","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures",[39],"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",{"title":68,"path":69,"lessonNumber":70,"topics":71,"summary":72},"Arrays, Structs, and Alignment","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment",6,[39],"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",{"title":74,"path":75,"lessonNumber":76,"topics":77,"summary":78},"Memory Layout and Buffer Overflows","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows",7,[39],"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",{"module":80,"moduleNumber":23,"slug":81,"lessons":82},"Instruction Set Architecture","instruction-set-architecture",[83,88,93,98,103],{"title":84,"path":85,"lessonNumber":6,"topics":86,"summary":87},"What an ISA Is","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is",[80],"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",{"title":89,"path":90,"lessonNumber":17,"topics":91,"summary":92},"Instruction Formats and Operands","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands",[80],"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",{"title":94,"path":95,"lessonNumber":23,"topics":96,"summary":97},"Addressing Modes","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes",[80],"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",{"title":99,"path":100,"lessonNumber":29,"topics":101,"summary":102},"The Y86-64 Instruction Set","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set",[80],"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",{"title":104,"path":105,"lessonNumber":35,"topics":106,"summary":107},"Y86-64 Programming","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming",[80],"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",{"module":109,"moduleNumber":29,"slug":110,"lessons":111},"Digital Logic","digital-logic",[112,117,122,127,132],{"title":113,"path":114,"lessonNumber":6,"topics":115,"summary":116},"Transistors, Gates, and Boolean Functions","\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions",[109],"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",{"title":118,"path":119,"lessonNumber":17,"topics":120,"summary":121},"Combinational Logic and HCL","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl",[109],"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",{"title":123,"path":124,"lessonNumber":23,"topics":125,"summary":126},"Multiplexers, Decoders, and the ALU","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu",[109],"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",{"title":128,"path":129,"lessonNumber":29,"topics":130,"summary":131},"Memory Elements: Latches, Flip-Flops, and Clocking","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking",[109],"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",{"title":133,"path":134,"lessonNumber":35,"topics":135,"summary":136},"Register Files and Random-Access Memory","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory",[109],"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",{"module":138,"moduleNumber":35,"slug":139,"lessons":140},"Processor Design","processor-design",[141,146,151,156,161],{"title":142,"path":143,"lessonNumber":6,"topics":144,"summary":145},"The Fetch-Decode-Execute Cycle","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle",[138],"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",{"title":147,"path":148,"lessonNumber":17,"topics":149,"summary":150},"The SEQ Stages","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages",[138],"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",{"title":152,"path":153,"lessonNumber":23,"topics":154,"summary":155},"Control Logic and Sequencing","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing",[138],"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",{"title":157,"path":158,"lessonNumber":29,"topics":159,"summary":160},"Assembling SEQ","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq",[138],"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",{"title":162,"path":163,"lessonNumber":35,"topics":164,"summary":165},"Tracing a Program","\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program",[138],"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",{"module":167,"moduleNumber":70,"slug":168,"lessons":169},"Pipelining","pipelining",[170,175,180,185,190],{"title":171,"path":172,"lessonNumber":6,"topics":173,"summary":174},"Pipelining Principles","\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles",[167],"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",{"title":176,"path":177,"lessonNumber":17,"topics":178,"summary":179},"From SEQ to PIPE","\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe",[167],"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",{"title":181,"path":182,"lessonNumber":23,"topics":183,"summary":184},"Data Hazards: Stalling and Forwarding","\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding",[167],"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",{"title":186,"path":187,"lessonNumber":29,"topics":188,"summary":189},"Control Hazards and Branch Prediction","\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction",[167],"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",{"title":191,"path":192,"lessonNumber":35,"topics":193,"summary":194},"The Complete PIPE Processor","\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor",[167],"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",{"module":196,"moduleNumber":76,"slug":197,"lessons":198},"The Memory Hierarchy","memory-hierarchy",[199,204,209,214,219],{"title":200,"path":201,"lessonNumber":6,"topics":202,"summary":203},"Storage Technologies and the Latency Gap","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap",[196],"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",{"title":205,"path":206,"lessonNumber":17,"topics":207,"summary":208},"Locality","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality",[196],"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",{"title":210,"path":211,"lessonNumber":23,"topics":212,"summary":213},"Cache Memories and Direct Mapping","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped",[196],"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",{"title":215,"path":216,"lessonNumber":29,"topics":217,"summary":218},"Set-Associative Caches and Write Policies","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies",[196],"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",{"title":220,"path":221,"lessonNumber":35,"topics":222,"summary":223},"Cache Performance and Cache-Friendly Code","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code",[196],"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",{"module":225,"moduleNumber":226,"slug":227,"lessons":228},"Virtual Memory",8,"virtual-memory",[229,234,239],{"title":230,"path":231,"lessonNumber":6,"topics":232,"summary":233},"Address Spaces and Translation","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation",[225],"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",{"title":235,"path":236,"lessonNumber":17,"topics":237,"summary":238},"Page Tables and Page Faults","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults",[225],"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",{"title":240,"path":241,"lessonNumber":23,"topics":242,"summary":243},"The TLB and Multi-Level Page Tables","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables",[225],"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",{"module":245,"moduleNumber":246,"slug":247,"lessons":248},"Exceptions & I\u002FO",9,"exceptions-and-io",[249,254],{"title":250,"path":251,"lessonNumber":6,"topics":252,"summary":253},"Exceptional Control Flow","\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow",[245],"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",{"title":255,"path":256,"lessonNumber":17,"topics":257,"summary":258},"Interrupts and the Kernel","\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel",[245],"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",{"module":260,"moduleNumber":261,"slug":262,"lessons":263},"Multithreading & Multicore",10,"multithreading-and-multicore",[264,269,274,279,284],{"title":265,"path":266,"lessonNumber":6,"topics":267,"summary":268},"Processes, Threads, and Parallelism","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism",[260],"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",{"title":270,"path":271,"lessonNumber":17,"topics":272,"summary":273},"Hardware Multithreading","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading",[260],"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",{"title":275,"path":276,"lessonNumber":23,"topics":277,"summary":278},"Cache Coherence","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence",[260],"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",{"title":280,"path":281,"lessonNumber":29,"topics":282,"summary":283},"Memory Consistency and Synchronization","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization",[260],"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",{"title":285,"path":286,"lessonNumber":35,"topics":287,"summary":288},"Multicore Organization","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization",[260],"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",{"module":290,"moduleNumber":291,"slug":292,"lessons":293},"Capstone",11,"capstone",[294,299],{"title":295,"path":296,"lessonNumber":6,"topics":297,"summary":298},"The Whole Machine","\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine",[290],"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",{"title":300,"path":301,"lessonNumber":17,"topics":302,"summary":303},"Assembling a Complete CPU","\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu",[290],"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",{"id":305,"title":295,"blurb":306,"body":307,"brief":2074,"category":2075,"description":2076,"draft":2077,"extension":2078,"meta":2079,"module":290,"navigation":2081,"path":296,"practice":2082,"rawbody":2083,"readingTime":2084,"seo":2089,"sources":2090,"status":2097,"stem":2098,"summary":298,"topics":2099,"__hash__":2100},"course\u002F03.computer-architecture\u002F10.capstone\u002F01.the-whole-machine.md","",{"type":308,"value":309,"toc":2063},"minimark",[310,370,375,378,416,434,438,453,457,471,518,568,571,574,578,589,782,793,797,815,841,1077,1309,1312,1328,1339,1343,1366,1369,1378,1424,1448,1470,1519,1534,1559,1562,1580,1583,1590,1594,1609,1612,1615,1619,1622,1644,1824,1834,1840,1847,1851,1854,1892,1911,1943,1951,1966,2059],[311,312,313,314,318,319,322,323,326,327,330,331,334,335,318,338,341,342,322,345,348,349,352,353,356,357,361,362,365,366,369],"p",{},"We have built every layer separately. We fixed the units —\n",[315,316,317],"a",{"href":11},"bits and bytes",", then\n",[315,320,321],{"href":124},"the ALU","\nand ",[315,324,325],{"href":134},"the register file",".\nWe fixed the ",[315,328,329],{"href":100},"Y86-64 ISA","\nthe machine speaks, wired the units into\n",[315,332,333],{"href":158},"SEQ",", watched it\n",[315,336,337],{"href":163},"run a program",[315,339,340],{"href":192},"pipelined it",", gave\nit ",[315,343,344],{"href":211},"caches",[315,346,347],{"href":231},"virtual memory",",\nconnected it to ",[315,350,351],{"href":256},"the outside world",",\nand finally ",[315,354,355],{"href":266},"put a second one on the die",".\nWhat we have not yet done is stand back and see the layers as ",[358,359,360],"strong",{},"one"," thing. This\nlesson makes two passes over the whole machine. First a ",[358,363,364],{},"vertical"," pass: a single\nline of C followed straight down the tower, from source to the charge that moves in\nDRAM. Then a ",[358,367,368],{},"horizontal"," pass, the grand tour: two instructions traced through\nthe full machine — pipeline stages, forwarding, TLBs, caches, a possible page fault,\na timer interrupt — with every stop cross-linked to the lesson that built it. No new\nmechanism appears; the point is that every mechanism covered is one stop on a path a\nvalue actually travels, and they compose.",[371,372,374],"h2",{"id":373},"one-line-all-the-way-down","One line, all the way down",[311,376,377],{},"Here is the line. It is the smallest thing that touches every layer: a read from\nmemory, an arithmetic op, a write back.",[379,380,385],"pre",{"className":381,"code":382,"filename":383,"language":384,"meta":306,"style":306},"language-c shiki shiki-themes Vesper Light - Orange Boost (Quick Open Adjusted) vesper","long s = a[i] + 1;\n","sum.c","c",[386,387,388],"code",{"__ignoreMap":306},[389,390,392,396,400,403,406,409,413],"span",{"class":391,"line":6},"line",[389,393,395],{"class":394},"sdxpw","long",[389,397,399],{"class":398},"s3i95"," s ",[389,401,402],{"class":394},"=",[389,404,405],{"class":398}," a[i] ",[389,407,408],{"class":394},"+",[389,410,412],{"class":411},"sat3U"," 1",[389,414,415],{"class":398},";\n",[311,417,418,419,421,422,425,426,429,430,433],{},"Nothing about it looks like hardware. ",[386,420,315],{}," is an array, ",[386,423,424],{},"i"," an index, ",[386,427,428],{},"s"," a\nvariable; the ",[386,431,432],{},"+ 1"," is arithmetic the way a calculator does arithmetic. But there\nis no array, no variable, and no addition in the machine — only bytes in memory and\na datapath pulling them in. Each layer below translates this line into the\nvocabulary of the layer beneath it, until what is left is gates switching.",[435,436],"tikz-figure",{"hash":437},"1e10cbe5d2adb4a31aba7fae62a6f66d89e625fea0dd01f69b5ae22c03b6ef87",[439,440,442],"callout",{"type":441},"note",[311,443,444,447,448,452],{},[358,445,446],{},"Takeaway."," Every layer of the course is a translation step. The line of C does\nnot ",[449,450,451],"em",{},"run"," at any one level; it is rewritten, level by level, into the language of\nthe level below, until the bottom level is logic gates — and the answer climbs\nback up the same ladder as a stored value.",[371,454,456],{"id":455},"compiler-and-assembler-c-becomes-bytes","Compiler and assembler: C becomes bytes",[311,458,459,460,463,464,467,468,470],{},"The first translation is the ",[358,461,462],{},"compiler",", which lowers the C line into assembly. It\nmust turn the named array access ",[386,465,466],{},"a[i]"," into an explicit address computation (a base\nregister plus an index scaled by the element size) and the abstract ",[386,469,432],{}," into a\nconcrete instruction with a size suffix. In x86-64 the line might compile to a load,\nan add, and a store; in the Y86-64 subset the course implements, the same three\nmoves look like this.",[379,472,477],{"className":473,"code":474,"filename":475,"language":476,"meta":306,"style":306},"language-asm shiki shiki-themes Vesper Light - Orange Boost (Quick Open Adjusted) vesper","mrmovq (%rdi), %rax    # rax \u003C- M[a + i*8]   (the load; %rdi holds the address)\nirmovq $1, %r8         # r8  \u003C- 1            (the constant)\naddq   %r8, %rax       # rax \u003C- rax + 1      (the + 1)\nrmmovq %rax, (%rsi)    # M[&s] \u003C- rax        (store back to s)\n","sum.ys","asm",[386,478,479,488,502,510],{"__ignoreMap":306},[389,480,481,484],{"class":391,"line":6},[389,482,483],{"class":398},"mrmovq (%rdi), %rax   ",[389,485,487],{"class":486},"sEX4i"," # rax \u003C- M[a + i*8]   (the load; %rdi holds the address)\n",[389,489,490,493,496,499],{"class":391,"line":17},[389,491,492],{"class":398},"irmovq ",[389,494,495],{"class":411},"$1",[389,497,498],{"class":398},", %r8        ",[389,500,501],{"class":486}," # r8  \u003C- 1            (the constant)\n",[389,503,504,507],{"class":391,"line":23},[389,505,506],{"class":398},"addq   %r8, %rax      ",[389,508,509],{"class":486}," # rax \u003C- rax + 1      (the + 1)\n",[389,511,512,515],{"class":391,"line":29},[389,513,514],{"class":398},"rmmovq %rax, (%rsi)   ",[389,516,517],{"class":486}," # M[&s] \u003C- rax        (store back to s)\n",[311,519,520,521,524,525,528,529,532,533,536,537,540,541,544,545,548,549,552,553,532,556,559,560,563,564,567],{},"The ",[358,522,523],{},"assembler"," then performs the second translation, and it is purely\nmechanical: each line becomes the exact bytes the\n",[315,526,527],{"href":100},"ISA lesson","\nspecified. ",[386,530,531],{},"mrmovq (%rdi),%rax"," is ",[386,534,535],{},"icode:ifun = 5:0",", register byte ",[386,538,539],{},"rA:rB = 0:7","\n(",[386,542,543],{},"%rax",":",[386,546,547],{},"%rdi","), and an 8-byte displacement of zero: ten bytes,\n",[386,550,551],{},"50 07 00 00 00 00 00 00 00 00",". ",[386,554,555],{},"addq %r8,%rax",[386,557,558],{},"60 80",", two bytes. There is no\ncleverness left at this level: the assembler is a lookup table from mnemonics to the\n",[386,561,562],{},"icode:ifun"," byte, the register nibbles, and the little-endian constant. After it\nruns, the C line exists nowhere — what sits in memory is a run of bytes, and those\nbytes ",[449,565,566],{},"are"," the program.",[311,569,570],{},"The three notations are worth seeing side by side, because the machine only ever\nsees the rightmost column, yet all three are descriptions of the same single\ninstruction.",[435,572],{"hash":573},"c98a922eeae2c3c521eea4151db7aa72bd7e4ad68f85af612db8fa58cf6a3ea6",[371,575,577],{"id":576},"the-datapath-bytes-become-work","The datapath: bytes become work",[311,579,580,581,584,585,588],{},"Now the bytes are in memory and the ",[358,582,583],{},"PC"," holds the address of the first one. From\nhere the machine drives itself, with no compiler and no assembler in sight, just the\n",[315,586,587],{"href":158},"fetch–decode–execute loop","\nturning bytes into state changes.",[590,591,592,708,724,744,761,773],"ul",{},[593,594,595,598,599,602,603,605,606,609,610,688,689,707],"li",{},[358,596,597],{},"Fetch"," reads the bytes at the PC. For our load it pulls ",[386,600,601],{},"50 07 00 …",", splits the\nfirst byte into ",[386,604,535],{},", reads the register byte ",[386,607,608],{},"0:7",", and reads the\n8-byte displacement. It also computes the next-instruction address\n",[389,611,614],{"className":612},[613],"katex",[389,615,619,650,674],{"className":616,"ariaHidden":618},[617],"katex-html","true",[389,620,623,628,638,643,647],{"className":621},[622],"base",[389,624],{"className":625,"style":627},[626],"strut","height:0.6111em;",[389,629,633],{"className":630},[631,632],"mord","text",[389,634,637],{"className":635},[631,636],"texttt","valP",[389,639],{"className":640,"style":642},[641],"mspace","margin-right:0.2778em;",[389,644,402],{"className":645},[646],"mrel",[389,648],{"className":649,"style":642},[641],[389,651,653,657,663,667,671],{"className":652},[622],[389,654],{"className":655,"style":656},[626],"height:0.7667em;vertical-align:-0.0833em;",[389,658,660],{"className":659},[631,632],[389,661,583],{"className":662},[631],[389,664],{"className":665,"style":666},[641],"margin-right:0.2222em;",[389,668,408],{"className":669},[670],"mbin",[389,672],{"className":673,"style":666},[641],[389,675,677,681],{"className":676},[622],[389,678],{"className":679,"style":680},[626],"height:0.6944em;",[389,682,684],{"className":683},[631,632],[389,685,687],{"className":686},[631],"len",", where ",[389,690,692],{"className":691},[613],[389,693,695],{"className":694,"ariaHidden":618},[617],[389,696,698,701],{"className":697},[622],[389,699],{"className":700,"style":680},[626],[389,702,704],{"className":703},[631,632],[389,705,687],{"className":706},[631]," is this instruction's\nbyte length (10 here).",[593,709,710,713,714,716,717,719,720,723],{},[358,711,712],{},"Decode"," uses the register nibbles as addresses into\n",[315,715,325],{"href":134},":\nit reads ",[386,718,547],{}," (the array base address) out the combinational read port as\n",[386,721,722],{},"valB",". No clock, no waiting: the read port simply presents the register's\ncontents.",[593,725,726,729,730,732,733,736,737,740,741,743],{},[358,727,728],{},"Execute"," sends the base and the displacement into\n",[315,731,321],{"href":124},",\nwhich adds them (the same ripple-carry adder from digital logic) to form the\neffective memory address ",[386,734,735],{},"valE = R[%rdi] + 0",". For the later ",[386,738,739],{},"addq"," it is this same\nALU that performs the actual ",[386,742,432],{}," and sets the condition codes.",[593,745,746,749,750,753,754,757,758,760],{},[358,747,748],{},"Memory"," presents ",[386,751,752],{},"valE"," as an address to data memory and reads the word there,\n",[386,755,756],{},"valM"," — this is the ",[386,759,466],{}," access finally happening.",[593,762,763,766,767,769,770,772],{},[358,764,765],{},"Write-back"," clocks ",[386,768,756],{}," into ",[386,771,543],{}," through the register file's write port.",[593,774,775,778,779,781],{},[358,776,777],{},"PC update"," loads ",[386,780,637],{},", and the loop repeats with the next instruction.",[311,783,784,785,788,789,792],{},"Every one of those steps is a unit we built and a mux the\n",[315,786,787],{"href":158},"control unit"," selected. The\nopcode ",[386,790,791],{},"5:0"," is what tells the control logic to route the ALU output to the memory\naddress port and the memory output to the register write port; a different opcode\nwould steer the same wires to a different shape. The datapath is fixed silicon; the\nopcode is what configures it, cycle by cycle.",[371,794,796],{"id":795},"down-to-silicon-and-the-memory-request-path","Down to silicon, and the memory request path",[311,798,799,800,803,804,806,807,810,811,814],{},"Two layers remain below the datapath. The first is the ",[358,801,802],{},"physical logic",": the ALU's\nadder is full adders, each a 3-input XOR and a majority gate; the register file's\nports are decoders and multiplexers; the muxes the control unit drives are AND–OR\ntrees. The ",[386,805,408],{}," in ",[386,808,809],{},"a[i] + 1"," is, at the bottom, a carry rippling through a row of\ngates, which is a wave of transistors switching. There is no arithmetic down there:\nonly switches that, wired the way digital logic prescribed, ",[449,812,813],{},"compute"," the sum as a\nside effect of settling.",[311,816,817,818,821,822,824,825,828,829,832,833,836,837,840],{},"The second is the ",[358,819,820],{},"memory request path",". When Memory asks for the word at ",[386,823,752],{},",\nthat address is a ",[358,826,827],{},"virtual"," address, and reaching the real bits takes several\nsteps. The cache is checked first; on a miss the virtual address is translated to a\nphysical one (the ",[358,830,831],{},"TLB"," answers fast if it has seen the page; otherwise the ",[358,834,835],{},"page\ntable"," in memory is walked), and only then does the request reach physical ",[358,838,839],{},"DRAM",",\nwhere reading the word means sensing charge on a row of one-transistor cells and\nrestoring it after the destructive read. The observed access time is the hit time\nplus the amortized miss penalty,",[389,842,845],{"className":843},[844],"katex-display",[389,846,848],{"className":847},[613],[389,849,851,933,996,1017],{"className":850,"ariaHidden":618},[617],[389,852,854,858,924,927,930],{"className":853},[622],[389,855],{"className":856,"style":857},[626],"height:0.8333em;vertical-align:-0.15em;",[389,859,861,867],{"className":860},[631],[389,862,866],{"className":863,"style":865},[631,864],"mathnormal","margin-right:0.1389em;","T",[389,868,871],{"className":869},[870],"msupsub",[389,872,876,915],{"className":873},[874,875],"vlist-t","vlist-t2",[389,877,880,910],{"className":878},[879],"vlist-r",[389,881,885],{"className":882,"style":884},[883],"vlist","height:0.1514em;",[389,886,888,893],{"style":887},"top:-2.55em;margin-left:-0.1389em;margin-right:0.05em;",[389,889],{"className":890,"style":892},[891],"pstrut","height:2.7em;",[389,894,900],{"className":895},[896,897,898,899],"sizing","reset-size6","size3","mtight",[389,901,903],{"className":902},[631,899],[389,904,906],{"className":905},[631,632,899],[389,907,909],{"className":908},[631,899],"access",[389,911,914],{"className":912},[913],"vlist-s","​",[389,916,918],{"className":917},[879],[389,919,922],{"className":920,"style":921},[883],"height:0.15em;",[389,923],{},[389,925],{"className":926,"style":642},[641],[389,928,402],{"className":929},[646],[389,931],{"className":932,"style":642},[641],[389,934,936,939,987,990,993],{"className":935},[622],[389,937],{"className":938,"style":857},[626],[389,940,942,945],{"className":941},[631],[389,943,866],{"className":944,"style":865},[631,864],[389,946,948],{"className":947},[870],[389,949,951,979],{"className":950},[874,875],[389,952,954,976],{"className":953},[879],[389,955,958],{"className":956,"style":957},[883],"height:0.3361em;",[389,959,960,963],{"style":887},[389,961],{"className":962,"style":892},[891],[389,964,966],{"className":965},[896,897,898,899],[389,967,969],{"className":968},[631,899],[389,970,972],{"className":971},[631,632,899],[389,973,975],{"className":974},[631,899],"hit",[389,977,914],{"className":978},[913],[389,980,982],{"className":981},[879],[389,983,985],{"className":984,"style":921},[883],[389,986],{},[389,988],{"className":989,"style":666},[641],[389,991,408],{"className":992},[670],[389,994],{"className":995,"style":666},[641],[389,997,999,1003,1007,1010,1014],{"className":998},[622],[389,1000],{"className":1001,"style":1002},[626],"height:0.4445em;",[389,1004,1006],{"className":1005},[631,864],"m",[389,1008],{"className":1009,"style":666},[641],[389,1011,1013],{"className":1012},[670],"⋅",[389,1015],{"className":1016,"style":666},[641],[389,1018,1020,1024,1072],{"className":1019},[622],[389,1021],{"className":1022,"style":1023},[626],"height:0.8778em;vertical-align:-0.1944em;",[389,1025,1027,1030],{"className":1026},[631],[389,1028,866],{"className":1029,"style":865},[631,864],[389,1031,1033],{"className":1032},[870],[389,1034,1036,1064],{"className":1035},[874,875],[389,1037,1039,1061],{"className":1038},[879],[389,1040,1043],{"className":1041,"style":1042},[883],"height:0.3175em;",[389,1044,1045,1048],{"style":887},[389,1046],{"className":1047,"style":892},[891],[389,1049,1051],{"className":1050},[896,897,898,899],[389,1052,1054],{"className":1053},[631,899],[389,1055,1057],{"className":1056},[631,632,899],[389,1058,1060],{"className":1059},[631,899],"miss",[389,1062,914],{"className":1063},[913],[389,1065,1067],{"className":1066},[879],[389,1068,1070],{"className":1069,"style":921},[883],[389,1071],{},[389,1073,1076],{"className":1074},[1075],"mpunct",",",[311,1078,1079,1080,1096,1097,1155,1156,1171,1172,1292,1293,1296,1297,1300,1301,1304,1305,1308],{},"with miss rate ",[389,1081,1083],{"className":1082},[613],[389,1084,1086],{"className":1085,"ariaHidden":618},[617],[389,1087,1089,1093],{"className":1088},[622],[389,1090],{"className":1091,"style":1092},[626],"height:0.4306em;",[389,1094,1006],{"className":1095},[631,864]," and ",[389,1098,1100],{"className":1099},[613],[389,1101,1103],{"className":1102,"ariaHidden":618},[617],[389,1104,1106,1109],{"className":1105},[622],[389,1107],{"className":1108,"style":857},[626],[389,1110,1112,1115],{"className":1111},[631],[389,1113,866],{"className":1114,"style":865},[631,864],[389,1116,1118],{"className":1117},[870],[389,1119,1121,1147],{"className":1120},[874,875],[389,1122,1124,1144],{"className":1123},[879],[389,1125,1127],{"className":1126,"style":1042},[883],[389,1128,1129,1132],{"style":887},[389,1130],{"className":1131,"style":892},[891],[389,1133,1135],{"className":1134},[896,897,898,899],[389,1136,1138],{"className":1137},[631,899],[389,1139,1141],{"className":1140},[631,632,899],[389,1142,1060],{"className":1143},[631,899],[389,1145,914],{"className":1146},[913],[389,1148,1150],{"className":1149},[879],[389,1151,1153],{"className":1152,"style":921},[883],[389,1154],{}," the cost of descending toward DRAM; the\nwhole hierarchy exists to drive ",[389,1157,1159],{"className":1158},[613],[389,1160,1162],{"className":1161,"ariaHidden":618},[617],[389,1163,1165,1168],{"className":1164},[622],[389,1166],{"className":1167,"style":1092},[626],[389,1169,1006],{"className":1170},[631,864]," toward zero so ",[389,1173,1175],{"className":1174},[613],[389,1176,1178,1240],{"className":1177,"ariaHidden":618},[617],[389,1179,1181,1184,1230,1233,1237],{"className":1180},[622],[389,1182],{"className":1183,"style":857},[626],[389,1185,1187,1190],{"className":1186},[631],[389,1188,866],{"className":1189,"style":865},[631,864],[389,1191,1193],{"className":1192},[870],[389,1194,1196,1222],{"className":1195},[874,875],[389,1197,1199,1219],{"className":1198},[879],[389,1200,1202],{"className":1201,"style":884},[883],[389,1203,1204,1207],{"style":887},[389,1205],{"className":1206,"style":892},[891],[389,1208,1210],{"className":1209},[896,897,898,899],[389,1211,1213],{"className":1212},[631,899],[389,1214,1216],{"className":1215},[631,632,899],[389,1217,909],{"className":1218},[631,899],[389,1220,914],{"className":1221},[913],[389,1223,1225],{"className":1224},[879],[389,1226,1228],{"className":1227,"style":921},[883],[389,1229],{},[389,1231],{"className":1232,"style":642},[641],[389,1234,1236],{"className":1235},[646],"→",[389,1238],{"className":1239,"style":642},[641],[389,1241,1243,1246],{"className":1242},[622],[389,1244],{"className":1245,"style":857},[626],[389,1247,1249,1252],{"className":1248},[631],[389,1250,866],{"className":1251,"style":865},[631,864],[389,1253,1255],{"className":1254},[870],[389,1256,1258,1284],{"className":1257},[874,875],[389,1259,1261,1281],{"className":1260},[879],[389,1262,1264],{"className":1263,"style":957},[883],[389,1265,1266,1269],{"style":887},[389,1267],{"className":1268,"style":892},[891],[389,1270,1272],{"className":1271},[896,897,898,899],[389,1273,1275],{"className":1274},[631,899],[389,1276,1278],{"className":1277},[631,632,899],[389,1279,975],{"className":1280},[631,899],[389,1282,914],{"className":1283},[913],[389,1285,1287],{"className":1286},[879],[389,1288,1290],{"className":1289,"style":921},[883],[389,1291],{},". Two side exits complicate the picture, and\nthe course built both. If the walk finds the page absent, the access does not\ncomplete at all: it becomes a\n",[315,1294,1295],{"href":236},"page fault",", the\nkernel pages the data in from disk, and the instruction re-executes. And on the\nmulticore die of\n",[315,1298,1299],{"href":286},"module 9",",\na miss consults more than DRAM: the freshest copy of the line may be sitting\nmodified in a ",[358,1302,1303],{},"peer core's cache",", and the\n",[315,1306,1307],{"href":276},"coherence protocol","\nmust fetch it from there, because DRAM's copy is stale.",[435,1310],{"hash":1311},"33f9ceb8faac02577c51366031c042d1c818e7d1d7090cf77122687810020cac",[311,1313,1314,1315,1317,1318,1320,1321,1324,1325,1327],{},"The word comes back the way it went out — DRAM to cache to the datapath's Memory\nstage — and rises through Write-back into ",[386,1316,543],{},", where the ",[386,1319,739],{}," adds one and the\n",[386,1322,1323],{},"rmmovq"," sends it down the same path again to store ",[386,1326,428],{},". The whole round trip, from a\nC subscript to charge in a capacitor and back, is the course read end to end.",[439,1329,1330],{"type":441},[311,1331,1332,1334,1335,1338],{},[358,1333,446],{}," ",[386,1336,1337],{},"long s = a[i] + 1;"," is not one operation but a stack of\ntranslations: the compiler turns it into assembly, the assembler into bytes, the\ndatapath fetches and decodes those bytes, the ALU and register file do the work,\nand the memory access threads through cache, TLB or page table, and DRAM before\nthe answer climbs back up. Every module of this course names one rung of that\nladder, and the rungs are continuous — a value really does travel the whole length.",[371,1340,1342],{"id":1341},"the-grand-tour-two-instructions-on-the-full-machine","The grand tour: two instructions on the full machine",[311,1344,1345,1346,1348,1349,1351,1352,1355,1356,1358,1359,1362,1363,1365],{},"The walk above ran on bare SEQ: ideal one-cycle memories, one instruction at a\ntime, nothing else on the machine. The later modules removed every one of those\nsimplifications. ",[315,1347,167],{"href":177},"\nput five instructions in flight at once;\n",[315,1350,344],{"href":211}," made\nmemory fast only where\n",[315,1353,1354],{"href":206},"locality"," holds;\n",[315,1357,347],{"href":231},"\ninserted a translation between every address the program names and every address\nthe hardware touches;\n",[315,1360,1361],{"href":256},"interrupts","\nlet the outside world preempt the program between any two instructions; and\n",[315,1364,1299],{"href":286},"\nput a second core on the die and required the caches to stay coherent. Here is the\nmachine as the course actually left it.",[435,1367],{"hash":1368},"2a8533b40f86a7ea33420cf8153b5a375e9c9a4408b2b2365b18e12b221dab8f",[311,1370,1371,1372,1374,1375,1377],{},"Now run two instructions from the compiled line — the load ",[386,1373,531],{},"\nand, right behind it, ",[386,1376,555],{}," — across this machine, stage by stage. This\nis the course's grand tour: every clause below is a lesson.",[311,1379,1380,1383,1384,1387,1388,1390,1391,1394,1395,1398,1399,1402,1403,1406,1407,1410,1411,1413,1414,1416,1417,1420,1421,1423],{},[358,1381,1382],{},"Fetch."," The pipeline does not wait to be sure what to fetch next; the\n",[315,1385,1386],{"href":187},"PC prediction logic","\nguesses (for straight-line code, correctly) that the next instruction follows the\ncurrent one, and fetch proceeds. The PC it presents is a ",[358,1389,827],{}," address,\nso it is translated first: the ",[358,1392,1393],{},"i-TLB"," answers in the same cycle if the page is\nwarm (",[315,1396,1397],{"href":241},"the TLB lesson",").\nThe physical address then indexes the ",[358,1400,1401],{},"L1 i-cache",", whose\n",[315,1404,1405],{"href":211},"set-index\u002Ftag-compare machinery","\nreturns the ten instruction bytes on a hit. The\n",[315,1408,1409],{"href":148},"fetch stage"," splits them:\n",[386,1412,535],{},", registers ",[386,1415,608],{},", displacement ",[386,1418,1419],{},"0",", and ",[386,1422,637],{},".",[311,1425,1426,1429,1430,1433,1434,1436,1437,1439,1440,1443,1444,1447],{},[358,1427,1428],{},"Decode."," The register nibbles address the\n",[315,1431,1432],{"href":134},"register file",",\nwhich presents ",[386,1435,547],{}," combinationally. But in a pipeline the register file can be\nstale: an older instruction that writes ",[386,1438,547],{}," may still be in flight ahead of us.\nSo decode does not use the file's value blindly: the\n",[315,1441,1442],{"href":182},"forwarding logic","\ncompares our source registers against the destination fields of everything in\nExecute, Memory, and Write-back, and takes the youngest match off the bypass wires\ninstead. For this load there is no conflict; ",[386,1445,1446],{},"valB = R[%rdi]"," stands.",[311,1449,1450,1453,1454,1457,1458,1461,1462,1465,1466,1469],{},[358,1451,1452],{},"Execute."," The ",[315,1455,1456],{"href":124},"ALU","\nadds base and displacement to form the effective address, exactly as in SEQ. A\n",[386,1459,1460],{},"mrmovq"," leaves the\n",[315,1463,1464],{"href":129},"condition codes","\nalone; only the ",[386,1467,1468],{},"OPq"," instructions set them.",[311,1471,1472,1475,1476,1479,1480,1483,1484,1487,1488,1490,1491,1493,1494,1497,1498,1500,1501,1504,1505,1508,1509,1511,1512,1515,1516,1518],{},[358,1473,1474],{},"Memory."," The effective address is again virtual: the ",[358,1477,1478],{},"d-TLB"," translates it. A\nTLB miss costs a\n",[315,1481,1482],{"href":241},"page-table walk",":\na few dependent memory reads, tens of cycles. And if the walk finds the page not\npresent, the access does not merely slow down; it ",[358,1485,1486],{},"cannot complete",". The machine\nraises a ",[315,1489,1295],{"href":236},":\nthe ",[386,1492,1460],{}," and everything younger is cancelled, the\n",[315,1495,1496],{"href":251},"exception machinery","\ntransfers to the kernel with the faulting address in hand, the kernel pages the\ndata in from disk, and the same ",[386,1499,1460],{}," re-executes as if nothing happened:\nprecise exceptions, doing exactly the job\n",[315,1502,1503],{"href":192},"PIPE's special cases","\nprepared for. On the ordinary path the physical address probes the ",[358,1506,1507],{},"L1 d-cache",";\na hit returns ",[386,1510,756],{}," in a few cycles, and a miss descends the\n",[315,1513,1514],{"href":201},"hierarchy","\ntoward DRAM, two hundred cycles away. On the multicore die, that miss carries one\nmore obligation: the ",[315,1517,1307],{"href":276},"\nchecks whether the other core holds the line modified, and if so the data comes\nfrom the peer cache, not from DRAM, whose copy is stale.",[311,1520,1521,1334,1524,1526,1527,1529,1530,1533],{},[358,1522,1523],{},"Write-back.",[386,1525,756],{}," reaches the register file's write port and clocks into\n",[386,1528,543],{}," at the\n",[315,1531,1532],{"href":129},"rising edge",".\nOne instruction done.",[311,1535,1536,1537,1539,1540,1542,1543,1546,1547,1549,1550,1552,1553,1555,1556,1558],{},"Meanwhile the ",[386,1538,555],{}," has been one stage behind the whole time, and it\nneeds ",[386,1541,543],{}," — the very register the load is still fetching from memory. This is\nthe ",[315,1544,1545],{"href":182},"load-use hazard",":\nforwarding alone cannot fix it, because when ",[386,1548,739],{}," sits in Decode the load's data\ndoes not exist anywhere in the pipeline yet. The control logic holds ",[386,1551,739],{}," in\nDecode for one extra cycle and injects a bubble into Execute; one cycle later the\nload is in Memory, its ",[386,1554,756],{}," appears on the bypass wire, and forwarding hands it\nstraight to ",[386,1557,739],{},"'s Decode: the register file itself is skipped.",[435,1560],{"hash":1561},"3d209e771db84fdf8aa1f93aed00c3321492bcca8df7dac92a63d8ccfafd2139",[311,1563,1564,1565,1568,1569,1572,1573,1576,1577,1423],{},"The outside world can also cut in at any instruction boundary. Suppose\nthe millisecond ",[358,1566,1567],{},"timer"," fires while the load is in Execute. Nothing halts\nmid-gate. The\n",[315,1570,1571],{"href":256},"interrupt machinery","\npicks a clean boundary: instructions ahead of the boundary complete, instructions\nbehind it are cancelled, the address of the next unexecuted instruction is saved,\nand control vectors through the interrupt table into the kernel. The kernel may\nonly tick its clock and return, or it may decide this thread's quantum is spent\nand ",[315,1574,1575],{"href":266},"hand the core to another thread",",\nloading that thread's saved registers and page-table base. Either way, when our\nprogram next runs, the saved PC is restored and the trace resumes exactly where it\nstopped. The program cannot tell it was ever off the CPU; that invisibility is the\nwhole design goal of\n",[315,1578,1579],{"href":251},"exceptional control flow",[435,1581],{"hash":1582},"8c8cb8deee60d35253b22a9e7a9c3397bab561711a54c5bc37e583eb5417ba1e",[439,1584,1585],{"type":441},[311,1586,1587,1589],{},[358,1588,446],{}," One load, traced honestly, touches every module of the course: PC\nprediction (pipelining), the i-TLB and d-TLB (virtual memory), two L1 caches and\nthe hierarchy below them (memory hierarchy), the register file and ALU (digital\nlogic), forwarding and a load-use stall (pipelining), a possible page fault\n(virtual memory meeting exceptions), a possible interrupt (exceptions and I\u002FO),\nand, on a multicore, the coherence protocol (module 9). The subsystems are\nstations on one path.",[371,1591,1593],{"id":1592},"the-map-of-the-course","The map of the course",[311,1595,1596,1597,1600,1601,1604,1605,1608],{},"Three strands of the course ran in parallel and\nmet in the middle. The ",[358,1598,1599],{},"program strand"," (foundations, machine-level x86-64, the\nISA) settled what must be computed, ending in an exact contract: bytes with\ndefined meanings. The ",[358,1602,1603],{},"processor strand"," (digital logic, processor design,\npipelining) built the thing that honors the contract, ending in PIPE. And the\n",[358,1606,1607],{},"memory-and-world strand"," (the memory hierarchy, virtual memory, exceptions and\nI\u002FO, multicore) surrounded that processor with everything a real machine needs:\nstorage that keeps up, address spaces that protect, a connection to devices, and\nmore cores than one. The capstone is where the strands tie.",[435,1610],{"hash":1611},"41a150d5da7c6c0508e9f5d14d0ab0cadcc84d59029f18fa574e4ed0adbd48c8",[311,1613,1614],{},"Read the map against the grand tour and the two agree: the program strand wrote the\nbytes the tour fetched, the processor strand executed them, and the\nmemory-and-world strand served every address, fault, and interrupt along the way.",[371,1616,1618],{"id":1617},"what-we-simplified","What we simplified",[311,1620,1621],{},"The machine above is real — it is, structurally, the machine in your laptop. But a\nmodern x86-64 core is bigger than PIPE in three specific ways this course chose to\nleave out, and honesty requires naming them. Each gets a paragraph and a pointer;\nall three are beyond this course's scope, sketched in CS:APP §5.7.",[311,1623,1624,1627,1628,1631,1632,1635,1636,1639,1640,1643],{},[358,1625,1626],{},"Out-of-order execution."," PIPE keeps instructions in program order from fetch to\nwrite-back; one long stall holds up everything behind it. A modern core does not\nwait. It ",[358,1629,1630],{},"renames"," registers to strip false dependences, parks decoded\ninstructions in an issue queue, and lets each one run the moment ",[449,1633,1634],{},"its own","\noperands are ready, often with hundreds of instructions in flight, finishing in an\norder the program never wrote. A ",[358,1637,1638],{},"reorder buffer"," then retires results strictly\nin program order, so the architectural state advances as if execution had been\nsequential and\n",[315,1641,1642],{"href":251},"exceptions stay precise",".\nThe effect is a machine that extracts the dataflow graph from the instruction\nstream at runtime and executes the graph, not the listing.",[311,1645,1646,1649,1650,1691,1692,1709,1710,1725,1726,1767,1768,1802,1803,1819,1820,1823],{},[358,1647,1648],{},"Superscalar issue."," PIPE launches at most one instruction per cycle, so\n",[389,1651,1653],{"className":1652},[613],[389,1654,1656,1680],{"className":1655,"ariaHidden":618},[617],[389,1657,1659,1663,1670,1673,1677],{"className":1658},[622],[389,1660],{"className":1661,"style":1662},[626],"height:0.8193em;vertical-align:-0.136em;",[389,1664,1666],{"className":1665},[631,632],[389,1667,1669],{"className":1668},[631],"CPI",[389,1671],{"className":1672,"style":642},[641],[389,1674,1676],{"className":1675},[646],"≥",[389,1678],{"className":1679,"style":642},[641],[389,1681,1683,1687],{"className":1682},[622],[389,1684],{"className":1685,"style":1686},[626],"height:0.6444em;",[389,1688,1690],{"className":1689},[631],"1.0"," always. A superscalar core of width ",[389,1693,1695],{"className":1694},[613],[389,1696,1698],{"className":1697,"ariaHidden":618},[617],[389,1699,1701,1704],{"className":1700},[622],[389,1702],{"className":1703,"style":1092},[626],[389,1705,1708],{"className":1706,"style":1707},[631,864],"margin-right:0.0269em;","w"," issues up to ",[389,1711,1713],{"className":1712},[613],[389,1714,1716],{"className":1715,"ariaHidden":618},[617],[389,1717,1719,1722],{"className":1718},[622],[389,1720],{"className":1721,"style":1092},[626],[389,1723,1708],{"className":1724,"style":1707},[631,864],"\ninstructions per cycle, admitting ",[389,1727,1729],{"className":1728},[613],[389,1730,1732,1753],{"className":1731,"ariaHidden":618},[617],[389,1733,1735,1738,1744,1747,1750],{"className":1734},[622],[389,1736],{"className":1737,"style":1662},[626],[389,1739,1741],{"className":1740},[631,632],[389,1742,1669],{"className":1743},[631],[389,1745],{"className":1746,"style":642},[641],[389,1748,1676],{"className":1749},[646],[389,1751],{"className":1752,"style":642},[641],[389,1754,1756,1760,1764],{"className":1755},[622],[389,1757],{"className":1758,"style":1759},[626],"height:1em;vertical-align:-0.25em;",[389,1761,1763],{"className":1762},[631],"1\u002F",[389,1765,1708],{"className":1766,"style":1707},[631,864]," — with ",[389,1769,1771],{"className":1770},[613],[389,1772,1774,1792],{"className":1773,"ariaHidden":618},[617],[389,1775,1777,1780,1783,1786,1789],{"className":1776},[622],[389,1778],{"className":1779,"style":1092},[626],[389,1781,1708],{"className":1782,"style":1707},[631,864],[389,1784],{"className":1785,"style":642},[641],[389,1787,402],{"className":1788},[646],[389,1790],{"className":1791,"style":642},[641],[389,1793,1795,1798],{"className":1794},[622],[389,1796],{"className":1797,"style":1686},[626],[389,1799,1801],{"className":1800},[631],"4","–",[389,1804,1806],{"className":1805},[613],[389,1807,1809],{"className":1808,"ariaHidden":618},[617],[389,1810,1812,1815],{"className":1811},[622],[389,1813],{"className":1814,"style":1686},[626],[389,1816,1818],{"className":1817},[631],"8","\ninstructions dispatched into multiple ALUs, load\u002Fstore ports, and branch units. The\ncost is roughly quadratic growth in the machinery we\nbuilt once: forwarding networks between every producer and every consumer, hazard\nchecks across every pair of in-flight instructions, register files with a dozen\nports instead of\n",[315,1821,1822],{"href":134},"our three",".\nNothing conceptually new appears (the same hazards, the same bypasses), but the\nbookkeeping multiplies until it dominates the die.",[311,1825,1826,1829,1830,1833],{},[358,1827,1828],{},"Speculation beyond branches."," We speculated on exactly one thing:\n",[315,1831,1832],{"href":187},"branch direction",",\nwith a squash-and-refetch when wrong. Real cores speculate wholesale: that a load\nwill not conflict with an older store whose address is still unknown, that a value\nwill match last time's, that the next cache lines the program wants are the ones a\nprefetcher guesses. Every guess needs recovery machinery when it misses, and the\nguesses leave footprints: a speculatively loaded line sits in the cache even after\nthe speculation is squashed, a residue that timing can observe and that modern\nsecurity work spends real effort containing.",[311,1835,1836,1837,1839],{},"None of these change the contract. An out-of-order, superscalar, deeply\nspeculative core still presents the ISA's illusion: instructions appear to execute\none at a time, in order, exactly as\n",[315,1838,333],{"href":158}," actually does it.\nThat is why the simple machine is worth building: it is the specification the\ncomplicated one must imitate.",[439,1841,1842],{"type":441},[311,1843,1844,1846],{},[358,1845,446],{}," What this course omitted is acceleration, not architecture:\nout-of-order execution reorders work under an in-order facade, superscalar issue\nmultiplies the datapath's width, and speculation generalizes the branch\npredictor's bet to loads, values, and prefetches. All of it exists to feed the\nsame fetch–decode–execute contract we built — and all of it retires, in the end,\nin program order, pretending to be SEQ.",[371,1848,1850],{"id":1849},"where-the-three-simplifications-came-from","Where the three simplifications came from",[311,1852,1853],{},"CS:APP §5.7 sketches the modern out-of-order core; the ideas have names and origins\nworth attaching, because each answers a specific question the simple machine leaves\nopen, and each is still live.",[311,1855,1856,1859,1860,1863,1864,1874,1875,1879,1880,1883,1884],{},[358,1857,1858],{},"Out-of-order issue is a 1967 idea."," The mechanism that lets a modern core run\ninstructions as their operands become ready, rather than in program order, is\n",[358,1861,1862],{},"Tomasulo's algorithm",", designed for the IBM System\u002F360 Model 91's floating-point\nunit.",[1865,1866,1867],"sup",{},[315,1868,1873],{"href":1869,"ariaDescribedBy":1870,"dataFootnoteRef":306,"id":1872},"#user-content-fn-tomasulo",[1871],"footnote-label","user-content-fnref-tomasulo","1"," Its two moving parts are the ones the ",[1876,1877,1878],"q",{},"what we simplified","\nsection named: reservation stations that hold waiting instructions and a\nresult-broadcast bus that wakes them, which together perform register renaming\nimplicitly. Nearly every high-performance core since is a descendant. The ",[358,1881,1882],{},"reorder\nbuffer"," that retires results back in program order — keeping exceptions precise — was\nadded later, and the canonical treatment of precise interrupts on such a machine is\nSmith and Pleszkun's.",[1865,1885,1886],{},[315,1887,1891],{"href":1888,"ariaDescribedBy":1889,"dataFootnoteRef":306,"id":1890},"#user-content-fn-precise",[1871],"user-content-fnref-precise","2",[311,1893,1894,1897,1898,1901,1902,1910],{},[358,1895,1896],{},"Branch prediction is what makes deep pipelines viable."," The course predicted branch\n",[449,1899,1900],{},"direction"," with a simple scheme; real cores use two-level and correlating predictors\nthat learn per-branch and per-history patterns, the line of work opened by Smith and\nextended by Yeh and Patt.",[1865,1903,1904],{},[315,1905,1909],{"href":1906,"ariaDescribedBy":1907,"dataFootnoteRef":306,"id":1908},"#user-content-fn-branchpred",[1871],"user-content-fnref-branchpred","3"," The deeper the pipeline and the wider the\nissue, the more a misprediction costs, so prediction accuracy — now well above 95% on\ntypical code — is what keeps a fifteen-stage superscalar core from losing most of\nits work to squashes.",[311,1912,1913,1916,1917,1920,1921,322,1924,1927,1928,1935,1936,1939,1940],{},[358,1914,1915],{},"Speculation left a security hole."," The lesson noted that a speculatively loaded\ncache line ",[1876,1918,1919],{},"sits in the cache even after the speculation is squashed, a residue that timing can observe."," That residue is not hypothetical: it is the basis of ",[358,1922,1923],{},"Spectre",[358,1925,1926],{},"Meltdown"," (2018), which trick a core into speculatively accessing data across a\nprotection boundary and then read the secret back out through cache timing, even\nthough the architectural state was correctly rolled back.",[1865,1929,1930],{},[315,1931,1801],{"href":1932,"ariaDescribedBy":1933,"dataFootnoteRef":306,"id":1934},"#user-content-fn-spectre",[1871],"user-content-fnref-spectre"," The\narchitecture\u002Fmicroarchitecture split this course leaned on — the promise that\nmicroarchitecture is invisible to correctness — turned out to leak: the timing of the\nimplementation is observable in a way the ISA never accounted for. It is a\nreminder that ",[1876,1937,1938],{},"invisible to results"," is not the same as ",[1876,1941,1942],{},"invisible.",[439,1944,1945],{"type":441},[311,1946,1947,1950],{},[358,1948,1949],{},"Beyond-the-book takeaway."," The three accelerations are named, old, and\nconsequential: Tomasulo's algorithm (1967) for out-of-order issue with a reorder\nbuffer for precise exceptions, decades of branch-prediction research to feed deep\npipelines, and speculation whose microarchitectural residue became the Spectre\u002F\nMeltdown class of attacks. The simple machine is the specification; the fast\nmachine is these ideas layered on it — and the last one shows the layers are not\nperfectly sealed.",[311,1952,1953,1954,1957,1958,1961,1962,1965],{},"That is the synthesis in the abstract. The\n",[315,1955,1956],{"href":301},"final lesson"," makes it\nphysical: it bolts the named parts (PC, instruction memory, register file, ALU,\ndata memory, control unit) into one block diagram, powers the machine on from\nreset, and runs a complete compiled program (an array sum with a real ",[386,1959,1960],{},"call"," and\n",[386,1963,1964],{},"ret",") across it, cycle by cycle, until the answer lands in a register, and then asks\nwhat it would take to put two of these cores on one die.",[1967,1968,1971,1976],"section",{"className":1969,"dataFootnotes":306},[1970],"footnotes",[371,1972,1975],{"className":1973,"id":1871},[1974],"sr-only","Footnotes",[1977,1978,1979,2000,2015,2037],"ol",{},[593,1980,1982,1985,1986,1334,1989,1992,1993],{"id":1981},"user-content-fn-tomasulo",[358,1983,1984],{},"R. M. Tomasulo",", ",[1876,1987,1988],{},"An Efficient Algorithm for Exploiting Multiple Arithmetic Units,",[449,1990,1991],{},"IBM Journal of Research and Development"," 11(1), 1967 — the\nreservation-station and common-data-bus scheme, with implicit register renaming,\nunderlying modern out-of-order execution. ",[315,1994,1999],{"href":1995,"ariaLabel":1996,"className":1997,"dataFootnoteBackref":306},"#user-content-fnref-tomasulo","Back to reference 1",[1998],"data-footnote-backref","↩",[593,2001,2003,1985,2006,2009,2010],{"id":2002},"user-content-fn-precise",[358,2004,2005],{},"J. E. Smith and A. R. Pleszkun",[1876,2007,2008],{},"Implementation of Precise Interrupts in Pipelined Processors,"," ISCA 1985 — the reorder buffer and related mechanisms\nthat let an out-of-order machine retire in program order and keep exceptions\nprecise. ",[315,2011,1999],{"href":2012,"ariaLabel":2013,"className":2014,"dataFootnoteBackref":306},"#user-content-fnref-precise","Back to reference 2",[1998],[593,2016,2018,1985,2021,2024,2025,1985,2028,2031,2032],{"id":2017},"user-content-fn-branchpred",[358,2019,2020],{},"J. E. Smith",[1876,2022,2023],{},"A Study of Branch Prediction Strategies,"," ISCA 1981,\nand ",[358,2026,2027],{},"T.-Y. Yeh and Y. N. Patt",[1876,2029,2030],{},"Two-Level Adaptive Training Branch Prediction,","\nMICRO 1991 — foundational dynamic branch-prediction schemes. ",[315,2033,1999],{"href":2034,"ariaLabel":2035,"className":2036,"dataFootnoteBackref":306},"#user-content-fnref-branchpred","Back to reference 3",[1998],[593,2038,2040,1985,2043,2046,2047,1985,2050,2053,2054],{"id":2039},"user-content-fn-spectre",[358,2041,2042],{},"P. Kocher et al.",[1876,2044,2045],{},"Spectre Attacks: Exploiting Speculative Execution,","\nIEEE S&P 2019, and ",[358,2048,2049],{},"M. Lipp et al.",[1876,2051,2052],{},"Meltdown: Reading Kernel Memory from User Space,"," USENIX Security 2018 — attacks that read secrets through the cache-timing\nresidue of squashed speculative execution. ",[315,2055,1999],{"href":2056,"ariaLabel":2057,"className":2058,"dataFootnoteBackref":306},"#user-content-fnref-spectre","Back to reference 4",[1998],[2060,2061,2062],"style",{},"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 .sat3U, html code.shiki .sat3U{--shiki-default:#FF8C00;--shiki-dark-mode:#FFC799}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 .sEX4i, html code.shiki .sEX4i{--shiki-default:#8B8B8B;--shiki-dark-mode:#8B8B8B94}",{"title":306,"searchDepth":17,"depth":17,"links":2064},[2065,2066,2067,2068,2069,2070,2071,2072,2073],{"id":373,"depth":17,"text":374},{"id":455,"depth":17,"text":456},{"id":576,"depth":17,"text":577},{"id":795,"depth":17,"text":796},{"id":1341,"depth":17,"text":1342},{"id":1592,"depth":17,"text":1593},{"id":1617,"depth":17,"text":1618},{"id":1849,"depth":17,"text":1850},{"id":1871,"depth":17,"text":1975},[],"computer-science","We have built every layer separately. We fixed the units —\nbits and bytes, then\nthe ALU\nand the register file.\nWe fixed the Y86-64 ISA\nthe machine speaks, wired the units into\nSEQ, watched it\nrun a program, then\npipelined it, gave\nit caches\nand virtual memory,\nconnected it to the outside world,\nand finally put a second one on the die.\nWhat we have not yet done is stand back and see the layers as one thing. This\nlesson makes two passes over the whole machine. First a vertical pass: a single\nline of C followed straight down the tower, from source to the charge that moves in\nDRAM. Then a horizontal pass, the grand tour: two instructions traced through\nthe full machine — pipeline stages, forwarding, TLBs, caches, a possible page fault,\na timer interrupt — with every stop cross-linked to the lesson that built it. No new\nmechanism appears; the point is that every mechanism covered is one stop on a path a\nvalue actually travels, and they compose.",false,"md",{"moduleNumber":261,"lessonNumber":6,"order":2080},1001,true,[],"---\ntitle: The Whole Machine\nmodule: Capstone\nmoduleNumber: 10\nlessonNumber: 1\norder: 1001\nsummary: >\n  We take one line of C down the whole tower the\n  course built — compiler to assembly, assembly to machine-code bytes, the bytes\n  into the fetch–decode–execute datapath — then trace one load and\n  one add through the pipelined, cached, translated, interruptible machine,\n  each step cross-linked to the lesson that built it. We close with the map of\n  the course as a stack of layers and an accounting of what we simplified:\n  out-of-order execution, superscalar issue, and speculation past the branch\n  predictor.\ntopics: [Capstone]\nsources:\n  - book: Bryant & O'Hallaron\n    ref: \"CS:APP — §4 Processor Architecture (synthesis); §5.7 Modern Processor Operation\"\n  - book: Bistriceanu\n    ref: \"Computer Architecture Notes — §2 Basic Organization \u002F §5 CPU Implementation\"\n---\n\nWe have built every layer separately. We fixed the units —\n[bits and bytes](\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words), then\n[the ALU](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu)\nand [the register file](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory).\nWe fixed the [Y86-64 ISA](\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set)\nthe machine speaks, wired the units into\n[SEQ](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq), watched it\n[run a program](\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program), then\n[pipelined it](\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor), gave\nit [caches](\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped)\nand [virtual memory](\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation),\nconnected it to [the outside world](\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel),\nand finally [put a second one on the die](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism).\nWhat we have not yet done is stand back and see the layers as **one** thing. This\nlesson makes two passes over the whole machine. First a **vertical** pass: a single\nline of C followed straight down the tower, from source to the charge that moves in\nDRAM. Then a **horizontal** pass, the grand tour: two instructions traced through\nthe full machine — pipeline stages, forwarding, TLBs, caches, a possible page fault,\na timer interrupt — with every stop cross-linked to the lesson that built it. No new\nmechanism appears; the point is that every mechanism covered is one stop on a path a\nvalue actually travels, and they compose.\n\n## One line, all the way down\n\nHere is the line. It is the smallest thing that touches every layer: a read from\nmemory, an arithmetic op, a write back.\n\n```c [sum.c]\nlong s = a[i] + 1;\n```\n\nNothing about it looks like hardware. `a` is an array, `i` an index, `s` a\nvariable; the `+ 1` is arithmetic the way a calculator does arithmetic. But there\nis no array, no variable, and no addition in the machine — only bytes in memory and\na datapath pulling them in. Each layer below translates this line into the\nvocabulary of the layer beneath it, until what is left is gates switching.\n\n$$\n% caption: One line of C descending through every layer of the course. Each band is\n% caption: a stop on the path: the compiler lowers C to assembly, the assembler to\n% caption: machine-code bytes, the datapath fetches and runs them on the ALU and\n% caption: register file, and the result settles through cache and DRAM in silicon.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  layer\u002F.style={draw, fill=acc!8, minimum width=64mm, minimum height=8mm,\n                align=center, inner sep=3pt},\n  tag\u002F.style={anchor=west, text=acc!80, font=\\footnotesize\\ttfamily}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\foreach \\y\u002F\\name\u002F\\tag in {\n    0\u002F{\\textbf{C source}: \\texttt{long s = a[i] + 1;}}\u002F{foundations},\n    -1.15\u002F{compiler -> \\texttt{x86-64 \u002F Y86-64 assembly}}\u002F{machine-level x86-64},\n    -2.30\u002F{\\texttt{assembler} -> \\texttt{machine-code} bytes}\u002F{instruction set architecture},\n    -3.45\u002F{\\texttt{fetch-decode-execute} datapath}\u002F{processor design + pipelining},\n    -4.60\u002F{\\textbf{ALU} + \\texttt{register file} + control}\u002F{digital logic},\n    -5.75\u002F{\\texttt{cache} -> TLB \u002F page table -> DRAM}\u002F{memory + virtual memory},\n    -6.90\u002F{gates and transistors (silicon)}\u002F{digital logic} } {\n    \\node[layer] at (0,\\y) {\\name};\n    \\node[tag] at (3.5,\\y) {\\tag};\n  }\n  % single descending spine on the left margin, crossing nothing\n  \\draw[->, acc] (-3.7,0.25) -- (-3.7,-7.15);\n  \\node[text=acc, anchor=south, rotate=90, font=\\footnotesize\\ttfamily] at (-3.95,-3.45)\n        {lowering};\n\\end{tikzpicture}\n$$\n\n> **Takeaway.** Every layer of the course is a translation step. The line of C does\n> not _run_ at any one level; it is rewritten, level by level, into the language of\n> the level below, until the bottom level is logic gates — and the answer climbs\n> back up the same ladder as a stored value.\n\n## Compiler and assembler: C becomes bytes\n\nThe first translation is the **compiler**, which lowers the C line into assembly. It\nmust turn the named array access `a[i]` into an explicit address computation (a base\nregister plus an index scaled by the element size) and the abstract `+ 1` into a\nconcrete instruction with a size suffix. In x86-64 the line might compile to a load,\nan add, and a store; in the Y86-64 subset the course implements, the same three\nmoves look like this.\n\n```asm [sum.ys]\nmrmovq (%rdi), %rax    # rax \u003C- M[a + i*8]   (the load; %rdi holds the address)\nirmovq $1, %r8         # r8  \u003C- 1            (the constant)\naddq   %r8, %rax       # rax \u003C- rax + 1      (the + 1)\nrmmovq %rax, (%rsi)    # M[&s] \u003C- rax        (store back to s)\n```\n\nThe **assembler** then performs the second translation, and it is purely\nmechanical: each line becomes the exact bytes the\n[ISA lesson](\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set)\nspecified. `mrmovq (%rdi),%rax` is `icode:ifun = 5:0`, register byte `rA:rB = 0:7`\n(`%rax`:`%rdi`), and an 8-byte displacement of zero: ten bytes,\n`50 07 00 00 00 00 00 00 00 00`. `addq %r8,%rax` is `60 80`, two bytes. There is no\ncleverness left at this level: the assembler is a lookup table from mnemonics to the\n`icode:ifun` byte, the register nibbles, and the little-endian constant. After it\nruns, the C line exists nowhere — what sits in memory is a run of bytes, and those\nbytes _are_ the program.\n\nThe three notations are worth seeing side by side, because the machine only ever\nsees the rightmost column, yet all three are descriptions of the same single\ninstruction.\n\n$$\n% caption: The same load shown three ways. The C subscript a[i] is one assembly\n% caption: instruction mrmovq (%rdi),%rax, which the assembler encodes as the\n% caption: ten machine-code bytes the datapath fetches. Reading left to right is compiling; the\n% caption: machine only ever sees the right column.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  col\u002F.style={draw, fill=acc!8, minimum width=33mm, minimum height=12mm,\n              align=center, inner sep=3pt},\n  lab\u002F.style={anchor=south, text=acc, font=\\footnotesize\\ttfamily}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[lab] at (-4.2,0.85) {C source};\n  \\node[lab] at (0,0.85)    {Y86-64 assembly};\n  \\node[lab] at (4.4,0.85)  {machine-code bytes};\n  \\node[col] (c) at (-4.2,0) {\\texttt{a[i]}};\n  \\node[col] (a) at (0,0)    {\\texttt{mrmovq (\\%rdi),}\\\\\\texttt{\\%rax}};\n  \\node[col] (b) at (4.4,0)  {\\texttt{50 07 00 00}\\\\\\texttt{00 00 00 00 00 00}};\n  \\draw[->, acc] (c.east) -- (a.west) node[midway,above,font=\\scriptsize,text=acc]{compile};\n  \\draw[->, acc] (a.east) -- (b.west) node[midway,above,font=\\scriptsize,text=acc]{assemble};\n\\end{tikzpicture}\n$$\n\n## The datapath: bytes become work\n\nNow the bytes are in memory and the **PC** holds the address of the first one. From\nhere the machine drives itself, with no compiler and no assembler in sight, just the\n[fetch–decode–execute loop](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq)\nturning bytes into state changes.\n\n- **Fetch** reads the bytes at the PC. For our load it pulls `50 07 00 …`, splits the\n  first byte into `icode:ifun = 5:0`, reads the register byte `0:7`, and reads the\n  8-byte displacement. It also computes the next-instruction address\n  $\\texttt{valP} = \\text{PC} + \\text{len}$, where $\\text{len}$ is this instruction's\n  byte length (10 here).\n- **Decode** uses the register nibbles as addresses into\n  [the register file](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory):\n  it reads `%rdi` (the array base address) out the combinational read port as\n  `valB`. No clock, no waiting: the read port simply presents the register's\n  contents.\n- **Execute** sends the base and the displacement into\n  [the ALU](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu),\n  which adds them (the same ripple-carry adder from digital logic) to form the\n  effective memory address `valE = R[%rdi] + 0`. For the later `addq` it is this same\n  ALU that performs the actual `+ 1` and sets the condition codes.\n- **Memory** presents `valE` as an address to data memory and reads the word there,\n  `valM` — this is the `a[i]` access finally happening.\n- **Write-back** clocks `valM` into `%rax` through the register file's write port.\n- **PC update** loads `valP`, and the loop repeats with the next instruction.\n\nEvery one of those steps is a unit we built and a mux the\n[control unit](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq) selected. The\nopcode `5:0` is what tells the control logic to route the ALU output to the memory\naddress port and the memory output to the register write port; a different opcode\nwould steer the same wires to a different shape. The datapath is fixed silicon; the\nopcode is what configures it, cycle by cycle.\n\n## Down to silicon, and the memory request path\n\nTwo layers remain below the datapath. The first is the **physical logic**: the ALU's\nadder is full adders, each a 3-input XOR and a majority gate; the register file's\nports are decoders and multiplexers; the muxes the control unit drives are AND–OR\ntrees. The `+` in `a[i] + 1` is, at the bottom, a carry rippling through a row of\ngates, which is a wave of transistors switching. There is no arithmetic down there:\nonly switches that, wired the way digital logic prescribed, _compute_ the sum as a\nside effect of settling.\n\nThe second is the **memory request path**. When Memory asks for the word at `valE`,\nthat address is a **virtual** address, and reaching the real bits takes several\nsteps. The cache is checked first; on a miss the virtual address is translated to a\nphysical one (the **TLB** answers fast if it has seen the page; otherwise the **page\ntable** in memory is walked), and only then does the request reach physical **DRAM**,\nwhere reading the word means sensing charge on a row of one-transistor cells and\nrestoring it after the destructive read. The observed access time is the hit time\nplus the amortized miss penalty,\n\n$$\nT_{\\text{access}} = T_{\\text{hit}} + m \\cdot T_{\\text{miss}},\n$$\n\nwith miss rate $m$ and $T_{\\text{miss}}$ the cost of descending toward DRAM; the\nwhole hierarchy exists to drive $m$ toward zero so $T_{\\text{access}} \\to\nT_{\\text{hit}}$. Two side exits complicate the picture, and\nthe course built both. If the walk finds the page absent, the access does not\ncomplete at all: it becomes a\n[page fault](\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults), the\nkernel pages the data in from disk, and the instruction re-executes. And on the\nmulticore die of\n[module 9](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization),\na miss consults more than DRAM: the freshest copy of the line may be sitting\nmodified in a **peer core's cache**, and the\n[coherence protocol](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence)\nmust fetch it from there, because DRAM's copy is stale.\n\n$$\n% caption: The request path of one memory access. The datapath issues a virtual\n% caption: address; the cache answers a hit at once; on a miss the TLB, or failing\n% caption: that the page table, translates virtual to physical, and the request\n% caption: reaches DRAM. On a multicore, coherence may redirect the miss to a peer\n% caption: cache; if the page is absent, the access becomes a page fault instead.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  u\u002F.style={draw, fill=acc!8, minimum width=20mm, minimum height=10mm,\n            align=center, inner sep=2pt},\n  g\u002F.style={draw=black, dashed, minimum width=20mm, minimum height=10mm,\n            align=center, text=black, inner sep=2pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[u] (dp)  at (0,0)     {datapath\\\\(Memory)};\n  \\node[u] (ca)  at (4.3,0)   {\\texttt{cache}};\n  \\node[u] (tlb) at (8.2,0)   {TLB};\n  \\node[u] (pt)  at (8.2,-2.2) {page\\\\table};\n  \\node[u] (dr)  at (12.0,0)  {DRAM};\n  % main request chain along the row\n  \\draw[->] (dp.east) -- (ca.west) node[midway,above,font=\\scriptsize]{virtual addr};\n  \\draw[->] (ca.east) -- (tlb.west) node[midway,above,font=\\scriptsize]{miss};\n  \\draw[->] (tlb.east) -- (dr.west) node[midway,above,font=\\footnotesize]{\\texttt{phys} addr};\n  % hit short-circuit returns over the top margin, crossing nothing\n  \\draw[->, acc] (ca.north) -- ++(0,0.9) -| (dp.north);\n  \\node[font=\\scriptsize, text=acc, anchor=south] at (2.15,1.45) {hit: the word returns};\n  % TLB miss drops to the page-table walk, result rejoins at DRAM\n  \\draw[->] (tlb.south) -- (pt.north) node[midway,right,font=\\scriptsize]{TLB miss: walk};\n  \\draw[->, acc] (pt.east) -| (dr.south);\n  \\node[font=\\footnotesize, text=acc, anchor=north] at (10.5,-2.3) {\\texttt{phys} addr from walk};\n  % coherence side exit (module 9)\n  \\node[g] (peer) at (4.3,-2.2) {peer core's\\\\\\texttt{cache}};\n  \\draw[\u003C->, black, dashed] (ca.south) -- (peer.north);\n  \\node[font=\\footnotesize, text=black, anchor=west] at (4.5,-1.1) {coherence (\\texttt{module 9})};\n  % page-fault side exit (module 8)\n  \\node[font=\\scriptsize, text=black, align=center, anchor=north] at (8.2,-3.0)\n        {page absent: page fault\\\\(\\texttt{modules 7-8})};\n\\end{tikzpicture}\n$$\n\nThe word comes back the way it went out — DRAM to cache to the datapath's Memory\nstage — and rises through Write-back into `%rax`, where the `addq` adds one and the\n`rmmovq` sends it down the same path again to store `s`. The whole round trip, from a\nC subscript to charge in a capacitor and back, is the course read end to end.\n\n> **Takeaway.** `long s = a[i] + 1;` is not one operation but a stack of\n> translations: the compiler turns it into assembly, the assembler into bytes, the\n> datapath fetches and decodes those bytes, the ALU and register file do the work,\n> and the memory access threads through cache, TLB or page table, and DRAM before\n> the answer climbs back up. Every module of this course names one rung of that\n> ladder, and the rungs are continuous — a value really does travel the whole length.\n\n## The grand tour: two instructions on the full machine\n\nThe walk above ran on bare SEQ: ideal one-cycle memories, one instruction at a\ntime, nothing else on the machine. The later modules removed every one of those\nsimplifications. [Pipelining](\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe)\nput five instructions in flight at once;\n[caches](\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped) made\nmemory fast only where\n[locality](\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality) holds;\n[virtual memory](\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation)\ninserted a translation between every address the program names and every address\nthe hardware touches;\n[interrupts](\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel)\nlet the outside world preempt the program between any two instructions; and\n[module 9](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization)\nput a second core on the die and required the caches to stay coherent. Here is the\nmachine as the course actually left it.\n\n$$\n% caption: The full machine. Core 0 is the five-stage PIPE datapath; fetch and\n% caption: memory each translate through a TLB and then probe an L1 cache; the L1s\n% caption: share a unified L2, which meets the rest of the die at the shared L3 and\n% caption: interconnect. Below sit the memory controller with DRAM and the I\u002FO\n% caption: devices whose interrupts re-enter the core between instructions. Core 1,\n% caption: dashed, is module 9's addition — a full copy kept honest by coherence.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  u\u002F.style={draw, fill=acc!8, align=center, inner sep=2pt},\n  stage\u002F.style={draw, fill=acc!8, minimum width=9mm, minimum height=7mm},\n  ghost\u002F.style={draw=black, dashed, align=center, text=black, inner sep=2pt},\n  tag\u002F.style={text=acc!75, font=\\footnotesize\\ttfamily},\n  wl\u002F.style={font=\\scriptsize, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % ===== Core 0 container and pipeline =====\n  \\draw (-0.4,5.1) rectangle (7.8,7.5);\n  \\node[anchor=north west, font=\\scriptsize\\bfseries, text=acc] at (-0.3,7.42) {Core 0: the PIPE datapath};\n  \\node[tag, anchor=north east] at (7.7,7.42) {modules 4-5};\n  \\node[stage] (f) at (0.6,5.9) {\\texttt{F}};\n  \\node[stage] (d) at (2.2,5.9) {\\texttt{D}};\n  \\node[stage] (e) at (3.8,5.9) {\\texttt{E}};\n  \\node[stage] (m) at (5.4,5.9) {\\texttt{M}};\n  \\node[stage] (w) at (7.0,5.9) {\\texttt{W}};\n  \\draw[->] (f) -- (d); \\draw[->] (d) -- (e);\n  \\draw[->] (e) -- (m); \\draw[->] (m) -- (w);\n  % ===== translation, then L1s =====\n  \\node[u, minimum width=17mm, minimum height=8mm] (itlb) at (0.6,4.0) {i-TLB};\n  \\node[u, minimum width=17mm, minimum height=8mm] (l1i) at (0.6,2.6) {\\texttt{L1 i-cache}};\n  \\node[u, minimum width=17mm, minimum height=8mm] (dtlb) at (5.4,4.0) {d-TLB};\n  \\node[u, minimum width=17mm, minimum height=8mm] (l1d) at (5.4,2.6) {\\texttt{L1 d-cache}};\n  \\draw[->] (f.south) -- (itlb.north);\n  \\node[wl, anchor=west] at (0.78,4.78) {virtual addr};\n  \\draw[->] (itlb.south) -- (l1i.north);\n  \\node[wl, anchor=west] at (0.78,3.3) {\\texttt{phys} addr};\n  \\draw[->] (m.south) -- (dtlb.north);\n  \\node[wl, anchor=west] at (5.58,4.78) {virtual addr};\n  \\draw[->] (dtlb.south) -- (l1d.north);\n  \\node[wl, anchor=west] at (5.58,3.3) {\\texttt{phys} addr};\n  \\node[tag, anchor=west] at (6.5,4.0) {module 7};\n  \\node[tag, anchor=west] at (6.5,2.6) {module 6};\n  % ===== unified L2 =====\n  \\node[u, minimum width=68mm, minimum height=8mm] (l2) at (3.0,1.2) {\\texttt{unified L2 cache}};\n  \\draw[->] (l1i.south) -- (0.6,1.6);\n  \\draw[->] (l1d.south) -- (5.4,1.6);\n  % ===== shared L3 + interconnect bar =====\n  \\node[u, minimum width=120mm, minimum height=8mm, fill=acc!4] (bar) at (5.0,-0.2)\n        {shared \\texttt{L3} + ring \\texttt{interconnect}};\n  \\draw[->] (3.0,0.8) -- (3.0,0.2);\n  \\node[tag, anchor=east] at (11.0,-0.78) {module 9};\n  % ===== memory and I\u002FO below the bar =====\n  \\node[u, minimum width=34mm, minimum height=9mm] (dram) at (1.2,-1.9) {memory controller\\\\+ DRAM};\n  \\node[u, minimum width=34mm, minimum height=9mm] (io) at (6.9,-1.9) {I\u002FO: disk, NIC, \\texttt{timer}};\n  \\draw[->] (1.2,-0.6) -- (dram.north);\n  \\draw[->] (6.9,-0.6) -- (io.north);\n  \\node[wl, anchor=west] at (7.05,-1.05) {DMA};\n  \\node[tag, anchor=west] at (3.05,-1.9) {modules 6-7};\n  % ===== interrupt path up the right margin =====\n  \\draw[->, acc, dashed] (io.east) -- (11.6,-1.9) -- (11.6,5.9) -- (7.8,5.9);\n  \\node[font=\\footnotesize\\ttfamily, rotate=-90, anchor=center, text=acc!80] at (11.9,2.0) {interrupts (module 8)};\n  % ===== ghost second core =====\n  \\node[ghost, minimum width=30mm, minimum height=26mm] (c1) at (9.6,4.0)\n        {Core 1\\\\(own \\texttt{pipeline},\\\\\\texttt{L1}s, TLBs, \\texttt{L2})};\n  \\node[tag, anchor=south] at (9.6,5.4) {module 9};\n  \\draw[->, black, dashed] (9.6,2.7) -- (9.6,0.2);\n  \\node[wl, anchor=west] at (9.75,1.3) {coherence};\n\\end{tikzpicture}\n$$\n\nNow run two instructions from the compiled line — the load `mrmovq (%rdi),%rax`\nand, right behind it, `addq %r8,%rax` — across this machine, stage by stage. This\nis the course's grand tour: every clause below is a lesson.\n\n**Fetch.** The pipeline does not wait to be sure what to fetch next; the\n[PC prediction logic](\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction)\nguesses (for straight-line code, correctly) that the next instruction follows the\ncurrent one, and fetch proceeds. The PC it presents is a **virtual** address,\nso it is translated first: the **i-TLB** answers in the same cycle if the page is\nwarm ([the TLB lesson](\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables)).\nThe physical address then indexes the **L1 i-cache**, whose\n[set-index\u002Ftag-compare machinery](\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped)\nreturns the ten instruction bytes on a hit. The\n[fetch stage](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages) splits them:\n`icode:ifun = 5:0`, registers `0:7`, displacement `0`, and `valP`.\n\n**Decode.** The register nibbles address the\n[register file](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory),\nwhich presents `%rdi` combinationally. But in a pipeline the register file can be\nstale: an older instruction that writes `%rdi` may still be in flight ahead of us.\nSo decode does not use the file's value blindly: the\n[forwarding logic](\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding)\ncompares our source registers against the destination fields of everything in\nExecute, Memory, and Write-back, and takes the youngest match off the bypass wires\ninstead. For this load there is no conflict; `valB = R[%rdi]` stands.\n\n**Execute.** The [ALU](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu)\nadds base and displacement to form the effective address, exactly as in SEQ. A\n`mrmovq` leaves the\n[condition codes](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking)\nalone; only the `OPq` instructions set them.\n\n**Memory.** The effective address is again virtual: the **d-TLB** translates it. A\nTLB miss costs a\n[page-table walk](\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables):\na few dependent memory reads, tens of cycles. And if the walk finds the page not\npresent, the access does not merely slow down; it **cannot complete**. The machine\nraises a [page fault](\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults):\nthe `mrmovq` and everything younger is cancelled, the\n[exception machinery](\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow)\ntransfers to the kernel with the faulting address in hand, the kernel pages the\ndata in from disk, and the same `mrmovq` re-executes as if nothing happened:\nprecise exceptions, doing exactly the job\n[PIPE's special cases](\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor)\nprepared for. On the ordinary path the physical address probes the **L1 d-cache**;\na hit returns `valM` in a few cycles, and a miss descends the\n[hierarchy](\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap)\ntoward DRAM, two hundred cycles away. On the multicore die, that miss carries one\nmore obligation: the [coherence protocol](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence)\nchecks whether the other core holds the line modified, and if so the data comes\nfrom the peer cache, not from DRAM, whose copy is stale.\n\n**Write-back.** `valM` reaches the register file's write port and clocks into\n`%rax` at the\n[rising edge](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking).\nOne instruction done.\n\nMeanwhile the `addq %r8,%rax` has been one stage behind the whole time, and it\nneeds `%rax` — the very register the load is still fetching from memory. This is\nthe [load-use hazard](\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding):\nforwarding alone cannot fix it, because when `addq` sits in Decode the load's data\ndoes not exist anywhere in the pipeline yet. The control logic holds `addq` in\nDecode for one extra cycle and injects a bubble into Execute; one cycle later the\nload is in Memory, its `valM` appears on the bypass wire, and forwarding hands it\nstraight to `addq`'s Decode: the register file itself is skipped.\n\n$$\n% caption: The load-use pair on PIPE. The mrmovq flows F,D,E,M,W; the dependent\n% caption: addq stalls one extra cycle in Decode (shaded) while a bubble drains\n% caption: through Execute, then picks up valM forwarded from the Memory stage in\n% caption: cycle 4 and proceeds. Total cost of the hazard: one cycle.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  cell\u002F.style={draw, fill=acc!8, minimum width=10mm, minimum height=7mm},\n  bub\u002F.style={draw=black, dashed, minimum width=10mm, minimum height=7mm, text=black},\n  hd\u002F.style={text=acc, font=\\scriptsize\\bfseries},\n  il\u002F.style={anchor=east, font=\\footnotesize\\ttfamily}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[hd, anchor=east] at (1.3,0.75) {cycle};\n  \\foreach \\c in {1,...,7} {\n    \\node[hd] at (\\c*1.35+0.65, 0.75) {\\c};\n  }\n  % row 1: the load\n  \\node[il] at (1.3,0) {mrmovq (\\%rdi),\\%rax};\n  \\node[cell] at (2.0,0) {\\texttt{F}};\n  \\node[cell] at (3.35,0) {\\texttt{D}};\n  \\node[cell] at (4.7,0) {\\texttt{E}};\n  \\node[cell] (m1) at (6.05,0) {\\texttt{M}};\n  \\node[cell] at (7.4,0) {\\texttt{W}};\n  % row 2: the dependent add\n  \\node[il] at (1.3,-1.3) {addq \\%r8,\\%rax};\n  \\node[cell] at (3.35,-1.3) {\\texttt{F}};\n  \\node[cell] at (4.7,-1.3) {\\texttt{D}};\n  \\node[cell, fill=acc!25] (d2) at (6.05,-1.3) {\\texttt{D}};\n  \\node[cell] at (7.4,-1.3) {\\texttt{E}};\n  \\node[cell] at (8.75,-1.3) {\\texttt{M}};\n  \\node[cell] at (10.1,-1.3) {\\texttt{W}};\n  % row 3: the injected bubble\n  \\node[il, text=black] at (1.3,-2.6) {(bubble)};\n  \\node[bub] at (6.05,-2.6) {\\texttt{E}};\n  \\node[bub] at (7.4,-2.6) {\\texttt{M}};\n  \\node[bub] at (8.75,-2.6) {\\texttt{W}};\n  % forwarding arrow, straight down one column\n  \\draw[->, acc, thick] (m1.south) -- (d2.north);\n  \\node[font=\\footnotesize\\ttfamily, text=acc, anchor=west] at (6.25,-0.65) {valM forwarded};\n  \\node[font=\\scriptsize, text=black, anchor=west] at (10.8,-1.3) {one-cycle stall in D};\n\\end{tikzpicture}\n$$\n\nThe outside world can also cut in at any instruction boundary. Suppose\nthe millisecond **timer** fires while the load is in Execute. Nothing halts\nmid-gate. The\n[interrupt machinery](\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel)\npicks a clean boundary: instructions ahead of the boundary complete, instructions\nbehind it are cancelled, the address of the next unexecuted instruction is saved,\nand control vectors through the interrupt table into the kernel. The kernel may\nonly tick its clock and return, or it may decide this thread's quantum is spent\nand [hand the core to another thread](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism),\nloading that thread's saved registers and page-table base. Either way, when our\nprogram next runs, the saved PC is restored and the trace resumes exactly where it\nstopped. The program cannot tell it was ever off the CPU; that invisibility is the\nwhole design goal of\n[exceptional control flow](\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow).\n\n$$\n% caption: A timer interrupt lands between two instructions. Everything before the\n% caption: boundary completes; the PC of the next instruction is saved; the kernel\n% caption: handler runs (and may switch threads); iret restores the saved PC and\n% caption: the program resumes, unable to tell it was ever preempted.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  ib\u002F.style={draw, fill=acc!8, minimum width=16mm, minimum height=8mm, align=center,\n             font=\\footnotesize\\ttfamily},\n  kb\u002F.style={draw, fill=acc!15, minimum height=9mm, align=center, font=\\scriptsize},\n  note\u002F.style={font=\\scriptsize, text=black, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[ib] (i1) at (-0.3,0) {addq \\%r10,\\%rax};\n  \\node[kb, minimum width=34mm] (k) at (4.3,0) {kernel handler runs\\\\\\texttt{(may switch threads)}};\n  \\node[ib] (i2) at (8.3,0) {addq \\%r8,\\%rdi};\n  \\node[font=\\footnotesize\\ttfamily, text=black] at (10.2,0) {...};\n  % boundaries\n  \\draw[acc, dashed] (1.45,-0.6) -- (1.45,0.55);\n  \\draw[acc, dashed] (6.8,-0.6) -- (6.8,0.55);\n  % the interrupt arrives\n  \\draw[->, acc] (1.45,1.7) -- (1.45,0.65);\n  \\node[font=\\footnotesize\\ttfamily, text=acc, anchor=west] at (1.6,1.35) {timer interrupt};\n  % annotations\n  \\node[note, anchor=north] at (1.45,-0.8) {PC of next\\\\instruction saved};\n  \\node[note, anchor=north] at (6.8,-0.8) {\\texttt{iret}: saved\\\\PC restored};\n  % time axis\n  \\draw[->, black] (-1.6,-2.1) -- (10.8,-2.1)\n        node[anchor=west, font=\\scriptsize, text=black] {time};\n\\end{tikzpicture}\n$$\n\n> **Takeaway.** One load, traced honestly, touches every module of the course: PC\n> prediction (pipelining), the i-TLB and d-TLB (virtual memory), two L1 caches and\n> the hierarchy below them (memory hierarchy), the register file and ALU (digital\n> logic), forwarding and a load-use stall (pipelining), a possible page fault\n> (virtual memory meeting exceptions), a possible interrupt (exceptions and I\u002FO),\n> and, on a multicore, the coherence protocol (module 9). The subsystems are\n> stations on one path.\n\n## The map of the course\n\nThree strands of the course ran in parallel and\nmet in the middle. The **program strand** (foundations, machine-level x86-64, the\nISA) settled what must be computed, ending in an exact contract: bytes with\ndefined meanings. The **processor strand** (digital logic, processor design,\npipelining) built the thing that honors the contract, ending in PIPE. And the\n**memory-and-world strand** (the memory hierarchy, virtual memory, exceptions and\nI\u002FO, multicore) surrounded that processor with everything a real machine needs:\nstorage that keeps up, address spaces that protect, a connection to devices, and\nmore cores than one. The capstone is where the strands tie.\n\n$$\n% caption: The course as three strands meeting in the capstone. The program strand\n% caption: fixes the contract (bytes with meanings); the processor strand builds the\n% caption: machine that honors it; the memory-and-world strand surrounds the core\n% caption: with storage, protection, devices, and more cores. Arrows mark the two\n% caption: hand-offs: the ISA gives the processor its bytes, and the processor gives\n% caption: the memory system its addresses.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  mm\u002F.style={draw, fill=acc!8, minimum width=52mm, minimum height=8mm, align=center,\n             font=\\footnotesize\\ttfamily},\n  ghd\u002F.style={text=acc, font=\\footnotesize\\ttfamily}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % group headers\n  \\node[ghd] at (0,0.8)    {the program};\n  \\node[ghd] at (6.0,0.8)  {the processor};\n  \\node[ghd] at (12.0,0.8) {memory + the world};\n  % column A: the program\n  \\node[mm] (a0) at (0,0)     {00 foundations};\n  \\node[mm] (a1) at (0,-1.05) {01 machine-level x86-64};\n  \\node[mm] (a2) at (0,-2.10) {02 instruction set arch.};\n  \\draw[->] (a0.south) -- (a1.north);\n  \\draw[->] (a1.south) -- (a2.north);\n  % column B: the processor\n  \\node[mm] (b0) at (6.0,0)     {03 digital logic};\n  \\node[mm] (b1) at (6.0,-1.05) {04 processor design};\n  \\node[mm] (b2) at (6.0,-2.10) {05 pipelining};\n  \\draw[->] (b0.south) -- (b1.north);\n  \\draw[->] (b1.south) -- (b2.north);\n  % column C: memory and the world\n  \\node[mm] (c0) at (12.0,0)     {06 memory hierarchy};\n  \\node[mm] (c1) at (12.0,-1.05) {07 virtual memory};\n  \\node[mm] (c2) at (12.0,-2.10) {08 exceptions + i\u002Fo};\n  \\node[mm] (c3) at (12.0,-3.15) {09 multicore};\n  \\draw[->] (c0.south) -- (c1.north);\n  \\draw[->] (c1.south) -- (c2.north);\n  \\draw[->] (c2.south) -- (c3.north);\n  % hand-offs between strands\n  \\draw[->, acc] (a2.east) -- (3.0,-2.10) |- (b1.west);\n  \\node[font=\\scriptsize, text=acc, rotate=90, anchor=center] at (2.75,-1.58) {bytes};\n  \\draw[->, acc] (b2.east) -- (9.0,-2.10) |- (c0.west);\n  \\node[font=\\scriptsize, text=acc, rotate=90, anchor=center] at (8.75,-1.05) {addresses};\n  % everything feeds the capstone\n  \\node[mm, minimum width=54mm] (cap) at (6.0,-4.6) {10 capstone:\\\\the whole machine};\n  \\draw[->, acc] (a2.south) |- (cap.west);\n  \\draw[->, acc] (b2.south) -- (cap.north);\n  \\draw[->, acc] (c3.south) |- (cap.east);\n\\end{tikzpicture}\n$$\n\nRead the map against the grand tour and the two agree: the program strand wrote the\nbytes the tour fetched, the processor strand executed them, and the\nmemory-and-world strand served every address, fault, and interrupt along the way.\n\n## What we simplified\n\nThe machine above is real — it is, structurally, the machine in your laptop. But a\nmodern x86-64 core is bigger than PIPE in three specific ways this course chose to\nleave out, and honesty requires naming them. Each gets a paragraph and a pointer;\nall three are beyond this course's scope, sketched in CS:APP §5.7.\n\n**Out-of-order execution.** PIPE keeps instructions in program order from fetch to\nwrite-back; one long stall holds up everything behind it. A modern core does not\nwait. It **renames** registers to strip false dependences, parks decoded\ninstructions in an issue queue, and lets each one run the moment _its own_\noperands are ready, often with hundreds of instructions in flight, finishing in an\norder the program never wrote. A **reorder buffer** then retires results strictly\nin program order, so the architectural state advances as if execution had been\nsequential and\n[exceptions stay precise](\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow).\nThe effect is a machine that extracts the dataflow graph from the instruction\nstream at runtime and executes the graph, not the listing.\n\n**Superscalar issue.** PIPE launches at most one instruction per cycle, so\n$\\text{CPI} \\ge 1.0$ always. A superscalar core of width $w$ issues up to $w$\ninstructions per cycle, admitting $\\text{CPI} \\ge 1\u002Fw$ — with $w = 4$–$8$\ninstructions dispatched into multiple ALUs, load\u002Fstore ports, and branch units. The\ncost is roughly quadratic growth in the machinery we\nbuilt once: forwarding networks between every producer and every consumer, hazard\nchecks across every pair of in-flight instructions, register files with a dozen\nports instead of\n[our three](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory).\nNothing conceptually new appears (the same hazards, the same bypasses), but the\nbookkeeping multiplies until it dominates the die.\n\n**Speculation beyond branches.** We speculated on exactly one thing:\n[branch direction](\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction),\nwith a squash-and-refetch when wrong. Real cores speculate wholesale: that a load\nwill not conflict with an older store whose address is still unknown, that a value\nwill match last time's, that the next cache lines the program wants are the ones a\nprefetcher guesses. Every guess needs recovery machinery when it misses, and the\nguesses leave footprints: a speculatively loaded line sits in the cache even after\nthe speculation is squashed, a residue that timing can observe and that modern\nsecurity work spends real effort containing.\n\nNone of these change the contract. An out-of-order, superscalar, deeply\nspeculative core still presents the ISA's illusion: instructions appear to execute\none at a time, in order, exactly as\n[SEQ](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq) actually does it.\nThat is why the simple machine is worth building: it is the specification the\ncomplicated one must imitate.\n\n> **Takeaway.** What this course omitted is acceleration, not architecture:\n> out-of-order execution reorders work under an in-order facade, superscalar issue\n> multiplies the datapath's width, and speculation generalizes the branch\n> predictor's bet to loads, values, and prefetches. All of it exists to feed the\n> same fetch–decode–execute contract we built — and all of it retires, in the end,\n> in program order, pretending to be SEQ.\n\n## Where the three simplifications came from\n\nCS:APP §5.7 sketches the modern out-of-order core; the ideas have names and origins\nworth attaching, because each answers a specific question the simple machine leaves\nopen, and each is still live.\n\n**Out-of-order issue is a 1967 idea.** The mechanism that lets a modern core run\ninstructions as their operands become ready, rather than in program order, is\n**Tomasulo's algorithm**, designed for the IBM System\u002F360 Model 91's floating-point\nunit.[^tomasulo] Its two moving parts are the ones the \"what we simplified\"\nsection named: reservation stations that hold waiting instructions and a\nresult-broadcast bus that wakes them, which together perform register renaming\nimplicitly. Nearly every high-performance core since is a descendant. The **reorder\nbuffer** that retires results back in program order — keeping exceptions precise — was\nadded later, and the canonical treatment of precise interrupts on such a machine is\nSmith and Pleszkun's.[^precise]\n\n**Branch prediction is what makes deep pipelines viable.** The course predicted branch\n_direction_ with a simple scheme; real cores use two-level and correlating predictors\nthat learn per-branch and per-history patterns, the line of work opened by Smith and\nextended by Yeh and Patt.[^branchpred] The deeper the pipeline and the wider the\nissue, the more a misprediction costs, so prediction accuracy — now well above 95% on\ntypical code — is what keeps a fifteen-stage superscalar core from losing most of\nits work to squashes.\n\n**Speculation left a security hole.** The lesson noted that a speculatively loaded\ncache line \"sits in the cache even after the speculation is squashed, a residue that\ntiming can observe.\" That residue is not hypothetical: it is the basis of **Spectre**\nand **Meltdown** (2018), which trick a core into speculatively accessing data across a\nprotection boundary and then read the secret back out through cache timing, even\nthough the architectural state was correctly rolled back.[^spectre] The\narchitecture\u002Fmicroarchitecture split this course leaned on — the promise that\nmicroarchitecture is invisible to correctness — turned out to leak: the timing of the\nimplementation is observable in a way the ISA never accounted for. It is a\nreminder that \"invisible to results\" is not the same as \"invisible.\"\n\n> **Beyond-the-book takeaway.** The three accelerations are named, old, and\n> consequential: Tomasulo's algorithm (1967) for out-of-order issue with a reorder\n> buffer for precise exceptions, decades of branch-prediction research to feed deep\n> pipelines, and speculation whose microarchitectural residue became the Spectre\u002F\n> Meltdown class of attacks. The simple machine is the specification; the fast\n> machine is these ideas layered on it — and the last one shows the layers are not\n> perfectly sealed.\n\n[^tomasulo]: **R. M. Tomasulo**, \"An Efficient Algorithm for Exploiting Multiple\n    Arithmetic Units,\" _IBM Journal of Research and Development_ 11(1), 1967 — the\n    reservation-station and common-data-bus scheme, with implicit register renaming,\n    underlying modern out-of-order execution.\n[^precise]: **J. E. Smith and A. R. Pleszkun**, \"Implementation of Precise Interrupts\n    in Pipelined Processors,\" ISCA 1985 — the reorder buffer and related mechanisms\n    that let an out-of-order machine retire in program order and keep exceptions\n    precise.\n[^branchpred]: **J. E. Smith**, \"A Study of Branch Prediction Strategies,\" ISCA 1981,\n    and **T.-Y. Yeh and Y. N. Patt**, \"Two-Level Adaptive Training Branch Prediction,\"\n    MICRO 1991 — foundational dynamic branch-prediction schemes.\n[^spectre]: **P. Kocher et al.**, \"Spectre Attacks: Exploiting Speculative Execution,\"\n    IEEE S&P 2019, and **M. Lipp et al.**, \"Meltdown: Reading Kernel Memory from User\n    Space,\" USENIX Security 2018 — attacks that read secrets through the cache-timing\n    residue of squashed speculative execution.\n\nThat is the synthesis in the abstract. The\n[final lesson](\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu) makes it\nphysical: it bolts the named parts (PC, instruction memory, register file, ALU,\ndata memory, control unit) into one block diagram, powers the machine on from\nreset, and runs a complete compiled program (an array sum with a real `call` and\n`ret`) across it, cycle by cycle, until the answer lands in a register, and then asks\nwhat it would take to put two of these cores on one die.\n",{"text":2085,"minutes":2086,"time":2087,"words":2088},"17 min read",16.71,1002600,3342,{"title":295,"description":2076},[2091,2094],{"book":2092,"ref":2093},"Bryant & O'Hallaron","CS:APP — §4 Processor Architecture (synthesis); §5.7 Modern Processor Operation",{"book":2095,"ref":2096},"Bistriceanu","Computer Architecture Notes — §2 Basic Organization \u002F §5 CPU Implementation","available","03.computer-architecture\u002F10.capstone\u002F01.the-whole-machine",[290],"a5LakdrrNjN-xrFnJtBO1eLwQXMKP-boz_VscvzVlSw",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":2102,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":2103,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":2104,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":2105,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":2106,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":2107,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":2108,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":2109,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":2110,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":2111,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":2112,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":2113,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":2114,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":2115,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":2116,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":2117,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":2118,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":2119,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":2120,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":2121,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":2122,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":2123,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":2124,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":2125,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":2126,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":2127,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":2128,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":2129,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":2130,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":2131,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":2132,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":2133,"\u002Falgorithms\u002Fsequences\u002Ftries":2134,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":2135,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":2136,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":2137,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":2138,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":2139,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":2140,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":2141,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":2142,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":2143,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":2144,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":2145,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":2146,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":2147,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":2148,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":2149,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":2150,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":2151,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":2152,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":2153,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":2154,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":2155,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":2156,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":2157,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":2158,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":2159,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":2160,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":2161,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":2162,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":2163,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":2164,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":2165,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":2166,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":2167,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":2168,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":2169,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":2170,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":2171,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":2172,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":2173,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":2174,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":2175,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":2176,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":2177,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":2178,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":2179,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":2180,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":2181,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":2182,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":2183,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":2184,"\u002Falgorithms":2185,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":2186,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":2187,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":2188,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":2189,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":2190,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":2191,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":2192,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":2193,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":2194,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":2195,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":2196,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":2197,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":2198,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":2199,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":2200,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":2201,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":2202,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":2203,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":2204,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":2205,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":2206,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":2207,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":2208,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":2209,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":2210,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":2211,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":2212,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":2213,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":2214,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":2215,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":2216,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":2217,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":2218,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":2219,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":2200,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":2220,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":2221,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":2222,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":2190,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":2223,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":2224,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":2225,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":2226,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":2227,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":2228,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":2229,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":2230,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":2231,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":2232,"\u002Fcalculus":2233,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":2234,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":2235,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":2236,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":2237,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":2238,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":2239,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":2240,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":2241,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":2242,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":2243,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":2244,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":2245,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":2246,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":2247,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":2248,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":2249,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":2250,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":2251,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":2252,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":2253,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":2254,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":2255,"\u002Fmechanics\u002Frotation\u002Frolling-motion":2256,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":2257,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":2258,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":2259,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":2260,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":2261,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":2262,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":2263,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":2264,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":2265,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":2266,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":2267,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":2268,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":2269,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":2270,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":2271,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":2272,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":2273,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":2274,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":2275,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":2276,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":2277,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":2278,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":2279,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":2280,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":2281,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":2282,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":2283,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":2284,"\u002Fmechanics":2285,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":2286,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":2287,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":2288,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":2289,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":2290,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":2291,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":2292,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":2293,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":2294,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":2295,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":2296,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":2297,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":2274,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":2298,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":2299,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":2300,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":2270,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":2135,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":2301,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":2261,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":2302,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":2303,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":2304,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":2305,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":2306,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":2307,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":2308,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":2309,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":2310,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":2235,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":2311,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":2312,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":2313,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":2314,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":2315,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":2316,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":2317,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":2318,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":2253,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":2252,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":2319,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":2320,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":2321,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":2322,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":2323,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":2324,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":2325,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":2326,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":2327,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":2279,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":2277,"\u002Felectricity-and-magnetism":2328,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":2329,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":2330,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":2331,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":2332,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":2333,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":2334,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":2335,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":2336,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":2337,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":2187,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":2338,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":2339,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":2191,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":2340,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":2341,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":2342,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":2343,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":2344,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":2345,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":2346,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":2347,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":2348,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":2349,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":2350,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":2351,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":2352,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":2353,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":2354,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":2355,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":2356,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":2357,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":2358,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":2359,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":2226,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":2360,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":2361,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":2362,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":2363,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":2364,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":2365,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":2366,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":2367,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":2368,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":2369,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":2370,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":2371,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":2372,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":2373,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":2374,"\u002Flinear-algebra":2375,"\u002Ftheory-of-computation":2376,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":2377,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":2378,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":2379,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":2380,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":2381,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":2382,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":2383,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":2384,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":2385,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":2386,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":2387,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":2388,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":2389,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":2390,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":2391,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":2392,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":2393,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":2394,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":2395,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":2396,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":2397,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":2398,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":2399,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":2400,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":2401,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":2402,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":2403,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":2404,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":2405,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":2406,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":2407,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":2408,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":2409,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":2410,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":2411,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":2412,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":2413,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":2414,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":2415,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":2416,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":2417,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":2418,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":2419,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":2420,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":2421,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":2422,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":2423,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":2088,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":2424,"\u002Fcomputer-architecture":2376,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":2425,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":2426,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":2427,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":2191,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":2428,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":2190,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":2197,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":2429,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":2430,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":2231,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":2431,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":2432,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":2433,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":2434,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":2435,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":2436,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":2437,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":2438,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":2439,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":2440,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":2441,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":2442,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":2437,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":2443,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":2444,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":2445,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":2446,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":2447,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":2448,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":2449,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":2450,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":2451,"\u002Fdifferential-equations":2452,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":2453,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":2454,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":2455,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":2080,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":2336,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":2456,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":2457,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":2458,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":2459,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":2460,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":2461,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":2206,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":2462,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":2463,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":2464,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":2465,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":2466,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":2467,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":2468,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":2469,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":2470,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":2471,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":2427,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":2472,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":2473,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":2474,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":2475,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":2476,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":2357,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":2477,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":2478,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":2367,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":2479,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":2480,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":2481,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":2482,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":2483,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":2484,"\u002Frelativity":2485,"\u002Fphysical-computing":2376,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":2486,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":2465,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":2487,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":2488,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":2489,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":2490,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":2491,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":2492,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":2493,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":2442,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":2367,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":2494,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":2495,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":2496,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":2497,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":2493,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":2498,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":2473,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":2228,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":2499,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":2500,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":2208,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":2501,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":2502,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":2503,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":2504,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":2505,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":2506,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":2507,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":2508,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":2509,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":2465,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":2510,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":2511,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":2512,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":2499,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":2189,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":2513,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":2514,"\u002Fquantum-mechanics":2515,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":2450,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":2516,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":2517,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":2340,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":2518,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":2226,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":2519,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":2520,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":2363,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":2471,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":2521,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":2522,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":2523,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":2524,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":2525,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":2498,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":2526,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":2333,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":2527,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":2528,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":2187,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":2529,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":2530,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":2487,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":2216,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":2367,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":2531,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":2532,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":2352,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":2475,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":2533,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":2534,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":2535,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":2372,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":2536,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":2537,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":2538,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":2538,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":2539,"\u002Freal-analysis":2540,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":2541,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":2542,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":2543,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":2544,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":2545,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":2546,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":2547,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":2548,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":2549,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":2550,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":2514,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":2551,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":2543,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":2460,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":2552,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":2553,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":2554,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":2555,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":2556,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":2557,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":2558,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":2559,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":2553,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":2560,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":2529,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":2561,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":2562,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":2563,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":2564,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":2565,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":2566,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":2567,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":2568,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":2569,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":2570,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":2205,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":2571,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":2572,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":2446,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":2573,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":2574,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":2502,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":2574,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":2575,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":2576,"\u002Fabstract-algebra":2577,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":2578,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":2579,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":2580,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":2581,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":2582,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":2494,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":2583,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":2584,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":2585,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":2586,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":2587,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":2588,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":2589,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":2330,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":2457,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":2205,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":2590,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":2189,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":2591,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":2592,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":2227,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":2519,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":2593,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":2594,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":2595,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":2596,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":2597,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":2598,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":2599,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":2600,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":2601,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":2602,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":2603,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":2604,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":2605,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":2606,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":2550,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":2607,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":2608,"\u002Fatomic-physics":2609,"\u002Fdatabases":2376,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":2610,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":2611,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":2612,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":2541,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":2613,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":2614,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":2615,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":2616,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":2617,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":2618,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":2619,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":2620,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":2621,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":2622,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":2623,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":2624,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":2625,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":2626,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":2627,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":2628,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":2629,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":2630,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":2631,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":2632,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":2623,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":2633,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":2634,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":2635,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":2636,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":2637,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":2582,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":2638,"\u002Fcategory-theory":2639,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":2640,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":2641,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":2642,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":2643,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":2644,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":2645,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":2604,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":2646,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":2647,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":2648,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":2649,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":2650,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":2651,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":2652,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":2653,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":2654,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":2655,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":2656,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":2657,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":2658,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":2659,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":2660,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":2661,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":2662,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":2663,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":2664,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":2665,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":2666,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":2667,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":2668,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":2669,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":2670,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":2671,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":2672,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":2616,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":2673,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":2674,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":2675,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":2676,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":2677,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":2678,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":2679,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":2170,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":2680,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":2681,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":2406,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":2682,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":2683,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":2684,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":2685,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":2686,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":2687,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":2688,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":2689,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":2690,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":2691,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":2692,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":2693,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":2379,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":2694,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":2695,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":2696,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":2697,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":2416,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":2698,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":2699,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":2700,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":2701,"\u002Fdeep-learning":2376,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":2702,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":2499,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":2703,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":2704,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":2705,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":2706,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":2707,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":2708,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":2709,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":2710,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":2546,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":2711,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":2712,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":2713,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":2434,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":2228,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":2714,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":2715,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":2716,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":2362,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":2717,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":2718,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":2439,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":2367,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":2719,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":2336,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":2206,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":2222,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":2720,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":2721,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":2722,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":2354,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":2723,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":2216,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":2724,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":2725,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":2726,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":2727,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":2548,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":2728,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":2729,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":2730,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":2731,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":2494,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":2732,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":2472,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":2733,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":2335,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":2734,"\u002Fstatistical-mechanics":2735,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":2736,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":2201,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":2459,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":2737,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":2738,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":2739,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":2740,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":2741,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":2742,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":2334,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":2743,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":2744,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":2745,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":2746,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":2475,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":2747,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":2748,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":2749,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":2750,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":2751,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":2530,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":2474,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":2752,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":2753,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":2754,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":2755,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":2465,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":2756,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":2757,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":2702,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":2602,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":2331,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":2758,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":2197,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":2759,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":2760,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":2342,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":2761,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":2595,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":2762,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":2189,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":2763,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":2200,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":2764,"\u002Fcondensed-matter":2515,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":2765,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":2766,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":2767,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":2768,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":2214,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":2769,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":2770,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":2214,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":2771,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":2625,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":2772,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":2773,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":2774,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":2772,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":2775,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":2776,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":2777,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":2778,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":2779,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":2780,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":2781,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":2782,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":2703,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":2783,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":2776,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":2784,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":2785,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":2420,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":2786,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":2603,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":2787,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":2788,"\u002Flogic":2789,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":2790,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":2791,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":2406,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":2792,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":2793,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":2794,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":2795,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":2785,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":2796,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":2797,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":2798,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":2696,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":2799,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":2800,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":2801,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":2802,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":2803,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":2423,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":2804,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":2805,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":2806,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":2807,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":2612,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":2808,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":2784,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":2809,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":2810,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":2811,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":2433,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":2812,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":2562,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":2813,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":2814,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":2396,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":2815,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":2816,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":2817,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":2818,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":2819,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":2672,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":2820,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":2821,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":2822,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":2707,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":2823,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":2824,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":2825,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":2423,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":2488,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":2826,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":2827,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":2828,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":2829,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":2830,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":2831,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":2832,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":2833,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":2834,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":2835,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":2836,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":2837,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":2838,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":2839,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":2840,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":2841,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":2842,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":2843,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":2844,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":2845,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":2846,"\u002Freinforcement-learning":2376,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":2847,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":2848,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":2849,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":2850,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":2851,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":2852,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":2853,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":2854,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":2855,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":2856,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":2857,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":2858,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":2859,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":2701,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":2556,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":2860,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":2861,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":2862,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":2863,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":2864,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":2865,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":2683,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":2866,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":2867,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":2868,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":2869,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":2870,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":2871,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":2872,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":2873,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":2874,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":2875,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":2876,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":2877,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":2615,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":2867,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":2878,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":2157,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":2879,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":2880,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":2881,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":2882,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":2883,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":2664,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":2884,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":2885,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":2886,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":2887,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":2888,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":2889,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":2890,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":2891,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":2892,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":2893,"\u002Fartificial-intelligence":2376,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":2631,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":2894,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":2193,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":2191,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":2725,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":2895,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":2219,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":2527,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":2896,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":2897,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":2898,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":2587,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":2899,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":2900,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":2901,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":2786,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":2902,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":2903,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":2203,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":2431,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":2904,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":2531,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":2905,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":2906,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":2427,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":2514,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":2907,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":2908,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":2909,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":2198,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":2571,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":2434,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":2910,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":2481,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":2545,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":2911,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":2912,"\u002Fnuclear-physics":2913,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":2914,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":2915,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":2552,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":2916,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":2917,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":2918,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":2402,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":2919,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":2920,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":2697,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":2921,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":2866,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":2922,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":2923,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":2924,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":2925,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":2926,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":2927,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":2928,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":2380,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":2929,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":2930,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":2872,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":2931,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":2932,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":2933,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":2934,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":2935,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":2936,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":2937,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":2938,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":2796,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":2939,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":2940,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":2941,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":2942,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":2943,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":2944,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":2945,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":2946,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":2947,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":2948,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":2949,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":2950,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":2650,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":2817,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":2408,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":2951,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":2952,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":2953,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":2954,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":2664,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":2955,"\u002Fnatural-language-processing":2376,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":2956,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":2572,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":2957,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":2717,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":2958,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":2959,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":2907,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":2960,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":2961,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":2522,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":2226,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":2962,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":2476,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":2963,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":2509,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":2964,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":2763,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":2965,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":2966,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":2732,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":2967,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":2197,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":2968,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":2969,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":2970,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":2513,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":2729,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":2971,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":2972,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":2588,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":2973,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":2633,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":2974,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":2975,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":2522,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":2555,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":2976,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":2977,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":2978,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":2611,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":2979,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":2354,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":2980,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":2080,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":2981,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":2982,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":2779,"\u002Fparticle-physics":2983,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":2573,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":2727,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":2984,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":2512,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":2985,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":2572,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":2484,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":2986,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":2987,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":2988,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":2989,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":2990,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":2778,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":2709,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":2991,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":2992,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":2993,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":2994,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":2906,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":2995,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":2468,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":2531,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":2513,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":2996,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":2597,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":2215,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":2997,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":2998,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":2728,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":2999,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":3000,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":3001,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":3002,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":2196,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":3003,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":3004,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":2080,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":3005,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":3006,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":2721,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":2378,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":3007,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":3008,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":2633,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":2619,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":2631,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":2728,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":3009,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":2195,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":2387,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":3010,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":2472,"\u002Fastrophysics-cosmology":2577,"\u002Fcolophon":3011,"\u002F":2376},4250,4808,3626,2682,4109,4786,3878,3875,3751,3415,4067,3153,3000,4042,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,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,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,80,{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":3013,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":3017,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":3021,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":3025,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":3029,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":3033,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":3037,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":3042,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":3046,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":3050,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":3054,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":3059,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":3063,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":3067,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":3071,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":3076,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":3080,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":3084,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":3088,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":3092,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":3096,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":3100,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":3104,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":3108,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":3112,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":3116,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":3120,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":3125,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":3129,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":3133,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":3137,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":3141,"\u002Falgorithms\u002Fsequences\u002Ftries":3145,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":3149,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":3153,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":3158,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":3162,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":3166,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":3170,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":3174,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":3178,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":3182,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":3186,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":3190,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":3194,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":3198,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":3202,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":3206,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":3210,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":3215,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":3219,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":3223,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":3227,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":3231,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":3236,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":3240,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":3244,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":3248,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":3252,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":3256,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":3260,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":3264,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":3268,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":3272,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":3276,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":3281,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":3285,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":3289,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":3293,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":3298,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":3302,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":3306,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":3310,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":3314,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":3318,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":3322,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":3327,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":3331,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":3335,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":3339,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":3344,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":3348,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":3352,"\u002Falgorithms":3356,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":3359,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":3364,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":3368,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":3372,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":3376,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":3381,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":3385,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":3389,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":3393,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":3398,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":3402,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":3406,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":3410,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":3415,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":3419,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":3423,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":3428,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":3432,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":3436,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":3441,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":3445,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":3449,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":3454,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":3458,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":3462,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":3466,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":3471,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":3475,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":3479,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":3484,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":3488,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":3492,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":3496,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":3500,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":3505,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":3509,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":3513,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":3517,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":3521,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":3526,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":3529,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":3533,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":3537,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":3541,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":3546,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":3550,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":3554,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":3558,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":3562,"\u002Fcalculus":3566,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":3569,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":3573,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":3577,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":3582,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":3586,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":3590,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":3594,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":3598,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":3603,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":3607,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":3611,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":3615,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":3619,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":3624,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":3628,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":3632,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":3636,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":3640,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":3645,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":3649,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":3653,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":3658,"\u002Fmechanics\u002Frotation\u002Frolling-motion":3662,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":3666,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":3670,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":3674,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":3678,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":3683,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":3687,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":3691,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":3695,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":3699,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":3703,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":3707,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":3712,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":3716,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":3720,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":3724,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":3728,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":3732,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":3736,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":3740,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":3744,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":3748,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":3752,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":3756,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":3761,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":3765,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":3769,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":3773,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":3777,"\u002Fmechanics":3781,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":3784,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":3789,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":3793,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":3797,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":3801,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":3805,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":3810,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":3814,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":3819,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":3823,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":3827,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":3831,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":3835,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":3840,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":3844,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":3848,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":3852,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":3857,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":3861,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":3865,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":3870,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":3874,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":3878,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":3882,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":3886,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":3891,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":3895,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":3899,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":3903,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":3907,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":3911,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":3916,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":3920,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":3924,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":3928,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":3932,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":3936,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":3940,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":3944,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":3949,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":3953,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":3957,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":3961,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":3965,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":3970,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":3974,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":3978,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":3982,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":3986,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":3991,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":3995,"\u002Felectricity-and-magnetism":3999,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":4002,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":4007,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":4011,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":4015,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":4019,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":4023,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":4028,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":4032,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":4036,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":4040,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":4044,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":4049,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":4053,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":4057,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":4062,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":4066,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":4070,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":4074,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":4078,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":4082,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":4086,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":4091,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":4095,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":4099,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":4103,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":4107,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":4111,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":4115,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":4120,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":4124,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":4128,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":4132,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":4136,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":4140,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":4145,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":4149,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":4153,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":4157,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":4161,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":4166,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":4170,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":4174,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":4178,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":4182,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":4186,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":4191,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":4195,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":4199,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":4203,"\u002Flinear-algebra":4207,"\u002Ftheory-of-computation":4210,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":4213,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":4214,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":4215,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":4216,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":4217,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":4218,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":4219,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":4220,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":4221,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":4222,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":4223,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":4224,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":4225,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":4226,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":4227,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":4228,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":4229,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":4230,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":4231,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":4232,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":4233,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":4234,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":4235,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":4236,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":4237,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":4238,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":4239,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":4240,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":4241,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":4242,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":4243,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":4244,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":4245,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":4246,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":4247,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":4248,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":4249,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":4250,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":4251,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":4252,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":4253,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":4254,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":4255,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":4256,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":4257,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":4258,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":4259,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":4260,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":4261,"\u002Fcomputer-architecture":4262,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":4265,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":4269,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":4273,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":4278,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":4282,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":4286,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":4290,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":4294,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":4298,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":4303,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":4307,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":4311,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":4315,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":4319,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":4323,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":4328,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":4332,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":4336,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":4341,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":4345,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":4350,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":4354,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":4358,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":4363,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":4367,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":4372,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":4376,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":4380,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":4385,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":4389,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":4393,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":4398,"\u002Fdifferential-equations":4402,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":4405,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":4410,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":4414,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":4418,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":4422,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":4426,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":4431,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":4435,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":4439,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":4443,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":4448,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":4452,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":4456,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":4460,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":4465,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":4469,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":4473,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":4477,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":4482,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":4486,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":4490,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":4494,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":4498,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":4502,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":4507,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":4511,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":4515,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":4520,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":4524,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":4528,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":4532,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":4537,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":4541,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":4545,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":4550,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":4554,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":4558,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":4563,"\u002Frelativity":4567,"\u002Fphysical-computing":4570,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":4573,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":4578,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":4582,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":4586,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":4590,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":4595,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":4599,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":4603,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":4608,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":4612,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":4616,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":4620,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":4624,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":4628,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":4633,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":4637,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":4641,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":4645,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":4649,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":4653,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":4658,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":4662,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":4666,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":4670,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":4674,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":4678,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":4682,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":4687,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":4691,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":4695,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":4700,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":4704,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":4708,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":4713,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":4717,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":4722,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":4726,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":4730,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":4734,"\u002Fquantum-mechanics":4738,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":4741,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":4746,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":4750,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":4754,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":4758,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":4763,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":4767,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":4771,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":4775,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":4779,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":4783,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":4788,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":4792,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":4796,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":4800,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":4804,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":4808,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":4812,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":4816,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":4820,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":4824,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":4828,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":4833,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":4837,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":4841,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":4845,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":4850,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":4854,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":4858,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":4861,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":4865,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":4870,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":4874,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":4878,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":4882,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":4887,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":4891,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":4895,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":4899,"\u002Freal-analysis":4903,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":4906,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":4910,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":4914,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":4919,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":4923,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":4927,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":4931,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":4936,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":4940,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":4944,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":4948,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":4952,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":4956,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":4961,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":4965,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":4969,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":4973,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":4978,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":4982,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":4986,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":4990,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":4995,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":4999,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":5003,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":5008,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":5012,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":5016,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":5020,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":5025,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":5029,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":5033,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":5037,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":5042,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":5046,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":5050,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":5055,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":5059,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":5063,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":5067,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":5072,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":5076,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":5080,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":5084,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":5088,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":5093,"\u002Fabstract-algebra":5097,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":5100,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":5105,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":5109,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":5113,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":5117,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":5121,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":5126,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":5130,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":5134,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":5138,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":5142,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":5146,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":5150,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":5155,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":5159,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":5163,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":5167,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":5172,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":5176,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":5180,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":5185,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":5189,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":5193,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":5197,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":5201,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":5205,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":5210,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":5214,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":5218,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":5223,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":5227,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":5231,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":5235,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":5240,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":5244,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":5248,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":5253,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":5257,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":5261,"\u002Fatomic-physics":5265,"\u002Fdatabases":5268,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":5271,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":5275,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":5279,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":5283,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":5287,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":5291,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":5295,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":5300,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":5304,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":5308,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":5313,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":5317,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":5321,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":5326,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":5330,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":5334,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":5338,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":5342,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":5347,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":5351,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":5355,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":5359,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":5364,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":5368,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":5372,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":5376,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":5381,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":5385,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":5389,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":5393,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":5398,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":5402,"\u002Fcategory-theory":5406,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":5409,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":5413,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":5417,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":5421,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":5424,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":5428,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":5432,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":5436,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":5441,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":5445,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":5449,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":5453,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":5457,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":5462,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":5466,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":5470,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":5474,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":5478,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":5483,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":5487,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":5491,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":5495,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":5500,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":5504,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":5508,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":5512,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":5516,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":5520,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":5524,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":5528,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":5532,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":5537,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":5541,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":5545,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":5549,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":5553,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":5558,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":5562,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":5566,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":5570,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":5574,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":5578,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":5582,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":5587,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":5591,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":5595,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":5600,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":5604,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":5608,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":5612,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":5616,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":5620,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":5624,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":5629,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":5633,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":5637,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":5641,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":5645,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":5649,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":5653,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":5657,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":5661,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":5665,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":5669,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":5674,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":5678,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":5682,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":5686,"\u002Fdeep-learning":5690,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":5693,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":5697,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":5701,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":5705,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":5709,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":5713,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":5718,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":5722,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":5726,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":5730,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":5735,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":5739,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":5743,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":5747,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":5752,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":5756,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":5760,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":5764,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":5768,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":5773,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":5777,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":5781,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":5786,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":5790,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":5794,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":5799,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":5803,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":5807,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":5811,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":5816,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":5820,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":5824,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":5828,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":5832,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":5836,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":5841,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":5845,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":5849,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":5853,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":5858,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":5862,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":5866,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":5871,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":5875,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":5879,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":5883,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":5887,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":5892,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":5896,"\u002Fstatistical-mechanics":5900,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":5903,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":5908,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":5912,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":5916,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":5920,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":5925,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":5929,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":5933,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":5937,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":5942,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":5946,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":5950,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":5954,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":5959,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":5963,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":5967,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":5971,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":5976,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":5980,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":5984,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":5988,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":5993,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":5997,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":6001,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":6005,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":6010,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":6014,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":6018,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":6022,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":6026,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":6031,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":6035,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":6040,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":6044,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":6048,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":6052,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":6057,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":6061,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":6065,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":6069,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":6073,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":6078,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":6082,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":6086,"\u002Fcondensed-matter":6090,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":6093,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":6097,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":6102,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":6106,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":6110,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":6114,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":6118,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":6122,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":6126,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":6131,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":6135,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":6139,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":6143,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":6148,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":6152,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":6156,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":6160,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":6165,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":6169,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":6173,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":6177,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":6182,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":6186,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":6190,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":6194,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":6199,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":6203,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":6207,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":6212,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":6216,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":6221,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":6225,"\u002Flogic":6229,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":6232,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":6236,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":6240,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":6244,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":6248,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":6252,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":6256,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":6260,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":6264,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":6268,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":6272,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":6276,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":6280,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":6284,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":6288,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":6292,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":6296,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":6300,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":6304,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":6309,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":6313,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":6317,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":6321,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":6325,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":6329,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":6333,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":6337,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":6341,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":6345,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":6349,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":6353,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":6357,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":6361,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":6365,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":6369,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":6373,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":6377,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":6381,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":6385,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":6389,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":6393,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":6398,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":6402,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":6406,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":6410,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":6414,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":6418,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":6422,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":6426,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":6430,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":6434,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":6438,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":6442,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":6446,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":6450,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":6454,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":6458,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":6462,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":6466,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":6470,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":6474,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":6478,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":6482,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":6487,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":6491,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":6495,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":6499,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":6503,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":6507,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":6511,"\u002Freinforcement-learning":6515,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":6517,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":6521,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":6525,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":6529,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":6533,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":6538,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":6542,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":6546,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":6550,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":6554,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":6558,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":6562,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":6566,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":6570,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":6574,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":6578,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":6582,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":6587,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":6591,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":6595,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":6599,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":6603,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":6607,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":6611,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":6615,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":6619,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":6623,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":6627,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":6631,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":6636,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":6640,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":6644,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":6648,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":6652,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":6656,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":6660,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":6663,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":6667,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":6671,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":6676,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":6680,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":6684,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":6688,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":6691,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":6695,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":6699,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":6703,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":6708,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":6712,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":6716,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":6720,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":6724,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":6728,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":6732,"\u002Fartificial-intelligence":6736,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":6739,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":6744,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":6748,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":6752,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":6756,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":6760,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":6765,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":6769,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":6773,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":6777,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":6782,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":6786,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":6790,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":6794,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":6799,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":6803,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":6808,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":6812,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":6817,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":6821,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":6825,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":6829,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":6834,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":6838,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":6842,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":6847,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":6851,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":6855,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":6860,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":6864,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":6869,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":6873,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":6877,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":6882,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":6886,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":6890,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":6894,"\u002Fnuclear-physics":6898,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":6901,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":6905,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":6909,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":6913,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":6917,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":6921,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":6926,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":6930,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":6934,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":6938,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":6943,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":6947,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":6951,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":6955,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":6959,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":6963,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":6967,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":6970,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":6973,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":6977,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":6981,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":6985,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":6990,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":6994,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":6998,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":7002,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":7006,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":7010,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":7014,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":7018,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":7022,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":7026,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":7030,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":7034,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":7038,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":7042,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":7046,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":7050,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":7054,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":7058,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":7062,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":7066,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":7070,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":7074,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":7078,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":7082,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":7086,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":7090,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":7094,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":7098,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":7103,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":7107,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":7111,"\u002Fnatural-language-processing":7115,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":7118,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":7122,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":7126,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":7130,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":7135,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":7139,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":7143,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":7147,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":7152,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":7156,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":7160,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":7164,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":7169,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":7173,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":7177,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":7181,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":7186,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":7190,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":7194,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":7199,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":7203,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":7207,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":7211,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":7216,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":7220,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":7224,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":7228,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":7233,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":7237,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":7241,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":7245,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":7250,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":7254,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":7258,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":7262,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":7266,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":7271,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":7275,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":7279,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":7284,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":7288,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":7292,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":7296,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":7300,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":7304,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":7308,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":7312,"\u002Fparticle-physics":7316,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":7319,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":7324,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":7328,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":7332,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":7337,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":7341,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":7345,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":7349,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":7354,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":7358,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":7362,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":7366,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":7371,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":7375,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":7379,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":7383,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":7388,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":7392,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":7396,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":7400,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":7405,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":7409,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":7413,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":7418,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":7422,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":7426,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":7430,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":7434,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":7438,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":7442,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":7446,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":7450,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":7455,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":7459,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":7463,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":7467,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":7472,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":7476,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":7480,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":7484,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":7488,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":7493,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":7497,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":7500,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":7504,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":7508,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":7513,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":7517,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":7521,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":7525,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":7529,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":7533,"\u002Fastrophysics-cosmology":7537,"\u002Fcolophon":7540,"\u002F":7543},{"path":3014,"title":3015,"module":5,"summary":3016},"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm","What Is an Algorithm?","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":3018,"title":3019,"module":5,"summary":3020},"\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":3022,"title":3023,"module":5,"summary":3024},"\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":3026,"title":3027,"module":5,"summary":3028},"\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":3030,"title":3031,"module":5,"summary":3032},"\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":3034,"title":3035,"module":5,"summary":3036},"\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":3038,"title":3039,"module":3040,"summary":3041},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort","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":3043,"title":3044,"module":3040,"summary":3045},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort","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":3047,"title":3048,"module":3040,"summary":3049},"\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":3051,"title":3052,"module":3040,"summary":3053},"\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":3055,"title":3056,"module":3057,"summary":3058},"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort","Heaps and Heapsort","Sorting & Order Statistics","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":3060,"title":3061,"module":3057,"summary":3062},"\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":3064,"title":3065,"module":3057,"summary":3066},"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting","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":3068,"title":3069,"module":3057,"summary":3070},"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting","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",{"path":3072,"title":3073,"module":3074,"summary":3075},"\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":3077,"title":3078,"module":3074,"summary":3079},"\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":3081,"title":3082,"module":3074,"summary":3083},"\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":3085,"title":3086,"module":3074,"summary":3087},"\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":3089,"title":3090,"module":3074,"summary":3091},"\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":3093,"title":3094,"module":3074,"summary":3095},"\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":3097,"title":3098,"module":3074,"summary":3099},"\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":3101,"title":3102,"module":3074,"summary":3103},"\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":3105,"title":3106,"module":3074,"summary":3107},"\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":3109,"title":3110,"module":3074,"summary":3111},"\u002Falgorithms\u002Fdata-structures\u002Fb-trees","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":3113,"title":3114,"module":3074,"summary":3115},"\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":3117,"title":3118,"module":3074,"summary":3119},"\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":3121,"title":3122,"module":3123,"summary":3124},"\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":3126,"title":3127,"module":3123,"summary":3128},"\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":3130,"title":3131,"module":3123,"summary":3132},"\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":3134,"title":3135,"module":3123,"summary":3136},"\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":3138,"title":3139,"module":3123,"summary":3140},"\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":3142,"title":3143,"module":3123,"summary":3144},"\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":3146,"title":3147,"module":3123,"summary":3148},"\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":3150,"title":3151,"module":3123,"summary":3152},"\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":3154,"title":3155,"module":3156,"summary":3157},"\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":3159,"title":3160,"module":3156,"summary":3161},"\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":3163,"title":3164,"module":3156,"summary":3165},"\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":3167,"title":3168,"module":3156,"summary":3169},"\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":3171,"title":3172,"module":3156,"summary":3173},"\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":3175,"title":3176,"module":3156,"summary":3177},"\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":3179,"title":3180,"module":3156,"summary":3181},"\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":3183,"title":3184,"module":3156,"summary":3185},"\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":3187,"title":3188,"module":3156,"summary":3189},"\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":3191,"title":3192,"module":3156,"summary":3193},"\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":3195,"title":3196,"module":3156,"summary":3197},"\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":3199,"title":3200,"module":3156,"summary":3201},"\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":3203,"title":3204,"module":3156,"summary":3205},"\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":3207,"title":3208,"module":3156,"summary":3209},"\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":3211,"title":3212,"module":3213,"summary":3214},"\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":3216,"title":3217,"module":3213,"summary":3218},"\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":3220,"title":3221,"module":3213,"summary":3222},"\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":3224,"title":3225,"module":3213,"summary":3226},"\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":3228,"title":3229,"module":3213,"summary":3230},"\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":3232,"title":3233,"module":3234,"summary":3235},"\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":3237,"title":3238,"module":3234,"summary":3239},"\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":3241,"title":3242,"module":3234,"summary":3243},"\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":3245,"title":3246,"module":3234,"summary":3247},"\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":3249,"title":3250,"module":3234,"summary":3251},"\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":3253,"title":3254,"module":3234,"summary":3255},"\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":3257,"title":3258,"module":3234,"summary":3259},"\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":3261,"title":3262,"module":3234,"summary":3263},"\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":3265,"title":3266,"module":3234,"summary":3267},"\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":3269,"title":3270,"module":3234,"summary":3271},"\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":3273,"title":3274,"module":3234,"summary":3275},"\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":3277,"title":3278,"module":3279,"summary":3280},"\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":3282,"title":3283,"module":3279,"summary":3284},"\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":3286,"title":3287,"module":3279,"summary":3288},"\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":3290,"title":3291,"module":3279,"summary":3292},"\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":3294,"title":3295,"module":3296,"summary":3297},"\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":3299,"title":3300,"module":3296,"summary":3301},"\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":3303,"title":3304,"module":3296,"summary":3305},"\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":3307,"title":3308,"module":3296,"summary":3309},"\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":3311,"title":3312,"module":3296,"summary":3313},"\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":3315,"title":3316,"module":3296,"summary":3317},"\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":3319,"title":3320,"module":3296,"summary":3321},"\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":3323,"title":3324,"module":3325,"summary":3326},"\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":3328,"title":3329,"module":3325,"summary":3330},"\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":3332,"title":3333,"module":3325,"summary":3334},"\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":3336,"title":3337,"module":3325,"summary":3338},"\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":3340,"title":3341,"module":3342,"summary":3343},"\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":3345,"title":3346,"module":3342,"summary":3347},"\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":3349,"title":3350,"module":3342,"summary":3351},"\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":3353,"title":3354,"module":3342,"summary":3355},"\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":3357,"title":3358,"module":306,"summary":306},"\u002Falgorithms","Algorithms",{"path":3360,"title":3361,"module":3362,"summary":3363},"\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":3365,"title":3366,"module":3362,"summary":3367},"\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":3369,"title":3370,"module":3362,"summary":3371},"\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":3373,"title":3374,"module":3362,"summary":3375},"\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":3377,"title":3378,"module":3379,"summary":3380},"\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":3382,"title":3383,"module":3379,"summary":3384},"\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":3386,"title":3387,"module":3379,"summary":3388},"\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":3390,"title":3391,"module":3379,"summary":3392},"\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":3394,"title":3395,"module":3396,"summary":3397},"\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":3399,"title":3400,"module":3396,"summary":3401},"\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":3403,"title":3404,"module":3396,"summary":3405},"\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":3407,"title":3408,"module":3396,"summary":3409},"\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":3411,"title":3412,"module":3413,"summary":3414},"\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":3416,"title":3417,"module":3413,"summary":3418},"\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":3420,"title":3421,"module":3413,"summary":3422},"\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":3424,"title":3425,"module":3426,"summary":3427},"\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":3429,"title":3430,"module":3426,"summary":3431},"\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":3433,"title":3434,"module":3426,"summary":3435},"\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":3437,"title":3438,"module":3439,"summary":3440},"\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":3442,"title":3443,"module":3439,"summary":3444},"\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":3446,"title":3447,"module":3439,"summary":3448},"\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":3450,"title":3451,"module":3452,"summary":3453},"\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":3455,"title":3456,"module":3452,"summary":3457},"\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":3459,"title":3460,"module":3452,"summary":3461},"\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":3463,"title":3464,"module":3452,"summary":3465},"\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":3467,"title":3468,"module":3469,"summary":3470},"\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":3472,"title":3473,"module":3469,"summary":3474},"\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":3476,"title":3477,"module":3469,"summary":3478},"\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":3480,"title":3481,"module":3482,"summary":3483},"\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":3485,"title":3486,"module":3482,"summary":3487},"\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":3489,"title":3490,"module":3482,"summary":3491},"\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":3493,"title":3494,"module":3482,"summary":3495},"\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":3497,"title":3498,"module":3482,"summary":3499},"\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":3501,"title":3502,"module":3503,"summary":3504},"\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":3506,"title":3507,"module":3503,"summary":3508},"\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":3510,"title":3511,"module":3503,"summary":3512},"\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":3514,"title":3515,"module":3503,"summary":3516},"\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":3518,"title":3519,"module":3503,"summary":3520},"\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":3522,"title":3523,"module":3524,"summary":3525},"\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":3527,"title":3524,"module":3524,"summary":3528},"\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":3530,"title":3531,"module":3524,"summary":3532},"\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":3534,"title":3535,"module":3524,"summary":3536},"\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":3538,"title":3539,"module":3524,"summary":3540},"\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":3542,"title":3543,"module":3544,"summary":3545},"\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":3547,"title":3548,"module":3544,"summary":3549},"\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":3551,"title":3552,"module":3544,"summary":3553},"\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":3555,"title":3556,"module":3544,"summary":3557},"\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":3559,"title":3560,"module":3544,"summary":3561},"\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":3563,"title":3564,"module":3544,"summary":3565},"\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":3567,"title":3568,"module":306,"summary":306},"\u002Fcalculus","Calculus",{"path":3570,"title":3571,"module":5,"summary":3572},"\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":3574,"title":3575,"module":5,"summary":3576},"\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":3578,"title":3579,"module":3580,"summary":3581},"\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":3583,"title":3584,"module":3580,"summary":3585},"\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":3587,"title":3588,"module":3580,"summary":3589},"\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":3591,"title":3592,"module":3580,"summary":3593},"\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":3595,"title":3596,"module":3580,"summary":3597},"\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":3599,"title":3600,"module":3601,"summary":3602},"\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":3604,"title":3605,"module":3601,"summary":3606},"\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":3608,"title":3609,"module":3601,"summary":3610},"\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":3612,"title":3613,"module":3601,"summary":3614},"\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":3616,"title":3617,"module":3601,"summary":3618},"\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":3620,"title":3621,"module":3622,"summary":3623},"\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":3625,"title":3626,"module":3622,"summary":3627},"\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":3629,"title":3630,"module":3622,"summary":3631},"\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":3633,"title":3634,"module":3622,"summary":3635},"\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":3637,"title":3638,"module":3622,"summary":3639},"\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":3641,"title":3642,"module":3643,"summary":3644},"\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":3646,"title":3647,"module":3643,"summary":3648},"\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":3650,"title":3651,"module":3643,"summary":3652},"\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":3654,"title":3655,"module":3656,"summary":3657},"\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":3659,"title":3660,"module":3656,"summary":3661},"\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":3663,"title":3664,"module":3656,"summary":3665},"\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":3667,"title":3668,"module":3656,"summary":3669},"\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":3671,"title":3672,"module":3656,"summary":3673},"\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":3675,"title":3676,"module":3656,"summary":3677},"\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":3679,"title":3680,"module":3681,"summary":3682},"\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":3684,"title":3685,"module":3681,"summary":3686},"\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":3688,"title":3689,"module":3681,"summary":3690},"\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":3692,"title":3693,"module":3681,"summary":3694},"\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":3696,"title":3697,"module":3681,"summary":3698},"\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":3700,"title":3701,"module":3681,"summary":3702},"\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":3704,"title":3705,"module":3681,"summary":3706},"\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":3708,"title":3709,"module":3710,"summary":3711},"\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":3713,"title":3714,"module":3710,"summary":3715},"\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":3717,"title":3718,"module":3710,"summary":3719},"\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":3721,"title":3722,"module":3710,"summary":3723},"\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":3725,"title":3726,"module":3710,"summary":3727},"\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":3729,"title":3730,"module":3710,"summary":3731},"\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":3733,"title":3734,"module":3710,"summary":3735},"\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":3737,"title":3738,"module":3710,"summary":3739},"\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":3741,"title":3742,"module":3710,"summary":3743},"\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":3745,"title":3746,"module":3710,"summary":3747},"\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":3749,"title":3750,"module":3710,"summary":3751},"\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":3753,"title":3754,"module":3710,"summary":3755},"\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":3757,"title":3758,"module":3759,"summary":3760},"\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":3762,"title":3763,"module":3759,"summary":3764},"\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":3766,"title":3767,"module":3759,"summary":3768},"\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":3770,"title":3771,"module":3759,"summary":3772},"\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":3774,"title":3775,"module":3759,"summary":3776},"\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":3778,"title":3779,"module":3759,"summary":3780},"\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":3782,"title":3783,"module":306,"summary":306},"\u002Fmechanics","Mechanics & Dynamics",{"path":3785,"title":3786,"module":3787,"summary":3788},"\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":3790,"title":3791,"module":3787,"summary":3792},"\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":3794,"title":3795,"module":3787,"summary":3796},"\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":3798,"title":3799,"module":3787,"summary":3800},"\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":3802,"title":3803,"module":3787,"summary":3804},"\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":3806,"title":3807,"module":3808,"summary":3809},"\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":3811,"title":3812,"module":3808,"summary":3813},"\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":3815,"title":3816,"module":3817,"summary":3818},"\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":3820,"title":3821,"module":3817,"summary":3822},"\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":3824,"title":3825,"module":3817,"summary":3826},"\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":3828,"title":3829,"module":3817,"summary":3830},"\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":3832,"title":3833,"module":3817,"summary":3834},"\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":3836,"title":3837,"module":3838,"summary":3839},"\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":3841,"title":3842,"module":3838,"summary":3843},"\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":3845,"title":3846,"module":3838,"summary":3847},"\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":3849,"title":3850,"module":3838,"summary":3851},"\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":3853,"title":3854,"module":3855,"summary":3856},"\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":3858,"title":3859,"module":3855,"summary":3860},"\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":3862,"title":3863,"module":3855,"summary":3864},"\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":3866,"title":3867,"module":3868,"summary":3869},"\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":3871,"title":3872,"module":3868,"summary":3873},"\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":3875,"title":3876,"module":3868,"summary":3877},"\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":3879,"title":3880,"module":3868,"summary":3881},"\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":3883,"title":3884,"module":3868,"summary":3885},"\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":3887,"title":3888,"module":3889,"summary":3890},"\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":3892,"title":3893,"module":3889,"summary":3894},"\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":3896,"title":3897,"module":3889,"summary":3898},"\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":3900,"title":3901,"module":3889,"summary":3902},"\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":3904,"title":3905,"module":3889,"summary":3906},"\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":3908,"title":3909,"module":3889,"summary":3910},"\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":3912,"title":3913,"module":3914,"summary":3915},"\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":3917,"title":3918,"module":3914,"summary":3919},"\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":3921,"title":3922,"module":3914,"summary":3923},"\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":3925,"title":3926,"module":3914,"summary":3927},"\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":3929,"title":3930,"module":3914,"summary":3931},"\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":3933,"title":3934,"module":3914,"summary":3935},"\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":3937,"title":3938,"module":3914,"summary":3939},"\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":3941,"title":3942,"module":3914,"summary":3943},"\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":3945,"title":3946,"module":3947,"summary":3948},"\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":3950,"title":3951,"module":3947,"summary":3952},"\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":3954,"title":3955,"module":3947,"summary":3956},"\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":3958,"title":3959,"module":3947,"summary":3960},"\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":3962,"title":3963,"module":3947,"summary":3964},"\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":3966,"title":3967,"module":3968,"summary":3969},"\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":3971,"title":3972,"module":3968,"summary":3973},"\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":3975,"title":3976,"module":3968,"summary":3977},"\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":3979,"title":3980,"module":3968,"summary":3981},"\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":3983,"title":3984,"module":3968,"summary":3985},"\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":3987,"title":3988,"module":3989,"summary":3990},"\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":3992,"title":3993,"module":3989,"summary":3994},"\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":3996,"title":3997,"module":3989,"summary":3998},"\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":4000,"title":4001,"module":306,"summary":306},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":4003,"title":4004,"module":4005,"summary":4006},"\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":4008,"title":4009,"module":4005,"summary":4010},"\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":4012,"title":4013,"module":4005,"summary":4014},"\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":4016,"title":4017,"module":4005,"summary":4018},"\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":4020,"title":4021,"module":4005,"summary":4022},"\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":4024,"title":4025,"module":4026,"summary":4027},"\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":4029,"title":4030,"module":4026,"summary":4031},"\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":4033,"title":4034,"module":4026,"summary":4035},"\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":4037,"title":4038,"module":4026,"summary":4039},"\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":4041,"title":4042,"module":4026,"summary":4043},"\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":4045,"title":4046,"module":4047,"summary":4048},"\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":4050,"title":4051,"module":4047,"summary":4052},"\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":4054,"title":4055,"module":4047,"summary":4056},"\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":4058,"title":4059,"module":4060,"summary":4061},"\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":4063,"title":4064,"module":4060,"summary":4065},"\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":4067,"title":4068,"module":4060,"summary":4069},"\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":4071,"title":4072,"module":4060,"summary":4073},"\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":4075,"title":4076,"module":4060,"summary":4077},"\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":4079,"title":4080,"module":4060,"summary":4081},"\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":4083,"title":4084,"module":4060,"summary":4085},"\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":4087,"title":4088,"module":4089,"summary":4090},"\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":4092,"title":4093,"module":4089,"summary":4094},"\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":4096,"title":4097,"module":4089,"summary":4098},"\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":4100,"title":4101,"module":4089,"summary":4102},"\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":4104,"title":4105,"module":4089,"summary":4106},"\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":4108,"title":4109,"module":4089,"summary":4110},"\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":4112,"title":4113,"module":4089,"summary":4114},"\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":4116,"title":4117,"module":4118,"summary":4119},"\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":4121,"title":4122,"module":4118,"summary":4123},"\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":4125,"title":4126,"module":4118,"summary":4127},"\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":4129,"title":4130,"module":4118,"summary":4131},"\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":4133,"title":4134,"module":4118,"summary":4135},"\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":4137,"title":4138,"module":4118,"summary":4139},"\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":4141,"title":4142,"module":4143,"summary":4144},"\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":4146,"title":4147,"module":4143,"summary":4148},"\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":4150,"title":4151,"module":4143,"summary":4152},"\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":4154,"title":4155,"module":4143,"summary":4156},"\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":4158,"title":4159,"module":4143,"summary":4160},"\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":4162,"title":4163,"module":4164,"summary":4165},"\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":4167,"title":4168,"module":4164,"summary":4169},"\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":4171,"title":4172,"module":4164,"summary":4173},"\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":4175,"title":4176,"module":4164,"summary":4177},"\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":4179,"title":4180,"module":4164,"summary":4181},"\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":4183,"title":4184,"module":4164,"summary":4185},"\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":4187,"title":4188,"module":4189,"summary":4190},"\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":4192,"title":4193,"module":4189,"summary":4194},"\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":4196,"title":4197,"module":4189,"summary":4198},"\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":4200,"title":4201,"module":4189,"summary":4202},"\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":4204,"title":4205,"module":4189,"summary":4206},"\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":4208,"title":4209,"module":306,"summary":306},"\u002Flinear-algebra","Linear Algebra",{"path":4211,"title":4212,"module":306,"summary":306},"\u002Ftheory-of-computation","Theory of Computation",{"path":11,"title":10,"module":5,"summary":13},{"path":16,"title":15,"module":5,"summary":19},{"path":22,"title":21,"module":5,"summary":25},{"path":28,"title":27,"module":5,"summary":31},{"path":34,"title":33,"module":5,"summary":37},{"path":44,"title":43,"module":39,"summary":46},{"path":49,"title":48,"module":39,"summary":51},{"path":54,"title":53,"module":39,"summary":56},{"path":59,"title":58,"module":39,"summary":61},{"path":64,"title":63,"module":39,"summary":66},{"path":69,"title":68,"module":39,"summary":72},{"path":75,"title":74,"module":39,"summary":78},{"path":85,"title":84,"module":80,"summary":87},{"path":90,"title":89,"module":80,"summary":92},{"path":95,"title":94,"module":80,"summary":97},{"path":100,"title":99,"module":80,"summary":102},{"path":105,"title":104,"module":80,"summary":107},{"path":114,"title":113,"module":109,"summary":116},{"path":119,"title":118,"module":109,"summary":121},{"path":124,"title":123,"module":109,"summary":126},{"path":129,"title":128,"module":109,"summary":131},{"path":134,"title":133,"module":109,"summary":136},{"path":143,"title":142,"module":138,"summary":145},{"path":148,"title":147,"module":138,"summary":150},{"path":153,"title":152,"module":138,"summary":155},{"path":158,"title":157,"module":138,"summary":160},{"path":163,"title":162,"module":138,"summary":165},{"path":172,"title":171,"module":167,"summary":174},{"path":177,"title":176,"module":167,"summary":179},{"path":182,"title":181,"module":167,"summary":184},{"path":187,"title":186,"module":167,"summary":189},{"path":192,"title":191,"module":167,"summary":194},{"path":201,"title":200,"module":196,"summary":203},{"path":206,"title":205,"module":196,"summary":208},{"path":211,"title":210,"module":196,"summary":213},{"path":216,"title":215,"module":196,"summary":218},{"path":221,"title":220,"module":196,"summary":223},{"path":231,"title":230,"module":225,"summary":233},{"path":236,"title":235,"module":225,"summary":238},{"path":241,"title":240,"module":225,"summary":243},{"path":251,"title":250,"module":245,"summary":253},{"path":256,"title":255,"module":245,"summary":258},{"path":266,"title":265,"module":260,"summary":268},{"path":271,"title":270,"module":260,"summary":273},{"path":276,"title":275,"module":260,"summary":278},{"path":281,"title":280,"module":260,"summary":283},{"path":286,"title":285,"module":260,"summary":288},{"path":296,"title":295,"module":290,"summary":298},{"path":301,"title":300,"module":290,"summary":303},{"path":4263,"title":4264,"module":306,"summary":306},"\u002Fcomputer-architecture","Computer Architecture",{"path":4266,"title":4267,"module":5,"summary":4268},"\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":4270,"title":4271,"module":5,"summary":4272},"\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":4274,"title":4275,"module":4276,"summary":4277},"\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":4279,"title":4280,"module":4276,"summary":4281},"\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":4283,"title":4284,"module":4276,"summary":4285},"\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":4287,"title":4288,"module":4276,"summary":4289},"\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":4291,"title":4292,"module":4276,"summary":4293},"\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":4295,"title":4296,"module":4276,"summary":4297},"\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":4299,"title":4300,"module":4301,"summary":4302},"\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":4304,"title":4305,"module":4301,"summary":4306},"\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":4308,"title":4309,"module":4301,"summary":4310},"\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":4312,"title":4313,"module":4301,"summary":4314},"\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":4316,"title":4317,"module":4301,"summary":4318},"\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":4320,"title":4321,"module":4301,"summary":4322},"\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":4324,"title":4325,"module":4326,"summary":4327},"\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":4329,"title":4330,"module":4326,"summary":4331},"\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":4333,"title":4334,"module":4326,"summary":4335},"\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":4337,"title":4338,"module":4339,"summary":4340},"\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":4342,"title":4343,"module":4339,"summary":4344},"\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":4346,"title":4347,"module":4348,"summary":4349},"\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":4351,"title":4352,"module":4348,"summary":4353},"\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":4355,"title":4356,"module":4348,"summary":4357},"\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":4359,"title":4360,"module":4361,"summary":4362},"\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":4364,"title":4365,"module":4361,"summary":4366},"\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":4368,"title":4369,"module":4370,"summary":4371},"\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":4373,"title":4374,"module":4370,"summary":4375},"\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":4377,"title":4378,"module":4370,"summary":4379},"\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":4381,"title":4382,"module":4383,"summary":4384},"\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":4386,"title":4387,"module":4383,"summary":4388},"\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":4390,"title":4391,"module":4383,"summary":4392},"\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":4394,"title":4395,"module":4396,"summary":4397},"\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":4399,"title":4400,"module":4396,"summary":4401},"\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":4403,"title":4404,"module":306,"summary":306},"\u002Fdifferential-equations","Differential Equations",{"path":4406,"title":4407,"module":4408,"summary":4409},"\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":4411,"title":4412,"module":4408,"summary":4413},"\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":4415,"title":4416,"module":4408,"summary":4417},"\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":4419,"title":4420,"module":4408,"summary":4421},"\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":4423,"title":4424,"module":4408,"summary":4425},"\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":4427,"title":4428,"module":4429,"summary":4430},"\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":4432,"title":4433,"module":4429,"summary":4434},"\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":4436,"title":4437,"module":4429,"summary":4438},"\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":4440,"title":4441,"module":4429,"summary":4442},"\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":4444,"title":4445,"module":4446,"summary":4447},"\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":4449,"title":4450,"module":4446,"summary":4451},"\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":4453,"title":4454,"module":4446,"summary":4455},"\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":4457,"title":4458,"module":4446,"summary":4459},"\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":4461,"title":4462,"module":4463,"summary":4464},"\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":4466,"title":4467,"module":4463,"summary":4468},"\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":4470,"title":4471,"module":4463,"summary":4472},"\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":4474,"title":4475,"module":4463,"summary":4476},"\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":4478,"title":4479,"module":4480,"summary":4481},"\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":4483,"title":4484,"module":4480,"summary":4485},"\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":4487,"title":4488,"module":4480,"summary":4489},"\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":4491,"title":4492,"module":4480,"summary":4493},"\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":4495,"title":4496,"module":4480,"summary":4497},"\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":4499,"title":4500,"module":4480,"summary":4501},"\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":4503,"title":4504,"module":4505,"summary":4506},"\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":4508,"title":4509,"module":4505,"summary":4510},"\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":4512,"title":4513,"module":4505,"summary":4514},"\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":4516,"title":4517,"module":4518,"summary":4519},"\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":4521,"title":4522,"module":4518,"summary":4523},"\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":4525,"title":4526,"module":4518,"summary":4527},"\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":4529,"title":4530,"module":4518,"summary":4531},"\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":4533,"title":4534,"module":4535,"summary":4536},"\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":4538,"title":4539,"module":4535,"summary":4540},"\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":4542,"title":4543,"module":4535,"summary":4544},"\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":4546,"title":4547,"module":4548,"summary":4549},"\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":4551,"title":4552,"module":4548,"summary":4553},"\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":4555,"title":4556,"module":4548,"summary":4557},"\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":4559,"title":4560,"module":4561,"summary":4562},"\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":4564,"title":4565,"module":4561,"summary":4566},"\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":4568,"title":4569,"module":306,"summary":306},"\u002Frelativity","Relativity",{"path":4571,"title":4572,"module":306,"summary":306},"\u002Fphysical-computing","Physical Computing",{"path":4574,"title":4575,"module":4576,"summary":4577},"\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":4579,"title":4580,"module":4576,"summary":4581},"\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":4583,"title":4584,"module":4576,"summary":4585},"\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":4587,"title":4588,"module":4576,"summary":4589},"\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":4591,"title":4592,"module":4593,"summary":4594},"\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":4596,"title":4597,"module":4593,"summary":4598},"\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":4600,"title":4601,"module":4593,"summary":4602},"\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":4604,"title":4605,"module":4606,"summary":4607},"\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":4609,"title":4610,"module":4606,"summary":4611},"\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":4613,"title":4614,"module":4606,"summary":4615},"\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":4617,"title":4618,"module":4606,"summary":4619},"\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":4621,"title":4622,"module":4606,"summary":4623},"\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":4625,"title":4626,"module":4606,"summary":4627},"\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":4629,"title":4630,"module":4631,"summary":4632},"\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":4634,"title":4635,"module":4631,"summary":4636},"\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":4638,"title":4639,"module":4631,"summary":4640},"\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":4642,"title":4643,"module":4631,"summary":4644},"\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":4646,"title":4647,"module":4631,"summary":4648},"\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":4650,"title":4651,"module":4631,"summary":4652},"\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":4654,"title":4655,"module":4656,"summary":4657},"\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":4659,"title":4660,"module":4656,"summary":4661},"\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":4663,"title":4664,"module":4656,"summary":4665},"\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":4667,"title":4668,"module":4656,"summary":4669},"\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":4671,"title":4672,"module":3668,"summary":4673},"\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":4675,"title":4676,"module":3668,"summary":4677},"\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":4679,"title":4680,"module":3668,"summary":4681},"\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":4683,"title":4684,"module":4685,"summary":4686},"\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":4688,"title":4689,"module":4685,"summary":4690},"\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":4692,"title":4693,"module":4685,"summary":4694},"\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":4696,"title":4697,"module":4698,"summary":4699},"\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":4701,"title":4702,"module":4698,"summary":4703},"\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":4705,"title":4706,"module":4698,"summary":4707},"\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":4709,"title":4710,"module":4711,"summary":4712},"\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":4714,"title":4715,"module":4711,"summary":4716},"\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":4718,"title":4719,"module":4720,"summary":4721},"\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":4723,"title":4724,"module":4720,"summary":4725},"\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":4727,"title":4728,"module":4720,"summary":4729},"\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":4731,"title":4732,"module":4720,"summary":4733},"\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":4735,"title":4736,"module":4720,"summary":4737},"\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":4739,"title":4740,"module":306,"summary":306},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":4742,"title":4743,"module":4744,"summary":4745},"\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":4747,"title":4748,"module":4744,"summary":4749},"\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":4751,"title":4752,"module":4744,"summary":4753},"\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":4755,"title":4756,"module":4744,"summary":4757},"\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":4759,"title":4760,"module":4761,"summary":4762},"\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":4764,"title":4765,"module":4761,"summary":4766},"\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":4768,"title":4769,"module":4761,"summary":4770},"\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":4772,"title":4773,"module":4761,"summary":4774},"\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":4776,"title":4777,"module":4761,"summary":4778},"\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":4780,"title":4781,"module":4761,"summary":4782},"\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":4784,"title":4785,"module":4786,"summary":4787},"\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":4789,"title":4790,"module":4786,"summary":4791},"\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":4793,"title":4794,"module":4786,"summary":4795},"\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":4797,"title":4798,"module":4786,"summary":4799},"\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":4801,"title":4802,"module":4786,"summary":4803},"\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":4805,"title":4806,"module":3362,"summary":4807},"\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":4809,"title":4810,"module":3362,"summary":4811},"\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":4813,"title":4814,"module":3362,"summary":4815},"\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":4817,"title":4818,"module":3362,"summary":4819},"\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":4821,"title":4822,"module":3362,"summary":4823},"\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":4825,"title":4826,"module":3362,"summary":4827},"\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":4829,"title":4830,"module":4831,"summary":4832},"\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":4834,"title":4835,"module":4831,"summary":4836},"\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":4838,"title":4839,"module":4831,"summary":4840},"\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":4842,"title":4843,"module":4831,"summary":4844},"\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":4846,"title":4847,"module":4848,"summary":4849},"\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":4851,"title":4852,"module":4848,"summary":4853},"\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":4855,"title":4856,"module":4848,"summary":4857},"\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":4859,"title":3417,"module":4848,"summary":4860},"\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":4862,"title":4863,"module":4848,"summary":4864},"\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":4866,"title":4867,"module":4868,"summary":4869},"\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":4871,"title":4872,"module":4868,"summary":4873},"\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":4875,"title":4876,"module":4868,"summary":4877},"\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":4879,"title":4880,"module":4868,"summary":4881},"\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":4883,"title":4884,"module":4885,"summary":4886},"\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":4888,"title":4889,"module":4885,"summary":4890},"\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":4892,"title":4893,"module":4885,"summary":4894},"\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":4896,"title":4897,"module":4885,"summary":4898},"\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":4900,"title":4901,"module":4885,"summary":4902},"\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":4904,"title":4905,"module":306,"summary":306},"\u002Freal-analysis","Real Analysis",{"path":4907,"title":4908,"module":5,"summary":4909},"\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":4911,"title":4912,"module":5,"summary":4913},"\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":4915,"title":4916,"module":4917,"summary":4918},"\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":4920,"title":4921,"module":4917,"summary":4922},"\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":4924,"title":4925,"module":4917,"summary":4926},"\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":4928,"title":4929,"module":4917,"summary":4930},"\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":4932,"title":4933,"module":4934,"summary":4935},"\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":4937,"title":4938,"module":4934,"summary":4939},"\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":4941,"title":4942,"module":4934,"summary":4943},"\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":4945,"title":4946,"module":4934,"summary":4947},"\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":4949,"title":4950,"module":4934,"summary":4951},"\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":4953,"title":4954,"module":4934,"summary":4955},"\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":4957,"title":4958,"module":4959,"summary":4960},"\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":4962,"title":4963,"module":4959,"summary":4964},"\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":4966,"title":4967,"module":4959,"summary":4968},"\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":4970,"title":4971,"module":4959,"summary":4972},"\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":4974,"title":4975,"module":4976,"summary":4977},"\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":4979,"title":4980,"module":4976,"summary":4981},"\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":4983,"title":4984,"module":4976,"summary":4985},"\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":4987,"title":4988,"module":4976,"summary":4989},"\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":4991,"title":4992,"module":4993,"summary":4994},"\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":4996,"title":4997,"module":4993,"summary":4998},"\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":5000,"title":5001,"module":4993,"summary":5002},"\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":5004,"title":5005,"module":5006,"summary":5007},"\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":5009,"title":5010,"module":5006,"summary":5011},"\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":5013,"title":5014,"module":5006,"summary":5015},"\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":5017,"title":5018,"module":5006,"summary":5019},"\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":5021,"title":5022,"module":5023,"summary":5024},"\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":5026,"title":5027,"module":5023,"summary":5028},"\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":5030,"title":5031,"module":5023,"summary":5032},"\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":5034,"title":5035,"module":5023,"summary":5036},"\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":5038,"title":5039,"module":5040,"summary":5041},"\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":5043,"title":5044,"module":5040,"summary":5045},"\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":5047,"title":5048,"module":5040,"summary":5049},"\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":5051,"title":5052,"module":5053,"summary":5054},"\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":5056,"title":5057,"module":5053,"summary":5058},"\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":5060,"title":5061,"module":5053,"summary":5062},"\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":5064,"title":5065,"module":5053,"summary":5066},"\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":5068,"title":5069,"module":5070,"summary":5071},"\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":5073,"title":5074,"module":5070,"summary":5075},"\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":5077,"title":5078,"module":5070,"summary":5079},"\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":5081,"title":5082,"module":5070,"summary":5083},"\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":5085,"title":5086,"module":5070,"summary":5087},"\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":5089,"title":5090,"module":5091,"summary":5092},"\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":5094,"title":5095,"module":5091,"summary":5096},"\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":5098,"title":5099,"module":306,"summary":306},"\u002Fabstract-algebra","Abstract Algebra",{"path":5101,"title":5102,"module":5103,"summary":5104},"\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":5106,"title":5107,"module":5103,"summary":5108},"\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":5110,"title":5111,"module":5103,"summary":5112},"\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":5114,"title":5115,"module":5103,"summary":5116},"\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":5118,"title":5119,"module":5103,"summary":5120},"\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":5122,"title":5123,"module":5124,"summary":5125},"\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":5127,"title":5128,"module":5124,"summary":5129},"\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":5131,"title":5132,"module":5124,"summary":5133},"\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":5135,"title":5136,"module":5124,"summary":5137},"\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":5139,"title":5140,"module":5124,"summary":5141},"\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":5143,"title":5144,"module":5124,"summary":5145},"\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":5147,"title":5148,"module":5124,"summary":5149},"\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":5151,"title":5152,"module":5153,"summary":5154},"\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":5156,"title":5157,"module":5153,"summary":5158},"\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":5160,"title":5161,"module":5153,"summary":5162},"\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":5164,"title":5165,"module":5153,"summary":5166},"\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":5168,"title":5169,"module":5170,"summary":5171},"\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":5173,"title":5174,"module":5170,"summary":5175},"\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":5177,"title":5178,"module":5170,"summary":5179},"\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":5181,"title":5182,"module":5183,"summary":5184},"\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":5186,"title":5187,"module":5183,"summary":5188},"\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":5190,"title":5191,"module":5183,"summary":5192},"\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":5194,"title":5195,"module":5183,"summary":5196},"\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":5198,"title":5199,"module":5183,"summary":5200},"\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":5202,"title":5203,"module":5183,"summary":5204},"\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":5206,"title":5207,"module":5208,"summary":5209},"\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":5211,"title":5212,"module":5208,"summary":5213},"\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":5215,"title":5216,"module":5208,"summary":5217},"\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":5219,"title":5220,"module":5221,"summary":5222},"\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":5224,"title":5225,"module":5221,"summary":5226},"\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":5228,"title":5229,"module":5221,"summary":5230},"\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":5232,"title":5233,"module":5221,"summary":5234},"\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":5236,"title":5237,"module":5238,"summary":5239},"\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":5241,"title":5242,"module":5238,"summary":5243},"\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":5245,"title":5246,"module":5238,"summary":5247},"\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":5249,"title":5250,"module":5251,"summary":5252},"\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":5254,"title":5255,"module":5251,"summary":5256},"\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":5258,"title":5259,"module":5251,"summary":5260},"\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":5262,"title":5263,"module":5251,"summary":5264},"\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":5266,"title":5267,"module":306,"summary":306},"\u002Fatomic-physics","Atomic Physics",{"path":5269,"title":5270,"module":306,"summary":306},"\u002Fdatabases","Databases",{"path":5272,"title":5273,"module":5,"summary":5274},"\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":5276,"title":5277,"module":5,"summary":5278},"\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":5280,"title":5281,"module":5,"summary":5282},"\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":5284,"title":5285,"module":5,"summary":5286},"\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":5288,"title":5289,"module":5,"summary":5290},"\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":5292,"title":5293,"module":5,"summary":5294},"\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":5296,"title":5297,"module":5298,"summary":5299},"\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":5301,"title":5302,"module":5298,"summary":5303},"\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":5305,"title":5306,"module":5298,"summary":5307},"\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":5309,"title":5310,"module":5311,"summary":5312},"\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":5314,"title":5315,"module":5311,"summary":5316},"\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":5318,"title":5319,"module":5311,"summary":5320},"\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":5322,"title":5323,"module":5324,"summary":5325},"\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":5327,"title":5328,"module":5324,"summary":5329},"\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":5331,"title":5332,"module":5324,"summary":5333},"\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":5335,"title":5336,"module":5324,"summary":5337},"\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":5339,"title":5340,"module":5324,"summary":5341},"\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":5343,"title":5344,"module":5345,"summary":5346},"\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":5348,"title":5349,"module":5345,"summary":5350},"\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":5352,"title":5353,"module":5345,"summary":5354},"\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":5356,"title":5357,"module":5345,"summary":5358},"\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":5360,"title":5361,"module":5362,"summary":5363},"\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":5365,"title":5366,"module":5362,"summary":5367},"\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":5369,"title":5370,"module":5362,"summary":5371},"\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":5373,"title":5374,"module":5362,"summary":5375},"\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":5377,"title":5378,"module":5379,"summary":5380},"\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":5382,"title":5383,"module":5379,"summary":5384},"\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":5386,"title":5387,"module":5379,"summary":5388},"\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":5390,"title":5391,"module":5379,"summary":5392},"\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":5394,"title":5395,"module":5396,"summary":5397},"\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":5399,"title":5400,"module":5396,"summary":5401},"\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":5403,"title":5404,"module":5396,"summary":5405},"\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":5407,"title":5408,"module":306,"summary":306},"\u002Fcategory-theory","Category Theory",{"path":5410,"title":4209,"module":5411,"summary":5412},"\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":5414,"title":5415,"module":5411,"summary":5416},"\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":5418,"title":5419,"module":5411,"summary":5420},"\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":5422,"title":3568,"module":5411,"summary":5423},"\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":5425,"title":5426,"module":5,"summary":5427},"\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":5429,"title":5430,"module":5,"summary":5431},"\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":5433,"title":5434,"module":5,"summary":5435},"\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":5437,"title":5438,"module":5439,"summary":5440},"\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":5442,"title":5443,"module":5439,"summary":5444},"\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":5446,"title":5447,"module":5439,"summary":5448},"\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":5450,"title":5451,"module":5439,"summary":5452},"\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":5454,"title":5455,"module":5439,"summary":5456},"\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":5458,"title":5459,"module":5460,"summary":5461},"\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":5463,"title":5464,"module":5460,"summary":5465},"\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":5467,"title":5468,"module":5460,"summary":5469},"\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":5471,"title":5472,"module":5460,"summary":5473},"\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":5475,"title":5476,"module":5460,"summary":5477},"\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":5479,"title":5480,"module":5481,"summary":5482},"\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":5484,"title":5485,"module":5481,"summary":5486},"\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":5488,"title":5489,"module":5481,"summary":5490},"\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":5492,"title":5493,"module":5481,"summary":5494},"\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":5496,"title":5497,"module":5498,"summary":5499},"\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":5501,"title":5502,"module":5498,"summary":5503},"\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":5505,"title":5506,"module":5498,"summary":5507},"\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":5509,"title":5510,"module":5498,"summary":5511},"\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":5513,"title":5514,"module":5498,"summary":5515},"\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":5517,"title":5518,"module":5498,"summary":5519},"\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":5521,"title":5522,"module":5498,"summary":5523},"\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":5525,"title":5526,"module":5498,"summary":5527},"\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":5529,"title":5530,"module":5498,"summary":5531},"\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":5533,"title":5534,"module":5535,"summary":5536},"\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":5538,"title":5539,"module":5535,"summary":5540},"\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":5542,"title":5543,"module":5535,"summary":5544},"\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":5546,"title":5547,"module":5535,"summary":5548},"\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":5550,"title":5551,"module":5535,"summary":5552},"\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":5554,"title":5555,"module":5556,"summary":5557},"\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":5559,"title":5560,"module":5556,"summary":5561},"\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":5563,"title":5564,"module":5556,"summary":5565},"\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":5567,"title":5568,"module":5556,"summary":5569},"\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":5571,"title":5572,"module":5556,"summary":5573},"\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":5575,"title":5576,"module":5556,"summary":5577},"\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":5579,"title":5580,"module":5556,"summary":5581},"\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":5583,"title":5584,"module":5585,"summary":5586},"\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":5588,"title":5589,"module":5585,"summary":5590},"\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":5592,"title":5593,"module":5585,"summary":5594},"\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":5596,"title":5597,"module":5598,"summary":5599},"\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":5601,"title":5602,"module":5598,"summary":5603},"\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":5605,"title":5606,"module":5598,"summary":5607},"\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":5609,"title":5610,"module":5598,"summary":5611},"\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":5613,"title":5614,"module":5598,"summary":5615},"\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":5617,"title":5618,"module":5598,"summary":5619},"\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":5621,"title":5622,"module":5598,"summary":5623},"\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":5625,"title":5626,"module":5627,"summary":5628},"\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":5630,"title":5631,"module":5627,"summary":5632},"\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":5634,"title":5635,"module":5627,"summary":5636},"\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":5638,"title":5639,"module":5627,"summary":5640},"\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":5642,"title":5643,"module":5627,"summary":5644},"\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":5646,"title":5647,"module":5627,"summary":5648},"\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":5650,"title":5651,"module":5627,"summary":5652},"\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":5654,"title":5655,"module":5627,"summary":5656},"\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":5658,"title":5659,"module":5627,"summary":5660},"\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":5662,"title":5663,"module":5627,"summary":5664},"\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":5666,"title":5667,"module":5627,"summary":5668},"\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":5670,"title":5671,"module":5672,"summary":5673},"\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":5675,"title":5676,"module":5672,"summary":5677},"\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":5679,"title":5680,"module":5672,"summary":5681},"\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":5683,"title":5684,"module":5672,"summary":5685},"\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":5687,"title":5688,"module":5672,"summary":5689},"\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":5691,"title":5692,"module":306,"summary":306},"\u002Fdeep-learning","Deep Learning",{"path":5694,"title":5695,"module":3759,"summary":5696},"\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":5698,"title":5699,"module":3759,"summary":5700},"\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":5702,"title":5703,"module":3759,"summary":5704},"\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":5706,"title":5707,"module":3759,"summary":5708},"\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":5710,"title":5711,"module":3759,"summary":5712},"\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":5714,"title":5715,"module":5716,"summary":5717},"\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":5719,"title":5720,"module":5716,"summary":5721},"\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":5723,"title":5724,"module":5716,"summary":5725},"\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":5727,"title":5728,"module":5716,"summary":5729},"\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":5731,"title":5732,"module":5733,"summary":5734},"\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":5736,"title":5737,"module":5733,"summary":5738},"\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":5740,"title":5741,"module":5733,"summary":5742},"\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":5744,"title":5745,"module":5733,"summary":5746},"\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":5748,"title":5749,"module":5750,"summary":5751},"\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":5753,"title":5754,"module":5750,"summary":5755},"\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":5757,"title":5758,"module":5750,"summary":5759},"\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":5761,"title":5762,"module":5750,"summary":5763},"\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":5765,"title":5766,"module":5750,"summary":5767},"\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":5769,"title":5770,"module":5771,"summary":5772},"\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":5774,"title":5775,"module":5771,"summary":5776},"\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":5778,"title":5779,"module":5771,"summary":5780},"\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":5782,"title":5783,"module":5784,"summary":5785},"\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":5787,"title":5788,"module":5784,"summary":5789},"\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":5791,"title":5792,"module":5784,"summary":5793},"\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":5795,"title":5796,"module":5797,"summary":5798},"\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":5800,"title":5801,"module":5797,"summary":5802},"\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":5804,"title":5805,"module":5797,"summary":5806},"\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":5808,"title":5809,"module":5797,"summary":5810},"\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":5812,"title":5813,"module":5814,"summary":5815},"\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":5817,"title":5818,"module":5814,"summary":5819},"\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":5821,"title":5822,"module":5814,"summary":5823},"\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":5825,"title":5826,"module":5814,"summary":5827},"\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":5829,"title":5830,"module":5814,"summary":5831},"\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":5833,"title":5834,"module":5814,"summary":5835},"\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":5837,"title":5838,"module":5839,"summary":5840},"\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":5842,"title":5843,"module":5839,"summary":5844},"\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":5846,"title":5847,"module":5839,"summary":5848},"\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":5850,"title":5851,"module":5839,"summary":5852},"\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":5854,"title":5855,"module":5856,"summary":5857},"\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":5859,"title":5860,"module":5856,"summary":5861},"\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":5863,"title":5864,"module":5856,"summary":5865},"\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":5867,"title":5868,"module":5869,"summary":5870},"\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":5872,"title":5873,"module":5869,"summary":5874},"\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":5876,"title":5877,"module":5869,"summary":5878},"\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":5880,"title":5881,"module":5869,"summary":5882},"\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":5884,"title":5885,"module":5869,"summary":5886},"\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":5888,"title":5889,"module":5890,"summary":5891},"\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":5893,"title":5894,"module":5890,"summary":5895},"\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":5897,"title":5898,"module":5890,"summary":5899},"\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":5901,"title":5902,"module":306,"summary":306},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":5904,"title":5905,"module":5906,"summary":5907},"\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":5909,"title":5910,"module":5906,"summary":5911},"\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":5913,"title":5914,"module":5906,"summary":5915},"\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":5917,"title":5918,"module":5906,"summary":5919},"\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":5921,"title":5922,"module":5923,"summary":5924},"\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":5926,"title":5927,"module":5923,"summary":5928},"\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":5930,"title":5931,"module":5923,"summary":5932},"\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":5934,"title":5935,"module":5923,"summary":5936},"\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":5938,"title":5939,"module":5940,"summary":5941},"\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":5943,"title":5944,"module":5940,"summary":5945},"\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":5947,"title":5948,"module":5940,"summary":5949},"\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":5951,"title":5952,"module":5940,"summary":5953},"\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":5955,"title":5956,"module":5957,"summary":5958},"\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":5960,"title":5961,"module":5957,"summary":5962},"\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":5964,"title":5965,"module":5957,"summary":5966},"\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":5968,"title":5969,"module":5957,"summary":5970},"\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":5972,"title":5973,"module":5974,"summary":5975},"\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":5977,"title":5978,"module":5974,"summary":5979},"\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":5981,"title":5982,"module":5974,"summary":5983},"\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":5985,"title":5986,"module":5974,"summary":5987},"\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":5989,"title":5990,"module":5991,"summary":5992},"\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":5994,"title":5995,"module":5991,"summary":5996},"\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":5998,"title":5999,"module":5991,"summary":6000},"\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":6002,"title":6003,"module":5991,"summary":6004},"\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":6006,"title":6007,"module":6008,"summary":6009},"\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":6011,"title":6012,"module":6008,"summary":6013},"\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":6015,"title":6016,"module":6008,"summary":6017},"\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":6019,"title":6020,"module":6008,"summary":6021},"\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":6023,"title":6024,"module":6008,"summary":6025},"\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":6027,"title":6028,"module":6029,"summary":6030},"\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":6032,"title":6033,"module":6029,"summary":6034},"\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":6036,"title":6037,"module":6038,"summary":6039},"\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":6041,"title":6042,"module":6038,"summary":6043},"\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":6045,"title":6046,"module":6038,"summary":6047},"\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":6049,"title":6050,"module":6038,"summary":6051},"\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":6053,"title":6054,"module":6055,"summary":6056},"\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":6058,"title":6059,"module":6055,"summary":6060},"\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":6062,"title":6063,"module":6055,"summary":6064},"\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":6066,"title":6067,"module":6055,"summary":6068},"\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":6070,"title":6071,"module":6055,"summary":6072},"\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":6074,"title":6075,"module":6076,"summary":6077},"\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":6079,"title":6080,"module":6076,"summary":6081},"\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":6083,"title":6084,"module":6076,"summary":6085},"\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":6087,"title":6088,"module":6076,"summary":6089},"\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":6091,"title":6092,"module":306,"summary":306},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":6094,"title":6095,"module":5,"summary":6096},"\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":6098,"title":6099,"module":6100,"summary":6101},"\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":6103,"title":6104,"module":6100,"summary":6105},"\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":6107,"title":6108,"module":6100,"summary":6109},"\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":6111,"title":6112,"module":6100,"summary":6113},"\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":6115,"title":6116,"module":6100,"summary":6117},"\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":6119,"title":6120,"module":6100,"summary":6121},"\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":6123,"title":6124,"module":6100,"summary":6125},"\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":6127,"title":6128,"module":6129,"summary":6130},"\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":6132,"title":6133,"module":6129,"summary":6134},"\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":6136,"title":6137,"module":6129,"summary":6138},"\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":6140,"title":6141,"module":6129,"summary":6142},"\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":6144,"title":6145,"module":6146,"summary":6147},"\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":6149,"title":6150,"module":6146,"summary":6151},"\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":6153,"title":6154,"module":6146,"summary":6155},"\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":6157,"title":6158,"module":6146,"summary":6159},"\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":6161,"title":6162,"module":6163,"summary":6164},"\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":6166,"title":6167,"module":6163,"summary":6168},"\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":6170,"title":6171,"module":6163,"summary":6172},"\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":6174,"title":6175,"module":6163,"summary":6176},"\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":6178,"title":6179,"module":6180,"summary":6181},"\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":6183,"title":6184,"module":6180,"summary":6185},"\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":6187,"title":6188,"module":6180,"summary":6189},"\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":6191,"title":6192,"module":6180,"summary":6193},"\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":6195,"title":6196,"module":6197,"summary":6198},"\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":6200,"title":6201,"module":6197,"summary":6202},"\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":6204,"title":6205,"module":6197,"summary":6206},"\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":6208,"title":6209,"module":6210,"summary":6211},"\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":6213,"title":6214,"module":6210,"summary":6215},"\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":6217,"title":6218,"module":6219,"summary":6220},"\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":6222,"title":6223,"module":6219,"summary":6224},"\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":6226,"title":6227,"module":6219,"summary":6228},"\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":6230,"title":6231,"module":306,"summary":306},"\u002Flogic","Logic",{"path":6233,"title":6234,"module":5,"summary":6235},"\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":6237,"title":6238,"module":5,"summary":6239},"\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":6241,"title":6242,"module":5,"summary":6243},"\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":6245,"title":6246,"module":5,"summary":6247},"\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":6249,"title":6250,"module":5,"summary":6251},"\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":6253,"title":6254,"module":5,"summary":6255},"\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":6257,"title":3234,"module":6258,"summary":6259},"\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":6261,"title":6262,"module":6258,"summary":6263},"\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":6265,"title":6266,"module":6258,"summary":6267},"\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":6269,"title":6270,"module":6258,"summary":6271},"\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":6273,"title":6274,"module":6258,"summary":6275},"\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":6277,"title":6278,"module":6258,"summary":6279},"\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":6281,"title":6282,"module":6258,"summary":6283},"\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":6285,"title":6286,"module":6258,"summary":6287},"\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":6289,"title":6290,"module":6258,"summary":6291},"\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":6293,"title":6294,"module":6258,"summary":6295},"\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":6297,"title":6298,"module":6258,"summary":6299},"\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":6301,"title":6302,"module":6258,"summary":6303},"\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":6305,"title":6306,"module":6307,"summary":6308},"\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":6310,"title":6311,"module":6307,"summary":6312},"\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":6314,"title":6315,"module":6307,"summary":6316},"\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":6318,"title":6319,"module":6307,"summary":6320},"\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":6322,"title":6323,"module":6307,"summary":6324},"\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":6326,"title":6327,"module":6307,"summary":6328},"\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":6330,"title":6331,"module":6307,"summary":6332},"\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":6334,"title":6335,"module":6307,"summary":6336},"\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":6338,"title":6339,"module":6307,"summary":6340},"\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":6342,"title":6343,"module":6307,"summary":6344},"\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":6346,"title":6347,"module":6307,"summary":6348},"\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":6350,"title":6351,"module":6307,"summary":6352},"\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":6354,"title":6355,"module":6307,"summary":6356},"\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":6358,"title":6359,"module":6307,"summary":6360},"\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":6362,"title":5680,"module":6363,"summary":6364},"\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":6366,"title":6367,"module":6363,"summary":6368},"\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":6370,"title":6371,"module":6363,"summary":6372},"\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":6374,"title":6375,"module":6363,"summary":6376},"\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":6378,"title":6379,"module":6363,"summary":6380},"\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":6382,"title":6383,"module":6363,"summary":6384},"\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":6386,"title":6387,"module":6363,"summary":6388},"\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":6390,"title":6391,"module":6363,"summary":6392},"\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":6394,"title":6395,"module":6396,"summary":6397},"\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":6399,"title":6400,"module":6396,"summary":6401},"\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":6403,"title":6404,"module":6396,"summary":6405},"\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":6407,"title":6408,"module":6396,"summary":6409},"\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":6411,"title":6412,"module":6396,"summary":6413},"\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":6415,"title":6416,"module":6396,"summary":6417},"\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":6419,"title":6420,"module":6396,"summary":6421},"\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":6423,"title":6424,"module":6396,"summary":6425},"\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":6427,"title":6428,"module":6396,"summary":6429},"\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":6431,"title":6432,"module":6396,"summary":6433},"\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":6435,"title":6436,"module":6396,"summary":6437},"\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":6439,"title":6440,"module":6396,"summary":6441},"\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":6443,"title":6444,"module":6396,"summary":6445},"\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":6447,"title":6448,"module":6396,"summary":6449},"\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":6451,"title":6452,"module":6396,"summary":6453},"\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":6455,"title":6456,"module":6396,"summary":6457},"\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":6459,"title":6460,"module":6396,"summary":6461},"\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":6463,"title":6464,"module":6396,"summary":6465},"\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":6467,"title":6468,"module":6396,"summary":6469},"\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":6471,"title":6472,"module":6396,"summary":6473},"\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":6475,"title":6476,"module":6396,"summary":6477},"\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":6479,"title":6480,"module":6396,"summary":6481},"\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":6483,"title":6484,"module":6485,"summary":6486},"\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":6488,"title":6489,"module":6485,"summary":6490},"\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":6492,"title":6493,"module":6485,"summary":6494},"\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":6496,"title":6497,"module":6485,"summary":6498},"\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":6500,"title":6501,"module":6485,"summary":6502},"\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":6504,"title":6505,"module":6485,"summary":6506},"\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":6508,"title":6509,"module":6485,"summary":6510},"\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":6512,"title":6513,"module":6485,"summary":6514},"\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":6516,"title":5672,"module":306,"summary":306},"\u002Freinforcement-learning",{"path":6518,"title":6519,"module":5,"summary":6520},"\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":6522,"title":6523,"module":5,"summary":6524},"\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":6526,"title":6527,"module":5,"summary":6528},"\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":6530,"title":6531,"module":5,"summary":6532},"\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":6534,"title":6535,"module":6536,"summary":6537},"\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":6539,"title":6540,"module":6536,"summary":6541},"\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":6543,"title":6544,"module":6536,"summary":6545},"\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":6547,"title":6548,"module":6536,"summary":6549},"\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":6551,"title":6552,"module":6536,"summary":6553},"\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":6555,"title":6556,"module":6536,"summary":6557},"\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":6559,"title":6560,"module":6536,"summary":6561},"\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":6563,"title":6564,"module":6536,"summary":6565},"\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":6567,"title":6568,"module":6536,"summary":6569},"\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":6571,"title":6572,"module":6536,"summary":6573},"\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":6575,"title":6576,"module":6536,"summary":6577},"\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":6579,"title":6580,"module":6536,"summary":6581},"\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":6583,"title":6584,"module":6585,"summary":6586},"\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":6588,"title":6589,"module":6585,"summary":6590},"\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":6592,"title":6593,"module":6585,"summary":6594},"\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":6596,"title":6597,"module":6585,"summary":6598},"\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":6600,"title":6601,"module":6585,"summary":6602},"\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":6604,"title":6605,"module":6585,"summary":6606},"\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":6608,"title":6609,"module":6585,"summary":6610},"\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":6612,"title":6613,"module":6585,"summary":6614},"\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":6616,"title":6617,"module":6585,"summary":6618},"\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":6620,"title":6621,"module":6585,"summary":6622},"\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":6624,"title":6625,"module":6585,"summary":6626},"\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":6628,"title":6629,"module":6585,"summary":6630},"\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":6632,"title":6633,"module":6634,"summary":6635},"\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":6637,"title":6638,"module":6634,"summary":6639},"\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":6641,"title":6642,"module":6634,"summary":6643},"\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":6645,"title":6646,"module":6634,"summary":6647},"\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":6649,"title":6650,"module":6634,"summary":6651},"\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":6653,"title":6654,"module":6634,"summary":6655},"\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":6657,"title":6658,"module":6634,"summary":6659},"\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":6661,"title":6250,"module":6634,"summary":6662},"\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":6664,"title":6665,"module":6634,"summary":6666},"\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":6668,"title":6669,"module":6634,"summary":6670},"\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":6672,"title":6673,"module":6674,"summary":6675},"\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":6677,"title":6678,"module":6674,"summary":6679},"\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":6681,"title":6682,"module":6674,"summary":6683},"\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":6685,"title":6686,"module":6674,"summary":6687},"\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":6689,"title":5672,"module":6674,"summary":6690},"\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":6692,"title":6693,"module":6674,"summary":6694},"\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":6696,"title":6697,"module":6674,"summary":6698},"\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":6700,"title":6701,"module":6674,"summary":6702},"\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":6704,"title":6705,"module":6706,"summary":6707},"\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":6709,"title":6710,"module":6706,"summary":6711},"\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":6713,"title":6714,"module":6706,"summary":6715},"\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":6717,"title":6718,"module":6706,"summary":6719},"\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":6721,"title":6722,"module":6706,"summary":6723},"\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":6725,"title":6726,"module":6706,"summary":6727},"\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":6729,"title":6730,"module":6706,"summary":6731},"\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":6733,"title":6734,"module":6706,"summary":6735},"\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":6737,"title":6738,"module":306,"summary":306},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":6740,"title":6741,"module":6742,"summary":6743},"\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":6745,"title":6746,"module":6742,"summary":6747},"\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":6749,"title":6750,"module":6742,"summary":6751},"\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":6753,"title":6754,"module":6742,"summary":6755},"\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":6757,"title":6758,"module":6742,"summary":6759},"\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":6761,"title":6762,"module":6763,"summary":6764},"\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":6766,"title":6767,"module":6763,"summary":6768},"\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":6770,"title":6771,"module":6763,"summary":6772},"\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":6774,"title":6775,"module":6763,"summary":6776},"\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":6778,"title":6779,"module":6780,"summary":6781},"\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":6783,"title":6784,"module":6780,"summary":6785},"\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":6787,"title":6788,"module":6780,"summary":6789},"\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":6791,"title":6792,"module":6780,"summary":6793},"\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":6795,"title":6796,"module":6797,"summary":6798},"\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":6800,"title":6801,"module":6797,"summary":6802},"\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":6804,"title":6805,"module":6806,"summary":6807},"\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":6809,"title":6810,"module":6806,"summary":6811},"\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":6813,"title":6814,"module":6815,"summary":6816},"\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":6818,"title":6819,"module":6815,"summary":6820},"\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":6822,"title":6823,"module":6815,"summary":6824},"\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":6826,"title":6827,"module":6815,"summary":6828},"\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":6830,"title":6831,"module":6832,"summary":6833},"\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":6835,"title":6836,"module":6832,"summary":6837},"\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":6839,"title":6840,"module":6832,"summary":6841},"\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":6843,"title":6844,"module":6845,"summary":6846},"\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":6848,"title":6849,"module":6845,"summary":6850},"\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":6852,"title":6853,"module":6845,"summary":6854},"\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":6856,"title":6857,"module":6858,"summary":6859},"\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":6861,"title":6862,"module":6858,"summary":6863},"\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":6865,"title":6866,"module":6867,"summary":6868},"\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":6870,"title":6871,"module":6867,"summary":6872},"\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":6874,"title":6875,"module":6867,"summary":6876},"\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":6878,"title":6879,"module":6880,"summary":6881},"\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":6883,"title":6884,"module":6880,"summary":6885},"\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":6887,"title":6888,"module":6880,"summary":6889},"\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":6891,"title":6892,"module":6880,"summary":6893},"\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":6895,"title":6896,"module":6880,"summary":6897},"\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":6899,"title":6900,"module":306,"summary":306},"\u002Fnuclear-physics","Nuclear Physics",{"path":6902,"title":6903,"module":5,"summary":6904},"\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":6906,"title":6907,"module":5,"summary":6908},"\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":6910,"title":6911,"module":5,"summary":6912},"\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":6914,"title":6915,"module":5,"summary":6916},"\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":6918,"title":6919,"module":5,"summary":6920},"\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":6922,"title":6923,"module":6924,"summary":6925},"\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":6927,"title":6928,"module":6924,"summary":6929},"\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":6931,"title":6932,"module":6924,"summary":6933},"\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":6935,"title":6936,"module":6924,"summary":6937},"\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":6939,"title":6940,"module":6941,"summary":6942},"\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":6944,"title":6945,"module":6941,"summary":6946},"\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":6948,"title":6949,"module":6941,"summary":6950},"\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":6952,"title":6953,"module":3481,"summary":6954},"\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":6956,"title":6957,"module":3481,"summary":6958},"\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":6960,"title":6961,"module":3481,"summary":6962},"\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":6964,"title":6965,"module":3963,"summary":6966},"\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":6968,"title":5518,"module":3963,"summary":6969},"\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":6971,"title":5626,"module":3963,"summary":6972},"\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":6974,"title":6975,"module":3963,"summary":6976},"\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":6978,"title":6979,"module":3963,"summary":6980},"\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":6982,"title":6983,"module":3963,"summary":6984},"\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":6986,"title":6987,"module":6988,"summary":6989},"\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":6991,"title":6992,"module":6988,"summary":6993},"\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":6995,"title":6996,"module":6988,"summary":6997},"\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":6999,"title":7000,"module":6988,"summary":7001},"\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":7003,"title":7004,"module":6988,"summary":7005},"\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":7007,"title":7008,"module":6988,"summary":7009},"\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":7011,"title":7012,"module":6988,"summary":7013},"\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":7015,"title":7016,"module":6988,"summary":7017},"\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":7019,"title":7020,"module":6988,"summary":7021},"\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":7023,"title":7024,"module":6988,"summary":7025},"\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":7027,"title":7028,"module":6988,"summary":7029},"\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":7031,"title":7032,"module":6988,"summary":7033},"\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":7035,"title":7036,"module":6988,"summary":7037},"\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":7039,"title":7040,"module":6988,"summary":7041},"\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":7043,"title":7044,"module":6988,"summary":7045},"\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":7047,"title":7048,"module":6988,"summary":7049},"\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":7051,"title":7052,"module":6988,"summary":7053},"\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":7055,"title":7056,"module":6988,"summary":7057},"\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":7059,"title":7060,"module":6988,"summary":7061},"\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":7063,"title":7064,"module":6988,"summary":7065},"\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":7067,"title":7068,"module":5614,"summary":7069},"\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":7071,"title":7072,"module":5614,"summary":7073},"\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":7075,"title":7076,"module":5614,"summary":7077},"\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":7079,"title":7080,"module":5614,"summary":7081},"\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":7083,"title":7084,"module":5614,"summary":7085},"\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":7087,"title":7088,"module":5614,"summary":7089},"\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":7091,"title":7092,"module":5614,"summary":7093},"\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":7095,"title":7096,"module":5614,"summary":7097},"\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":7099,"title":7100,"module":7101,"summary":7102},"\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":7104,"title":7105,"module":7101,"summary":7106},"\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":7108,"title":7109,"module":7101,"summary":7110},"\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":7112,"title":7113,"module":7101,"summary":7114},"\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":7116,"title":7117,"module":306,"summary":306},"\u002Fnatural-language-processing","Natural Language Processing",{"path":7119,"title":7120,"module":5,"summary":7121},"\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":7123,"title":7124,"module":5,"summary":7125},"\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":7127,"title":7128,"module":5,"summary":7129},"\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":7131,"title":7132,"module":7133,"summary":7134},"\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":7136,"title":7137,"module":7133,"summary":7138},"\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":7140,"title":7141,"module":7133,"summary":7142},"\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":7144,"title":7145,"module":7133,"summary":7146},"\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":7148,"title":7149,"module":7150,"summary":7151},"\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":7153,"title":7154,"module":7150,"summary":7155},"\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":7157,"title":7158,"module":7150,"summary":7159},"\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":7161,"title":7162,"module":7150,"summary":7163},"\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":7165,"title":7166,"module":7167,"summary":7168},"\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":7170,"title":7171,"module":7167,"summary":7172},"\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":7174,"title":7175,"module":7167,"summary":7176},"\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":7178,"title":7179,"module":7167,"summary":7180},"\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":7182,"title":7183,"module":7184,"summary":7185},"\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":7187,"title":7188,"module":7184,"summary":7189},"\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":7191,"title":7192,"module":7184,"summary":7193},"\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":7195,"title":7196,"module":7197,"summary":7198},"\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":7200,"title":7201,"module":7197,"summary":7202},"\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":7204,"title":7205,"module":7197,"summary":7206},"\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":7208,"title":7209,"module":7197,"summary":7210},"\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":7212,"title":7213,"module":7214,"summary":7215},"\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":7217,"title":7218,"module":7214,"summary":7219},"\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":7221,"title":7222,"module":7214,"summary":7223},"\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":7225,"title":7226,"module":7214,"summary":7227},"\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":7229,"title":7230,"module":7231,"summary":7232},"\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":7234,"title":7235,"module":7231,"summary":7236},"\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":7238,"title":7239,"module":7231,"summary":7240},"\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":7242,"title":7243,"module":7231,"summary":7244},"\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":7246,"title":7247,"module":7248,"summary":7249},"\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":7251,"title":7252,"module":7248,"summary":7253},"\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":7255,"title":7256,"module":7248,"summary":7257},"\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":7259,"title":7260,"module":7248,"summary":7261},"\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":7263,"title":7264,"module":7248,"summary":7265},"\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":7267,"title":7268,"module":7269,"summary":7270},"\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":7272,"title":7273,"module":7269,"summary":7274},"\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":7276,"title":7277,"module":7269,"summary":7278},"\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":7280,"title":7281,"module":7282,"summary":7283},"\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":7285,"title":7286,"module":7282,"summary":7287},"\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":7289,"title":7290,"module":7282,"summary":7291},"\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":7293,"title":7294,"module":7294,"summary":7295},"\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":7297,"title":7298,"module":7294,"summary":7299},"\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":7301,"title":7302,"module":7294,"summary":7303},"\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":7305,"title":7306,"module":7294,"summary":7307},"\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":7309,"title":7310,"module":7294,"summary":7311},"\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":7313,"title":7314,"module":7294,"summary":7315},"\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":7317,"title":7318,"module":306,"summary":306},"\u002Fparticle-physics","Particle Physics",{"path":7320,"title":7321,"module":7322,"summary":7323},"\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":7325,"title":7326,"module":7322,"summary":7327},"\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":7329,"title":7330,"module":7322,"summary":7331},"\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":7333,"title":7334,"module":7335,"summary":7336},"\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":7338,"title":7339,"module":7335,"summary":7340},"\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":7342,"title":7343,"module":7335,"summary":7344},"\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":7346,"title":7347,"module":7335,"summary":7348},"\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":7350,"title":7351,"module":7352,"summary":7353},"\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":7355,"title":7356,"module":7352,"summary":7357},"\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":7359,"title":7360,"module":7352,"summary":7361},"\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":7363,"title":7364,"module":7352,"summary":7365},"\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":7367,"title":7368,"module":7369,"summary":7370},"\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":7372,"title":7373,"module":7369,"summary":7374},"\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":7376,"title":7377,"module":7369,"summary":7378},"\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":7380,"title":7381,"module":7369,"summary":7382},"\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":7384,"title":7385,"module":7386,"summary":7387},"\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":7389,"title":7390,"module":7386,"summary":7391},"\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":7393,"title":7394,"module":7386,"summary":7395},"\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":7397,"title":7398,"module":7386,"summary":7399},"\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":7401,"title":7402,"module":7403,"summary":7404},"\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":7406,"title":7407,"module":7403,"summary":7408},"\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":7410,"title":7411,"module":7403,"summary":7412},"\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":7414,"title":7415,"module":7416,"summary":7417},"\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":7419,"title":7420,"module":7416,"summary":7421},"\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":7423,"title":7424,"module":7416,"summary":7425},"\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":7427,"title":7428,"module":7416,"summary":7429},"\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":7431,"title":5847,"module":7432,"summary":7433},"\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":7435,"title":7436,"module":7432,"summary":7437},"\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":7439,"title":7440,"module":7432,"summary":7441},"\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":7443,"title":7444,"module":7432,"summary":7445},"\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":7447,"title":7448,"module":7432,"summary":7449},"\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":7451,"title":7452,"module":7453,"summary":7454},"\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":7456,"title":7457,"module":7453,"summary":7458},"\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":7460,"title":7461,"module":7453,"summary":7462},"\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":7464,"title":7465,"module":7453,"summary":7466},"\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":7468,"title":7469,"module":7470,"summary":7471},"\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":7473,"title":7474,"module":7470,"summary":7475},"\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":7477,"title":7478,"module":7470,"summary":7479},"\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":7481,"title":7482,"module":7470,"summary":7483},"\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":7485,"title":7486,"module":7470,"summary":7487},"\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":7489,"title":7490,"module":7491,"summary":7492},"\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":7494,"title":7495,"module":7491,"summary":7496},"\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":7498,"title":4565,"module":7491,"summary":7499},"\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":7501,"title":7502,"module":7491,"summary":7503},"\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":7505,"title":7506,"module":7491,"summary":7507},"\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":7509,"title":7510,"module":7511,"summary":7512},"\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":7514,"title":7515,"module":7511,"summary":7516},"\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":7518,"title":7519,"module":7511,"summary":7520},"\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":7522,"title":7523,"module":7511,"summary":7524},"\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":7526,"title":7527,"module":7511,"summary":7528},"\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":7530,"title":7531,"module":7511,"summary":7532},"\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":7534,"title":7535,"module":7511,"summary":7536},"\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":7538,"title":7539,"module":306,"summary":306},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":7541,"title":7542,"module":306,"summary":306},"\u002Fcolophon","Colophon",{"path":7544,"title":7545,"module":306,"summary":306},"\u002F","Study Notes","\u003Csvg style=\"width:100%;max-width:491.053px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 368.290 225.486\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-30.731-49.308h182.097V-72.07H-30.73Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-60.045 1.889)\">\u003Cpath d=\"M60.861-63.431Q60.861-64.138 61.138-64.681Q61.416-65.224 61.900-65.584Q62.384-65.943 62.998-66.117Q63.611-66.291 64.295-66.291Q64.740-66.291 65.170-66.150Q65.599-66.009 65.943-65.744L66.541-66.263Q66.576-66.291 66.615-66.291L66.716-66.291Q66.845-66.259 66.845-66.162L66.845-64.193Q66.845-64.146 66.804-64.101Q66.763-64.056 66.716-64.056L66.416-64.056Q66.306-64.072 66.295-64.162Q66.248-64.505 66.097-64.810Q65.947-65.115 65.703-65.351Q65.459-65.587 65.146-65.714Q64.834-65.841 64.478-65.841Q63.865-65.841 63.429-65.683Q62.994-65.525 62.716-65.220Q62.439-64.916 62.306-64.472Q62.173-64.029 62.173-63.431Q62.173-62.841 62.312-62.390Q62.451-61.939 62.730-61.638Q63.009-61.337 63.453-61.181Q63.896-61.025 64.494-61.025Q64.951-61.025 65.384-61.212Q65.818-61.400 66.091-61.757Q66.365-62.115 66.365-62.584Q66.365-62.630 66.406-62.671Q66.447-62.712 66.494-62.712L66.716-62.712Q66.845-62.689 66.845-62.568Q66.845-62.091 66.621-61.716Q66.396-61.341 66.019-61.089Q65.642-60.837 65.189-60.707Q64.736-60.576 64.295-60.576Q63.630-60.576 63.005-60.753Q62.380-60.931 61.898-61.287Q61.416-61.642 61.138-62.185Q60.861-62.728 60.861-63.431\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-60.045 1.889)\">\u003Cpath d=\"M71.228-60.634L71.119-60.634Q70.990-60.666 70.990-60.767L70.990-61.810Q70.990-61.853 71.027-61.894Q71.064-61.935 71.119-61.935L71.342-61.935Q71.443-61.908 71.471-61.834Q71.588-61.419 71.873-61.210Q72.158-61.002 72.592-61.002Q72.978-61.002 73.260-61.111Q73.541-61.220 73.541-61.552Q73.541-61.787 73.338-61.910Q73.135-62.033 72.846-62.087L72.221-62.185Q72.002-62.228 71.785-62.310Q71.568-62.392 71.385-62.521Q71.201-62.650 71.096-62.828Q70.990-63.005 70.990-63.240Q70.990-63.662 71.225-63.904Q71.459-64.146 71.814-64.238Q72.170-64.330 72.592-64.330Q73.100-64.330 73.404-64.193L73.678-64.322Q73.685-64.326 73.695-64.328Q73.705-64.330 73.717-64.330L73.822-64.330Q73.951-64.298 73.951-64.201L73.951-63.392Q73.951-63.341 73.908-63.298Q73.865-63.255 73.822-63.255L73.600-63.255Q73.471-63.294 73.471-63.392Q73.471-63.623 73.342-63.759Q73.213-63.896 73.016-63.949Q72.818-64.001 72.584-64.001Q71.639-64.001 71.639-63.544Q71.639-63.228 72.287-63.115L72.920-63.009Q73.435-62.916 73.812-62.619Q74.189-62.322 74.189-61.834Q74.189-61.177 73.738-60.906Q73.287-60.634 72.592-60.634Q72.033-60.634 71.646-60.865L71.287-60.650Q71.256-60.634 71.228-60.634M74.799-62.423Q74.799-62.888 74.969-63.248Q75.139-63.607 75.441-63.849Q75.744-64.091 76.137-64.210Q76.529-64.330 76.975-64.330Q77.420-64.330 77.810-64.212Q78.201-64.095 78.508-63.851Q78.814-63.607 78.982-63.248Q79.150-62.888 79.150-62.423Q79.150-61.974 78.973-61.636Q78.795-61.298 78.482-61.074Q78.170-60.849 77.785-60.742Q77.400-60.634 76.975-60.634Q76.553-60.634 76.164-60.742Q75.775-60.849 75.465-61.074Q75.154-61.298 74.976-61.638Q74.799-61.978 74.799-62.423M76.975-61.041Q77.455-61.041 77.687-61.232Q77.920-61.423 77.978-61.726Q78.037-62.029 78.037-62.537Q78.037-63.267 77.844-63.615Q77.650-63.962 76.975-63.962Q76.619-63.962 76.402-63.859Q76.185-63.755 76.080-63.568Q75.975-63.380 75.941-63.140Q75.908-62.900 75.908-62.537Q75.908-62.029 75.969-61.724Q76.029-61.419 76.264-61.230Q76.498-61.041 76.975-61.041M80.381-61.611L80.381-63.560Q80.381-63.712 80.234-63.750Q80.088-63.787 79.853-63.787L79.853-64.232L81.389-64.298L81.389-61.627L81.389-61.611Q81.389-61.377 81.422-61.259Q81.455-61.142 81.529-61.087Q81.603-61.033 81.723-61.017Q81.842-61.002 82.100-61.002Q82.357-61.002 82.588-61.123Q82.818-61.244 82.959-61.459Q83.100-61.673 83.100-61.935L83.100-63.560Q83.100-63.712 82.953-63.750Q82.807-63.787 82.572-63.787L82.572-64.232L84.107-64.298L84.107-61.361Q84.107-61.212 84.254-61.175Q84.400-61.138 84.635-61.138L84.635-60.689L83.146-60.634L83.146-61.169Q82.955-60.919 82.650-60.777Q82.346-60.634 82.014-60.634Q81.572-60.634 81.223-60.697Q80.873-60.759 80.627-60.976Q80.381-61.193 80.381-61.611M87.357-60.689L85.213-60.689L85.213-61.138L85.740-61.138L85.740-63.560Q85.740-63.712 85.594-63.750Q85.447-63.787 85.213-63.787L85.213-64.232L86.596-64.298L86.596-63.490Q86.752-63.845 87.031-64.072Q87.310-64.298 87.678-64.298Q88.041-64.298 88.336-64.111Q88.631-63.923 88.631-63.584Q88.631-63.439 88.558-63.312Q88.486-63.185 88.359-63.113Q88.232-63.041 88.084-63.041Q87.939-63.041 87.812-63.113Q87.685-63.185 87.613-63.312Q87.541-63.439 87.541-63.584Q87.541-63.798 87.654-63.927Q87.322-63.927 87.105-63.681Q86.889-63.435 86.795-63.076Q86.701-62.716 86.701-62.400L86.701-61.138L87.357-61.138L87.357-60.689M89.236-62.466Q89.236-62.912 89.402-63.261Q89.568-63.611 89.865-63.851Q90.162-64.091 90.541-64.210Q90.920-64.330 91.357-64.330Q91.951-64.330 92.410-64.164Q92.869-63.998 92.869-63.513Q92.869-63.279 92.711-63.121Q92.553-62.962 92.314-62.962Q92.080-62.962 91.918-63.125Q91.756-63.287 91.756-63.513Q91.756-63.748 91.892-63.888Q91.670-63.919 91.357-63.919Q90.947-63.919 90.726-63.716Q90.506-63.513 90.428-63.195Q90.350-62.877 90.350-62.474Q90.350-61.818 90.629-61.429Q90.908-61.041 91.549-61.041Q92.271-61.041 92.517-61.673Q92.549-61.752 92.627-61.752L92.853-61.752Q92.978-61.724 92.978-61.619L92.978-61.576Q92.850-61.240 92.609-61.031Q92.369-60.822 92.047-60.728Q91.725-60.634 91.357-60.634Q90.779-60.634 90.297-60.843Q89.814-61.052 89.525-61.466Q89.236-61.880 89.236-62.466M93.533-62.490Q93.533-63.068 93.816-63.488Q94.100-63.908 94.584-64.119Q95.068-64.330 95.635-64.330Q96.076-64.330 96.412-64.218Q96.748-64.107 96.982-63.886Q97.217-63.666 97.342-63.335Q97.467-63.005 97.467-62.568Q97.467-62.412 97.314-62.384L94.642-62.384Q94.642-61.041 95.900-61.041Q96.252-61.041 96.558-61.197Q96.865-61.353 96.986-61.650Q97.060-61.779 97.146-61.779L97.314-61.779Q97.467-61.744 97.467-61.611Q97.467-61.576 97.459-61.560Q97.275-61.084 96.810-60.859Q96.346-60.634 95.771-60.634Q95.174-60.634 94.664-60.837Q94.154-61.041 93.844-61.462Q93.533-61.884 93.533-62.490M94.642-62.728L96.650-62.728Q96.650-63.267 96.402-63.615Q96.154-63.962 95.635-63.962Q95.291-63.962 95.066-63.796Q94.842-63.630 94.742-63.353Q94.642-63.076 94.642-62.728\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-60.045 1.889)\">\u003Cpath d=\"M98.486-61.154Q98.486-61.337 98.622-61.474Q98.759-61.611 98.951-61.611Q99.142-61.611 99.275-61.478Q99.408-61.345 99.408-61.154Q99.408-60.955 99.275-60.822Q99.142-60.689 98.951-60.689Q98.759-60.689 98.622-60.826Q98.486-60.962 98.486-61.154M98.486-63.681Q98.486-63.865 98.622-64.001Q98.759-64.138 98.951-64.138Q99.142-64.138 99.275-64.005Q99.408-63.873 99.408-63.681Q99.408-63.482 99.275-63.349Q99.142-63.216 98.951-63.216Q98.759-63.216 98.622-63.353Q98.486-63.490 98.486-63.681\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-60.045 1.889)\">\u003Cpath d=\"M104.355-60.927L104.355-61.017Q104.406-61.224 104.601-61.248L105.707-61.248L105.707-65.017L104.601-65.017Q104.406-65.041 104.355-65.255L104.355-65.345Q104.406-65.552 104.601-65.576L106.097-65.576Q106.289-65.552 106.347-65.345L106.347-61.248L107.449-61.248Q107.648-61.224 107.699-61.017L107.699-60.927Q107.648-60.712 107.449-60.689L104.601-60.689Q104.406-60.712 104.355-60.927M110.273-60.650Q109.801-60.650 109.416-60.894Q109.031-61.138 108.808-61.548Q108.586-61.959 108.586-62.416Q108.586-62.759 108.711-63.082Q108.836-63.404 109.066-63.658Q109.297-63.912 109.603-64.056Q109.910-64.201 110.273-64.201Q110.636-64.201 110.949-64.054Q111.261-63.908 111.484-63.662Q111.707-63.416 111.834-63.095Q111.961-62.775 111.961-62.416Q111.961-61.959 111.736-61.546Q111.511-61.134 111.127-60.892Q110.742-60.650 110.273-60.650M110.273-61.209Q110.738-61.209 111.029-61.603Q111.320-61.998 111.320-62.482Q111.320-62.775 111.185-63.043Q111.051-63.310 110.810-63.476Q110.570-63.642 110.273-63.642Q109.969-63.642 109.730-63.476Q109.492-63.310 109.357-63.043Q109.222-62.775 109.222-62.482Q109.222-62.002 109.515-61.605Q109.808-61.209 110.273-61.209M112.469-60.927L112.469-61.017Q112.511-61.224 112.719-61.248L113.140-61.248L113.140-63.576L112.719-63.576Q112.511-63.599 112.469-63.818L112.469-63.904Q112.515-64.115 112.719-64.138L113.535-64.138Q113.730-64.115 113.781-63.904L113.781-63.818L113.773-63.794Q114-63.974 114.273-64.076Q114.547-64.177 114.840-64.177Q115.187-64.177 115.426-64.037Q115.664-63.896 115.779-63.638Q115.894-63.380 115.894-63.025L115.894-61.248L116.320-61.248Q116.527-61.224 116.566-61.017L116.566-60.927Q116.527-60.712 116.320-60.689L114.926-60.689Q114.730-60.712 114.679-60.927L114.679-61.017Q114.730-61.228 114.926-61.248L115.254-61.248L115.254-62.994Q115.254-63.302 115.164-63.460Q115.074-63.619 114.781-63.619Q114.511-63.619 114.283-63.488Q114.054-63.357 113.918-63.128Q113.781-62.900 113.781-62.634L113.781-61.248L114.207-61.248Q114.414-61.224 114.453-61.017L114.453-60.927Q114.414-60.712 114.207-60.689L112.719-60.689Q112.511-60.712 112.469-60.927M116.883-60.041Q116.883-60.341 117.031-60.603Q117.179-60.865 117.429-61.025Q117.246-61.279 117.246-61.599Q117.246-61.884 117.398-62.146Q117.148-62.470 117.148-62.888Q117.148-63.248 117.340-63.544Q117.531-63.841 117.849-64.009Q118.168-64.177 118.531-64.177Q118.738-64.177 118.941-64.117Q119.144-64.056 119.308-63.955Q119.691-64.216 120.164-64.216Q120.402-64.216 120.584-64.085Q120.765-63.955 120.765-63.728Q120.765-63.580 120.664-63.474Q120.562-63.369 120.406-63.369Q120.273-63.369 120.177-63.447Q120.082-63.525 120.051-63.650Q119.906-63.642 119.707-63.552Q119.910-63.240 119.910-62.888Q119.910-62.607 119.799-62.375Q119.687-62.142 119.492-61.964Q119.297-61.787 119.045-61.689Q118.793-61.591 118.531-61.591Q118.144-61.591 117.812-61.779Q117.801-61.779 117.791-61.707Q117.781-61.634 117.781-61.599Q117.781-61.478 117.847-61.371Q117.914-61.263 118.035-61.224Q118.051-61.228 118.064-61.230Q118.078-61.232 118.101-61.232Q118.117-61.232 118.148-61.224Q118.179-61.216 118.187-61.216L118.781-61.216Q119.562-61.216 120.103-60.974Q120.644-60.732 120.644-60.041Q120.644-59.740 120.465-59.513Q120.285-59.287 119.988-59.142Q119.691-58.998 119.371-58.931Q119.051-58.865 118.765-58.865Q118.375-58.865 117.933-58.988Q117.492-59.111 117.187-59.378Q116.883-59.646 116.883-60.041M117.422-60.048Q117.422-59.830 117.662-59.689Q117.902-59.548 118.226-59.482Q118.551-59.416 118.765-59.416Q118.980-59.416 119.304-59.482Q119.629-59.548 119.869-59.689Q120.109-59.830 120.109-60.048Q120.109-60.337 119.885-60.476Q119.660-60.615 119.379-60.648Q119.097-60.681 118.750-60.681L118.133-60.681Q117.949-60.681 117.787-60.601Q117.625-60.521 117.523-60.375Q117.422-60.228 117.422-60.048M118.531-62.146Q118.832-62.146 119.051-62.365Q119.269-62.584 119.269-62.888Q119.269-63.044 119.215-63.175Q119.160-63.306 119.054-63.412Q118.949-63.517 118.818-63.572Q118.687-63.627 118.531-63.627Q118.226-63.627 118.008-63.408Q117.789-63.189 117.789-62.888Q117.789-62.591 118.011-62.369Q118.234-62.146 118.531-62.146\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-60.045 1.889)\">\u003Cpath d=\"M125.742-60.888L125.742-61.802Q125.769-62.009 125.980-62.033L126.148-62.033Q126.312-62.009 126.371-61.849Q126.574-61.209 127.301-61.209Q127.508-61.209 127.736-61.244Q127.965-61.279 128.133-61.394Q128.301-61.509 128.301-61.712Q128.301-61.923 128.078-62.037Q127.855-62.150 127.582-62.193L126.883-62.306Q125.742-62.517 125.742-63.240Q125.742-63.529 125.886-63.718Q126.031-63.908 126.271-64.015Q126.511-64.123 126.767-64.162Q127.023-64.201 127.301-64.201Q127.551-64.201 127.744-64.171Q127.937-64.142 128.101-64.064Q128.179-64.181 128.308-64.201L128.386-64.201Q128.484-64.189 128.547-64.126Q128.609-64.064 128.621-63.970L128.621-63.263Q128.609-63.169 128.547-63.103Q128.484-63.037 128.386-63.025L128.219-63.025Q128.125-63.037 128.058-63.103Q127.992-63.169 127.980-63.263Q127.980-63.642 127.285-63.642Q126.937-63.642 126.619-63.560Q126.301-63.478 126.301-63.232Q126.301-62.966 126.972-62.857L127.676-62.736Q128.160-62.654 128.510-62.406Q128.859-62.158 128.859-61.712Q128.859-61.322 128.623-61.080Q128.386-60.837 128.037-60.744Q127.687-60.650 127.301-60.650Q126.722-60.650 126.324-60.904Q126.254-60.779 126.205-60.722Q126.156-60.666 126.051-60.650L125.980-60.650Q125.765-60.673 125.742-60.888\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-60.045 1.889)\">\u003Cpath d=\"M137.304-62.224L134.258-62.224Q134.136-62.236 134.049-62.320Q133.961-62.404 133.961-62.529Q133.961-62.654 134.045-62.738Q134.129-62.822 134.258-62.841L137.304-62.841Q137.429-62.822 137.511-62.738Q137.594-62.654 137.594-62.529Q137.594-62.404 137.510-62.320Q137.426-62.236 137.304-62.224M137.304-63.431L134.258-63.431Q134.125-63.451 134.043-63.529Q133.961-63.607 133.961-63.736Q133.961-63.861 134.045-63.945Q134.129-64.029 134.258-64.048L137.304-64.048Q137.429-64.029 137.511-63.945Q137.594-63.861 137.594-63.736Q137.594-63.607 137.513-63.529Q137.433-63.451 137.304-63.431\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-60.045 1.889)\">\u003Cpath d=\"M142.562-61.802Q142.562-62.248 142.976-62.505Q143.390-62.763 143.931-62.863Q144.472-62.962 144.980-62.970Q144.980-63.185 144.845-63.337Q144.711-63.490 144.504-63.566Q144.297-63.642 144.086-63.642Q143.742-63.642 143.582-63.619L143.582-63.560Q143.582-63.392 143.463-63.277Q143.344-63.162 143.179-63.162Q143.004-63.162 142.888-63.285Q142.773-63.408 142.773-63.576Q142.773-63.982 143.154-64.091Q143.535-64.201 144.094-64.201Q144.363-64.201 144.631-64.123Q144.898-64.044 145.123-63.894Q145.347-63.744 145.484-63.523Q145.621-63.302 145.621-63.025L145.621-61.306Q145.621-61.248 146.148-61.248Q146.344-61.228 146.394-61.017L146.394-60.927Q146.344-60.712 146.148-60.689L146.004-60.689Q145.660-60.689 145.431-60.736Q145.203-60.783 145.058-60.970Q144.597-60.650 143.890-60.650Q143.554-60.650 143.250-60.791Q142.945-60.931 142.754-61.193Q142.562-61.455 142.562-61.802M143.203-61.794Q143.203-61.521 143.445-61.365Q143.687-61.209 143.972-61.209Q144.191-61.209 144.424-61.267Q144.656-61.326 144.818-61.464Q144.980-61.603 144.980-61.826L144.980-62.416Q144.699-62.416 144.283-62.359Q143.867-62.302 143.535-62.164Q143.203-62.025 143.203-61.794M148.136-60.255L148.136-66.009Q148.195-66.216 148.386-66.240L150.066-66.240Q150.261-66.220 150.312-66.009L150.312-65.919Q150.261-65.705 150.066-65.681L148.777-65.681L148.777-60.584L150.066-60.584Q150.261-60.564 150.312-60.345L150.312-60.255Q150.261-60.048 150.066-60.025L148.386-60.025Q148.195-60.044 148.136-60.255M151.265-60.927L151.265-61.017Q151.316-61.224 151.511-61.248L152.551-61.248L152.551-63.576L151.578-63.576Q151.379-63.599 151.328-63.818L151.328-63.904Q151.379-64.115 151.578-64.138L152.945-64.138Q153.140-64.119 153.191-63.904L153.191-61.248L154.105-61.248Q154.301-61.224 154.351-61.017L154.351-60.927Q154.301-60.712 154.105-60.689L151.511-60.689Q151.316-60.712 151.265-60.927M152.297-65.115L152.297-65.169Q152.297-65.341 152.433-65.462Q152.570-65.584 152.746-65.584Q152.918-65.584 153.054-65.462Q153.191-65.341 153.191-65.169L153.191-65.115Q153.191-64.939 153.054-64.818Q152.918-64.697 152.746-64.697Q152.570-64.697 152.433-64.818Q152.297-64.939 152.297-65.115M155.222-60.255L155.222-60.345Q155.273-60.560 155.469-60.584L156.758-60.584L156.758-65.681L155.469-65.681Q155.273-65.705 155.222-65.919L155.222-66.009Q155.273-66.216 155.469-66.240L157.152-66.240Q157.347-66.216 157.398-66.009L157.398-60.255Q157.347-60.048 157.152-60.025L155.469-60.025Q155.273-60.048 155.222-60.255\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-60.045 1.889)\">\u003Cpath d=\"M165.223-61.611L165.223-62.826L164.009-62.826Q163.884-62.837 163.798-62.923Q163.712-63.009 163.712-63.138Q163.712-63.267 163.798-63.349Q163.884-63.431 164.009-63.443L165.223-63.443L165.223-64.666Q165.235-64.791 165.321-64.873Q165.407-64.955 165.536-64.955Q165.665-64.955 165.747-64.873Q165.829-64.791 165.841-64.666L165.841-63.443L167.055-63.443Q167.180-63.431 167.262-63.349Q167.345-63.267 167.345-63.138Q167.345-63.009 167.262-62.923Q167.180-62.837 167.055-62.826L165.841-62.826L165.841-61.611Q165.829-61.486 165.747-61.400Q165.665-61.314 165.536-61.314Q165.407-61.314 165.321-61.400Q165.235-61.486 165.223-61.611\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-60.045 1.889)\">\u003Cpath d=\"M172.762-60.927L172.762-61.017Q172.813-61.224 173.012-61.248L173.829-61.248L173.829-64.431Q173.450-64.123 172.997-64.123Q172.766-64.123 172.716-64.353L172.716-64.443Q172.766-64.658 172.962-64.681Q173.290-64.681 173.544-64.919Q173.798-65.158 173.938-65.505Q174.009-65.634 174.165-65.658L174.220-65.658Q174.415-65.638 174.466-65.423L174.466-61.248L175.282-61.248Q175.481-61.224 175.532-61.017L175.532-60.927Q175.481-60.712 175.282-60.689L173.012-60.689Q172.813-60.712 172.762-60.927M177.872-59.576Q177.759-59.576 177.669-59.666Q177.579-59.755 177.579-59.865Q177.579-60.009 177.720-60.095Q178.145-60.263 178.274-60.689Q178.048-60.689 177.884-60.857Q177.720-61.025 177.720-61.248Q177.720-61.482 177.884-61.642Q178.048-61.802 178.282-61.802Q178.587-61.802 178.729-61.548Q178.872-61.294 178.872-60.962Q178.872-60.525 178.628-60.156Q178.384-59.787 177.977-59.599Q177.930-59.576 177.872-59.576M177.720-63.584Q177.720-63.806 177.886-63.972Q178.052-64.138 178.282-64.138Q178.430-64.138 178.557-64.060Q178.684-63.982 178.759-63.857Q178.833-63.732 178.833-63.584Q178.833-63.357 178.667-63.191Q178.501-63.025 178.282-63.025Q178.055-63.025 177.887-63.193Q177.720-63.361 177.720-63.584\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 2.444)\">\u003Cpath d=\"M60.638-60.927L60.638-61.017Q60.689-61.224 60.884-61.248L61.767-61.248L61.767-63.576L60.912-63.576Q60.713-63.599 60.662-63.818L60.662-63.904Q60.713-64.115 60.912-64.138L61.767-64.138L61.767-64.591Q61.767-65.056 62.173-65.337Q62.580-65.619 63.060-65.619Q63.373-65.619 63.617-65.498Q63.861-65.376 63.861-65.095Q63.861-64.931 63.752-64.814Q63.642-64.697 63.478-64.697Q63.330-64.697 63.209-64.802Q63.088-64.908 63.088-65.056L63.005-65.056Q62.853-65.056 62.716-64.996Q62.580-64.935 62.494-64.820Q62.408-64.705 62.408-64.560L62.408-64.138L63.439-64.138Q63.634-64.119 63.685-63.904L63.685-63.818Q63.634-63.599 63.439-63.576L62.408-63.576L62.408-61.248L63.287-61.248Q63.482-61.224 63.533-61.017L63.533-60.927Q63.482-60.712 63.287-60.689L60.884-60.689Q60.689-60.712 60.638-60.927M66.685-60.650Q66.213-60.650 65.828-60.894Q65.443-61.138 65.220-61.548Q64.998-61.959 64.998-62.416Q64.998-62.759 65.123-63.082Q65.248-63.404 65.478-63.658Q65.709-63.912 66.015-64.056Q66.322-64.201 66.685-64.201Q67.048-64.201 67.361-64.054Q67.673-63.908 67.896-63.662Q68.119-63.416 68.246-63.095Q68.373-62.775 68.373-62.416Q68.373-61.959 68.148-61.546Q67.923-61.134 67.539-60.892Q67.154-60.650 66.685-60.650M66.685-61.209Q67.150-61.209 67.441-61.603Q67.732-61.998 67.732-62.482Q67.732-62.775 67.597-63.043Q67.463-63.310 67.222-63.476Q66.982-63.642 66.685-63.642Q66.380-63.642 66.142-63.476Q65.904-63.310 65.769-63.043Q65.634-62.775 65.634-62.482Q65.634-62.002 65.927-61.605Q66.220-61.209 66.685-61.209M69.552-61.544L69.552-63.576L69.130-63.576Q68.923-63.599 68.880-63.818L68.880-63.904Q68.927-64.115 69.130-64.138L69.947-64.138Q70.142-64.115 70.193-63.904L70.193-61.576Q70.193-61.341 70.363-61.275Q70.533-61.209 70.818-61.209Q71.025-61.209 71.220-61.285Q71.416-61.361 71.541-61.511Q71.666-61.662 71.666-61.873L71.666-63.576L71.244-63.576Q71.033-63.599 70.994-63.818L70.994-63.904Q71.033-64.115 71.244-64.138L72.056-64.138Q72.255-64.115 72.306-63.904L72.306-61.248L72.732-61.248Q72.939-61.224 72.978-61.017L72.978-60.927Q72.939-60.712 72.732-60.689L71.916-60.689Q71.716-60.712 71.666-60.912Q71.263-60.650 70.755-60.650Q70.521-60.650 70.306-60.691Q70.091-60.732 69.925-60.834Q69.759-60.935 69.656-61.113Q69.552-61.291 69.552-61.544M73.127-60.927L73.127-61.017Q73.170-61.224 73.377-61.248L73.798-61.248L73.798-63.576L73.377-63.576Q73.170-63.599 73.127-63.818L73.127-63.904Q73.173-64.115 73.377-64.138L74.193-64.138Q74.388-64.115 74.439-63.904L74.439-63.818L74.431-63.794Q74.658-63.974 74.931-64.076Q75.205-64.177 75.498-64.177Q75.845-64.177 76.084-64.037Q76.322-63.896 76.437-63.638Q76.552-63.380 76.552-63.025L76.552-61.248L76.978-61.248Q77.185-61.224 77.224-61.017L77.224-60.927Q77.185-60.712 76.978-60.689L75.584-60.689Q75.388-60.712 75.338-60.927L75.338-61.017Q75.388-61.228 75.584-61.248L75.912-61.248L75.912-62.994Q75.912-63.302 75.822-63.460Q75.732-63.619 75.439-63.619Q75.170-63.619 74.941-63.488Q74.713-63.357 74.576-63.128Q74.439-62.900 74.439-62.634L74.439-61.248L74.865-61.248Q75.072-61.224 75.111-61.017L75.111-60.927Q75.072-60.712 74.865-60.689L73.377-60.689Q73.170-60.712 73.127-60.927M79.166-60.650Q78.701-60.650 78.336-60.900Q77.970-61.150 77.765-61.554Q77.560-61.959 77.560-62.416Q77.560-62.759 77.685-63.080Q77.810-63.400 78.043-63.650Q78.275-63.900 78.580-64.039Q78.884-64.177 79.240-64.177Q79.752-64.177 80.158-63.857L80.158-65.017L79.736-65.017Q79.525-65.041 79.486-65.255L79.486-65.345Q79.525-65.552 79.736-65.576L80.548-65.576Q80.748-65.552 80.798-65.345L80.798-61.248L81.224-61.248Q81.431-61.224 81.470-61.017L81.470-60.927Q81.431-60.712 81.224-60.689L80.408-60.689Q80.209-60.712 80.158-60.927L80.158-61.056Q79.963-60.865 79.701-60.757Q79.439-60.650 79.166-60.650M79.205-61.209Q79.564-61.209 79.816-61.478Q80.068-61.748 80.158-62.123L80.158-62.955Q80.099-63.142 79.972-63.293Q79.845-63.443 79.668-63.531Q79.490-63.619 79.295-63.619Q78.986-63.619 78.736-63.449Q78.486-63.279 78.341-62.994Q78.197-62.709 78.197-62.408Q78.197-61.959 78.482-61.584Q78.767-61.209 79.205-61.209M81.955-61.802Q81.955-62.248 82.369-62.505Q82.783-62.763 83.324-62.863Q83.865-62.962 84.373-62.970Q84.373-63.185 84.238-63.337Q84.103-63.490 83.896-63.566Q83.689-63.642 83.478-63.642Q83.134-63.642 82.974-63.619L82.974-63.560Q82.974-63.392 82.855-63.277Q82.736-63.162 82.572-63.162Q82.396-63.162 82.281-63.285Q82.166-63.408 82.166-63.576Q82.166-63.982 82.547-64.091Q82.927-64.201 83.486-64.201Q83.755-64.201 84.023-64.123Q84.291-64.044 84.515-63.894Q84.740-63.744 84.877-63.523Q85.013-63.302 85.013-63.025L85.013-61.306Q85.013-61.248 85.541-61.248Q85.736-61.228 85.787-61.017L85.787-60.927Q85.736-60.712 85.541-60.689L85.396-60.689Q85.052-60.689 84.824-60.736Q84.595-60.783 84.451-60.970Q83.990-60.650 83.283-60.650Q82.947-60.650 82.642-60.791Q82.338-60.931 82.146-61.193Q81.955-61.455 81.955-61.802M82.595-61.794Q82.595-61.521 82.838-61.365Q83.080-61.209 83.365-61.209Q83.584-61.209 83.816-61.267Q84.048-61.326 84.211-61.464Q84.373-61.603 84.373-61.826L84.373-62.416Q84.091-62.416 83.675-62.359Q83.259-62.302 82.927-62.164Q82.595-62.025 82.595-61.794M86.994-61.794L86.994-63.576L86.244-63.576Q86.045-63.599 85.994-63.818L85.994-63.904Q86.045-64.115 86.244-64.138L86.994-64.138L86.994-64.888Q87.045-65.095 87.244-65.123L87.388-65.123Q87.584-65.095 87.634-64.888L87.634-64.138L88.994-64.138Q89.185-64.119 89.244-63.904L89.244-63.818Q89.189-63.599 88.994-63.576L87.634-63.576L87.634-61.826Q87.634-61.209 88.209-61.209Q88.459-61.209 88.623-61.394Q88.787-61.580 88.787-61.826Q88.787-61.919 88.859-61.990Q88.931-62.060 89.033-62.072L89.177-62.072Q89.377-62.048 89.427-61.841L89.427-61.794Q89.427-61.470 89.244-61.207Q89.060-60.943 88.767-60.796Q88.474-60.650 88.154-60.650Q87.642-60.650 87.318-60.960Q86.994-61.271 86.994-61.794M90.658-60.927L90.658-61.017Q90.709-61.224 90.904-61.248L91.943-61.248L91.943-63.576L90.970-63.576Q90.771-63.599 90.720-63.818L90.720-63.904Q90.771-64.115 90.970-64.138L92.338-64.138Q92.533-64.119 92.584-63.904L92.584-61.248L93.498-61.248Q93.693-61.224 93.744-61.017L93.744-60.927Q93.693-60.712 93.498-60.689L90.904-60.689Q90.709-60.712 90.658-60.927M91.689-65.115L91.689-65.169Q91.689-65.341 91.826-65.462Q91.963-65.584 92.138-65.584Q92.310-65.584 92.447-65.462Q92.584-65.341 92.584-65.169L92.584-65.115Q92.584-64.939 92.447-64.818Q92.310-64.697 92.138-64.697Q91.963-64.697 91.826-64.818Q91.689-64.939 91.689-65.115M96.408-60.650Q95.935-60.650 95.550-60.894Q95.166-61.138 94.943-61.548Q94.720-61.959 94.720-62.416Q94.720-62.759 94.845-63.082Q94.970-63.404 95.201-63.658Q95.431-63.912 95.738-64.056Q96.045-64.201 96.408-64.201Q96.771-64.201 97.084-64.054Q97.396-63.908 97.619-63.662Q97.841-63.416 97.968-63.095Q98.095-62.775 98.095-62.416Q98.095-61.959 97.871-61.546Q97.646-61.134 97.261-60.892Q96.877-60.650 96.408-60.650M96.408-61.209Q96.873-61.209 97.164-61.603Q97.455-61.998 97.455-62.482Q97.455-62.775 97.320-63.043Q97.185-63.310 96.945-63.476Q96.705-63.642 96.408-63.642Q96.103-63.642 95.865-63.476Q95.627-63.310 95.492-63.043Q95.357-62.775 95.357-62.482Q95.357-62.002 95.650-61.605Q95.943-61.209 96.408-61.209M98.603-60.927L98.603-61.017Q98.646-61.224 98.853-61.248L99.275-61.248L99.275-63.576L98.853-63.576Q98.646-63.599 98.603-63.818L98.603-63.904Q98.650-64.115 98.853-64.138L99.670-64.138Q99.865-64.115 99.916-63.904L99.916-63.818L99.908-63.794Q100.134-63.974 100.408-64.076Q100.681-64.177 100.974-64.177Q101.322-64.177 101.560-64.037Q101.798-63.896 101.914-63.638Q102.029-63.380 102.029-63.025L102.029-61.248L102.455-61.248Q102.662-61.224 102.701-61.017L102.701-60.927Q102.662-60.712 102.455-60.689L101.060-60.689Q100.865-60.712 100.814-60.927L100.814-61.017Q100.865-61.228 101.060-61.248L101.388-61.248L101.388-62.994Q101.388-63.302 101.298-63.460Q101.209-63.619 100.916-63.619Q100.646-63.619 100.418-63.488Q100.189-63.357 100.052-63.128Q99.916-62.900 99.916-62.634L99.916-61.248L100.341-61.248Q100.548-61.224 100.588-61.017L100.588-60.927Q100.548-60.712 100.341-60.689L98.853-60.689Q98.646-60.712 98.603-60.927M103.365-60.888L103.365-61.802Q103.392-62.009 103.603-62.033L103.771-62.033Q103.935-62.009 103.994-61.849Q104.197-61.209 104.923-61.209Q105.130-61.209 105.359-61.244Q105.588-61.279 105.755-61.394Q105.923-61.509 105.923-61.712Q105.923-61.923 105.701-62.037Q105.478-62.150 105.205-62.193L104.505-62.306Q103.365-62.517 103.365-63.240Q103.365-63.529 103.509-63.718Q103.654-63.908 103.894-64.015Q104.134-64.123 104.390-64.162Q104.646-64.201 104.923-64.201Q105.173-64.201 105.367-64.171Q105.560-64.142 105.724-64.064Q105.802-64.181 105.931-64.201L106.009-64.201Q106.107-64.189 106.170-64.126Q106.232-64.064 106.244-63.970L106.244-63.263Q106.232-63.169 106.170-63.103Q106.107-63.037 106.009-63.025L105.841-63.025Q105.748-63.037 105.681-63.103Q105.615-63.169 105.603-63.263Q105.603-63.642 104.908-63.642Q104.560-63.642 104.242-63.560Q103.923-63.478 103.923-63.232Q103.923-62.966 104.595-62.857L105.298-62.736Q105.783-62.654 106.132-62.406Q106.482-62.158 106.482-61.712Q106.482-61.322 106.246-61.080Q106.009-60.837 105.660-60.744Q105.310-60.650 104.923-60.650Q104.345-60.650 103.947-60.904Q103.877-60.779 103.828-60.722Q103.779-60.666 103.673-60.650L103.603-60.650Q103.388-60.673 103.365-60.888\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-30.731-16.587h182.097V-39.35H-30.73Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-73.08 34.61)\">\u003Cpath d=\"M60.599-62.416Q60.599-62.912 60.849-63.337Q61.099-63.763 61.519-64.009Q61.939-64.255 62.439-64.255Q62.978-64.255 63.369-64.130Q63.759-64.005 63.759-63.591Q63.759-63.486 63.709-63.394Q63.658-63.302 63.566-63.252Q63.474-63.201 63.365-63.201Q63.259-63.201 63.168-63.252Q63.076-63.302 63.025-63.394Q62.974-63.486 62.974-63.591Q62.974-63.814 63.142-63.919Q62.920-63.978 62.447-63.978Q62.150-63.978 61.935-63.839Q61.720-63.701 61.589-63.470Q61.459-63.240 61.400-62.970Q61.341-62.701 61.341-62.416Q61.341-62.021 61.474-61.671Q61.607-61.322 61.879-61.105Q62.150-60.888 62.548-60.888Q62.923-60.888 63.199-61.105Q63.474-61.322 63.576-61.681Q63.591-61.744 63.654-61.744L63.759-61.744Q63.795-61.744 63.820-61.716Q63.845-61.689 63.845-61.650L63.845-61.627Q63.713-61.146 63.328-60.878Q62.943-60.611 62.439-60.611Q62.076-60.611 61.742-60.748Q61.408-60.884 61.148-61.134Q60.888-61.384 60.744-61.720Q60.599-62.056 60.599-62.416M64.334-62.384Q64.334-62.888 64.589-63.320Q64.845-63.752 65.281-64.003Q65.716-64.255 66.216-64.255Q66.603-64.255 66.945-64.111Q67.287-63.966 67.548-63.705Q67.810-63.443 67.953-63.107Q68.095-62.771 68.095-62.384Q68.095-61.892 67.832-61.482Q67.568-61.072 67.138-60.841Q66.709-60.611 66.216-60.611Q65.724-60.611 65.291-60.843Q64.857-61.076 64.595-61.484Q64.334-61.892 64.334-62.384M66.216-60.888Q66.673-60.888 66.925-61.111Q67.177-61.334 67.265-61.685Q67.353-62.037 67.353-62.482Q67.353-62.912 67.259-63.250Q67.166-63.587 66.912-63.794Q66.658-64.001 66.216-64.001Q65.568-64.001 65.324-63.585Q65.080-63.169 65.080-62.482Q65.080-62.037 65.168-61.685Q65.255-61.334 65.507-61.111Q65.759-60.888 66.216-60.888M70.509-60.689L68.654-60.689L68.654-60.986Q68.927-60.986 69.095-61.033Q69.263-61.080 69.263-61.248L69.263-63.384Q69.263-63.599 69.201-63.695Q69.138-63.791 69.019-63.812Q68.900-63.834 68.654-63.834L68.654-64.130L69.845-64.216L69.845-63.482Q69.959-63.697 70.152-63.865Q70.345-64.033 70.584-64.125Q70.822-64.216 71.076-64.216Q72.037-64.216 72.213-63.505Q72.396-63.834 72.724-64.025Q73.052-64.216 73.431-64.216Q74.607-64.216 74.607-63.138L74.607-61.248Q74.607-61.080 74.775-61.033Q74.943-60.986 75.213-60.986L75.213-60.689L73.357-60.689L73.357-60.986Q73.630-60.986 73.798-61.031Q73.966-61.076 73.966-61.248L73.966-63.123Q73.966-63.509 73.841-63.736Q73.716-63.962 73.365-63.962Q73.060-63.962 72.804-63.800Q72.548-63.638 72.400-63.369Q72.252-63.099 72.252-62.802L72.252-61.248Q72.252-61.080 72.422-61.033Q72.591-60.986 72.861-60.986L72.861-60.689L71.005-60.689L71.005-60.986Q71.279-60.986 71.447-61.033Q71.615-61.080 71.615-61.248L71.615-63.123Q71.615-63.509 71.490-63.736Q71.365-63.962 71.013-63.962Q70.709-63.962 70.453-63.800Q70.197-63.638 70.048-63.369Q69.900-63.099 69.900-62.802L69.900-61.248Q69.900-61.080 70.070-61.033Q70.240-60.986 70.509-60.986L70.509-60.689M77.541-59.138L75.685-59.138L75.685-59.431Q75.955-59.431 76.123-59.476Q76.291-59.521 76.291-59.697L76.291-63.521Q76.291-63.728 76.134-63.781Q75.978-63.834 75.685-63.834L75.685-64.130L76.908-64.216L76.908-63.752Q77.138-63.974 77.453-64.095Q77.767-64.216 78.107-64.216Q78.580-64.216 78.984-63.970Q79.388-63.724 79.621-63.308Q79.853-62.892 79.853-62.416Q79.853-62.041 79.705-61.712Q79.556-61.384 79.287-61.132Q79.017-60.880 78.673-60.746Q78.330-60.611 77.970-60.611Q77.681-60.611 77.410-60.732Q77.138-60.853 76.931-61.064L76.931-59.697Q76.931-59.521 77.099-59.476Q77.267-59.431 77.541-59.431L77.541-59.138M76.931-63.353L76.931-61.513Q77.084-61.224 77.345-61.044Q77.607-60.865 77.916-60.865Q78.201-60.865 78.423-61.003Q78.646-61.142 78.798-61.373Q78.951-61.603 79.029-61.875Q79.107-62.146 79.107-62.416Q79.107-62.748 78.982-63.105Q78.857-63.462 78.609-63.699Q78.361-63.935 78.013-63.935Q77.689-63.935 77.394-63.779Q77.099-63.623 76.931-63.353M82.236-60.689L80.459-60.689L80.459-60.986Q80.732-60.986 80.900-61.033Q81.068-61.080 81.068-61.248L81.068-63.384Q81.068-63.599 81.011-63.695Q80.955-63.791 80.841-63.812Q80.728-63.834 80.482-63.834L80.482-64.130L81.681-64.216L81.681-61.248Q81.681-61.080 81.828-61.033Q81.974-60.986 82.236-60.986L82.236-60.689M80.795-65.611Q80.795-65.802 80.929-65.933Q81.064-66.064 81.259-66.064Q81.380-66.064 81.484-66.001Q81.588-65.939 81.650-65.835Q81.713-65.732 81.713-65.611Q81.713-65.416 81.582-65.281Q81.451-65.146 81.259-65.146Q81.060-65.146 80.927-65.279Q80.795-65.412 80.795-65.611M84.650-60.689L82.818-60.689L82.818-60.986Q83.091-60.986 83.259-61.033Q83.427-61.080 83.427-61.248L83.427-65.408Q83.427-65.623 83.365-65.718Q83.302-65.814 83.183-65.835Q83.064-65.857 82.818-65.857L82.818-66.154L84.041-66.240L84.041-61.248Q84.041-61.080 84.209-61.033Q84.377-60.986 84.650-60.986L84.650-60.689M85.095-62.443Q85.095-62.923 85.328-63.339Q85.560-63.755 85.970-64.005Q86.380-64.255 86.857-64.255Q87.588-64.255 87.986-63.814Q88.384-63.373 88.384-62.642Q88.384-62.537 88.291-62.513L85.841-62.513L85.841-62.443Q85.841-62.033 85.963-61.677Q86.084-61.322 86.355-61.105Q86.627-60.888 87.056-60.888Q87.420-60.888 87.716-61.117Q88.013-61.345 88.115-61.697Q88.123-61.744 88.209-61.759L88.291-61.759Q88.384-61.732 88.384-61.650Q88.384-61.642 88.377-61.611Q88.314-61.384 88.175-61.201Q88.037-61.017 87.845-60.884Q87.654-60.752 87.435-60.681Q87.216-60.611 86.978-60.611Q86.607-60.611 86.269-60.748Q85.931-60.884 85.664-61.136Q85.396-61.388 85.246-61.728Q85.095-62.068 85.095-62.443M85.849-62.752L87.810-62.752Q87.810-63.056 87.709-63.347Q87.607-63.638 87.390-63.820Q87.173-64.001 86.857-64.001Q86.556-64.001 86.326-63.814Q86.095-63.627 85.972-63.335Q85.849-63.044 85.849-62.752M90.880-60.689L88.900-60.689L88.900-60.986Q89.170-60.986 89.338-61.031Q89.505-61.076 89.505-61.248L89.505-63.384Q89.505-63.599 89.443-63.695Q89.380-63.791 89.263-63.812Q89.146-63.834 88.900-63.834L88.900-64.130L90.068-64.216L90.068-63.431Q90.146-63.642 90.298-63.828Q90.451-64.013 90.650-64.115Q90.849-64.216 91.076-64.216Q91.322-64.216 91.513-64.072Q91.705-63.927 91.705-63.697Q91.705-63.541 91.599-63.431Q91.494-63.322 91.338-63.322Q91.181-63.322 91.072-63.431Q90.963-63.541 90.963-63.697Q90.963-63.857 91.068-63.962Q90.744-63.962 90.529-63.734Q90.314-63.505 90.218-63.166Q90.123-62.826 90.123-62.521L90.123-61.248Q90.123-61.080 90.349-61.033Q90.576-60.986 90.880-60.986\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.08 34.61)\">\u003Cpath d=\"M97.149-62.138L94.895-62.138L94.895-62.689L97.149-62.689L97.149-62.138M98.102-60.154Q98.102-60.388 98.201-60.603Q98.301-60.818 98.477-60.962Q98.887-61.263 99.129-61.716Q99.371-62.169 99.371-62.666L99.371-63.056Q99.371-63.091 99.399-63.119Q99.426-63.146 99.461-63.146L99.567-63.146Q99.602-63.146 99.627-63.117Q99.652-63.087 99.652-63.056L99.652-62.650Q99.652-62.013 99.430-61.466Q99.348-61.259 99.172-61.003Q98.996-60.748 98.920-60.584Q98.844-60.419 98.844-60.146Q98.844-59.853 98.889-59.677Q98.934-59.502 99.078-59.408Q99.223-59.314 99.516-59.314Q100.410-59.314 100.758-59.759Q100.598-59.759 100.490-59.877Q100.383-59.994 100.383-60.154Q100.383-60.255 100.434-60.347Q100.484-60.439 100.574-60.492Q100.664-60.544 100.774-60.544Q100.883-60.544 100.973-60.492Q101.063-60.439 101.113-60.347Q101.164-60.255 101.164-60.154Q101.164-59.865 101.012-59.650Q100.859-59.435 100.609-59.304Q100.359-59.173 100.076-59.115Q99.793-59.056 99.516-59.056Q98.922-59.056 98.512-59.322Q98.102-59.587 98.102-60.154M99.055-64.232Q99.055-64.423 99.188-64.556Q99.320-64.689 99.516-64.689Q99.707-64.689 99.840-64.556Q99.973-64.423 99.973-64.232Q99.973-64.041 99.836-63.904Q99.699-63.767 99.516-63.767Q99.328-63.767 99.192-63.904Q99.055-64.041 99.055-64.232\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.08 34.61)\">\u003Cpath d=\"M104.736-60.927L104.736-61.017Q104.775-61.224 104.982-61.248L105.388-61.248L106.318-62.466L105.447-63.576L105.029-63.576Q104.833-63.595 104.783-63.818L104.783-63.904Q104.833-64.115 105.029-64.138L106.189-64.138Q106.388-64.115 106.439-63.904L106.439-63.818Q106.388-63.599 106.189-63.576L106.080-63.576L106.576-62.919L107.052-63.576L106.935-63.576Q106.736-63.599 106.685-63.818L106.685-63.904Q106.736-64.115 106.935-64.138L108.095-64.138Q108.290-64.119 108.341-63.904L108.341-63.818Q108.290-63.599 108.095-63.576L107.685-63.576L106.837-62.466L107.798-61.248L108.205-61.248Q108.404-61.224 108.455-61.017L108.455-60.927Q108.415-60.712 108.205-60.689L107.052-60.689Q106.845-60.712 106.806-60.927L106.806-61.017Q106.845-61.224 107.052-61.248L107.181-61.248L106.576-62.103L105.990-61.248L106.134-61.248Q106.341-61.224 106.380-61.017L106.380-60.927Q106.341-60.712 106.134-60.689L104.982-60.689Q104.787-60.709 104.736-60.927M109.076-62.103Q109.076-62.388 109.232-62.642Q109.388-62.896 109.638-63.070Q109.888-63.244 110.173-63.330Q109.935-63.404 109.708-63.546Q109.482-63.689 109.339-63.898Q109.197-64.107 109.197-64.353Q109.197-64.751 109.443-65.046Q109.689-65.341 110.072-65.500Q110.455-65.658 110.845-65.658Q111.236-65.658 111.619-65.500Q112.001-65.341 112.248-65.043Q112.494-64.744 112.494-64.353Q112.494-64.107 112.351-63.900Q112.208-63.693 111.982-63.548Q111.755-63.404 111.517-63.330Q111.970-63.193 112.290-62.867Q112.611-62.541 112.611-62.103Q112.611-61.666 112.353-61.322Q112.095-60.978 111.685-60.794Q111.275-60.611 110.845-60.611Q110.415-60.611 110.005-60.793Q109.595-60.974 109.335-61.318Q109.076-61.662 109.076-62.103M109.716-62.103Q109.716-61.830 109.882-61.615Q110.048-61.400 110.310-61.285Q110.572-61.169 110.845-61.169Q111.119-61.169 111.378-61.285Q111.638-61.400 111.804-61.617Q111.970-61.834 111.970-62.103Q111.970-62.380 111.804-62.597Q111.638-62.814 111.378-62.931Q111.119-63.048 110.845-63.048Q110.572-63.048 110.310-62.931Q110.048-62.814 109.882-62.599Q109.716-62.384 109.716-62.103M109.837-64.353Q109.837-64.115 109.994-63.947Q110.150-63.779 110.386-63.695Q110.623-63.611 110.845-63.611Q111.064-63.611 111.302-63.695Q111.540-63.779 111.697-63.949Q111.853-64.119 111.853-64.353Q111.853-64.587 111.697-64.757Q111.540-64.927 111.302-65.011Q111.064-65.095 110.845-65.095Q110.623-65.095 110.386-65.011Q110.150-64.927 109.994-64.759Q109.837-64.591 109.837-64.353M115.091-60.611Q114.451-60.611 114.064-60.988Q113.677-61.365 113.519-61.937Q113.361-62.509 113.361-63.138Q113.361-63.603 113.521-64.058Q113.681-64.513 113.970-64.873Q114.259-65.232 114.667-65.445Q115.076-65.658 115.564-65.658Q115.837-65.658 116.087-65.560Q116.337-65.462 116.490-65.267Q116.642-65.072 116.642-64.779Q116.642-64.603 116.529-64.482Q116.415-64.361 116.244-64.361Q116.068-64.361 115.951-64.474Q115.833-64.587 115.833-64.759Q115.833-64.880 115.908-65.001Q115.798-65.095 115.564-65.095Q115.146-65.095 114.810-64.855Q114.474-64.615 114.269-64.228Q114.064-63.841 114.017-63.443Q114.255-63.642 114.564-63.750Q114.873-63.857 115.193-63.857Q115.533-63.857 115.832-63.732Q116.130-63.607 116.349-63.388Q116.568-63.169 116.693-62.871Q116.818-62.572 116.818-62.232Q116.818-61.884 116.679-61.584Q116.540-61.283 116.300-61.066Q116.060-60.849 115.746-60.730Q115.431-60.611 115.091-60.611M114.107-62.154Q114.169-61.892 114.298-61.668Q114.427-61.443 114.626-61.306Q114.826-61.169 115.091-61.169Q115.544-61.169 115.861-61.476Q116.177-61.783 116.177-62.232Q116.177-62.513 116.042-62.759Q115.908-63.005 115.671-63.148Q115.435-63.291 115.138-63.291Q114.748-63.291 114.415-63.064Q114.083-62.837 114.083-62.466Q114.083-62.427 114.099-62.349Q114.115-62.271 114.115-62.232Q114.115-62.205 114.113-62.189Q114.111-62.173 114.107-62.154M120.712-62.826L117.970-62.826Q117.845-62.837 117.759-62.923Q117.673-63.009 117.673-63.138Q117.673-63.267 117.759-63.349Q117.845-63.431 117.970-63.443L120.712-63.443Q120.837-63.431 120.919-63.349Q121.001-63.267 121.001-63.138Q121.001-63.009 120.919-62.923Q120.837-62.837 120.712-62.826M123.583-60.611Q122.943-60.611 122.556-60.988Q122.169-61.365 122.011-61.937Q121.853-62.509 121.853-63.138Q121.853-63.603 122.013-64.058Q122.173-64.513 122.462-64.873Q122.751-65.232 123.160-65.445Q123.568-65.658 124.056-65.658Q124.330-65.658 124.580-65.560Q124.830-65.462 124.982-65.267Q125.134-65.072 125.134-64.779Q125.134-64.603 125.021-64.482Q124.908-64.361 124.736-64.361Q124.560-64.361 124.443-64.474Q124.326-64.587 124.326-64.759Q124.326-64.880 124.400-65.001Q124.290-65.095 124.056-65.095Q123.638-65.095 123.302-64.855Q122.966-64.615 122.761-64.228Q122.556-63.841 122.509-63.443Q122.748-63.642 123.056-63.750Q123.365-63.857 123.685-63.857Q124.025-63.857 124.324-63.732Q124.623-63.607 124.841-63.388Q125.060-63.169 125.185-62.871Q125.310-62.572 125.310-62.232Q125.310-61.884 125.171-61.584Q125.033-61.283 124.792-61.066Q124.552-60.849 124.238-60.730Q123.923-60.611 123.583-60.611M122.599-62.154Q122.662-61.892 122.790-61.668Q122.919-61.443 123.119-61.306Q123.318-61.169 123.583-61.169Q124.037-61.169 124.353-61.476Q124.669-61.783 124.669-62.232Q124.669-62.513 124.535-62.759Q124.400-63.005 124.164-63.148Q123.927-63.291 123.630-63.291Q123.240-63.291 122.908-63.064Q122.576-62.837 122.576-62.466Q122.576-62.427 122.591-62.349Q122.607-62.271 122.607-62.232Q122.607-62.205 122.605-62.189Q122.603-62.173 122.599-62.154M128.267-62.033L126.197-62.033Q126.001-62.056 125.947-62.275L125.947-62.513Q125.947-62.587 125.990-62.658L127.837-65.529Q127.923-65.658 128.076-65.658L128.533-65.658Q128.642-65.658 128.720-65.580Q128.798-65.501 128.798-65.392L128.798-62.591L129.462-62.591Q129.658-62.568 129.708-62.361L129.708-62.275Q129.658-62.056 129.462-62.033L128.798-62.033L128.798-61.248L129.373-61.248Q129.580-61.224 129.619-61.017L129.619-60.927Q129.580-60.712 129.373-60.689L127.693-60.689Q127.486-60.712 127.443-60.927L127.443-61.017Q127.486-61.224 127.693-61.248L128.267-61.248L128.267-62.033M128.267-65.185L126.595-62.591L128.267-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.08 34.61)\">\u003Cpath d=\"M134.701-60.330Q134.701-60.384 134.724-60.451L137.404-66.056Q137.498-66.240 137.693-66.240Q137.818-66.240 137.908-66.150Q137.998-66.060 137.998-65.935Q137.998-65.873 137.970-65.818L135.291-60.209Q135.197-60.025 135.013-60.025Q134.888-60.025 134.794-60.115Q134.701-60.205 134.701-60.330\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.08 34.61)\">\u003Cpath d=\"M144.009-60.927L144.009-61.017Q144.060-61.224 144.255-61.248L144.529-61.248L144.529-62.642L143.400-65.017L143.142-65.017Q142.947-65.041 142.896-65.255L142.896-65.345Q142.947-65.552 143.142-65.576L144.208-65.576Q144.416-65.552 144.455-65.345L144.455-65.255Q144.416-65.041 144.208-65.017L144.111-65.017Q144.849-63.470 144.849-63.291Q144.861-63.498 145.583-65.017L145.490-65.017Q145.279-65.041 145.240-65.255L145.240-65.345Q145.279-65.552 145.490-65.576L146.552-65.576Q146.748-65.552 146.798-65.345L146.798-65.255Q146.748-65.041 146.552-65.017L146.294-65.017L145.169-62.642L145.169-61.248L145.439-61.248Q145.638-61.224 145.689-61.017L145.689-60.927Q145.638-60.712 145.439-60.689L144.255-60.689Q144.060-60.712 144.009-60.927M147.326-62.103Q147.326-62.388 147.482-62.642Q147.638-62.896 147.888-63.070Q148.138-63.244 148.423-63.330Q148.185-63.404 147.958-63.546Q147.732-63.689 147.589-63.898Q147.447-64.107 147.447-64.353Q147.447-64.751 147.693-65.046Q147.939-65.341 148.322-65.500Q148.705-65.658 149.095-65.658Q149.486-65.658 149.869-65.500Q150.251-65.341 150.498-65.043Q150.744-64.744 150.744-64.353Q150.744-64.107 150.601-63.900Q150.458-63.693 150.232-63.548Q150.005-63.404 149.767-63.330Q150.220-63.193 150.541-62.867Q150.861-62.541 150.861-62.103Q150.861-61.666 150.603-61.322Q150.345-60.978 149.935-60.794Q149.525-60.611 149.095-60.611Q148.666-60.611 148.255-60.793Q147.845-60.974 147.585-61.318Q147.326-61.662 147.326-62.103M147.966-62.103Q147.966-61.830 148.132-61.615Q148.298-61.400 148.560-61.285Q148.822-61.169 149.095-61.169Q149.369-61.169 149.628-61.285Q149.888-61.400 150.054-61.617Q150.220-61.834 150.220-62.103Q150.220-62.380 150.054-62.597Q149.888-62.814 149.628-62.931Q149.369-63.048 149.095-63.048Q148.822-63.048 148.560-62.931Q148.298-62.814 148.132-62.599Q147.966-62.384 147.966-62.103M148.087-64.353Q148.087-64.115 148.244-63.947Q148.400-63.779 148.636-63.695Q148.873-63.611 149.095-63.611Q149.314-63.611 149.552-63.695Q149.791-63.779 149.947-63.949Q150.103-64.119 150.103-64.353Q150.103-64.587 149.947-64.757Q149.791-64.927 149.552-65.011Q149.314-65.095 149.095-65.095Q148.873-65.095 148.636-65.011Q148.400-64.927 148.244-64.759Q148.087-64.591 148.087-64.353M153.341-60.611Q152.701-60.611 152.314-60.988Q151.927-61.365 151.769-61.937Q151.611-62.509 151.611-63.138Q151.611-63.603 151.771-64.058Q151.931-64.513 152.220-64.873Q152.509-65.232 152.917-65.445Q153.326-65.658 153.814-65.658Q154.087-65.658 154.337-65.560Q154.587-65.462 154.740-65.267Q154.892-65.072 154.892-64.779Q154.892-64.603 154.779-64.482Q154.666-64.361 154.494-64.361Q154.318-64.361 154.201-64.474Q154.083-64.587 154.083-64.759Q154.083-64.880 154.158-65.001Q154.048-65.095 153.814-65.095Q153.396-65.095 153.060-64.855Q152.724-64.615 152.519-64.228Q152.314-63.841 152.267-63.443Q152.505-63.642 152.814-63.750Q153.123-63.857 153.443-63.857Q153.783-63.857 154.082-63.732Q154.380-63.607 154.599-63.388Q154.818-63.169 154.943-62.871Q155.068-62.572 155.068-62.232Q155.068-61.884 154.929-61.584Q154.791-61.283 154.550-61.066Q154.310-60.849 153.996-60.730Q153.681-60.611 153.341-60.611M152.357-62.154Q152.419-61.892 152.548-61.668Q152.677-61.443 152.876-61.306Q153.076-61.169 153.341-61.169Q153.794-61.169 154.111-61.476Q154.427-61.783 154.427-62.232Q154.427-62.513 154.292-62.759Q154.158-63.005 153.921-63.148Q153.685-63.291 153.388-63.291Q152.998-63.291 152.666-63.064Q152.333-62.837 152.333-62.466Q152.333-62.427 152.349-62.349Q152.365-62.271 152.365-62.232Q152.365-62.205 152.363-62.189Q152.361-62.173 152.357-62.154M158.962-62.826L156.220-62.826Q156.095-62.837 156.009-62.923Q155.923-63.009 155.923-63.138Q155.923-63.267 156.009-63.349Q156.095-63.431 156.220-63.443L158.962-63.443Q159.087-63.431 159.169-63.349Q159.251-63.267 159.251-63.138Q159.251-63.009 159.169-62.923Q159.087-62.837 158.962-62.826M161.833-60.611Q161.193-60.611 160.806-60.988Q160.419-61.365 160.261-61.937Q160.103-62.509 160.103-63.138Q160.103-63.603 160.263-64.058Q160.423-64.513 160.712-64.873Q161.001-65.232 161.410-65.445Q161.818-65.658 162.306-65.658Q162.580-65.658 162.830-65.560Q163.080-65.462 163.232-65.267Q163.384-65.072 163.384-64.779Q163.384-64.603 163.271-64.482Q163.158-64.361 162.986-64.361Q162.810-64.361 162.693-64.474Q162.576-64.587 162.576-64.759Q162.576-64.880 162.650-65.001Q162.541-65.095 162.306-65.095Q161.888-65.095 161.552-64.855Q161.216-64.615 161.011-64.228Q160.806-63.841 160.759-63.443Q160.998-63.642 161.306-63.750Q161.615-63.857 161.935-63.857Q162.275-63.857 162.574-63.732Q162.873-63.607 163.091-63.388Q163.310-63.169 163.435-62.871Q163.560-62.572 163.560-62.232Q163.560-61.884 163.421-61.584Q163.283-61.283 163.042-61.066Q162.802-60.849 162.488-60.730Q162.173-60.611 161.833-60.611M160.849-62.154Q160.912-61.892 161.041-61.668Q161.169-61.443 161.369-61.306Q161.568-61.169 161.833-61.169Q162.287-61.169 162.603-61.476Q162.919-61.783 162.919-62.232Q162.919-62.513 162.785-62.759Q162.650-63.005 162.414-63.148Q162.177-63.291 161.880-63.291Q161.490-63.291 161.158-63.064Q160.826-62.837 160.826-62.466Q160.826-62.427 160.841-62.349Q160.857-62.271 160.857-62.232Q160.857-62.205 160.855-62.189Q160.853-62.173 160.849-62.154M166.517-62.033L164.447-62.033Q164.251-62.056 164.197-62.275L164.197-62.513Q164.197-62.587 164.240-62.658L166.087-65.529Q166.173-65.658 166.326-65.658L166.783-65.658Q166.892-65.658 166.970-65.580Q167.048-65.501 167.048-65.392L167.048-62.591L167.712-62.591Q167.908-62.568 167.958-62.361L167.958-62.275Q167.908-62.056 167.712-62.033L167.048-62.033L167.048-61.248L167.623-61.248Q167.830-61.224 167.869-61.017L167.869-60.927Q167.830-60.712 167.623-60.689L165.943-60.689Q165.736-60.712 165.693-60.927L165.693-61.017Q165.736-61.224 165.943-61.248L166.517-61.248L166.517-62.033M166.517-65.185L164.845-62.591L166.517-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.08 34.61)\">\u003Cpath d=\"M172.885-61.802Q172.885-62.248 173.299-62.505Q173.713-62.763 174.254-62.863Q174.795-62.962 175.303-62.970Q175.303-63.185 175.168-63.337Q175.034-63.490 174.827-63.566Q174.620-63.642 174.409-63.642Q174.065-63.642 173.905-63.619L173.905-63.560Q173.905-63.392 173.786-63.277Q173.667-63.162 173.502-63.162Q173.327-63.162 173.211-63.285Q173.096-63.408 173.096-63.576Q173.096-63.982 173.477-64.091Q173.858-64.201 174.417-64.201Q174.686-64.201 174.954-64.123Q175.221-64.044 175.446-63.894Q175.670-63.744 175.807-63.523Q175.944-63.302 175.944-63.025L175.944-61.306Q175.944-61.248 176.471-61.248Q176.667-61.228 176.717-61.017L176.717-60.927Q176.667-60.712 176.471-60.689L176.327-60.689Q175.983-60.689 175.754-60.736Q175.526-60.783 175.381-60.970Q174.920-60.650 174.213-60.650Q173.877-60.650 173.573-60.791Q173.268-60.931 173.077-61.193Q172.885-61.455 172.885-61.802M173.526-61.794Q173.526-61.521 173.768-61.365Q174.010-61.209 174.295-61.209Q174.514-61.209 174.747-61.267Q174.979-61.326 175.141-61.464Q175.303-61.603 175.303-61.826L175.303-62.416Q175.022-62.416 174.606-62.359Q174.190-62.302 173.858-62.164Q173.526-62.025 173.526-61.794M177.311-60.888L177.311-61.802Q177.338-62.009 177.549-62.033L177.717-62.033Q177.881-62.009 177.940-61.849Q178.143-61.209 178.870-61.209Q179.077-61.209 179.305-61.244Q179.534-61.279 179.702-61.394Q179.870-61.509 179.870-61.712Q179.870-61.923 179.647-62.037Q179.424-62.150 179.151-62.193L178.452-62.306Q177.311-62.517 177.311-63.240Q177.311-63.529 177.456-63.718Q177.600-63.908 177.840-64.015Q178.081-64.123 178.336-64.162Q178.592-64.201 178.870-64.201Q179.120-64.201 179.313-64.171Q179.506-64.142 179.670-64.064Q179.749-64.181 179.877-64.201L179.956-64.201Q180.053-64.189 180.116-64.126Q180.178-64.064 180.190-63.970L180.190-63.263Q180.178-63.169 180.116-63.103Q180.053-63.037 179.956-63.025L179.788-63.025Q179.694-63.037 179.627-63.103Q179.561-63.169 179.549-63.263Q179.549-63.642 178.854-63.642Q178.506-63.642 178.188-63.560Q177.870-63.478 177.870-63.232Q177.870-62.966 178.542-62.857L179.245-62.736Q179.729-62.654 180.079-62.406Q180.428-62.158 180.428-61.712Q180.428-61.322 180.192-61.080Q179.956-60.837 179.606-60.744Q179.256-60.650 178.870-60.650Q178.292-60.650 177.893-60.904Q177.823-60.779 177.774-60.722Q177.725-60.666 177.620-60.650L177.549-60.650Q177.334-60.673 177.311-60.888M181.557-60.888L181.557-61.802Q181.584-62.009 181.795-62.033L181.963-62.033Q182.127-62.009 182.186-61.849Q182.389-61.209 183.116-61.209Q183.323-61.209 183.551-61.244Q183.780-61.279 183.948-61.394Q184.116-61.509 184.116-61.712Q184.116-61.923 183.893-62.037Q183.670-62.150 183.397-62.193L182.698-62.306Q181.557-62.517 181.557-63.240Q181.557-63.529 181.702-63.718Q181.846-63.908 182.086-64.015Q182.327-64.123 182.583-64.162Q182.838-64.201 183.116-64.201Q183.366-64.201 183.559-64.171Q183.752-64.142 183.917-64.064Q183.995-64.181 184.124-64.201L184.202-64.201Q184.299-64.189 184.362-64.126Q184.424-64.064 184.436-63.970L184.436-63.263Q184.424-63.169 184.362-63.103Q184.299-63.037 184.202-63.025L184.034-63.025Q183.940-63.037 183.874-63.103Q183.807-63.169 183.795-63.263Q183.795-63.642 183.100-63.642Q182.752-63.642 182.434-63.560Q182.116-63.478 182.116-63.232Q182.116-62.966 182.788-62.857L183.491-62.736Q183.975-62.654 184.325-62.406Q184.674-62.158 184.674-61.712Q184.674-61.322 184.438-61.080Q184.202-60.837 183.852-60.744Q183.502-60.650 183.116-60.650Q182.538-60.650 182.139-60.904Q182.069-60.779 182.020-60.722Q181.971-60.666 181.866-60.650L181.795-60.650Q181.581-60.673 181.557-60.888M188.729-62.177L186.288-62.177Q186.342-61.900 186.540-61.677Q186.737-61.455 187.014-61.332Q187.292-61.209 187.577-61.209Q188.049-61.209 188.272-61.498Q188.280-61.509 188.336-61.615Q188.393-61.720 188.442-61.763Q188.491-61.806 188.584-61.818L188.729-61.818Q188.920-61.798 188.979-61.584L188.979-61.529Q188.913-61.228 188.682-61.031Q188.452-60.834 188.139-60.742Q187.827-60.650 187.522-60.650Q187.038-60.650 186.598-60.878Q186.159-61.107 185.891-61.507Q185.624-61.908 185.624-62.400L185.624-62.459Q185.624-62.927 185.870-63.330Q186.116-63.732 186.524-63.966Q186.932-64.201 187.401-64.201Q187.905-64.201 188.258-63.978Q188.612-63.755 188.795-63.367Q188.979-62.978 188.979-62.474L188.979-62.416Q188.920-62.201 188.729-62.177M186.295-62.728L188.323-62.728Q188.276-63.138 188.038-63.390Q187.799-63.642 187.401-63.642Q187.006-63.642 186.700-63.380Q186.393-63.119 186.295-62.728M189.409-60.927L189.409-61.017Q189.459-61.228 189.655-61.248L189.854-61.248L189.854-63.576L189.655-63.576Q189.448-63.599 189.409-63.818L189.409-63.904Q189.459-64.119 189.655-64.138L190.135-64.138Q190.327-64.115 190.385-63.904Q190.706-64.177 191.120-64.177Q191.311-64.177 191.479-64.068Q191.647-63.959 191.721-63.787Q191.897-63.978 192.120-64.078Q192.342-64.177 192.584-64.177Q193.002-64.177 193.157-63.835Q193.311-63.494 193.311-63.025L193.311-61.248L193.510-61.248Q193.721-61.224 193.760-61.017L193.760-60.927Q193.709-60.712 193.510-60.689L192.694-60.689Q192.499-60.712 192.448-60.927L192.448-61.017Q192.499-61.224 192.694-61.248L192.784-61.248L192.784-62.994Q192.784-63.619 192.534-63.619Q192.202-63.619 192.024-63.308Q191.846-62.998 191.846-62.634L191.846-61.248L192.049-61.248Q192.256-61.224 192.295-61.017L192.295-60.927Q192.245-60.712 192.049-60.689L191.233-60.689Q191.034-60.712 190.983-60.927L190.983-61.017Q191.034-61.224 191.233-61.248L191.319-61.248L191.319-62.994Q191.319-63.619 191.073-63.619Q190.741-63.619 190.563-63.306Q190.385-62.994 190.385-62.634L190.385-61.248L190.584-61.248Q190.792-61.224 190.831-61.017L190.831-60.927Q190.780-60.709 190.584-60.689L189.655-60.689Q189.448-60.712 189.409-60.927M194.452-60.927L194.452-65.017L194.030-65.017Q193.823-65.041 193.780-65.255L193.780-65.345Q193.823-65.552 194.030-65.576L194.846-65.576Q195.042-65.552 195.092-65.345L195.092-63.834Q195.303-64.001 195.567-64.089Q195.831-64.177 196.100-64.177Q196.440-64.177 196.737-64.033Q197.034-63.888 197.249-63.636Q197.463-63.384 197.579-63.072Q197.694-62.759 197.694-62.416Q197.694-61.951 197.467-61.541Q197.241-61.130 196.854-60.890Q196.467-60.650 195.999-60.650Q195.479-60.650 195.092-61.017L195.092-60.927Q195.042-60.709 194.846-60.689L194.702-60.689Q194.510-60.712 194.452-60.927M195.956-61.209Q196.264-61.209 196.514-61.378Q196.764-61.548 196.909-61.830Q197.053-62.111 197.053-62.416Q197.053-62.705 196.928-62.984Q196.803-63.263 196.571-63.441Q196.338-63.619 196.038-63.619Q195.717-63.619 195.456-63.433Q195.194-63.248 195.092-62.947L195.092-62.095Q195.182-61.728 195.403-61.468Q195.624-61.209 195.956-61.209M198.405-60.927L198.405-61.017Q198.456-61.224 198.651-61.248L199.756-61.248L199.756-65.017L198.651-65.017Q198.456-65.041 198.405-65.255L198.405-65.345Q198.456-65.552 198.651-65.576L200.147-65.576Q200.338-65.552 200.397-65.345L200.397-61.248L201.499-61.248Q201.698-61.224 201.749-61.017L201.749-60.927Q201.698-60.712 201.499-60.689L198.651-60.689Q198.456-60.712 198.405-60.927M202.545-59.568Q202.545-59.677 202.596-59.769Q202.647-59.861 202.739-59.912Q202.831-59.962 202.936-59.962Q203.045-59.962 203.137-59.912Q203.229-59.861 203.280-59.769Q203.331-59.677 203.331-59.568L203.186-59.568Q203.186-59.431 203.209-59.431Q203.467-59.431 203.655-59.623Q203.842-59.814 203.928-60.080L204.139-60.689L203.002-63.576L202.674-63.576Q202.479-63.599 202.424-63.818L202.424-63.904Q202.483-64.115 202.674-64.138L203.834-64.138Q204.030-64.115 204.081-63.904L204.081-63.818Q204.030-63.599 203.834-63.576L203.569-63.576Q203.905-62.728 204.149-62.074Q204.393-61.419 204.393-61.330L204.401-61.330Q204.401-61.388 204.493-61.681Q204.584-61.974 204.778-62.558Q204.971-63.142 205.112-63.576L204.834-63.576Q204.624-63.599 204.584-63.818L204.584-63.904Q204.635-64.119 204.834-64.138L205.987-64.138Q206.194-64.115 206.233-63.904L206.233-63.818Q206.194-63.599 205.987-63.576L205.667-63.576L204.491-60.080Q204.323-59.580 203.997-59.226Q203.670-58.873 203.209-58.873Q202.936-58.873 202.741-59.084Q202.545-59.294 202.545-59.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(103.118 35.165)\">\u003Cpath d=\"M60.263-60.927L60.263-61.017Q60.314-61.228 60.509-61.248L60.709-61.248L60.709-63.576L60.509-63.576Q60.302-63.599 60.263-63.818L60.263-63.904Q60.314-64.119 60.509-64.138L60.990-64.138Q61.181-64.115 61.240-63.904Q61.560-64.177 61.974-64.177Q62.166-64.177 62.334-64.068Q62.502-63.959 62.576-63.787Q62.752-63.978 62.974-64.078Q63.197-64.177 63.439-64.177Q63.857-64.177 64.011-63.835Q64.166-63.494 64.166-63.025L64.166-61.248L64.365-61.248Q64.576-61.224 64.615-61.017L64.615-60.927Q64.564-60.712 64.365-60.689L63.548-60.689Q63.353-60.712 63.302-60.927L63.302-61.017Q63.353-61.224 63.548-61.248L63.638-61.248L63.638-62.994Q63.638-63.619 63.388-63.619Q63.056-63.619 62.879-63.308Q62.701-62.998 62.701-62.634L62.701-61.248L62.904-61.248Q63.111-61.224 63.150-61.017L63.150-60.927Q63.099-60.712 62.904-60.689L62.088-60.689Q61.888-60.712 61.838-60.927L61.838-61.017Q61.888-61.224 62.088-61.248L62.173-61.248L62.173-62.994Q62.173-63.619 61.927-63.619Q61.595-63.619 61.418-63.306Q61.240-62.994 61.240-62.634L61.240-61.248L61.439-61.248Q61.646-61.224 61.685-61.017L61.685-60.927Q61.634-60.709 61.439-60.689L60.509-60.689Q60.302-60.712 60.263-60.927M64.970-61.802Q64.970-62.248 65.384-62.505Q65.798-62.763 66.339-62.863Q66.880-62.962 67.388-62.970Q67.388-63.185 67.254-63.337Q67.119-63.490 66.912-63.566Q66.705-63.642 66.494-63.642Q66.150-63.642 65.990-63.619L65.990-63.560Q65.990-63.392 65.871-63.277Q65.752-63.162 65.588-63.162Q65.412-63.162 65.297-63.285Q65.181-63.408 65.181-63.576Q65.181-63.982 65.562-64.091Q65.943-64.201 66.502-64.201Q66.771-64.201 67.039-64.123Q67.306-64.044 67.531-63.894Q67.755-63.744 67.892-63.523Q68.029-63.302 68.029-63.025L68.029-61.306Q68.029-61.248 68.556-61.248Q68.752-61.228 68.802-61.017L68.802-60.927Q68.752-60.712 68.556-60.689L68.412-60.689Q68.068-60.689 67.839-60.736Q67.611-60.783 67.466-60.970Q67.005-60.650 66.298-60.650Q65.963-60.650 65.658-60.791Q65.353-60.931 65.162-61.193Q64.970-61.455 64.970-61.802M65.611-61.794Q65.611-61.521 65.853-61.365Q66.095-61.209 66.380-61.209Q66.599-61.209 66.832-61.267Q67.064-61.326 67.226-61.464Q67.388-61.603 67.388-61.826L67.388-62.416Q67.107-62.416 66.691-62.359Q66.275-62.302 65.943-62.164Q65.611-62.025 65.611-61.794M69.369-62.416Q69.369-62.896 69.613-63.310Q69.857-63.724 70.273-63.962Q70.689-64.201 71.170-64.201Q71.724-64.201 72.103-64.091Q72.482-63.982 72.482-63.576Q72.482-63.408 72.369-63.285Q72.255-63.162 72.084-63.162Q71.912-63.162 71.793-63.277Q71.673-63.392 71.673-63.560L71.673-63.619Q71.513-63.642 71.177-63.642Q70.849-63.642 70.582-63.472Q70.314-63.302 70.162-63.019Q70.009-62.736 70.009-62.416Q70.009-62.095 70.181-61.814Q70.353-61.533 70.638-61.371Q70.923-61.209 71.252-61.209Q71.564-61.209 71.691-61.312Q71.818-61.416 71.935-61.605Q72.052-61.794 72.170-61.810L72.338-61.810Q72.443-61.798 72.507-61.730Q72.572-61.662 72.572-61.560Q72.572-61.513 72.552-61.474Q72.443-61.181 72.240-61.002Q72.037-60.822 71.761-60.736Q71.486-60.650 71.170-60.650Q70.685-60.650 70.269-60.888Q69.853-61.127 69.611-61.529Q69.369-61.931 69.369-62.416M73.127-60.927L73.127-61.017Q73.170-61.224 73.377-61.248L73.798-61.248L73.798-65.017L73.377-65.017Q73.170-65.041 73.127-65.255L73.127-65.345Q73.170-65.552 73.377-65.576L74.193-65.576Q74.388-65.552 74.439-65.345L74.439-63.794Q74.900-64.177 75.498-64.177Q75.845-64.177 76.084-64.037Q76.322-63.896 76.437-63.638Q76.552-63.380 76.552-63.025L76.552-61.248L76.978-61.248Q77.185-61.224 77.224-61.017L77.224-60.927Q77.185-60.712 76.978-60.689L75.584-60.689Q75.388-60.712 75.338-60.927L75.338-61.017Q75.388-61.228 75.584-61.248L75.912-61.248L75.912-62.994Q75.912-63.302 75.822-63.460Q75.732-63.619 75.439-63.619Q75.170-63.619 74.941-63.488Q74.713-63.357 74.576-63.128Q74.439-62.900 74.439-62.634L74.439-61.248L74.865-61.248Q75.072-61.224 75.111-61.017L75.111-60.927Q75.072-60.712 74.865-60.689L73.377-60.689Q73.170-60.712 73.127-60.927M77.920-60.927L77.920-61.017Q77.970-61.224 78.166-61.248L79.205-61.248L79.205-63.576L78.232-63.576Q78.033-63.599 77.982-63.818L77.982-63.904Q78.033-64.115 78.232-64.138L79.599-64.138Q79.795-64.119 79.845-63.904L79.845-61.248L80.759-61.248Q80.955-61.224 81.005-61.017L81.005-60.927Q80.955-60.712 80.759-60.689L78.166-60.689Q77.970-60.712 77.920-60.927M78.951-65.115L78.951-65.169Q78.951-65.341 79.088-65.462Q79.224-65.584 79.400-65.584Q79.572-65.584 79.709-65.462Q79.845-65.341 79.845-65.169L79.845-65.115Q79.845-64.939 79.709-64.818Q79.572-64.697 79.400-64.697Q79.224-64.697 79.088-64.818Q78.951-64.939 78.951-65.115M81.619-60.927L81.619-61.017Q81.662-61.224 81.869-61.248L82.291-61.248L82.291-63.576L81.869-63.576Q81.662-63.599 81.619-63.818L81.619-63.904Q81.666-64.115 81.869-64.138L82.685-64.138Q82.880-64.115 82.931-63.904L82.931-63.818L82.923-63.794Q83.150-63.974 83.423-64.076Q83.697-64.177 83.990-64.177Q84.338-64.177 84.576-64.037Q84.814-63.896 84.929-63.638Q85.045-63.380 85.045-63.025L85.045-61.248L85.470-61.248Q85.677-61.224 85.716-61.017L85.716-60.927Q85.677-60.712 85.470-60.689L84.076-60.689Q83.880-60.712 83.830-60.927L83.830-61.017Q83.880-61.228 84.076-61.248L84.404-61.248L84.404-62.994Q84.404-63.302 84.314-63.460Q84.224-63.619 83.931-63.619Q83.662-63.619 83.433-63.488Q83.205-63.357 83.068-63.128Q82.931-62.900 82.931-62.634L82.931-61.248L83.357-61.248Q83.564-61.224 83.603-61.017L83.603-60.927Q83.564-60.712 83.357-60.689L81.869-60.689Q81.662-60.712 81.619-60.927M89.306-62.177L86.865-62.177Q86.920-61.900 87.117-61.677Q87.314-61.455 87.591-61.332Q87.869-61.209 88.154-61.209Q88.627-61.209 88.849-61.498Q88.857-61.509 88.914-61.615Q88.970-61.720 89.019-61.763Q89.068-61.806 89.162-61.818L89.306-61.818Q89.498-61.798 89.556-61.584L89.556-61.529Q89.490-61.228 89.259-61.031Q89.029-60.834 88.716-60.742Q88.404-60.650 88.099-60.650Q87.615-60.650 87.175-60.878Q86.736-61.107 86.468-61.507Q86.201-61.908 86.201-62.400L86.201-62.459Q86.201-62.927 86.447-63.330Q86.693-63.732 87.101-63.966Q87.509-64.201 87.978-64.201Q88.482-64.201 88.836-63.978Q89.189-63.755 89.373-63.367Q89.556-62.978 89.556-62.474L89.556-62.416Q89.498-62.201 89.306-62.177M86.873-62.728L88.900-62.728Q88.853-63.138 88.615-63.390Q88.377-63.642 87.978-63.642Q87.584-63.642 87.277-63.380Q86.970-63.119 86.873-62.728M93.537-62.826L90.795-62.826Q90.670-62.837 90.584-62.923Q90.498-63.009 90.498-63.138Q90.498-63.267 90.584-63.349Q90.670-63.431 90.795-63.443L93.537-63.443Q93.662-63.431 93.744-63.349Q93.826-63.267 93.826-63.138Q93.826-63.009 93.744-62.923Q93.662-62.837 93.537-62.826M94.736-60.927L94.736-61.017Q94.787-61.224 94.982-61.248L96.088-61.248L96.088-65.017L94.982-65.017Q94.787-65.041 94.736-65.255L94.736-65.345Q94.787-65.552 94.982-65.576L96.478-65.576Q96.670-65.552 96.728-65.345L96.728-61.248L97.830-61.248Q98.029-61.224 98.080-61.017L98.080-60.927Q98.029-60.712 97.830-60.689L94.982-60.689Q94.787-60.712 94.736-60.927M102.045-62.177L99.603-62.177Q99.658-61.900 99.855-61.677Q100.052-61.455 100.330-61.332Q100.607-61.209 100.892-61.209Q101.365-61.209 101.588-61.498Q101.595-61.509 101.652-61.615Q101.709-61.720 101.757-61.763Q101.806-61.806 101.900-61.818L102.045-61.818Q102.236-61.798 102.295-61.584L102.295-61.529Q102.228-61.228 101.998-61.031Q101.767-60.834 101.455-60.742Q101.142-60.650 100.838-60.650Q100.353-60.650 99.914-60.878Q99.474-61.107 99.207-61.507Q98.939-61.908 98.939-62.400L98.939-62.459Q98.939-62.927 99.185-63.330Q99.431-63.732 99.839-63.966Q100.248-64.201 100.716-64.201Q101.220-64.201 101.574-63.978Q101.927-63.755 102.111-63.367Q102.295-62.978 102.295-62.474L102.295-62.416Q102.236-62.201 102.045-62.177M99.611-62.728L101.638-62.728Q101.591-63.138 101.353-63.390Q101.115-63.642 100.716-63.642Q100.322-63.642 100.015-63.380Q99.709-63.119 99.611-62.728M104.435-60.912L103.548-63.576L103.228-63.576Q103.029-63.599 102.978-63.818L102.978-63.904Q103.029-64.115 103.228-64.138L104.388-64.138Q104.584-64.119 104.634-63.904L104.634-63.818Q104.584-63.599 104.388-63.576L104.107-63.576L104.900-61.201L105.689-63.576L105.412-63.576Q105.213-63.599 105.162-63.818L105.162-63.904Q105.213-64.115 105.412-64.138L106.572-64.138Q106.767-64.115 106.818-63.904L106.818-63.818Q106.767-63.599 106.572-63.576L106.252-63.576L105.365-60.912Q105.322-60.798 105.220-60.724Q105.119-60.650 104.994-60.650L104.802-60.650Q104.685-60.650 104.582-60.722Q104.478-60.794 104.435-60.912M110.537-62.177L108.095-62.177Q108.150-61.900 108.347-61.677Q108.545-61.455 108.822-61.332Q109.099-61.209 109.384-61.209Q109.857-61.209 110.080-61.498Q110.088-61.509 110.144-61.615Q110.201-61.720 110.250-61.763Q110.298-61.806 110.392-61.818L110.537-61.818Q110.728-61.798 110.787-61.584L110.787-61.529Q110.720-61.228 110.490-61.031Q110.259-60.834 109.947-60.742Q109.634-60.650 109.330-60.650Q108.845-60.650 108.406-60.878Q107.966-61.107 107.699-61.507Q107.431-61.908 107.431-62.400L107.431-62.459Q107.431-62.927 107.677-63.330Q107.923-63.732 108.332-63.966Q108.740-64.201 109.209-64.201Q109.713-64.201 110.066-63.978Q110.420-63.755 110.603-63.367Q110.787-62.978 110.787-62.474L110.787-62.416Q110.728-62.201 110.537-62.177M108.103-62.728L110.130-62.728Q110.084-63.138 109.845-63.390Q109.607-63.642 109.209-63.642Q108.814-63.642 108.507-63.380Q108.201-63.119 108.103-62.728M111.720-60.927L111.720-61.017Q111.771-61.224 111.966-61.248L113.072-61.248L113.072-65.017L111.966-65.017Q111.771-65.041 111.720-65.255L111.720-65.345Q111.771-65.552 111.966-65.576L113.463-65.576Q113.654-65.552 113.713-65.345L113.713-61.248L114.814-61.248Q115.013-61.224 115.064-61.017L115.064-60.927Q115.013-60.712 114.814-60.689L111.966-60.689Q111.771-60.712 111.720-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 35.165)\">\u003Cpath d=\"M120.076-60.927L120.076-61.017Q120.115-61.224 120.322-61.248L120.728-61.248L121.658-62.466L120.787-63.576L120.369-63.576Q120.173-63.595 120.123-63.818L120.123-63.904Q120.173-64.115 120.369-64.138L121.529-64.138Q121.728-64.115 121.779-63.904L121.779-63.818Q121.728-63.599 121.529-63.576L121.420-63.576L121.916-62.919L122.392-63.576L122.275-63.576Q122.076-63.599 122.025-63.818L122.025-63.904Q122.076-64.115 122.275-64.138L123.435-64.138Q123.630-64.119 123.681-63.904L123.681-63.818Q123.630-63.599 123.435-63.576L123.025-63.576L122.177-62.466L123.138-61.248L123.545-61.248Q123.744-61.224 123.795-61.017L123.795-60.927Q123.755-60.712 123.545-60.689L122.392-60.689Q122.185-60.712 122.146-60.927L122.146-61.017Q122.185-61.224 122.392-61.248L122.521-61.248L121.916-62.103L121.330-61.248L121.474-61.248Q121.681-61.224 121.720-61.017L121.720-60.927Q121.681-60.712 121.474-60.689L120.322-60.689Q120.127-60.709 120.076-60.927M124.416-62.103Q124.416-62.388 124.572-62.642Q124.728-62.896 124.978-63.070Q125.228-63.244 125.513-63.330Q125.275-63.404 125.048-63.546Q124.822-63.689 124.679-63.898Q124.537-64.107 124.537-64.353Q124.537-64.751 124.783-65.046Q125.029-65.341 125.412-65.500Q125.795-65.658 126.185-65.658Q126.576-65.658 126.959-65.500Q127.341-65.341 127.588-65.043Q127.834-64.744 127.834-64.353Q127.834-64.107 127.691-63.900Q127.548-63.693 127.322-63.548Q127.095-63.404 126.857-63.330Q127.310-63.193 127.630-62.867Q127.951-62.541 127.951-62.103Q127.951-61.666 127.693-61.322Q127.435-60.978 127.025-60.794Q126.615-60.611 126.185-60.611Q125.755-60.611 125.345-60.793Q124.935-60.974 124.675-61.318Q124.416-61.662 124.416-62.103M125.056-62.103Q125.056-61.830 125.222-61.615Q125.388-61.400 125.650-61.285Q125.912-61.169 126.185-61.169Q126.459-61.169 126.718-61.285Q126.978-61.400 127.144-61.617Q127.310-61.834 127.310-62.103Q127.310-62.380 127.144-62.597Q126.978-62.814 126.718-62.931Q126.459-63.048 126.185-63.048Q125.912-63.048 125.650-62.931Q125.388-62.814 125.222-62.599Q125.056-62.384 125.056-62.103M125.177-64.353Q125.177-64.115 125.334-63.947Q125.490-63.779 125.726-63.695Q125.963-63.611 126.185-63.611Q126.404-63.611 126.642-63.695Q126.880-63.779 127.037-63.949Q127.193-64.119 127.193-64.353Q127.193-64.587 127.037-64.757Q126.880-64.927 126.642-65.011Q126.404-65.095 126.185-65.095Q125.963-65.095 125.726-65.011Q125.490-64.927 125.334-64.759Q125.177-64.591 125.177-64.353M130.431-60.611Q129.791-60.611 129.404-60.988Q129.017-61.365 128.859-61.937Q128.701-62.509 128.701-63.138Q128.701-63.603 128.861-64.058Q129.021-64.513 129.310-64.873Q129.599-65.232 130.007-65.445Q130.416-65.658 130.904-65.658Q131.177-65.658 131.427-65.560Q131.677-65.462 131.830-65.267Q131.982-65.072 131.982-64.779Q131.982-64.603 131.869-64.482Q131.755-64.361 131.584-64.361Q131.408-64.361 131.291-64.474Q131.173-64.587 131.173-64.759Q131.173-64.880 131.248-65.001Q131.138-65.095 130.904-65.095Q130.486-65.095 130.150-64.855Q129.814-64.615 129.609-64.228Q129.404-63.841 129.357-63.443Q129.595-63.642 129.904-63.750Q130.213-63.857 130.533-63.857Q130.873-63.857 131.172-63.732Q131.470-63.607 131.689-63.388Q131.908-63.169 132.033-62.871Q132.158-62.572 132.158-62.232Q132.158-61.884 132.019-61.584Q131.880-61.283 131.640-61.066Q131.400-60.849 131.086-60.730Q130.771-60.611 130.431-60.611M129.447-62.154Q129.509-61.892 129.638-61.668Q129.767-61.443 129.966-61.306Q130.166-61.169 130.431-61.169Q130.884-61.169 131.201-61.476Q131.517-61.783 131.517-62.232Q131.517-62.513 131.382-62.759Q131.248-63.005 131.011-63.148Q130.775-63.291 130.478-63.291Q130.088-63.291 129.755-63.064Q129.423-62.837 129.423-62.466Q129.423-62.427 129.439-62.349Q129.455-62.271 129.455-62.232Q129.455-62.205 129.453-62.189Q129.451-62.173 129.447-62.154M136.052-62.826L133.310-62.826Q133.185-62.837 133.099-62.923Q133.013-63.009 133.013-63.138Q133.013-63.267 133.099-63.349Q133.185-63.431 133.310-63.443L136.052-63.443Q136.177-63.431 136.259-63.349Q136.341-63.267 136.341-63.138Q136.341-63.009 136.259-62.923Q136.177-62.837 136.052-62.826M138.923-60.611Q138.283-60.611 137.896-60.988Q137.509-61.365 137.351-61.937Q137.193-62.509 137.193-63.138Q137.193-63.603 137.353-64.058Q137.513-64.513 137.802-64.873Q138.091-65.232 138.500-65.445Q138.908-65.658 139.396-65.658Q139.670-65.658 139.920-65.560Q140.170-65.462 140.322-65.267Q140.474-65.072 140.474-64.779Q140.474-64.603 140.361-64.482Q140.248-64.361 140.076-64.361Q139.900-64.361 139.783-64.474Q139.666-64.587 139.666-64.759Q139.666-64.880 139.740-65.001Q139.630-65.095 139.396-65.095Q138.978-65.095 138.642-64.855Q138.306-64.615 138.101-64.228Q137.896-63.841 137.849-63.443Q138.088-63.642 138.396-63.750Q138.705-63.857 139.025-63.857Q139.365-63.857 139.664-63.732Q139.963-63.607 140.181-63.388Q140.400-63.169 140.525-62.871Q140.650-62.572 140.650-62.232Q140.650-61.884 140.511-61.584Q140.373-61.283 140.132-61.066Q139.892-60.849 139.578-60.730Q139.263-60.611 138.923-60.611M137.939-62.154Q138.002-61.892 138.130-61.668Q138.259-61.443 138.459-61.306Q138.658-61.169 138.923-61.169Q139.377-61.169 139.693-61.476Q140.009-61.783 140.009-62.232Q140.009-62.513 139.875-62.759Q139.740-63.005 139.504-63.148Q139.267-63.291 138.970-63.291Q138.580-63.291 138.248-63.064Q137.916-62.837 137.916-62.466Q137.916-62.427 137.931-62.349Q137.947-62.271 137.947-62.232Q137.947-62.205 137.945-62.189Q137.943-62.173 137.939-62.154M143.607-62.033L141.537-62.033Q141.341-62.056 141.287-62.275L141.287-62.513Q141.287-62.587 141.330-62.658L143.177-65.529Q143.263-65.658 143.416-65.658L143.873-65.658Q143.982-65.658 144.060-65.580Q144.138-65.501 144.138-65.392L144.138-62.591L144.802-62.591Q144.998-62.568 145.048-62.361L145.048-62.275Q144.998-62.056 144.802-62.033L144.138-62.033L144.138-61.248L144.713-61.248Q144.920-61.224 144.959-61.017L144.959-60.927Q144.920-60.712 144.713-60.689L143.033-60.689Q142.826-60.712 142.783-60.927L142.783-61.017Q142.826-61.224 143.033-61.248L143.607-61.248L143.607-62.033M143.607-65.185L141.935-62.591L143.607-62.591\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-30.731 16.134h182.097V-6.63H-30.73Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-62.004 67.441)\">\u003Cpath d=\"M60.724-61.802Q60.724-62.248 61.138-62.505Q61.552-62.763 62.093-62.863Q62.634-62.962 63.142-62.970Q63.142-63.185 63.007-63.337Q62.873-63.490 62.666-63.566Q62.459-63.642 62.248-63.642Q61.904-63.642 61.744-63.619L61.744-63.560Q61.744-63.392 61.625-63.277Q61.505-63.162 61.341-63.162Q61.166-63.162 61.050-63.285Q60.935-63.408 60.935-63.576Q60.935-63.982 61.316-64.091Q61.697-64.201 62.255-64.201Q62.525-64.201 62.793-64.123Q63.060-64.044 63.285-63.894Q63.509-63.744 63.646-63.523Q63.783-63.302 63.783-63.025L63.783-61.306Q63.783-61.248 64.310-61.248Q64.505-61.228 64.556-61.017L64.556-60.927Q64.505-60.712 64.310-60.689L64.166-60.689Q63.822-60.689 63.593-60.736Q63.365-60.783 63.220-60.970Q62.759-60.650 62.052-60.650Q61.716-60.650 61.412-60.791Q61.107-60.931 60.916-61.193Q60.724-61.455 60.724-61.802M61.365-61.794Q61.365-61.521 61.607-61.365Q61.849-61.209 62.134-61.209Q62.353-61.209 62.586-61.267Q62.818-61.326 62.980-61.464Q63.142-61.603 63.142-61.826L63.142-62.416Q62.861-62.416 62.445-62.359Q62.029-62.302 61.697-62.164Q61.365-62.025 61.365-61.794M65.150-60.888L65.150-61.802Q65.177-62.009 65.388-62.033L65.556-62.033Q65.720-62.009 65.779-61.849Q65.982-61.209 66.709-61.209Q66.916-61.209 67.144-61.244Q67.373-61.279 67.541-61.394Q67.709-61.509 67.709-61.712Q67.709-61.923 67.486-62.037Q67.263-62.150 66.990-62.193L66.291-62.306Q65.150-62.517 65.150-63.240Q65.150-63.529 65.295-63.718Q65.439-63.908 65.679-64.015Q65.920-64.123 66.175-64.162Q66.431-64.201 66.709-64.201Q66.959-64.201 67.152-64.171Q67.345-64.142 67.509-64.064Q67.588-64.181 67.716-64.201L67.795-64.201Q67.892-64.189 67.955-64.126Q68.017-64.064 68.029-63.970L68.029-63.263Q68.017-63.169 67.955-63.103Q67.892-63.037 67.795-63.025L67.627-63.025Q67.533-63.037 67.466-63.103Q67.400-63.169 67.388-63.263Q67.388-63.642 66.693-63.642Q66.345-63.642 66.027-63.560Q65.709-63.478 65.709-63.232Q65.709-62.966 66.380-62.857L67.084-62.736Q67.568-62.654 67.918-62.406Q68.267-62.158 68.267-61.712Q68.267-61.322 68.031-61.080Q67.795-60.837 67.445-60.744Q67.095-60.650 66.709-60.650Q66.130-60.650 65.732-60.904Q65.662-60.779 65.613-60.722Q65.564-60.666 65.459-60.650L65.388-60.650Q65.173-60.673 65.150-60.888M69.396-60.888L69.396-61.802Q69.423-62.009 69.634-62.033L69.802-62.033Q69.966-62.009 70.025-61.849Q70.228-61.209 70.955-61.209Q71.162-61.209 71.390-61.244Q71.619-61.279 71.787-61.394Q71.955-61.509 71.955-61.712Q71.955-61.923 71.732-62.037Q71.509-62.150 71.236-62.193L70.537-62.306Q69.396-62.517 69.396-63.240Q69.396-63.529 69.541-63.718Q69.685-63.908 69.925-64.015Q70.166-64.123 70.422-64.162Q70.677-64.201 70.955-64.201Q71.205-64.201 71.398-64.171Q71.591-64.142 71.755-64.064Q71.834-64.181 71.963-64.201L72.041-64.201Q72.138-64.189 72.201-64.126Q72.263-64.064 72.275-63.970L72.275-63.263Q72.263-63.169 72.201-63.103Q72.138-63.037 72.041-63.025L71.873-63.025Q71.779-63.037 71.713-63.103Q71.646-63.169 71.634-63.263Q71.634-63.642 70.939-63.642Q70.591-63.642 70.273-63.560Q69.955-63.478 69.955-63.232Q69.955-62.966 70.627-62.857L71.330-62.736Q71.814-62.654 72.164-62.406Q72.513-62.158 72.513-61.712Q72.513-61.322 72.277-61.080Q72.041-60.837 71.691-60.744Q71.341-60.650 70.955-60.650Q70.377-60.650 69.978-60.904Q69.908-60.779 69.859-60.722Q69.810-60.666 69.705-60.650L69.634-60.650Q69.420-60.673 69.396-60.888M76.568-62.177L74.127-62.177Q74.181-61.900 74.379-61.677Q74.576-61.455 74.853-61.332Q75.130-61.209 75.416-61.209Q75.888-61.209 76.111-61.498Q76.119-61.509 76.175-61.615Q76.232-61.720 76.281-61.763Q76.330-61.806 76.423-61.818L76.568-61.818Q76.759-61.798 76.818-61.584L76.818-61.529Q76.752-61.228 76.521-61.031Q76.291-60.834 75.978-60.742Q75.666-60.650 75.361-60.650Q74.877-60.650 74.437-60.878Q73.998-61.107 73.730-61.507Q73.463-61.908 73.463-62.400L73.463-62.459Q73.463-62.927 73.709-63.330Q73.955-63.732 74.363-63.966Q74.771-64.201 75.240-64.201Q75.744-64.201 76.097-63.978Q76.451-63.755 76.634-63.367Q76.818-62.978 76.818-62.474L76.818-62.416Q76.759-62.201 76.568-62.177M74.134-62.728L76.162-62.728Q76.115-63.138 75.877-63.390Q75.638-63.642 75.240-63.642Q74.845-63.642 74.539-63.380Q74.232-63.119 74.134-62.728M77.248-60.927L77.248-61.017Q77.298-61.228 77.494-61.248L77.693-61.248L77.693-63.576L77.494-63.576Q77.287-63.599 77.248-63.818L77.248-63.904Q77.298-64.119 77.494-64.138L77.974-64.138Q78.166-64.115 78.224-63.904Q78.545-64.177 78.959-64.177Q79.150-64.177 79.318-64.068Q79.486-63.959 79.560-63.787Q79.736-63.978 79.959-64.078Q80.181-64.177 80.423-64.177Q80.841-64.177 80.996-63.835Q81.150-63.494 81.150-63.025L81.150-61.248L81.349-61.248Q81.560-61.224 81.599-61.017L81.599-60.927Q81.548-60.712 81.349-60.689L80.533-60.689Q80.338-60.712 80.287-60.927L80.287-61.017Q80.338-61.224 80.533-61.248L80.623-61.248L80.623-62.994Q80.623-63.619 80.373-63.619Q80.041-63.619 79.863-63.308Q79.685-62.998 79.685-62.634L79.685-61.248L79.888-61.248Q80.095-61.224 80.134-61.017L80.134-60.927Q80.084-60.712 79.888-60.689L79.072-60.689Q78.873-60.712 78.822-60.927L78.822-61.017Q78.873-61.224 79.072-61.248L79.158-61.248L79.158-62.994Q79.158-63.619 78.912-63.619Q78.580-63.619 78.402-63.306Q78.224-62.994 78.224-62.634L78.224-61.248L78.423-61.248Q78.630-61.224 78.670-61.017L78.670-60.927Q78.619-60.709 78.423-60.689L77.494-60.689Q77.287-60.712 77.248-60.927M82.291-60.927L82.291-65.017L81.869-65.017Q81.662-65.041 81.619-65.255L81.619-65.345Q81.662-65.552 81.869-65.576L82.685-65.576Q82.880-65.552 82.931-65.345L82.931-63.834Q83.142-64.001 83.406-64.089Q83.670-64.177 83.939-64.177Q84.279-64.177 84.576-64.033Q84.873-63.888 85.088-63.636Q85.302-63.384 85.418-63.072Q85.533-62.759 85.533-62.416Q85.533-61.951 85.306-61.541Q85.080-61.130 84.693-60.890Q84.306-60.650 83.838-60.650Q83.318-60.650 82.931-61.017L82.931-60.927Q82.880-60.709 82.685-60.689L82.541-60.689Q82.349-60.712 82.291-60.927M83.795-61.209Q84.103-61.209 84.353-61.378Q84.603-61.548 84.748-61.830Q84.892-62.111 84.892-62.416Q84.892-62.705 84.767-62.984Q84.642-63.263 84.410-63.441Q84.177-63.619 83.877-63.619Q83.556-63.619 83.295-63.433Q83.033-63.248 82.931-62.947L82.931-62.095Q83.021-61.728 83.242-61.468Q83.463-61.209 83.795-61.209M86.244-60.927L86.244-61.017Q86.295-61.224 86.490-61.248L87.595-61.248L87.595-65.017L86.490-65.017Q86.295-65.041 86.244-65.255L86.244-65.345Q86.295-65.552 86.490-65.576L87.986-65.576Q88.177-65.552 88.236-65.345L88.236-61.248L89.338-61.248Q89.537-61.224 89.588-61.017L89.588-60.927Q89.537-60.712 89.338-60.689L86.490-60.689Q86.295-60.712 86.244-60.927M93.552-62.177L91.111-62.177Q91.166-61.900 91.363-61.677Q91.560-61.455 91.838-61.332Q92.115-61.209 92.400-61.209Q92.873-61.209 93.095-61.498Q93.103-61.509 93.160-61.615Q93.216-61.720 93.265-61.763Q93.314-61.806 93.408-61.818L93.552-61.818Q93.744-61.798 93.802-61.584L93.802-61.529Q93.736-61.228 93.505-61.031Q93.275-60.834 92.963-60.742Q92.650-60.650 92.345-60.650Q91.861-60.650 91.422-60.878Q90.982-61.107 90.714-61.507Q90.447-61.908 90.447-62.400L90.447-62.459Q90.447-62.927 90.693-63.330Q90.939-63.732 91.347-63.966Q91.755-64.201 92.224-64.201Q92.728-64.201 93.082-63.978Q93.435-63.755 93.619-63.367Q93.802-62.978 93.802-62.474L93.802-62.416Q93.744-62.201 93.552-62.177M91.119-62.728L93.146-62.728Q93.099-63.138 92.861-63.390Q92.623-63.642 92.224-63.642Q91.830-63.642 91.523-63.380Q91.216-63.119 91.119-62.728M94.509-60.927L94.509-61.017Q94.568-61.224 94.759-61.248L95.470-61.248L95.470-63.576L94.759-63.576Q94.564-63.599 94.509-63.818L94.509-63.904Q94.568-64.115 94.759-64.138L95.861-64.138Q96.060-64.119 96.111-63.904L96.111-63.576Q96.373-63.861 96.728-64.019Q97.084-64.177 97.470-64.177Q97.763-64.177 97.998-64.043Q98.232-63.908 98.232-63.642Q98.232-63.474 98.123-63.357Q98.013-63.240 97.845-63.240Q97.693-63.240 97.578-63.351Q97.463-63.462 97.463-63.619Q97.088-63.619 96.773-63.418Q96.459-63.216 96.285-62.882Q96.111-62.548 96.111-62.169L96.111-61.248L97.056-61.248Q97.263-61.224 97.302-61.017L97.302-60.927Q97.263-60.712 97.056-60.689L94.759-60.689Q94.568-60.712 94.509-60.927\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-62.004 67.441)\">\u003Cpath d=\"M103.753-62.138L101.499-62.138L101.499-62.689L103.753-62.689L103.753-62.138M104.706-60.154Q104.706-60.388 104.805-60.603Q104.905-60.818 105.081-60.962Q105.491-61.263 105.733-61.716Q105.975-62.169 105.975-62.666L105.975-63.056Q105.975-63.091 106.003-63.119Q106.030-63.146 106.065-63.146L106.171-63.146Q106.206-63.146 106.231-63.117Q106.256-63.087 106.256-63.056L106.256-62.650Q106.256-62.013 106.034-61.466Q105.952-61.259 105.776-61.003Q105.600-60.748 105.524-60.584Q105.448-60.419 105.448-60.146Q105.448-59.853 105.493-59.677Q105.538-59.502 105.682-59.408Q105.827-59.314 106.120-59.314Q107.014-59.314 107.362-59.759Q107.202-59.759 107.094-59.877Q106.987-59.994 106.987-60.154Q106.987-60.255 107.038-60.347Q107.088-60.439 107.178-60.492Q107.268-60.544 107.378-60.544Q107.487-60.544 107.577-60.492Q107.667-60.439 107.717-60.347Q107.768-60.255 107.768-60.154Q107.768-59.865 107.616-59.650Q107.463-59.435 107.213-59.304Q106.963-59.173 106.680-59.115Q106.397-59.056 106.120-59.056Q105.526-59.056 105.116-59.322Q104.706-59.587 104.706-60.154M105.659-64.232Q105.659-64.423 105.792-64.556Q105.924-64.689 106.120-64.689Q106.311-64.689 106.444-64.556Q106.577-64.423 106.577-64.232Q106.577-64.041 106.440-63.904Q106.303-63.767 106.120-63.767Q105.932-63.767 105.796-63.904Q105.659-64.041 105.659-64.232\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-62.004 67.441)\">\u003Cpath d=\"M111.027-60.927L111.027-61.017Q111.078-61.228 111.273-61.248L111.473-61.248L111.473-63.576L111.273-63.576Q111.066-63.599 111.027-63.818L111.027-63.904Q111.078-64.119 111.273-64.138L111.754-64.138Q111.945-64.115 112.004-63.904Q112.324-64.177 112.738-64.177Q112.930-64.177 113.098-64.068Q113.266-63.959 113.340-63.787Q113.516-63.978 113.738-64.078Q113.961-64.177 114.203-64.177Q114.621-64.177 114.775-63.835Q114.930-63.494 114.930-63.025L114.930-61.248L115.129-61.248Q115.340-61.224 115.379-61.017L115.379-60.927Q115.328-60.712 115.129-60.689L114.312-60.689Q114.117-60.712 114.066-60.927L114.066-61.017Q114.117-61.224 114.312-61.248L114.402-61.248L114.402-62.994Q114.402-63.619 114.152-63.619Q113.820-63.619 113.643-63.308Q113.465-62.998 113.465-62.634L113.465-61.248L113.668-61.248Q113.875-61.224 113.914-61.017L113.914-60.927Q113.863-60.712 113.668-60.689L112.852-60.689Q112.652-60.712 112.602-60.927L112.602-61.017Q112.652-61.224 112.852-61.248L112.937-61.248L112.937-62.994Q112.937-63.619 112.691-63.619Q112.359-63.619 112.182-63.306Q112.004-62.994 112.004-62.634L112.004-61.248L112.203-61.248Q112.410-61.224 112.449-61.017L112.449-60.927Q112.398-60.709 112.203-60.689L111.273-60.689Q111.066-60.712 111.027-60.927M115.734-61.802Q115.734-62.248 116.148-62.505Q116.562-62.763 117.103-62.863Q117.644-62.962 118.152-62.970Q118.152-63.185 118.018-63.337Q117.883-63.490 117.676-63.566Q117.469-63.642 117.258-63.642Q116.914-63.642 116.754-63.619L116.754-63.560Q116.754-63.392 116.635-63.277Q116.516-63.162 116.352-63.162Q116.176-63.162 116.061-63.285Q115.945-63.408 115.945-63.576Q115.945-63.982 116.326-64.091Q116.707-64.201 117.266-64.201Q117.535-64.201 117.803-64.123Q118.070-64.044 118.295-63.894Q118.519-63.744 118.656-63.523Q118.793-63.302 118.793-63.025L118.793-61.306Q118.793-61.248 119.320-61.248Q119.516-61.228 119.566-61.017L119.566-60.927Q119.516-60.712 119.320-60.689L119.176-60.689Q118.832-60.689 118.603-60.736Q118.375-60.783 118.230-60.970Q117.769-60.650 117.062-60.650Q116.727-60.650 116.422-60.791Q116.117-60.931 115.926-61.193Q115.734-61.455 115.734-61.802M116.375-61.794Q116.375-61.521 116.617-61.365Q116.859-61.209 117.144-61.209Q117.363-61.209 117.596-61.267Q117.828-61.326 117.990-61.464Q118.152-61.603 118.152-61.826L118.152-62.416Q117.871-62.416 117.455-62.359Q117.039-62.302 116.707-62.164Q116.375-62.025 116.375-61.794M120.133-62.416Q120.133-62.896 120.377-63.310Q120.621-63.724 121.037-63.962Q121.453-64.201 121.934-64.201Q122.488-64.201 122.867-64.091Q123.246-63.982 123.246-63.576Q123.246-63.408 123.133-63.285Q123.019-63.162 122.848-63.162Q122.676-63.162 122.557-63.277Q122.437-63.392 122.437-63.560L122.437-63.619Q122.277-63.642 121.941-63.642Q121.613-63.642 121.346-63.472Q121.078-63.302 120.926-63.019Q120.773-62.736 120.773-62.416Q120.773-62.095 120.945-61.814Q121.117-61.533 121.402-61.371Q121.687-61.209 122.016-61.209Q122.328-61.209 122.455-61.312Q122.582-61.416 122.699-61.605Q122.816-61.794 122.934-61.810L123.102-61.810Q123.207-61.798 123.271-61.730Q123.336-61.662 123.336-61.560Q123.336-61.513 123.316-61.474Q123.207-61.181 123.004-61.002Q122.801-60.822 122.525-60.736Q122.250-60.650 121.934-60.650Q121.449-60.650 121.033-60.888Q120.617-61.127 120.375-61.529Q120.133-61.931 120.133-62.416M123.891-60.927L123.891-61.017Q123.934-61.224 124.141-61.248L124.562-61.248L124.562-65.017L124.141-65.017Q123.934-65.041 123.891-65.255L123.891-65.345Q123.934-65.552 124.141-65.576L124.957-65.576Q125.152-65.552 125.203-65.345L125.203-63.794Q125.664-64.177 126.262-64.177Q126.609-64.177 126.848-64.037Q127.086-63.896 127.201-63.638Q127.316-63.380 127.316-63.025L127.316-61.248L127.742-61.248Q127.949-61.224 127.988-61.017L127.988-60.927Q127.949-60.712 127.742-60.689L126.348-60.689Q126.152-60.712 126.102-60.927L126.102-61.017Q126.152-61.228 126.348-61.248L126.676-61.248L126.676-62.994Q126.676-63.302 126.586-63.460Q126.496-63.619 126.203-63.619Q125.934-63.619 125.705-63.488Q125.477-63.357 125.340-63.128Q125.203-62.900 125.203-62.634L125.203-61.248L125.629-61.248Q125.836-61.224 125.875-61.017L125.875-60.927Q125.836-60.712 125.629-60.689L124.141-60.689Q123.934-60.712 123.891-60.927M128.684-60.927L128.684-61.017Q128.734-61.224 128.930-61.248L129.969-61.248L129.969-63.576L128.996-63.576Q128.797-63.599 128.746-63.818L128.746-63.904Q128.797-64.115 128.996-64.138L130.363-64.138Q130.559-64.119 130.609-63.904L130.609-61.248L131.523-61.248Q131.719-61.224 131.769-61.017L131.769-60.927Q131.719-60.712 131.523-60.689L128.930-60.689Q128.734-60.712 128.684-60.927M129.715-65.115L129.715-65.169Q129.715-65.341 129.852-65.462Q129.988-65.584 130.164-65.584Q130.336-65.584 130.473-65.462Q130.609-65.341 130.609-65.169L130.609-65.115Q130.609-64.939 130.473-64.818Q130.336-64.697 130.164-64.697Q129.988-64.697 129.852-64.818Q129.715-64.939 129.715-65.115M132.383-60.927L132.383-61.017Q132.426-61.224 132.633-61.248L133.055-61.248L133.055-63.576L132.633-63.576Q132.426-63.599 132.383-63.818L132.383-63.904Q132.430-64.115 132.633-64.138L133.449-64.138Q133.644-64.115 133.695-63.904L133.695-63.818L133.687-63.794Q133.914-63.974 134.187-64.076Q134.461-64.177 134.754-64.177Q135.102-64.177 135.340-64.037Q135.578-63.896 135.693-63.638Q135.809-63.380 135.809-63.025L135.809-61.248L136.234-61.248Q136.441-61.224 136.480-61.017L136.480-60.927Q136.441-60.712 136.234-60.689L134.840-60.689Q134.644-60.712 134.594-60.927L134.594-61.017Q134.644-61.228 134.840-61.248L135.168-61.248L135.168-62.994Q135.168-63.302 135.078-63.460Q134.988-63.619 134.695-63.619Q134.426-63.619 134.197-63.488Q133.969-63.357 133.832-63.128Q133.695-62.900 133.695-62.634L133.695-61.248L134.121-61.248Q134.328-61.224 134.367-61.017L134.367-60.927Q134.328-60.712 134.121-60.689L132.633-60.689Q132.426-60.712 132.383-60.927M140.070-62.177L137.629-62.177Q137.684-61.900 137.881-61.677Q138.078-61.455 138.355-61.332Q138.633-61.209 138.918-61.209Q139.391-61.209 139.613-61.498Q139.621-61.509 139.678-61.615Q139.734-61.720 139.783-61.763Q139.832-61.806 139.926-61.818L140.070-61.818Q140.262-61.798 140.320-61.584L140.320-61.529Q140.254-61.228 140.023-61.031Q139.793-60.834 139.480-60.742Q139.168-60.650 138.863-60.650Q138.379-60.650 137.939-60.878Q137.500-61.107 137.232-61.507Q136.965-61.908 136.965-62.400L136.965-62.459Q136.965-62.927 137.211-63.330Q137.457-63.732 137.865-63.966Q138.273-64.201 138.742-64.201Q139.246-64.201 139.600-63.978Q139.953-63.755 140.137-63.367Q140.320-62.978 140.320-62.474L140.320-62.416Q140.262-62.201 140.070-62.177M137.637-62.728L139.664-62.728Q139.617-63.138 139.379-63.390Q139.141-63.642 138.742-63.642Q138.348-63.642 138.041-63.380Q137.734-63.119 137.637-62.728M144.301-62.826L141.559-62.826Q141.434-62.837 141.348-62.923Q141.262-63.009 141.262-63.138Q141.262-63.267 141.348-63.349Q141.434-63.431 141.559-63.443L144.301-63.443Q144.426-63.431 144.508-63.349Q144.590-63.267 144.590-63.138Q144.590-63.009 144.508-62.923Q144.426-62.837 144.301-62.826M145.609-62.416Q145.609-62.896 145.853-63.310Q146.098-63.724 146.514-63.962Q146.930-64.201 147.410-64.201Q147.965-64.201 148.344-64.091Q148.723-63.982 148.723-63.576Q148.723-63.408 148.609-63.285Q148.496-63.162 148.324-63.162Q148.152-63.162 148.033-63.277Q147.914-63.392 147.914-63.560L147.914-63.619Q147.754-63.642 147.418-63.642Q147.090-63.642 146.822-63.472Q146.555-63.302 146.402-63.019Q146.250-62.736 146.250-62.416Q146.250-62.095 146.422-61.814Q146.594-61.533 146.879-61.371Q147.164-61.209 147.492-61.209Q147.805-61.209 147.932-61.312Q148.059-61.416 148.176-61.605Q148.293-61.794 148.410-61.810L148.578-61.810Q148.684-61.798 148.748-61.730Q148.812-61.662 148.812-61.560Q148.812-61.513 148.793-61.474Q148.684-61.181 148.480-61.002Q148.277-60.822 148.002-60.736Q147.727-60.650 147.410-60.650Q146.926-60.650 146.510-60.888Q146.094-61.127 145.852-61.529Q145.609-61.931 145.609-62.416M151.418-60.650Q150.945-60.650 150.561-60.894Q150.176-61.138 149.953-61.548Q149.730-61.959 149.730-62.416Q149.730-62.759 149.855-63.082Q149.980-63.404 150.211-63.658Q150.441-63.912 150.748-64.056Q151.055-64.201 151.418-64.201Q151.781-64.201 152.094-64.054Q152.406-63.908 152.629-63.662Q152.852-63.416 152.978-63.095Q153.105-62.775 153.105-62.416Q153.105-61.959 152.881-61.546Q152.656-61.134 152.271-60.892Q151.887-60.650 151.418-60.650M151.418-61.209Q151.883-61.209 152.174-61.603Q152.465-61.998 152.465-62.482Q152.465-62.775 152.330-63.043Q152.195-63.310 151.955-63.476Q151.715-63.642 151.418-63.642Q151.113-63.642 150.875-63.476Q150.637-63.310 150.502-63.043Q150.367-62.775 150.367-62.482Q150.367-62.002 150.660-61.605Q150.953-61.209 151.418-61.209M155.406-60.650Q154.941-60.650 154.576-60.900Q154.211-61.150 154.006-61.554Q153.801-61.959 153.801-62.416Q153.801-62.759 153.926-63.080Q154.051-63.400 154.283-63.650Q154.516-63.900 154.820-64.039Q155.125-64.177 155.480-64.177Q155.992-64.177 156.398-63.857L156.398-65.017L155.977-65.017Q155.766-65.041 155.727-65.255L155.727-65.345Q155.766-65.552 155.977-65.576L156.789-65.576Q156.988-65.552 157.039-65.345L157.039-61.248L157.465-61.248Q157.672-61.224 157.711-61.017L157.711-60.927Q157.672-60.712 157.465-60.689L156.648-60.689Q156.449-60.712 156.398-60.927L156.398-61.056Q156.203-60.865 155.941-60.757Q155.680-60.650 155.406-60.650M155.445-61.209Q155.805-61.209 156.057-61.478Q156.309-61.748 156.398-62.123L156.398-62.955Q156.340-63.142 156.213-63.293Q156.086-63.443 155.908-63.531Q155.730-63.619 155.535-63.619Q155.227-63.619 154.977-63.449Q154.727-63.279 154.582-62.994Q154.437-62.709 154.437-62.408Q154.437-61.959 154.723-61.584Q155.008-61.209 155.445-61.209M161.301-62.177L158.859-62.177Q158.914-61.900 159.111-61.677Q159.309-61.455 159.586-61.332Q159.863-61.209 160.148-61.209Q160.621-61.209 160.844-61.498Q160.852-61.509 160.908-61.615Q160.965-61.720 161.014-61.763Q161.062-61.806 161.156-61.818L161.301-61.818Q161.492-61.798 161.551-61.584L161.551-61.529Q161.484-61.228 161.254-61.031Q161.023-60.834 160.711-60.742Q160.398-60.650 160.094-60.650Q159.609-60.650 159.170-60.878Q158.730-61.107 158.463-61.507Q158.195-61.908 158.195-62.400L158.195-62.459Q158.195-62.927 158.441-63.330Q158.687-63.732 159.096-63.966Q159.504-64.201 159.973-64.201Q160.477-64.201 160.830-63.978Q161.184-63.755 161.367-63.367Q161.551-62.978 161.551-62.474L161.551-62.416Q161.492-62.201 161.301-62.177M158.867-62.728L160.894-62.728Q160.848-63.138 160.609-63.390Q160.371-63.642 159.973-63.642Q159.578-63.642 159.271-63.380Q158.965-63.119 158.867-62.728\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-62.004 67.441)\">\u003Cpath d=\"M166.068-60.689L165.787-60.689L165.787-65.408Q165.787-65.623 165.725-65.718Q165.662-65.814 165.545-65.835Q165.428-65.857 165.182-65.857L165.182-66.154L166.404-66.240L166.404-63.752Q166.881-64.216 167.580-64.216Q168.061-64.216 168.469-63.972Q168.877-63.728 169.113-63.314Q169.350-62.900 169.350-62.416Q169.350-62.041 169.201-61.712Q169.053-61.384 168.783-61.132Q168.514-60.880 168.170-60.746Q167.826-60.611 167.467-60.611Q167.146-60.611 166.848-60.759Q166.549-60.908 166.342-61.169L166.068-60.689M166.428-63.361L166.428-61.521Q166.580-61.224 166.840-61.044Q167.100-60.865 167.412-60.865Q167.838-60.865 168.105-61.084Q168.373-61.302 168.488-61.648Q168.603-61.994 168.603-62.416Q168.603-63.064 168.355-63.513Q168.107-63.962 167.510-63.962Q167.174-63.962 166.885-63.804Q166.596-63.646 166.428-63.361\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-62.004 67.441)\">\u003Cpath d=\"M170.058-59.392Q170.172-59.314 170.347-59.314Q170.636-59.314 170.857-59.527Q171.078-59.740 171.203-60.041L171.492-60.689L170.218-63.576Q170.136-63.752 169.992-63.796Q169.847-63.841 169.578-63.841L169.578-64.138L171.297-64.138L171.297-63.841Q170.875-63.841 170.875-63.658Q170.875-63.646 170.890-63.576L171.828-61.451L172.660-63.361Q172.699-63.451 172.699-63.529Q172.699-63.669 172.597-63.755Q172.496-63.841 172.355-63.841L172.355-64.138L173.707-64.138L173.707-63.841Q173.453-63.841 173.259-63.716Q173.066-63.591 172.961-63.361L171.515-60.041Q171.402-59.787 171.236-59.564Q171.070-59.341 170.841-59.199Q170.613-59.056 170.347-59.056Q170.050-59.056 169.810-59.248Q169.570-59.439 169.570-59.728Q169.570-59.884 169.675-59.986Q169.781-60.087 169.929-60.087Q170.035-60.087 170.115-60.041Q170.195-59.994 170.242-59.916Q170.289-59.837 170.289-59.728Q170.289-59.607 170.228-59.519Q170.168-59.431 170.058-59.392M174.746-61.650L174.746-63.841L174.043-63.841L174.043-64.095Q174.398-64.095 174.640-64.328Q174.882-64.560 174.994-64.908Q175.105-65.255 175.105-65.611L175.386-65.611L175.386-64.138L176.562-64.138L176.562-63.841L175.386-63.841L175.386-61.666Q175.386-61.345 175.506-61.117Q175.625-60.888 175.906-60.888Q176.086-60.888 176.203-61.011Q176.320-61.134 176.373-61.314Q176.425-61.494 176.425-61.666L176.425-62.138L176.707-62.138L176.707-61.650Q176.707-61.396 176.601-61.156Q176.496-60.916 176.298-60.763Q176.101-60.611 175.843-60.611Q175.527-60.611 175.275-60.734Q175.023-60.857 174.884-61.091Q174.746-61.326 174.746-61.650M177.425-62.443Q177.425-62.923 177.658-63.339Q177.890-63.755 178.300-64.005Q178.711-64.255 179.187-64.255Q179.918-64.255 180.316-63.814Q180.714-63.373 180.714-62.642Q180.714-62.537 180.621-62.513L178.172-62.513L178.172-62.443Q178.172-62.033 178.293-61.677Q178.414-61.322 178.685-61.105Q178.957-60.888 179.386-60.888Q179.750-60.888 180.047-61.117Q180.343-61.345 180.445-61.697Q180.453-61.744 180.539-61.759L180.621-61.759Q180.714-61.732 180.714-61.650Q180.714-61.642 180.707-61.611Q180.644-61.384 180.506-61.201Q180.367-61.017 180.175-60.884Q179.984-60.752 179.765-60.681Q179.547-60.611 179.308-60.611Q178.937-60.611 178.599-60.748Q178.261-60.884 177.994-61.136Q177.726-61.388 177.576-61.728Q177.425-62.068 177.425-62.443M178.179-62.752L180.140-62.752Q180.140-63.056 180.039-63.347Q179.937-63.638 179.720-63.820Q179.504-64.001 179.187-64.001Q178.886-64.001 178.656-63.814Q178.425-63.627 178.302-63.335Q178.179-63.044 178.179-62.752M181.246-60.697L181.246-61.919Q181.246-61.947 181.277-61.978Q181.308-62.009 181.332-62.009L181.437-62.009Q181.507-62.009 181.523-61.947Q181.586-61.627 181.724-61.386Q181.863-61.146 182.095-61.005Q182.328-60.865 182.636-60.865Q182.875-60.865 183.084-60.925Q183.293-60.986 183.429-61.134Q183.566-61.283 183.566-61.529Q183.566-61.783 183.355-61.949Q183.144-62.115 182.875-62.169L182.254-62.283Q181.847-62.361 181.547-62.617Q181.246-62.873 181.246-63.248Q181.246-63.615 181.447-63.837Q181.648-64.060 181.972-64.158Q182.297-64.255 182.636-64.255Q183.101-64.255 183.398-64.048L183.621-64.232Q183.644-64.255 183.675-64.255L183.726-64.255Q183.757-64.255 183.785-64.228Q183.812-64.201 183.812-64.169L183.812-63.185Q183.812-63.154 183.787-63.125Q183.761-63.095 183.726-63.095L183.621-63.095Q183.586-63.095 183.558-63.123Q183.531-63.150 183.531-63.185Q183.531-63.584 183.279-63.804Q183.027-64.025 182.629-64.025Q182.273-64.025 181.990-63.902Q181.707-63.779 181.707-63.474Q181.707-63.255 181.908-63.123Q182.109-62.990 182.355-62.947L182.980-62.834Q183.410-62.744 183.718-62.447Q184.027-62.150 184.027-61.736Q184.027-61.166 183.629-60.888Q183.230-60.611 182.636-60.611Q182.086-60.611 181.734-60.947L181.437-60.634Q181.414-60.611 181.379-60.611L181.332-60.611Q181.308-60.611 181.277-60.642Q181.246-60.673 181.246-60.697\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(103.118 67.886)\">\u003Cpath d=\"M60.935-60.927L60.935-61.017Q60.986-61.224 61.181-61.248L62.220-61.248L62.220-63.576L61.248-63.576Q61.048-63.599 60.998-63.818L60.998-63.904Q61.048-64.115 61.248-64.138L62.615-64.138Q62.810-64.119 62.861-63.904L62.861-61.248L63.775-61.248Q63.970-61.224 64.021-61.017L64.021-60.927Q63.970-60.712 63.775-60.689L61.181-60.689Q60.986-60.712 60.935-60.927M61.966-65.115L61.966-65.169Q61.966-65.341 62.103-65.462Q62.240-65.584 62.416-65.584Q62.588-65.584 62.724-65.462Q62.861-65.341 62.861-65.169L62.861-65.115Q62.861-64.939 62.724-64.818Q62.588-64.697 62.416-64.697Q62.240-64.697 62.103-64.818Q61.966-64.939 61.966-65.115M64.634-60.927L64.634-61.017Q64.677-61.224 64.884-61.248L65.306-61.248L65.306-63.576L64.884-63.576Q64.677-63.599 64.634-63.818L64.634-63.904Q64.681-64.115 64.884-64.138L65.701-64.138Q65.896-64.115 65.947-63.904L65.947-63.818L65.939-63.794Q66.166-63.974 66.439-64.076Q66.713-64.177 67.005-64.177Q67.353-64.177 67.591-64.037Q67.830-63.896 67.945-63.638Q68.060-63.380 68.060-63.025L68.060-61.248L68.486-61.248Q68.693-61.224 68.732-61.017L68.732-60.927Q68.693-60.712 68.486-60.689L67.091-60.689Q66.896-60.712 66.845-60.927L66.845-61.017Q66.896-61.228 67.091-61.248L67.420-61.248L67.420-62.994Q67.420-63.302 67.330-63.460Q67.240-63.619 66.947-63.619Q66.677-63.619 66.449-63.488Q66.220-63.357 66.084-63.128Q65.947-62.900 65.947-62.634L65.947-61.248L66.373-61.248Q66.580-61.224 66.619-61.017L66.619-60.927Q66.580-60.712 66.373-60.689L64.884-60.689Q64.677-60.712 64.634-60.927M69.396-60.888L69.396-61.802Q69.423-62.009 69.634-62.033L69.802-62.033Q69.966-62.009 70.025-61.849Q70.228-61.209 70.955-61.209Q71.162-61.209 71.390-61.244Q71.619-61.279 71.787-61.394Q71.955-61.509 71.955-61.712Q71.955-61.923 71.732-62.037Q71.509-62.150 71.236-62.193L70.537-62.306Q69.396-62.517 69.396-63.240Q69.396-63.529 69.541-63.718Q69.685-63.908 69.925-64.015Q70.166-64.123 70.422-64.162Q70.677-64.201 70.955-64.201Q71.205-64.201 71.398-64.171Q71.591-64.142 71.755-64.064Q71.834-64.181 71.963-64.201L72.041-64.201Q72.138-64.189 72.201-64.126Q72.263-64.064 72.275-63.970L72.275-63.263Q72.263-63.169 72.201-63.103Q72.138-63.037 72.041-63.025L71.873-63.025Q71.779-63.037 71.713-63.103Q71.646-63.169 71.634-63.263Q71.634-63.642 70.939-63.642Q70.591-63.642 70.273-63.560Q69.955-63.478 69.955-63.232Q69.955-62.966 70.627-62.857L71.330-62.736Q71.814-62.654 72.164-62.406Q72.513-62.158 72.513-61.712Q72.513-61.322 72.277-61.080Q72.041-60.837 71.691-60.744Q71.341-60.650 70.955-60.650Q70.377-60.650 69.978-60.904Q69.908-60.779 69.859-60.722Q69.810-60.666 69.705-60.650L69.634-60.650Q69.420-60.673 69.396-60.888M74.255-61.794L74.255-63.576L73.505-63.576Q73.306-63.599 73.255-63.818L73.255-63.904Q73.306-64.115 73.505-64.138L74.255-64.138L74.255-64.888Q74.306-65.095 74.505-65.123L74.650-65.123Q74.845-65.095 74.896-64.888L74.896-64.138L76.255-64.138Q76.447-64.119 76.505-63.904L76.505-63.818Q76.451-63.599 76.255-63.576L74.896-63.576L74.896-61.826Q74.896-61.209 75.470-61.209Q75.720-61.209 75.884-61.394Q76.048-61.580 76.048-61.826Q76.048-61.919 76.121-61.990Q76.193-62.060 76.295-62.072L76.439-62.072Q76.638-62.048 76.689-61.841L76.689-61.794Q76.689-61.470 76.505-61.207Q76.322-60.943 76.029-60.796Q75.736-60.650 75.416-60.650Q74.904-60.650 74.580-60.960Q74.255-61.271 74.255-61.794M77.525-60.927L77.525-61.017Q77.584-61.224 77.775-61.248L78.486-61.248L78.486-63.576L77.775-63.576Q77.580-63.599 77.525-63.818L77.525-63.904Q77.584-64.115 77.775-64.138L78.877-64.138Q79.076-64.119 79.127-63.904L79.127-63.576Q79.388-63.861 79.744-64.019Q80.099-64.177 80.486-64.177Q80.779-64.177 81.013-64.043Q81.248-63.908 81.248-63.642Q81.248-63.474 81.138-63.357Q81.029-63.240 80.861-63.240Q80.709-63.240 80.593-63.351Q80.478-63.462 80.478-63.619Q80.103-63.619 79.789-63.418Q79.474-63.216 79.300-62.882Q79.127-62.548 79.127-62.169L79.127-61.248L80.072-61.248Q80.279-61.224 80.318-61.017L80.318-60.927Q80.279-60.712 80.072-60.689L77.775-60.689Q77.584-60.712 77.525-60.927M82.291-61.544L82.291-63.576L81.869-63.576Q81.662-63.599 81.619-63.818L81.619-63.904Q81.666-64.115 81.869-64.138L82.685-64.138Q82.880-64.115 82.931-63.904L82.931-61.576Q82.931-61.341 83.101-61.275Q83.271-61.209 83.556-61.209Q83.763-61.209 83.959-61.285Q84.154-61.361 84.279-61.511Q84.404-61.662 84.404-61.873L84.404-63.576L83.982-63.576Q83.771-63.599 83.732-63.818L83.732-63.904Q83.771-64.115 83.982-64.138L84.795-64.138Q84.994-64.115 85.045-63.904L85.045-61.248L85.470-61.248Q85.677-61.224 85.716-61.017L85.716-60.927Q85.677-60.712 85.470-60.689L84.654-60.689Q84.455-60.712 84.404-60.912Q84.002-60.650 83.494-60.650Q83.259-60.650 83.045-60.691Q82.830-60.732 82.664-60.834Q82.498-60.935 82.394-61.113Q82.291-61.291 82.291-61.544M86.353-62.416Q86.353-62.896 86.597-63.310Q86.841-63.724 87.257-63.962Q87.673-64.201 88.154-64.201Q88.709-64.201 89.088-64.091Q89.466-63.982 89.466-63.576Q89.466-63.408 89.353-63.285Q89.240-63.162 89.068-63.162Q88.896-63.162 88.777-63.277Q88.658-63.392 88.658-63.560L88.658-63.619Q88.498-63.642 88.162-63.642Q87.834-63.642 87.566-63.472Q87.298-63.302 87.146-63.019Q86.994-62.736 86.994-62.416Q86.994-62.095 87.166-61.814Q87.338-61.533 87.623-61.371Q87.908-61.209 88.236-61.209Q88.548-61.209 88.675-61.312Q88.802-61.416 88.920-61.605Q89.037-61.794 89.154-61.810L89.322-61.810Q89.427-61.798 89.492-61.730Q89.556-61.662 89.556-61.560Q89.556-61.513 89.537-61.474Q89.427-61.181 89.224-61.002Q89.021-60.822 88.746-60.736Q88.470-60.650 88.154-60.650Q87.670-60.650 87.254-60.888Q86.838-61.127 86.595-61.529Q86.353-61.931 86.353-62.416M91.240-61.794L91.240-63.576L90.490-63.576Q90.291-63.599 90.240-63.818L90.240-63.904Q90.291-64.115 90.490-64.138L91.240-64.138L91.240-64.888Q91.291-65.095 91.490-65.123L91.634-65.123Q91.830-65.095 91.880-64.888L91.880-64.138L93.240-64.138Q93.431-64.119 93.490-63.904L93.490-63.818Q93.435-63.599 93.240-63.576L91.880-63.576L91.880-61.826Q91.880-61.209 92.455-61.209Q92.705-61.209 92.869-61.394Q93.033-61.580 93.033-61.826Q93.033-61.919 93.105-61.990Q93.177-62.060 93.279-62.072L93.423-62.072Q93.623-62.048 93.673-61.841L93.673-61.794Q93.673-61.470 93.490-61.207Q93.306-60.943 93.013-60.796Q92.720-60.650 92.400-60.650Q91.888-60.650 91.564-60.960Q91.240-61.271 91.240-61.794M94.904-60.927L94.904-61.017Q94.955-61.224 95.150-61.248L96.189-61.248L96.189-63.576L95.216-63.576Q95.017-63.599 94.966-63.818L94.966-63.904Q95.017-64.115 95.216-64.138L96.584-64.138Q96.779-64.119 96.830-63.904L96.830-61.248L97.744-61.248Q97.939-61.224 97.990-61.017L97.990-60.927Q97.939-60.712 97.744-60.689L95.150-60.689Q94.955-60.712 94.904-60.927M95.935-65.115L95.935-65.169Q95.935-65.341 96.072-65.462Q96.209-65.584 96.384-65.584Q96.556-65.584 96.693-65.462Q96.830-65.341 96.830-65.169L96.830-65.115Q96.830-64.939 96.693-64.818Q96.556-64.697 96.384-64.697Q96.209-64.697 96.072-64.818Q95.935-64.939 95.935-65.115M100.654-60.650Q100.181-60.650 99.797-60.894Q99.412-61.138 99.189-61.548Q98.966-61.959 98.966-62.416Q98.966-62.759 99.091-63.082Q99.216-63.404 99.447-63.658Q99.677-63.912 99.984-64.056Q100.291-64.201 100.654-64.201Q101.017-64.201 101.330-64.054Q101.642-63.908 101.865-63.662Q102.088-63.416 102.214-63.095Q102.341-62.775 102.341-62.416Q102.341-61.959 102.117-61.546Q101.892-61.134 101.507-60.892Q101.123-60.650 100.654-60.650M100.654-61.209Q101.119-61.209 101.410-61.603Q101.701-61.998 101.701-62.482Q101.701-62.775 101.566-63.043Q101.431-63.310 101.191-63.476Q100.951-63.642 100.654-63.642Q100.349-63.642 100.111-63.476Q99.873-63.310 99.738-63.043Q99.603-62.775 99.603-62.482Q99.603-62.002 99.896-61.605Q100.189-61.209 100.654-61.209M102.849-60.927L102.849-61.017Q102.892-61.224 103.099-61.248L103.521-61.248L103.521-63.576L103.099-63.576Q102.892-63.599 102.849-63.818L102.849-63.904Q102.896-64.115 103.099-64.138L103.916-64.138Q104.111-64.115 104.162-63.904L104.162-63.818L104.154-63.794Q104.380-63.974 104.654-64.076Q104.927-64.177 105.220-64.177Q105.568-64.177 105.806-64.037Q106.045-63.896 106.160-63.638Q106.275-63.380 106.275-63.025L106.275-61.248L106.701-61.248Q106.908-61.224 106.947-61.017L106.947-60.927Q106.908-60.712 106.701-60.689L105.306-60.689Q105.111-60.712 105.060-60.927L105.060-61.017Q105.111-61.228 105.306-61.248L105.634-61.248L105.634-62.994Q105.634-63.302 105.545-63.460Q105.455-63.619 105.162-63.619Q104.892-63.619 104.664-63.488Q104.435-63.357 104.298-63.128Q104.162-62.900 104.162-62.634L104.162-61.248L104.588-61.248Q104.795-61.224 104.834-61.017L104.834-60.927Q104.795-60.712 104.588-60.689L103.099-60.689Q102.892-60.712 102.849-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 67.886)\">\u003Cpath d=\"M111.904-60.888L111.904-61.802Q111.931-62.009 112.142-62.033L112.310-62.033Q112.474-62.009 112.533-61.849Q112.736-61.209 113.463-61.209Q113.670-61.209 113.898-61.244Q114.127-61.279 114.295-61.394Q114.463-61.509 114.463-61.712Q114.463-61.923 114.240-62.037Q114.017-62.150 113.744-62.193L113.045-62.306Q111.904-62.517 111.904-63.240Q111.904-63.529 112.048-63.718Q112.193-63.908 112.433-64.015Q112.673-64.123 112.929-64.162Q113.185-64.201 113.463-64.201Q113.713-64.201 113.906-64.171Q114.099-64.142 114.263-64.064Q114.341-64.181 114.470-64.201L114.548-64.201Q114.646-64.189 114.709-64.126Q114.771-64.064 114.783-63.970L114.783-63.263Q114.771-63.169 114.709-63.103Q114.646-63.037 114.548-63.025L114.380-63.025Q114.287-63.037 114.220-63.103Q114.154-63.169 114.142-63.263Q114.142-63.642 113.447-63.642Q113.099-63.642 112.781-63.560Q112.463-63.478 112.463-63.232Q112.463-62.966 113.134-62.857L113.838-62.736Q114.322-62.654 114.672-62.406Q115.021-62.158 115.021-61.712Q115.021-61.322 114.785-61.080Q114.548-60.837 114.199-60.744Q113.849-60.650 113.463-60.650Q112.884-60.650 112.486-60.904Q112.416-60.779 112.367-60.722Q112.318-60.666 112.213-60.650L112.142-60.650Q111.927-60.673 111.904-60.888M119.076-62.177L116.634-62.177Q116.689-61.900 116.886-61.677Q117.084-61.455 117.361-61.332Q117.638-61.209 117.923-61.209Q118.396-61.209 118.619-61.498Q118.627-61.509 118.683-61.615Q118.740-61.720 118.789-61.763Q118.838-61.806 118.931-61.818L119.076-61.818Q119.267-61.798 119.326-61.584L119.326-61.529Q119.259-61.228 119.029-61.031Q118.798-60.834 118.486-60.742Q118.173-60.650 117.869-60.650Q117.384-60.650 116.945-60.878Q116.505-61.107 116.238-61.507Q115.970-61.908 115.970-62.400L115.970-62.459Q115.970-62.927 116.216-63.330Q116.463-63.732 116.871-63.966Q117.279-64.201 117.748-64.201Q118.252-64.201 118.605-63.978Q118.959-63.755 119.142-63.367Q119.326-62.978 119.326-62.474L119.326-62.416Q119.267-62.201 119.076-62.177M116.642-62.728L118.670-62.728Q118.623-63.138 118.384-63.390Q118.146-63.642 117.748-63.642Q117.353-63.642 117.047-63.380Q116.740-63.119 116.642-62.728M121.009-61.794L121.009-63.576L120.259-63.576Q120.060-63.599 120.009-63.818L120.009-63.904Q120.060-64.115 120.259-64.138L121.009-64.138L121.009-64.888Q121.060-65.095 121.259-65.123L121.404-65.123Q121.599-65.095 121.650-64.888L121.650-64.138L123.009-64.138Q123.201-64.119 123.259-63.904L123.259-63.818Q123.205-63.599 123.009-63.576L121.650-63.576L121.650-61.826Q121.650-61.209 122.224-61.209Q122.474-61.209 122.638-61.394Q122.802-61.580 122.802-61.826Q122.802-61.919 122.875-61.990Q122.947-62.060 123.048-62.072L123.193-62.072Q123.392-62.048 123.443-61.841L123.443-61.794Q123.443-61.470 123.259-61.207Q123.076-60.943 122.783-60.796Q122.490-60.650 122.170-60.650Q121.658-60.650 121.334-60.960Q121.009-61.271 121.009-61.794\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 67.886)\">\u003Cpath d=\"M128.724-61.802Q128.724-62.248 129.138-62.505Q129.552-62.763 130.093-62.863Q130.634-62.962 131.142-62.970Q131.142-63.185 131.007-63.337Q130.873-63.490 130.666-63.566Q130.459-63.642 130.248-63.642Q129.904-63.642 129.744-63.619L129.744-63.560Q129.744-63.392 129.625-63.277Q129.506-63.162 129.341-63.162Q129.166-63.162 129.050-63.285Q128.935-63.408 128.935-63.576Q128.935-63.982 129.316-64.091Q129.697-64.201 130.256-64.201Q130.525-64.201 130.793-64.123Q131.060-64.044 131.285-63.894Q131.509-63.744 131.646-63.523Q131.783-63.302 131.783-63.025L131.783-61.306Q131.783-61.248 132.310-61.248Q132.506-61.228 132.556-61.017L132.556-60.927Q132.506-60.712 132.310-60.689L132.166-60.689Q131.822-60.689 131.593-60.736Q131.365-60.783 131.220-60.970Q130.759-60.650 130.052-60.650Q129.716-60.650 129.412-60.791Q129.107-60.931 128.916-61.193Q128.724-61.455 128.724-61.802M129.365-61.794Q129.365-61.521 129.607-61.365Q129.849-61.209 130.134-61.209Q130.353-61.209 130.586-61.267Q130.818-61.326 130.980-61.464Q131.142-61.603 131.142-61.826L131.142-62.416Q130.861-62.416 130.445-62.359Q130.029-62.302 129.697-62.164Q129.365-62.025 129.365-61.794M132.787-60.927L132.787-61.017Q132.845-61.224 133.037-61.248L133.748-61.248L133.748-63.576L133.037-63.576Q132.841-63.599 132.787-63.818L132.787-63.904Q132.845-64.115 133.037-64.138L134.138-64.138Q134.338-64.119 134.388-63.904L134.388-63.576Q134.650-63.861 135.006-64.019Q135.361-64.177 135.748-64.177Q136.041-64.177 136.275-64.043Q136.509-63.908 136.509-63.642Q136.509-63.474 136.400-63.357Q136.291-63.240 136.123-63.240Q135.970-63.240 135.855-63.351Q135.740-63.462 135.740-63.619Q135.365-63.619 135.050-63.418Q134.736-63.216 134.562-62.882Q134.388-62.548 134.388-62.169L134.388-61.248L135.334-61.248Q135.541-61.224 135.580-61.017L135.580-60.927Q135.541-60.712 135.334-60.689L133.037-60.689Q132.845-60.712 132.787-60.927M137.369-62.416Q137.369-62.896 137.613-63.310Q137.857-63.724 138.273-63.962Q138.689-64.201 139.170-64.201Q139.724-64.201 140.103-64.091Q140.482-63.982 140.482-63.576Q140.482-63.408 140.369-63.285Q140.256-63.162 140.084-63.162Q139.912-63.162 139.793-63.277Q139.673-63.392 139.673-63.560L139.673-63.619Q139.513-63.642 139.177-63.642Q138.849-63.642 138.582-63.472Q138.314-63.302 138.162-63.019Q138.009-62.736 138.009-62.416Q138.009-62.095 138.181-61.814Q138.353-61.533 138.638-61.371Q138.923-61.209 139.252-61.209Q139.564-61.209 139.691-61.312Q139.818-61.416 139.935-61.605Q140.052-61.794 140.170-61.810L140.338-61.810Q140.443-61.798 140.507-61.730Q140.572-61.662 140.572-61.560Q140.572-61.513 140.552-61.474Q140.443-61.181 140.240-61.002Q140.037-60.822 139.761-60.736Q139.486-60.650 139.170-60.650Q138.685-60.650 138.269-60.888Q137.853-61.127 137.611-61.529Q137.369-61.931 137.369-62.416M141.127-60.927L141.127-61.017Q141.170-61.224 141.377-61.248L141.798-61.248L141.798-65.017L141.377-65.017Q141.170-65.041 141.127-65.255L141.127-65.345Q141.170-65.552 141.377-65.576L142.193-65.576Q142.388-65.552 142.439-65.345L142.439-63.794Q142.900-64.177 143.498-64.177Q143.845-64.177 144.084-64.037Q144.322-63.896 144.437-63.638Q144.552-63.380 144.552-63.025L144.552-61.248L144.978-61.248Q145.185-61.224 145.224-61.017L145.224-60.927Q145.185-60.712 144.978-60.689L143.584-60.689Q143.388-60.712 143.338-60.927L143.338-61.017Q143.388-61.228 143.584-61.248L143.912-61.248L143.912-62.994Q143.912-63.302 143.822-63.460Q143.732-63.619 143.439-63.619Q143.170-63.619 142.941-63.488Q142.713-63.357 142.576-63.128Q142.439-62.900 142.439-62.634L142.439-61.248L142.865-61.248Q143.072-61.224 143.111-61.017L143.111-60.927Q143.072-60.712 142.865-60.689L141.377-60.689Q141.170-60.712 141.127-60.927M145.920-60.927L145.920-61.017Q145.970-61.224 146.166-61.248L147.205-61.248L147.205-63.576L146.232-63.576Q146.033-63.599 145.982-63.818L145.982-63.904Q146.033-64.115 146.232-64.138L147.599-64.138Q147.795-64.119 147.845-63.904L147.845-61.248L148.759-61.248Q148.955-61.224 149.006-61.017L149.006-60.927Q148.955-60.712 148.759-60.689L146.166-60.689Q145.970-60.712 145.920-60.927M146.951-65.115L146.951-65.169Q146.951-65.341 147.088-65.462Q147.224-65.584 147.400-65.584Q147.572-65.584 147.709-65.462Q147.845-65.341 147.845-65.169L147.845-65.115Q147.845-64.939 147.709-64.818Q147.572-64.697 147.400-64.697Q147.224-64.697 147.088-64.818Q146.951-64.939 146.951-65.115M150.748-61.794L150.748-63.576L149.998-63.576Q149.798-63.599 149.748-63.818L149.748-63.904Q149.798-64.115 149.998-64.138L150.748-64.138L150.748-64.888Q150.798-65.095 150.998-65.123L151.142-65.123Q151.338-65.095 151.388-64.888L151.388-64.138L152.748-64.138Q152.939-64.119 152.998-63.904L152.998-63.818Q152.943-63.599 152.748-63.576L151.388-63.576L151.388-61.826Q151.388-61.209 151.963-61.209Q152.213-61.209 152.377-61.394Q152.541-61.580 152.541-61.826Q152.541-61.919 152.613-61.990Q152.685-62.060 152.787-62.072L152.931-62.072Q153.131-62.048 153.181-61.841L153.181-61.794Q153.181-61.470 152.998-61.207Q152.814-60.943 152.521-60.796Q152.228-60.650 151.908-60.650Q151.396-60.650 151.072-60.960Q150.748-61.271 150.748-61.794M157.306-62.177L154.865-62.177Q154.920-61.900 155.117-61.677Q155.314-61.455 155.591-61.332Q155.869-61.209 156.154-61.209Q156.627-61.209 156.849-61.498Q156.857-61.509 156.914-61.615Q156.970-61.720 157.019-61.763Q157.068-61.806 157.162-61.818L157.306-61.818Q157.498-61.798 157.556-61.584L157.556-61.529Q157.490-61.228 157.259-61.031Q157.029-60.834 156.716-60.742Q156.404-60.650 156.099-60.650Q155.615-60.650 155.175-60.878Q154.736-61.107 154.468-61.507Q154.201-61.908 154.201-62.400L154.201-62.459Q154.201-62.927 154.447-63.330Q154.693-63.732 155.101-63.966Q155.509-64.201 155.978-64.201Q156.482-64.201 156.836-63.978Q157.189-63.755 157.373-63.367Q157.556-62.978 157.556-62.474L157.556-62.416Q157.498-62.201 157.306-62.177M154.873-62.728L156.900-62.728Q156.853-63.138 156.615-63.390Q156.377-63.642 155.978-63.642Q155.584-63.642 155.277-63.380Q154.970-63.119 154.873-62.728M158.599-62.416Q158.599-62.896 158.843-63.310Q159.088-63.724 159.504-63.962Q159.920-64.201 160.400-64.201Q160.955-64.201 161.334-64.091Q161.713-63.982 161.713-63.576Q161.713-63.408 161.599-63.285Q161.486-63.162 161.314-63.162Q161.142-63.162 161.023-63.277Q160.904-63.392 160.904-63.560L160.904-63.619Q160.744-63.642 160.408-63.642Q160.080-63.642 159.812-63.472Q159.545-63.302 159.392-63.019Q159.240-62.736 159.240-62.416Q159.240-62.095 159.412-61.814Q159.584-61.533 159.869-61.371Q160.154-61.209 160.482-61.209Q160.795-61.209 160.922-61.312Q161.048-61.416 161.166-61.605Q161.283-61.794 161.400-61.810L161.568-61.810Q161.673-61.798 161.738-61.730Q161.802-61.662 161.802-61.560Q161.802-61.513 161.783-61.474Q161.673-61.181 161.470-61.002Q161.267-60.822 160.992-60.736Q160.716-60.650 160.400-60.650Q159.916-60.650 159.500-60.888Q159.084-61.127 158.841-61.529Q158.599-61.931 158.599-62.416M163.486-61.794L163.486-63.576L162.736-63.576Q162.537-63.599 162.486-63.818L162.486-63.904Q162.537-64.115 162.736-64.138L163.486-64.138L163.486-64.888Q163.537-65.095 163.736-65.123L163.881-65.123Q164.076-65.095 164.127-64.888L164.127-64.138L165.486-64.138Q165.677-64.119 165.736-63.904L165.736-63.818Q165.681-63.599 165.486-63.576L164.127-63.576L164.127-61.826Q164.127-61.209 164.701-61.209Q164.951-61.209 165.115-61.394Q165.279-61.580 165.279-61.826Q165.279-61.919 165.351-61.990Q165.423-62.060 165.525-62.072L165.670-62.072Q165.869-62.048 165.920-61.841L165.920-61.794Q165.920-61.470 165.736-61.207Q165.552-60.943 165.259-60.796Q164.966-60.650 164.646-60.650Q164.134-60.650 163.810-60.960Q163.486-61.271 163.486-61.794M167.275-61.544L167.275-63.576L166.853-63.576Q166.646-63.599 166.603-63.818L166.603-63.904Q166.650-64.115 166.853-64.138L167.670-64.138Q167.865-64.115 167.916-63.904L167.916-61.576Q167.916-61.341 168.086-61.275Q168.256-61.209 168.541-61.209Q168.748-61.209 168.943-61.285Q169.138-61.361 169.263-61.511Q169.388-61.662 169.388-61.873L169.388-63.576L168.966-63.576Q168.756-63.599 168.716-63.818L168.716-63.904Q168.756-64.115 168.966-64.138L169.779-64.138Q169.978-64.115 170.029-63.904L170.029-61.248L170.455-61.248Q170.662-61.224 170.701-61.017L170.701-60.927Q170.662-60.712 170.455-60.689L169.638-60.689Q169.439-60.712 169.388-60.912Q168.986-60.650 168.478-60.650Q168.244-60.650 168.029-60.691Q167.814-60.732 167.648-60.834Q167.482-60.935 167.379-61.113Q167.275-61.291 167.275-61.544M171.002-60.927L171.002-61.017Q171.060-61.224 171.252-61.248L171.963-61.248L171.963-63.576L171.252-63.576Q171.056-63.599 171.002-63.818L171.002-63.904Q171.060-64.115 171.252-64.138L172.353-64.138Q172.552-64.119 172.603-63.904L172.603-63.576Q172.865-63.861 173.220-64.019Q173.576-64.177 173.963-64.177Q174.256-64.177 174.490-64.043Q174.724-63.908 174.724-63.642Q174.724-63.474 174.615-63.357Q174.506-63.240 174.338-63.240Q174.185-63.240 174.070-63.351Q173.955-63.462 173.955-63.619Q173.580-63.619 173.265-63.418Q172.951-63.216 172.777-62.882Q172.603-62.548 172.603-62.169L172.603-61.248L173.548-61.248Q173.756-61.224 173.795-61.017L173.795-60.927Q173.756-60.712 173.548-60.689L171.252-60.689Q171.060-60.712 171.002-60.927M178.537-62.177L176.095-62.177Q176.150-61.900 176.347-61.677Q176.545-61.455 176.822-61.332Q177.099-61.209 177.384-61.209Q177.857-61.209 178.080-61.498Q178.088-61.509 178.144-61.615Q178.201-61.720 178.250-61.763Q178.298-61.806 178.392-61.818L178.537-61.818Q178.728-61.798 178.787-61.584L178.787-61.529Q178.720-61.228 178.490-61.031Q178.259-60.834 177.947-60.742Q177.634-60.650 177.330-60.650Q176.845-60.650 176.406-60.878Q175.966-61.107 175.699-61.507Q175.431-61.908 175.431-62.400L175.431-62.459Q175.431-62.927 175.677-63.330Q175.923-63.732 176.332-63.966Q176.740-64.201 177.209-64.201Q177.713-64.201 178.066-63.978Q178.420-63.755 178.603-63.367Q178.787-62.978 178.787-62.474L178.787-62.416Q178.728-62.201 178.537-62.177M176.103-62.728L178.131-62.728Q178.084-63.138 177.845-63.390Q177.607-63.642 177.209-63.642Q176.814-63.642 176.507-63.380Q176.201-63.119 176.103-62.728\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-30.731 48.854h182.097V26.092H-30.73Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-60.681 100.162)\">\u003Cpath d=\"M60.638-60.927L60.638-61.017Q60.689-61.224 60.884-61.248L61.767-61.248L61.767-63.576L60.912-63.576Q60.713-63.599 60.662-63.818L60.662-63.904Q60.713-64.115 60.912-64.138L61.767-64.138L61.767-64.591Q61.767-65.056 62.173-65.337Q62.580-65.619 63.060-65.619Q63.373-65.619 63.617-65.498Q63.861-65.376 63.861-65.095Q63.861-64.931 63.752-64.814Q63.642-64.697 63.478-64.697Q63.330-64.697 63.209-64.802Q63.088-64.908 63.088-65.056L63.005-65.056Q62.853-65.056 62.716-64.996Q62.580-64.935 62.494-64.820Q62.408-64.705 62.408-64.560L62.408-64.138L63.439-64.138Q63.634-64.119 63.685-63.904L63.685-63.818Q63.634-63.599 63.439-63.576L62.408-63.576L62.408-61.248L63.287-61.248Q63.482-61.224 63.533-61.017L63.533-60.927Q63.482-60.712 63.287-60.689L60.884-60.689Q60.689-60.712 60.638-60.927M68.076-62.177L65.634-62.177Q65.689-61.900 65.886-61.677Q66.084-61.455 66.361-61.332Q66.638-61.209 66.923-61.209Q67.396-61.209 67.619-61.498Q67.627-61.509 67.683-61.615Q67.740-61.720 67.789-61.763Q67.838-61.806 67.931-61.818L68.076-61.818Q68.267-61.798 68.326-61.584L68.326-61.529Q68.259-61.228 68.029-61.031Q67.798-60.834 67.486-60.742Q67.173-60.650 66.869-60.650Q66.384-60.650 65.945-60.878Q65.505-61.107 65.238-61.507Q64.970-61.908 64.970-62.400L64.970-62.459Q64.970-62.927 65.216-63.330Q65.463-63.732 65.871-63.966Q66.279-64.201 66.748-64.201Q67.252-64.201 67.605-63.978Q67.959-63.755 68.142-63.367Q68.326-62.978 68.326-62.474L68.326-62.416Q68.267-62.201 68.076-62.177M65.642-62.728L67.670-62.728Q67.623-63.138 67.384-63.390Q67.146-63.642 66.748-63.642Q66.353-63.642 66.047-63.380Q65.740-63.119 65.642-62.728M70.009-61.794L70.009-63.576L69.259-63.576Q69.060-63.599 69.009-63.818L69.009-63.904Q69.060-64.115 69.259-64.138L70.009-64.138L70.009-64.888Q70.060-65.095 70.259-65.123L70.404-65.123Q70.599-65.095 70.650-64.888L70.650-64.138L72.009-64.138Q72.201-64.119 72.259-63.904L72.259-63.818Q72.205-63.599 72.009-63.576L70.650-63.576L70.650-61.826Q70.650-61.209 71.224-61.209Q71.474-61.209 71.638-61.394Q71.802-61.580 71.802-61.826Q71.802-61.919 71.875-61.990Q71.947-62.060 72.048-62.072L72.193-62.072Q72.392-62.048 72.443-61.841L72.443-61.794Q72.443-61.470 72.259-61.207Q72.076-60.943 71.783-60.796Q71.490-60.650 71.170-60.650Q70.658-60.650 70.334-60.960Q70.009-61.271 70.009-61.794M73.615-62.416Q73.615-62.896 73.859-63.310Q74.103-63.724 74.519-63.962Q74.935-64.201 75.416-64.201Q75.970-64.201 76.349-64.091Q76.728-63.982 76.728-63.576Q76.728-63.408 76.615-63.285Q76.502-63.162 76.330-63.162Q76.158-63.162 76.039-63.277Q75.920-63.392 75.920-63.560L75.920-63.619Q75.759-63.642 75.423-63.642Q75.095-63.642 74.828-63.472Q74.560-63.302 74.408-63.019Q74.255-62.736 74.255-62.416Q74.255-62.095 74.427-61.814Q74.599-61.533 74.884-61.371Q75.170-61.209 75.498-61.209Q75.810-61.209 75.937-61.312Q76.064-61.416 76.181-61.605Q76.298-61.794 76.416-61.810L76.584-61.810Q76.689-61.798 76.754-61.730Q76.818-61.662 76.818-61.560Q76.818-61.513 76.798-61.474Q76.689-61.181 76.486-61.002Q76.283-60.822 76.007-60.736Q75.732-60.650 75.416-60.650Q74.931-60.650 74.515-60.888Q74.099-61.127 73.857-61.529Q73.615-61.931 73.615-62.416M77.373-60.927L77.373-61.017Q77.416-61.224 77.623-61.248L78.045-61.248L78.045-65.017L77.623-65.017Q77.416-65.041 77.373-65.255L77.373-65.345Q77.416-65.552 77.623-65.576L78.439-65.576Q78.634-65.552 78.685-65.345L78.685-63.794Q79.146-64.177 79.744-64.177Q80.091-64.177 80.330-64.037Q80.568-63.896 80.683-63.638Q80.798-63.380 80.798-63.025L80.798-61.248L81.224-61.248Q81.431-61.224 81.470-61.017L81.470-60.927Q81.431-60.712 81.224-60.689L79.830-60.689Q79.634-60.712 79.584-60.927L79.584-61.017Q79.634-61.228 79.830-61.248L80.158-61.248L80.158-62.994Q80.158-63.302 80.068-63.460Q79.978-63.619 79.685-63.619Q79.416-63.619 79.187-63.488Q78.959-63.357 78.822-63.128Q78.685-62.900 78.685-62.634L78.685-61.248L79.111-61.248Q79.318-61.224 79.357-61.017L79.357-60.927Q79.318-60.712 79.111-60.689L77.623-60.689Q77.416-60.712 77.373-60.927M85.045-62.826L82.302-62.826Q82.177-62.837 82.091-62.923Q82.005-63.009 82.005-63.138Q82.005-63.267 82.091-63.349Q82.177-63.431 82.302-63.443L85.045-63.443Q85.170-63.431 85.252-63.349Q85.334-63.267 85.334-63.138Q85.334-63.009 85.252-62.923Q85.170-62.837 85.045-62.826M87.658-60.650Q87.193-60.650 86.828-60.900Q86.463-61.150 86.257-61.554Q86.052-61.959 86.052-62.416Q86.052-62.759 86.177-63.080Q86.302-63.400 86.535-63.650Q86.767-63.900 87.072-64.039Q87.377-64.177 87.732-64.177Q88.244-64.177 88.650-63.857L88.650-65.017L88.228-65.017Q88.017-65.041 87.978-65.255L87.978-65.345Q88.017-65.552 88.228-65.576L89.041-65.576Q89.240-65.552 89.291-65.345L89.291-61.248L89.716-61.248Q89.923-61.224 89.963-61.017L89.963-60.927Q89.923-60.712 89.716-60.689L88.900-60.689Q88.701-60.712 88.650-60.927L88.650-61.056Q88.455-60.865 88.193-60.757Q87.931-60.650 87.658-60.650M87.697-61.209Q88.056-61.209 88.308-61.478Q88.560-61.748 88.650-62.123L88.650-62.955Q88.591-63.142 88.464-63.293Q88.338-63.443 88.160-63.531Q87.982-63.619 87.787-63.619Q87.478-63.619 87.228-63.449Q86.978-63.279 86.834-62.994Q86.689-62.709 86.689-62.408Q86.689-61.959 86.974-61.584Q87.259-61.209 87.697-61.209M93.552-62.177L91.111-62.177Q91.166-61.900 91.363-61.677Q91.560-61.455 91.838-61.332Q92.115-61.209 92.400-61.209Q92.873-61.209 93.095-61.498Q93.103-61.509 93.160-61.615Q93.216-61.720 93.265-61.763Q93.314-61.806 93.408-61.818L93.552-61.818Q93.744-61.798 93.802-61.584L93.802-61.529Q93.736-61.228 93.505-61.031Q93.275-60.834 92.963-60.742Q92.650-60.650 92.345-60.650Q91.861-60.650 91.422-60.878Q90.982-61.107 90.714-61.507Q90.447-61.908 90.447-62.400L90.447-62.459Q90.447-62.927 90.693-63.330Q90.939-63.732 91.347-63.966Q91.755-64.201 92.224-64.201Q92.728-64.201 93.082-63.978Q93.435-63.755 93.619-63.367Q93.802-62.978 93.802-62.474L93.802-62.416Q93.744-62.201 93.552-62.177M91.119-62.728L93.146-62.728Q93.099-63.138 92.861-63.390Q92.623-63.642 92.224-63.642Q91.830-63.642 91.523-63.380Q91.216-63.119 91.119-62.728M94.845-62.416Q94.845-62.896 95.089-63.310Q95.334-63.724 95.750-63.962Q96.166-64.201 96.646-64.201Q97.201-64.201 97.580-64.091Q97.959-63.982 97.959-63.576Q97.959-63.408 97.845-63.285Q97.732-63.162 97.560-63.162Q97.388-63.162 97.269-63.277Q97.150-63.392 97.150-63.560L97.150-63.619Q96.990-63.642 96.654-63.642Q96.326-63.642 96.058-63.472Q95.791-63.302 95.638-63.019Q95.486-62.736 95.486-62.416Q95.486-62.095 95.658-61.814Q95.830-61.533 96.115-61.371Q96.400-61.209 96.728-61.209Q97.041-61.209 97.168-61.312Q97.295-61.416 97.412-61.605Q97.529-61.794 97.646-61.810L97.814-61.810Q97.920-61.798 97.984-61.730Q98.048-61.662 98.048-61.560Q98.048-61.513 98.029-61.474Q97.920-61.181 97.716-61.002Q97.513-60.822 97.238-60.736Q96.963-60.650 96.646-60.650Q96.162-60.650 95.746-60.888Q95.330-61.127 95.088-61.529Q94.845-61.931 94.845-62.416M100.654-60.650Q100.181-60.650 99.797-60.894Q99.412-61.138 99.189-61.548Q98.966-61.959 98.966-62.416Q98.966-62.759 99.091-63.082Q99.216-63.404 99.447-63.658Q99.677-63.912 99.984-64.056Q100.291-64.201 100.654-64.201Q101.017-64.201 101.330-64.054Q101.642-63.908 101.865-63.662Q102.088-63.416 102.214-63.095Q102.341-62.775 102.341-62.416Q102.341-61.959 102.117-61.546Q101.892-61.134 101.507-60.892Q101.123-60.650 100.654-60.650M100.654-61.209Q101.119-61.209 101.410-61.603Q101.701-61.998 101.701-62.482Q101.701-62.775 101.566-63.043Q101.431-63.310 101.191-63.476Q100.951-63.642 100.654-63.642Q100.349-63.642 100.111-63.476Q99.873-63.310 99.738-63.043Q99.603-62.775 99.603-62.482Q99.603-62.002 99.896-61.605Q100.189-61.209 100.654-61.209M104.642-60.650Q104.177-60.650 103.812-60.900Q103.447-61.150 103.242-61.554Q103.037-61.959 103.037-62.416Q103.037-62.759 103.162-63.080Q103.287-63.400 103.519-63.650Q103.752-63.900 104.056-64.039Q104.361-64.177 104.716-64.177Q105.228-64.177 105.634-63.857L105.634-65.017L105.213-65.017Q105.002-65.041 104.963-65.255L104.963-65.345Q105.002-65.552 105.213-65.576L106.025-65.576Q106.224-65.552 106.275-65.345L106.275-61.248L106.701-61.248Q106.908-61.224 106.947-61.017L106.947-60.927Q106.908-60.712 106.701-60.689L105.884-60.689Q105.685-60.712 105.634-60.927L105.634-61.056Q105.439-60.865 105.177-60.757Q104.916-60.650 104.642-60.650M104.681-61.209Q105.041-61.209 105.293-61.478Q105.545-61.748 105.634-62.123L105.634-62.955Q105.576-63.142 105.449-63.293Q105.322-63.443 105.144-63.531Q104.966-63.619 104.771-63.619Q104.463-63.619 104.213-63.449Q103.963-63.279 103.818-62.994Q103.673-62.709 103.673-62.408Q103.673-61.959 103.959-61.584Q104.244-61.209 104.681-61.209M110.537-62.177L108.095-62.177Q108.150-61.900 108.347-61.677Q108.545-61.455 108.822-61.332Q109.099-61.209 109.384-61.209Q109.857-61.209 110.080-61.498Q110.088-61.509 110.144-61.615Q110.201-61.720 110.250-61.763Q110.298-61.806 110.392-61.818L110.537-61.818Q110.728-61.798 110.787-61.584L110.787-61.529Q110.720-61.228 110.490-61.031Q110.259-60.834 109.947-60.742Q109.634-60.650 109.330-60.650Q108.845-60.650 108.406-60.878Q107.966-61.107 107.699-61.507Q107.431-61.908 107.431-62.400L107.431-62.459Q107.431-62.927 107.677-63.330Q107.923-63.732 108.332-63.966Q108.740-64.201 109.209-64.201Q109.713-64.201 110.066-63.978Q110.420-63.755 110.603-63.367Q110.787-62.978 110.787-62.474L110.787-62.416Q110.728-62.201 110.537-62.177M108.103-62.728L110.130-62.728Q110.084-63.138 109.845-63.390Q109.607-63.642 109.209-63.642Q108.814-63.642 108.507-63.380Q108.201-63.119 108.103-62.728M114.767-62.826L112.025-62.826Q111.900-62.837 111.814-62.923Q111.728-63.009 111.728-63.138Q111.728-63.267 111.814-63.349Q111.900-63.431 112.025-63.443L114.767-63.443Q114.892-63.431 114.974-63.349Q115.056-63.267 115.056-63.138Q115.056-63.009 114.974-62.923Q114.892-62.837 114.767-62.826M119.029-62.177L116.588-62.177Q116.642-61.900 116.839-61.677Q117.037-61.455 117.314-61.332Q117.591-61.209 117.877-61.209Q118.349-61.209 118.572-61.498Q118.580-61.509 118.636-61.615Q118.693-61.720 118.742-61.763Q118.791-61.806 118.884-61.818L119.029-61.818Q119.220-61.798 119.279-61.584L119.279-61.529Q119.213-61.228 118.982-61.031Q118.752-60.834 118.439-60.742Q118.127-60.650 117.822-60.650Q117.338-60.650 116.898-60.878Q116.459-61.107 116.191-61.507Q115.923-61.908 115.923-62.400L115.923-62.459Q115.923-62.927 116.170-63.330Q116.416-63.732 116.824-63.966Q117.232-64.201 117.701-64.201Q118.205-64.201 118.558-63.978Q118.912-63.755 119.095-63.367Q119.279-62.978 119.279-62.474L119.279-62.416Q119.220-62.201 119.029-62.177M116.595-62.728L118.623-62.728Q118.576-63.138 118.338-63.390Q118.099-63.642 117.701-63.642Q117.306-63.642 117-63.380Q116.693-63.119 116.595-62.728M120.021-60.927L120.021-61.017Q120.060-61.224 120.267-61.248L120.673-61.248L121.603-62.466L120.732-63.576L120.314-63.576Q120.119-63.595 120.068-63.818L120.068-63.904Q120.119-64.115 120.314-64.138L121.474-64.138Q121.673-64.115 121.724-63.904L121.724-63.818Q121.673-63.599 121.474-63.576L121.365-63.576L121.861-62.919L122.338-63.576L122.220-63.576Q122.021-63.599 121.970-63.818L121.970-63.904Q122.021-64.115 122.220-64.138L123.380-64.138Q123.576-64.119 123.627-63.904L123.627-63.818Q123.576-63.599 123.380-63.576L122.970-63.576L122.123-62.466L123.084-61.248L123.490-61.248Q123.689-61.224 123.740-61.017L123.740-60.927Q123.701-60.712 123.490-60.689L122.338-60.689Q122.130-60.712 122.091-60.927L122.091-61.017Q122.130-61.224 122.338-61.248L122.466-61.248L121.861-62.103L121.275-61.248L121.420-61.248Q121.627-61.224 121.666-61.017L121.666-60.927Q121.627-60.712 121.420-60.689L120.267-60.689Q120.072-60.709 120.021-60.927M127.521-62.177L125.080-62.177Q125.134-61.900 125.332-61.677Q125.529-61.455 125.806-61.332Q126.084-61.209 126.369-61.209Q126.841-61.209 127.064-61.498Q127.072-61.509 127.129-61.615Q127.185-61.720 127.234-61.763Q127.283-61.806 127.377-61.818L127.521-61.818Q127.713-61.798 127.771-61.584L127.771-61.529Q127.705-61.228 127.474-61.031Q127.244-60.834 126.931-60.742Q126.619-60.650 126.314-60.650Q125.830-60.650 125.390-60.878Q124.951-61.107 124.683-61.507Q124.416-61.908 124.416-62.400L124.416-62.459Q124.416-62.927 124.662-63.330Q124.908-63.732 125.316-63.966Q125.724-64.201 126.193-64.201Q126.697-64.201 127.050-63.978Q127.404-63.755 127.588-63.367Q127.771-62.978 127.771-62.474L127.771-62.416Q127.713-62.201 127.521-62.177M125.088-62.728L127.115-62.728Q127.068-63.138 126.830-63.390Q126.591-63.642 126.193-63.642Q125.798-63.642 125.492-63.380Q125.185-63.119 125.088-62.728M128.814-62.416Q128.814-62.896 129.058-63.310Q129.302-63.724 129.718-63.962Q130.134-64.201 130.615-64.201Q131.170-64.201 131.548-64.091Q131.927-63.982 131.927-63.576Q131.927-63.408 131.814-63.285Q131.701-63.162 131.529-63.162Q131.357-63.162 131.238-63.277Q131.119-63.392 131.119-63.560L131.119-63.619Q130.959-63.642 130.623-63.642Q130.295-63.642 130.027-63.472Q129.759-63.302 129.607-63.019Q129.455-62.736 129.455-62.416Q129.455-62.095 129.627-61.814Q129.798-61.533 130.084-61.371Q130.369-61.209 130.697-61.209Q131.009-61.209 131.136-61.312Q131.263-61.416 131.380-61.605Q131.498-61.794 131.615-61.810L131.783-61.810Q131.888-61.798 131.953-61.730Q132.017-61.662 132.017-61.560Q132.017-61.513 131.998-61.474Q131.888-61.181 131.685-61.002Q131.482-60.822 131.207-60.736Q130.931-60.650 130.615-60.650Q130.130-60.650 129.714-60.888Q129.298-61.127 129.056-61.529Q128.814-61.931 128.814-62.416M133.244-61.544L133.244-63.576L132.822-63.576Q132.615-63.599 132.572-63.818L132.572-63.904Q132.619-64.115 132.822-64.138L133.638-64.138Q133.834-64.115 133.884-63.904L133.884-61.576Q133.884-61.341 134.054-61.275Q134.224-61.209 134.509-61.209Q134.716-61.209 134.912-61.285Q135.107-61.361 135.232-61.511Q135.357-61.662 135.357-61.873L135.357-63.576L134.935-63.576Q134.724-63.599 134.685-63.818L134.685-63.904Q134.724-64.115 134.935-64.138L135.748-64.138Q135.947-64.115 135.998-63.904L135.998-61.248L136.423-61.248Q136.630-61.224 136.670-61.017L136.670-60.927Q136.630-60.712 136.423-60.689L135.607-60.689Q135.408-60.712 135.357-60.912Q134.955-60.650 134.447-60.650Q134.213-60.650 133.998-60.691Q133.783-60.732 133.617-60.834Q133.451-60.935 133.347-61.113Q133.244-61.291 133.244-61.544M137.947-61.794L137.947-63.576L137.197-63.576Q136.998-63.599 136.947-63.818L136.947-63.904Q136.998-64.115 137.197-64.138L137.947-64.138L137.947-64.888Q137.998-65.095 138.197-65.123L138.341-65.123Q138.537-65.095 138.588-64.888L138.588-64.138L139.947-64.138Q140.138-64.119 140.197-63.904L140.197-63.818Q140.142-63.599 139.947-63.576L138.588-63.576L138.588-61.826Q138.588-61.209 139.162-61.209Q139.412-61.209 139.576-61.394Q139.740-61.580 139.740-61.826Q139.740-61.919 139.812-61.990Q139.884-62.060 139.986-62.072L140.130-62.072Q140.330-62.048 140.380-61.841L140.380-61.794Q140.380-61.470 140.197-61.207Q140.013-60.943 139.720-60.796Q139.427-60.650 139.107-60.650Q138.595-60.650 138.271-60.960Q137.947-61.271 137.947-61.794M144.505-62.177L142.064-62.177Q142.119-61.900 142.316-61.677Q142.513-61.455 142.791-61.332Q143.068-61.209 143.353-61.209Q143.826-61.209 144.048-61.498Q144.056-61.509 144.113-61.615Q144.170-61.720 144.218-61.763Q144.267-61.806 144.361-61.818L144.505-61.818Q144.697-61.798 144.755-61.584L144.755-61.529Q144.689-61.228 144.459-61.031Q144.228-60.834 143.916-60.742Q143.603-60.650 143.298-60.650Q142.814-60.650 142.375-60.878Q141.935-61.107 141.668-61.507Q141.400-61.908 141.400-62.400L141.400-62.459Q141.400-62.927 141.646-63.330Q141.892-63.732 142.300-63.966Q142.709-64.201 143.177-64.201Q143.681-64.201 144.035-63.978Q144.388-63.755 144.572-63.367Q144.755-62.978 144.755-62.474L144.755-62.416Q144.697-62.201 144.505-62.177M142.072-62.728L144.099-62.728Q144.052-63.138 143.814-63.390Q143.576-63.642 143.177-63.642Q142.783-63.642 142.476-63.380Q142.170-63.119 142.072-62.728\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-60.681 100.162)\">\u003Cpath d=\"M150.207-60.611Q149.726-60.611 149.318-60.855Q148.910-61.099 148.672-61.513Q148.433-61.927 148.433-62.416Q148.433-62.908 148.691-63.324Q148.949-63.740 149.381-63.978Q149.812-64.216 150.304-64.216Q150.925-64.216 151.375-63.779L151.375-65.408Q151.375-65.623 151.312-65.718Q151.250-65.814 151.132-65.835Q151.015-65.857 150.769-65.857L150.769-66.154L151.992-66.240L151.992-61.431Q151.992-61.220 152.054-61.125Q152.117-61.029 152.234-61.007Q152.351-60.986 152.601-60.986L152.601-60.689L151.351-60.611L151.351-61.095Q150.886-60.611 150.207-60.611M150.273-60.865Q150.613-60.865 150.906-61.056Q151.199-61.248 151.351-61.544L151.351-63.377Q151.203-63.650 150.941-63.806Q150.679-63.962 150.367-63.962Q149.742-63.962 149.459-63.515Q149.175-63.068 149.175-62.408Q149.175-61.763 149.427-61.314Q149.679-60.865 150.273-60.865M153.207-61.521Q153.207-62.005 153.609-62.300Q154.011-62.595 154.562-62.714Q155.113-62.834 155.605-62.834L155.605-63.123Q155.605-63.349 155.490-63.556Q155.375-63.763 155.177-63.882Q154.980-64.001 154.750-64.001Q154.324-64.001 154.039-63.896Q154.109-63.869 154.156-63.814Q154.203-63.759 154.228-63.689Q154.254-63.619 154.254-63.544Q154.254-63.439 154.203-63.347Q154.152-63.255 154.060-63.205Q153.968-63.154 153.863-63.154Q153.757-63.154 153.666-63.205Q153.574-63.255 153.523-63.347Q153.472-63.439 153.472-63.544Q153.472-63.962 153.861-64.109Q154.250-64.255 154.750-64.255Q155.082-64.255 155.435-64.125Q155.789-63.994 156.017-63.740Q156.246-63.486 156.246-63.138L156.246-61.337Q156.246-61.205 156.318-61.095Q156.390-60.986 156.519-60.986Q156.644-60.986 156.713-61.091Q156.781-61.197 156.781-61.337L156.781-61.849L157.062-61.849L157.062-61.337Q157.062-61.134 156.945-60.976Q156.828-60.818 156.646-60.734Q156.464-60.650 156.261-60.650Q156.031-60.650 155.879-60.822Q155.726-60.994 155.695-61.224Q155.535-60.943 155.226-60.777Q154.918-60.611 154.566-60.611Q154.054-60.611 153.631-60.834Q153.207-61.056 153.207-61.521M153.894-61.521Q153.894-61.236 154.121-61.050Q154.347-60.865 154.640-60.865Q154.886-60.865 155.111-60.982Q155.336-61.099 155.470-61.302Q155.605-61.505 155.605-61.759L155.605-62.591Q155.339-62.591 155.054-62.537Q154.769-62.482 154.498-62.353Q154.226-62.224 154.060-62.017Q153.894-61.810 153.894-61.521M157.980-61.650L157.980-63.841L157.277-63.841L157.277-64.095Q157.632-64.095 157.875-64.328Q158.117-64.560 158.228-64.908Q158.339-65.255 158.339-65.611L158.621-65.611L158.621-64.138L159.797-64.138L159.797-63.841L158.621-63.841L158.621-61.666Q158.621-61.345 158.740-61.117Q158.859-60.888 159.140-60.888Q159.320-60.888 159.437-61.011Q159.554-61.134 159.607-61.314Q159.660-61.494 159.660-61.666L159.660-62.138L159.941-62.138L159.941-61.650Q159.941-61.396 159.836-61.156Q159.730-60.916 159.533-60.763Q159.336-60.611 159.078-60.611Q158.761-60.611 158.509-60.734Q158.257-60.857 158.119-61.091Q157.980-61.326 157.980-61.650M160.757-61.521Q160.757-62.005 161.160-62.300Q161.562-62.595 162.113-62.714Q162.664-62.834 163.156-62.834L163.156-63.123Q163.156-63.349 163.041-63.556Q162.925-63.763 162.728-63.882Q162.531-64.001 162.300-64.001Q161.875-64.001 161.589-63.896Q161.660-63.869 161.707-63.814Q161.754-63.759 161.779-63.689Q161.804-63.619 161.804-63.544Q161.804-63.439 161.754-63.347Q161.703-63.255 161.611-63.205Q161.519-63.154 161.414-63.154Q161.308-63.154 161.216-63.205Q161.125-63.255 161.074-63.347Q161.023-63.439 161.023-63.544Q161.023-63.962 161.412-64.109Q161.800-64.255 162.300-64.255Q162.632-64.255 162.986-64.125Q163.339-63.994 163.568-63.740Q163.797-63.486 163.797-63.138L163.797-61.337Q163.797-61.205 163.869-61.095Q163.941-60.986 164.070-60.986Q164.195-60.986 164.263-61.091Q164.332-61.197 164.332-61.337L164.332-61.849L164.613-61.849L164.613-61.337Q164.613-61.134 164.496-60.976Q164.379-60.818 164.197-60.734Q164.015-60.650 163.812-60.650Q163.582-60.650 163.429-60.822Q163.277-60.994 163.246-61.224Q163.086-60.943 162.777-60.777Q162.468-60.611 162.117-60.611Q161.605-60.611 161.181-60.834Q160.757-61.056 160.757-61.521M161.445-61.521Q161.445-61.236 161.672-61.050Q161.898-60.865 162.191-60.865Q162.437-60.865 162.662-60.982Q162.886-61.099 163.021-61.302Q163.156-61.505 163.156-61.759L163.156-62.591Q162.890-62.591 162.605-62.537Q162.320-62.482 162.048-62.353Q161.777-62.224 161.611-62.017Q161.445-61.810 161.445-61.521M166.789-59.138L164.933-59.138L164.933-59.431Q165.203-59.431 165.371-59.476Q165.539-59.521 165.539-59.697L165.539-63.521Q165.539-63.728 165.382-63.781Q165.226-63.834 164.933-63.834L164.933-64.130L166.156-64.216L166.156-63.752Q166.386-63.974 166.701-64.095Q167.015-64.216 167.355-64.216Q167.828-64.216 168.232-63.970Q168.636-63.724 168.869-63.308Q169.101-62.892 169.101-62.416Q169.101-62.041 168.953-61.712Q168.804-61.384 168.535-61.132Q168.265-60.880 167.922-60.746Q167.578-60.611 167.218-60.611Q166.929-60.611 166.658-60.732Q166.386-60.853 166.179-61.064L166.179-59.697Q166.179-59.521 166.347-59.476Q166.515-59.431 166.789-59.431L166.789-59.138M166.179-63.353L166.179-61.513Q166.332-61.224 166.593-61.044Q166.855-60.865 167.164-60.865Q167.449-60.865 167.672-61.003Q167.894-61.142 168.047-61.373Q168.199-61.603 168.277-61.875Q168.355-62.146 168.355-62.416Q168.355-62.748 168.230-63.105Q168.105-63.462 167.857-63.699Q167.609-63.935 167.261-63.935Q166.937-63.935 166.642-63.779Q166.347-63.623 166.179-63.353M169.722-61.521Q169.722-62.005 170.125-62.300Q170.527-62.595 171.078-62.714Q171.629-62.834 172.121-62.834L172.121-63.123Q172.121-63.349 172.006-63.556Q171.890-63.763 171.693-63.882Q171.496-64.001 171.265-64.001Q170.839-64.001 170.554-63.896Q170.625-63.869 170.672-63.814Q170.718-63.759 170.744-63.689Q170.769-63.619 170.769-63.544Q170.769-63.439 170.718-63.347Q170.668-63.255 170.576-63.205Q170.484-63.154 170.379-63.154Q170.273-63.154 170.181-63.205Q170.089-63.255 170.039-63.347Q169.988-63.439 169.988-63.544Q169.988-63.962 170.377-64.109Q170.765-64.255 171.265-64.255Q171.597-64.255 171.951-64.125Q172.304-63.994 172.533-63.740Q172.761-63.486 172.761-63.138L172.761-61.337Q172.761-61.205 172.834-61.095Q172.906-60.986 173.035-60.986Q173.160-60.986 173.228-61.091Q173.297-61.197 173.297-61.337L173.297-61.849L173.578-61.849L173.578-61.337Q173.578-61.134 173.461-60.976Q173.343-60.818 173.162-60.734Q172.980-60.650 172.777-60.650Q172.547-60.650 172.394-60.822Q172.242-60.994 172.211-61.224Q172.050-60.943 171.742-60.777Q171.433-60.611 171.082-60.611Q170.570-60.611 170.146-60.834Q169.722-61.056 169.722-61.521M170.410-61.521Q170.410-61.236 170.636-61.050Q170.863-60.865 171.156-60.865Q171.402-60.865 171.627-60.982Q171.851-61.099 171.986-61.302Q172.121-61.505 172.121-61.759L172.121-62.591Q171.855-62.591 171.570-62.537Q171.285-62.482 171.013-62.353Q170.742-62.224 170.576-62.017Q170.410-61.810 170.410-61.521M174.496-61.650L174.496-63.841L173.793-63.841L173.793-64.095Q174.148-64.095 174.390-64.328Q174.632-64.560 174.744-64.908Q174.855-65.255 174.855-65.611L175.136-65.611L175.136-64.138L176.312-64.138L176.312-63.841L175.136-63.841L175.136-61.666Q175.136-61.345 175.256-61.117Q175.375-60.888 175.656-60.888Q175.836-60.888 175.953-61.011Q176.070-61.134 176.123-61.314Q176.175-61.494 176.175-61.666L176.175-62.138L176.457-62.138L176.457-61.650Q176.457-61.396 176.351-61.156Q176.246-60.916 176.048-60.763Q175.851-60.611 175.593-60.611Q175.277-60.611 175.025-60.734Q174.773-60.857 174.634-61.091Q174.496-61.326 174.496-61.650M179.105-60.689L177.250-60.689L177.250-60.986Q177.523-60.986 177.691-61.033Q177.859-61.080 177.859-61.248L177.859-65.408Q177.859-65.623 177.797-65.718Q177.734-65.814 177.615-65.835Q177.496-65.857 177.250-65.857L177.250-66.154L178.472-66.240L178.472-63.537Q178.597-63.748 178.785-63.898Q178.972-64.048 179.199-64.132Q179.425-64.216 179.672-64.216Q180.839-64.216 180.839-63.138L180.839-61.248Q180.839-61.080 181.009-61.033Q181.179-60.986 181.449-60.986L181.449-60.689L179.593-60.689L179.593-60.986Q179.867-60.986 180.035-61.033Q180.203-61.080 180.203-61.248L180.203-63.123Q180.203-63.505 180.082-63.734Q179.961-63.962 179.609-63.962Q179.297-63.962 179.043-63.800Q178.789-63.638 178.642-63.369Q178.496-63.099 178.496-62.802L178.496-61.248Q178.496-61.080 178.666-61.033Q178.836-60.986 179.105-60.986\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(103.118 99.717)\">\u003Cpath d=\"M60.388-59.146L60.388-59.232Q60.431-59.451 60.638-59.474L61.060-59.474L61.060-63.576L60.638-63.576Q60.431-63.599 60.388-63.818L60.388-63.904Q60.435-64.115 60.638-64.138L61.455-64.138Q61.650-64.119 61.701-63.904L61.701-63.834Q61.912-64.001 62.175-64.089Q62.439-64.177 62.709-64.177Q63.048-64.177 63.345-64.033Q63.642-63.888 63.857-63.636Q64.072-63.384 64.187-63.072Q64.302-62.759 64.302-62.416Q64.302-61.951 64.076-61.541Q63.849-61.130 63.463-60.890Q63.076-60.650 62.607-60.650Q62.088-60.650 61.701-61.017L61.701-59.474L62.127-59.474Q62.334-59.451 62.373-59.232L62.373-59.146Q62.334-58.935 62.127-58.912L60.638-58.912Q60.435-58.935 60.388-59.146M62.564-61.209Q62.873-61.209 63.123-61.378Q63.373-61.548 63.517-61.830Q63.662-62.111 63.662-62.416Q63.662-62.705 63.537-62.984Q63.412-63.263 63.179-63.441Q62.947-63.619 62.646-63.619Q62.326-63.619 62.064-63.433Q61.802-63.248 61.701-62.947L61.701-62.095Q61.791-61.728 62.011-61.468Q62.232-61.209 62.564-61.209M64.787-60.927L64.787-61.017Q64.845-61.224 65.037-61.248L65.748-61.248L65.748-63.576L65.037-63.576Q64.841-63.599 64.787-63.818L64.787-63.904Q64.845-64.115 65.037-64.138L66.138-64.138Q66.338-64.119 66.388-63.904L66.388-63.576Q66.650-63.861 67.005-64.019Q67.361-64.177 67.748-64.177Q68.041-64.177 68.275-64.043Q68.509-63.908 68.509-63.642Q68.509-63.474 68.400-63.357Q68.291-63.240 68.123-63.240Q67.970-63.240 67.855-63.351Q67.740-63.462 67.740-63.619Q67.365-63.619 67.050-63.418Q66.736-63.216 66.562-62.882Q66.388-62.548 66.388-62.169L66.388-61.248L67.334-61.248Q67.541-61.224 67.580-61.017L67.580-60.927Q67.541-60.712 67.334-60.689L65.037-60.689Q64.845-60.712 64.787-60.927M70.931-60.650Q70.459-60.650 70.074-60.894Q69.689-61.138 69.466-61.548Q69.244-61.959 69.244-62.416Q69.244-62.759 69.369-63.082Q69.494-63.404 69.724-63.658Q69.955-63.912 70.261-64.056Q70.568-64.201 70.931-64.201Q71.295-64.201 71.607-64.054Q71.920-63.908 72.142-63.662Q72.365-63.416 72.492-63.095Q72.619-62.775 72.619-62.416Q72.619-61.959 72.394-61.546Q72.170-61.134 71.785-60.892Q71.400-60.650 70.931-60.650M70.931-61.209Q71.396-61.209 71.687-61.603Q71.978-61.998 71.978-62.482Q71.978-62.775 71.843-63.043Q71.709-63.310 71.468-63.476Q71.228-63.642 70.931-63.642Q70.627-63.642 70.388-63.476Q70.150-63.310 70.015-63.043Q69.880-62.775 69.880-62.482Q69.880-62.002 70.173-61.605Q70.466-61.209 70.931-61.209M73.615-62.416Q73.615-62.896 73.859-63.310Q74.103-63.724 74.519-63.962Q74.935-64.201 75.416-64.201Q75.970-64.201 76.349-64.091Q76.728-63.982 76.728-63.576Q76.728-63.408 76.615-63.285Q76.502-63.162 76.330-63.162Q76.158-63.162 76.039-63.277Q75.920-63.392 75.920-63.560L75.920-63.619Q75.759-63.642 75.423-63.642Q75.095-63.642 74.828-63.472Q74.560-63.302 74.408-63.019Q74.255-62.736 74.255-62.416Q74.255-62.095 74.427-61.814Q74.599-61.533 74.884-61.371Q75.170-61.209 75.498-61.209Q75.810-61.209 75.937-61.312Q76.064-61.416 76.181-61.605Q76.298-61.794 76.416-61.810L76.584-61.810Q76.689-61.798 76.754-61.730Q76.818-61.662 76.818-61.560Q76.818-61.513 76.798-61.474Q76.689-61.181 76.486-61.002Q76.283-60.822 76.007-60.736Q75.732-60.650 75.416-60.650Q74.931-60.650 74.515-60.888Q74.099-61.127 73.857-61.529Q73.615-61.931 73.615-62.416M80.814-62.177L78.373-62.177Q78.427-61.900 78.625-61.677Q78.822-61.455 79.099-61.332Q79.377-61.209 79.662-61.209Q80.134-61.209 80.357-61.498Q80.365-61.509 80.422-61.615Q80.478-61.720 80.527-61.763Q80.576-61.806 80.670-61.818L80.814-61.818Q81.005-61.798 81.064-61.584L81.064-61.529Q80.998-61.228 80.767-61.031Q80.537-60.834 80.224-60.742Q79.912-60.650 79.607-60.650Q79.123-60.650 78.683-60.878Q78.244-61.107 77.976-61.507Q77.709-61.908 77.709-62.400L77.709-62.459Q77.709-62.927 77.955-63.330Q78.201-63.732 78.609-63.966Q79.017-64.201 79.486-64.201Q79.990-64.201 80.343-63.978Q80.697-63.755 80.880-63.367Q81.064-62.978 81.064-62.474L81.064-62.416Q81.005-62.201 80.814-62.177M78.380-62.728L80.408-62.728Q80.361-63.138 80.123-63.390Q79.884-63.642 79.486-63.642Q79.091-63.642 78.785-63.380Q78.478-63.119 78.380-62.728M82.134-60.888L82.134-61.802Q82.162-62.009 82.373-62.033L82.541-62.033Q82.705-62.009 82.763-61.849Q82.966-61.209 83.693-61.209Q83.900-61.209 84.129-61.244Q84.357-61.279 84.525-61.394Q84.693-61.509 84.693-61.712Q84.693-61.923 84.470-62.037Q84.248-62.150 83.974-62.193L83.275-62.306Q82.134-62.517 82.134-63.240Q82.134-63.529 82.279-63.718Q82.423-63.908 82.664-64.015Q82.904-64.123 83.160-64.162Q83.416-64.201 83.693-64.201Q83.943-64.201 84.136-64.171Q84.330-64.142 84.494-64.064Q84.572-64.181 84.701-64.201L84.779-64.201Q84.877-64.189 84.939-64.126Q85.002-64.064 85.013-63.970L85.013-63.263Q85.002-63.169 84.939-63.103Q84.877-63.037 84.779-63.025L84.611-63.025Q84.517-63.037 84.451-63.103Q84.384-63.169 84.373-63.263Q84.373-63.642 83.677-63.642Q83.330-63.642 83.011-63.560Q82.693-63.478 82.693-63.232Q82.693-62.966 83.365-62.857L84.068-62.736Q84.552-62.654 84.902-62.406Q85.252-62.158 85.252-61.712Q85.252-61.322 85.015-61.080Q84.779-60.837 84.429-60.744Q84.080-60.650 83.693-60.650Q83.115-60.650 82.716-60.904Q82.646-60.779 82.597-60.722Q82.548-60.666 82.443-60.650L82.373-60.650Q82.158-60.673 82.134-60.888M86.380-60.888L86.380-61.802Q86.408-62.009 86.619-62.033L86.787-62.033Q86.951-62.009 87.009-61.849Q87.213-61.209 87.939-61.209Q88.146-61.209 88.375-61.244Q88.603-61.279 88.771-61.394Q88.939-61.509 88.939-61.712Q88.939-61.923 88.716-62.037Q88.494-62.150 88.220-62.193L87.521-62.306Q86.380-62.517 86.380-63.240Q86.380-63.529 86.525-63.718Q86.670-63.908 86.910-64.015Q87.150-64.123 87.406-64.162Q87.662-64.201 87.939-64.201Q88.189-64.201 88.382-64.171Q88.576-64.142 88.740-64.064Q88.818-64.181 88.947-64.201L89.025-64.201Q89.123-64.189 89.185-64.126Q89.248-64.064 89.259-63.970L89.259-63.263Q89.248-63.169 89.185-63.103Q89.123-63.037 89.025-63.025L88.857-63.025Q88.763-63.037 88.697-63.103Q88.630-63.169 88.619-63.263Q88.619-63.642 87.923-63.642Q87.576-63.642 87.257-63.560Q86.939-63.478 86.939-63.232Q86.939-62.966 87.611-62.857L88.314-62.736Q88.798-62.654 89.148-62.406Q89.498-62.158 89.498-61.712Q89.498-61.322 89.261-61.080Q89.025-60.837 88.675-60.744Q88.326-60.650 87.939-60.650Q87.361-60.650 86.963-60.904Q86.892-60.779 86.843-60.722Q86.795-60.666 86.689-60.650L86.619-60.650Q86.404-60.673 86.380-60.888M92.162-60.650Q91.689-60.650 91.304-60.894Q90.920-61.138 90.697-61.548Q90.474-61.959 90.474-62.416Q90.474-62.759 90.599-63.082Q90.724-63.404 90.955-63.658Q91.185-63.912 91.492-64.056Q91.798-64.201 92.162-64.201Q92.525-64.201 92.838-64.054Q93.150-63.908 93.373-63.662Q93.595-63.416 93.722-63.095Q93.849-62.775 93.849-62.416Q93.849-61.959 93.625-61.546Q93.400-61.134 93.015-60.892Q92.630-60.650 92.162-60.650M92.162-61.209Q92.627-61.209 92.918-61.603Q93.209-61.998 93.209-62.482Q93.209-62.775 93.074-63.043Q92.939-63.310 92.699-63.476Q92.459-63.642 92.162-63.642Q91.857-63.642 91.619-63.476Q91.380-63.310 91.246-63.043Q91.111-62.775 91.111-62.482Q91.111-62.002 91.404-61.605Q91.697-61.209 92.162-61.209M94.509-60.927L94.509-61.017Q94.568-61.224 94.759-61.248L95.470-61.248L95.470-63.576L94.759-63.576Q94.564-63.599 94.509-63.818L94.509-63.904Q94.568-64.115 94.759-64.138L95.861-64.138Q96.060-64.119 96.111-63.904L96.111-63.576Q96.373-63.861 96.728-64.019Q97.084-64.177 97.470-64.177Q97.763-64.177 97.998-64.043Q98.232-63.908 98.232-63.642Q98.232-63.474 98.123-63.357Q98.013-63.240 97.845-63.240Q97.693-63.240 97.578-63.351Q97.463-63.462 97.463-63.619Q97.088-63.619 96.773-63.418Q96.459-63.216 96.285-62.882Q96.111-62.548 96.111-62.169L96.111-61.248L97.056-61.248Q97.263-61.224 97.302-61.017L97.302-60.927Q97.263-60.712 97.056-60.689L94.759-60.689Q94.568-60.712 94.509-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 99.717)\">\u003Cpath d=\"M104.681-60.650Q104.216-60.650 103.851-60.900Q103.486-61.150 103.281-61.554Q103.076-61.959 103.076-62.416Q103.076-62.759 103.201-63.080Q103.326-63.400 103.558-63.650Q103.791-63.900 104.095-64.039Q104.400-64.177 104.755-64.177Q105.267-64.177 105.673-63.857L105.673-65.017L105.252-65.017Q105.041-65.041 105.002-65.255L105.002-65.345Q105.041-65.552 105.252-65.576L106.064-65.576Q106.263-65.552 106.314-65.345L106.314-61.248L106.740-61.248Q106.947-61.224 106.986-61.017L106.986-60.927Q106.947-60.712 106.740-60.689L105.923-60.689Q105.724-60.712 105.673-60.927L105.673-61.056Q105.478-60.865 105.216-60.757Q104.955-60.650 104.681-60.650M104.720-61.209Q105.080-61.209 105.332-61.478Q105.584-61.748 105.673-62.123L105.673-62.955Q105.615-63.142 105.488-63.293Q105.361-63.443 105.183-63.531Q105.005-63.619 104.810-63.619Q104.502-63.619 104.252-63.449Q104.002-63.279 103.857-62.994Q103.713-62.709 103.713-62.408Q103.713-61.959 103.998-61.584Q104.283-61.209 104.720-61.209M110.576-62.177L108.134-62.177Q108.189-61.900 108.386-61.677Q108.584-61.455 108.861-61.332Q109.138-61.209 109.423-61.209Q109.896-61.209 110.119-61.498Q110.127-61.509 110.183-61.615Q110.240-61.720 110.289-61.763Q110.338-61.806 110.431-61.818L110.576-61.818Q110.767-61.798 110.826-61.584L110.826-61.529Q110.759-61.228 110.529-61.031Q110.298-60.834 109.986-60.742Q109.673-60.650 109.369-60.650Q108.884-60.650 108.445-60.878Q108.005-61.107 107.738-61.507Q107.470-61.908 107.470-62.400L107.470-62.459Q107.470-62.927 107.716-63.330Q107.963-63.732 108.371-63.966Q108.779-64.201 109.248-64.201Q109.752-64.201 110.105-63.978Q110.459-63.755 110.642-63.367Q110.826-62.978 110.826-62.474L110.826-62.416Q110.767-62.201 110.576-62.177M108.142-62.728L110.170-62.728Q110.123-63.138 109.884-63.390Q109.646-63.642 109.248-63.642Q108.853-63.642 108.547-63.380Q108.240-63.119 108.142-62.728M111.896-60.888L111.896-61.802Q111.923-62.009 112.134-62.033L112.302-62.033Q112.466-62.009 112.525-61.849Q112.728-61.209 113.455-61.209Q113.662-61.209 113.890-61.244Q114.119-61.279 114.287-61.394Q114.455-61.509 114.455-61.712Q114.455-61.923 114.232-62.037Q114.009-62.150 113.736-62.193L113.037-62.306Q111.896-62.517 111.896-63.240Q111.896-63.529 112.041-63.718Q112.185-63.908 112.425-64.015Q112.666-64.123 112.922-64.162Q113.177-64.201 113.455-64.201Q113.705-64.201 113.898-64.171Q114.091-64.142 114.255-64.064Q114.334-64.181 114.463-64.201L114.541-64.201Q114.638-64.189 114.701-64.126Q114.763-64.064 114.775-63.970L114.775-63.263Q114.763-63.169 114.701-63.103Q114.638-63.037 114.541-63.025L114.373-63.025Q114.279-63.037 114.213-63.103Q114.146-63.169 114.134-63.263Q114.134-63.642 113.439-63.642Q113.091-63.642 112.773-63.560Q112.455-63.478 112.455-63.232Q112.455-62.966 113.127-62.857L113.830-62.736Q114.314-62.654 114.664-62.406Q115.013-62.158 115.013-61.712Q115.013-61.322 114.777-61.080Q114.541-60.837 114.191-60.744Q113.841-60.650 113.455-60.650Q112.877-60.650 112.478-60.904Q112.408-60.779 112.359-60.722Q112.310-60.666 112.205-60.650L112.134-60.650Q111.920-60.673 111.896-60.888M116.173-60.927L116.173-61.017Q116.224-61.224 116.420-61.248L117.459-61.248L117.459-63.576L116.486-63.576Q116.287-63.599 116.236-63.818L116.236-63.904Q116.287-64.115 116.486-64.138L117.853-64.138Q118.048-64.119 118.099-63.904L118.099-61.248L119.013-61.248Q119.209-61.224 119.259-61.017L119.259-60.927Q119.209-60.712 119.013-60.689L116.420-60.689Q116.224-60.712 116.173-60.927M117.205-65.115L117.205-65.169Q117.205-65.341 117.341-65.462Q117.478-65.584 117.654-65.584Q117.826-65.584 117.963-65.462Q118.099-65.341 118.099-65.169L118.099-65.115Q118.099-64.939 117.963-64.818Q117.826-64.697 117.654-64.697Q117.478-64.697 117.341-64.818Q117.205-64.939 117.205-65.115M120.041-60.041Q120.041-60.341 120.189-60.603Q120.338-60.865 120.588-61.025Q120.404-61.279 120.404-61.599Q120.404-61.884 120.556-62.146Q120.306-62.470 120.306-62.888Q120.306-63.248 120.498-63.544Q120.689-63.841 121.007-64.009Q121.326-64.177 121.689-64.177Q121.896-64.177 122.099-64.117Q122.302-64.056 122.466-63.955Q122.849-64.216 123.322-64.216Q123.560-64.216 123.742-64.085Q123.923-63.955 123.923-63.728Q123.923-63.580 123.822-63.474Q123.720-63.369 123.564-63.369Q123.431-63.369 123.336-63.447Q123.240-63.525 123.209-63.650Q123.064-63.642 122.865-63.552Q123.068-63.240 123.068-62.888Q123.068-62.607 122.957-62.375Q122.845-62.142 122.650-61.964Q122.455-61.787 122.203-61.689Q121.951-61.591 121.689-61.591Q121.302-61.591 120.970-61.779Q120.959-61.779 120.949-61.707Q120.939-61.634 120.939-61.599Q120.939-61.478 121.005-61.371Q121.072-61.263 121.193-61.224Q121.209-61.228 121.222-61.230Q121.236-61.232 121.259-61.232Q121.275-61.232 121.306-61.224Q121.338-61.216 121.345-61.216L121.939-61.216Q122.720-61.216 123.261-60.974Q123.802-60.732 123.802-60.041Q123.802-59.740 123.623-59.513Q123.443-59.287 123.146-59.142Q122.849-58.998 122.529-58.931Q122.209-58.865 121.923-58.865Q121.533-58.865 121.091-58.988Q120.650-59.111 120.345-59.378Q120.041-59.646 120.041-60.041M120.580-60.048Q120.580-59.830 120.820-59.689Q121.060-59.548 121.384-59.482Q121.709-59.416 121.923-59.416Q122.138-59.416 122.463-59.482Q122.787-59.548 123.027-59.689Q123.267-59.830 123.267-60.048Q123.267-60.337 123.043-60.476Q122.818-60.615 122.537-60.648Q122.255-60.681 121.908-60.681L121.291-60.681Q121.107-60.681 120.945-60.601Q120.783-60.521 120.681-60.375Q120.580-60.228 120.580-60.048M121.689-62.146Q121.990-62.146 122.209-62.365Q122.427-62.584 122.427-62.888Q122.427-63.044 122.373-63.175Q122.318-63.306 122.213-63.412Q122.107-63.517 121.976-63.572Q121.845-63.627 121.689-63.627Q121.384-63.627 121.166-63.408Q120.947-63.189 120.947-62.888Q120.947-62.591 121.170-62.369Q121.392-62.146 121.689-62.146M124.119-60.927L124.119-61.017Q124.162-61.224 124.369-61.248L124.791-61.248L124.791-63.576L124.369-63.576Q124.162-63.599 124.119-63.818L124.119-63.904Q124.166-64.115 124.369-64.138L125.185-64.138Q125.380-64.115 125.431-63.904L125.431-63.818L125.423-63.794Q125.650-63.974 125.923-64.076Q126.197-64.177 126.490-64.177Q126.838-64.177 127.076-64.037Q127.314-63.896 127.429-63.638Q127.545-63.380 127.545-63.025L127.545-61.248L127.970-61.248Q128.177-61.224 128.216-61.017L128.216-60.927Q128.177-60.712 127.970-60.689L126.576-60.689Q126.380-60.712 126.330-60.927L126.330-61.017Q126.380-61.228 126.576-61.248L126.904-61.248L126.904-62.994Q126.904-63.302 126.814-63.460Q126.724-63.619 126.431-63.619Q126.162-63.619 125.933-63.488Q125.705-63.357 125.568-63.128Q125.431-62.900 125.431-62.634L125.431-61.248L125.857-61.248Q126.064-61.224 126.103-61.017L126.103-60.927Q126.064-60.712 125.857-60.689L124.369-60.689Q124.162-60.712 124.119-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 99.717)\">\u003Cpath d=\"M134.385-61.611L134.385-62.826L133.171-62.826Q133.046-62.837 132.960-62.923Q132.874-63.009 132.874-63.138Q132.874-63.267 132.960-63.349Q133.046-63.431 133.171-63.443L134.385-63.443L134.385-64.666Q134.397-64.791 134.483-64.873Q134.569-64.955 134.698-64.955Q134.827-64.955 134.909-64.873Q134.991-64.791 135.003-64.666L135.003-63.443L136.217-63.443Q136.342-63.431 136.424-63.349Q136.506-63.267 136.506-63.138Q136.506-63.009 136.424-62.923Q136.342-62.837 136.217-62.826L135.003-62.826L135.003-61.611Q134.991-61.486 134.909-61.400Q134.827-61.314 134.698-61.314Q134.569-61.314 134.483-61.400Q134.397-61.486 134.385-61.611\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 99.717)\">\u003Cpath d=\"M141.139-59.146L141.139-59.232Q141.182-59.451 141.389-59.474L141.811-59.474L141.811-63.576L141.389-63.576Q141.182-63.599 141.139-63.818L141.139-63.904Q141.186-64.115 141.389-64.138L142.206-64.138Q142.401-64.119 142.452-63.904L142.452-63.834Q142.663-64.001 142.926-64.089Q143.190-64.177 143.460-64.177Q143.799-64.177 144.096-64.033Q144.393-63.888 144.608-63.636Q144.823-63.384 144.938-63.072Q145.053-62.759 145.053-62.416Q145.053-61.951 144.827-61.541Q144.600-61.130 144.214-60.890Q143.827-60.650 143.358-60.650Q142.839-60.650 142.452-61.017L142.452-59.474L142.878-59.474Q143.085-59.451 143.124-59.232L143.124-59.146Q143.085-58.935 142.878-58.912L141.389-58.912Q141.186-58.935 141.139-59.146M143.315-61.209Q143.624-61.209 143.874-61.378Q144.124-61.548 144.268-61.830Q144.413-62.111 144.413-62.416Q144.413-62.705 144.288-62.984Q144.163-63.263 143.930-63.441Q143.698-63.619 143.397-63.619Q143.077-63.619 142.815-63.433Q142.553-63.248 142.452-62.947L142.452-62.095Q142.542-61.728 142.762-61.468Q142.983-61.209 143.315-61.209M145.932-60.927L145.932-61.017Q145.983-61.224 146.178-61.248L147.217-61.248L147.217-63.576L146.245-63.576Q146.046-63.599 145.995-63.818L145.995-63.904Q146.046-64.115 146.245-64.138L147.612-64.138Q147.807-64.119 147.858-63.904L147.858-61.248L148.772-61.248Q148.967-61.224 149.018-61.017L149.018-60.927Q148.967-60.712 148.772-60.689L146.178-60.689Q145.983-60.712 145.932-60.927M146.964-65.115L146.964-65.169Q146.964-65.341 147.100-65.462Q147.237-65.584 147.413-65.584Q147.585-65.584 147.721-65.462Q147.858-65.341 147.858-65.169L147.858-65.115Q147.858-64.939 147.721-64.818Q147.585-64.697 147.413-64.697Q147.237-64.697 147.100-64.818Q146.964-64.939 146.964-65.115M149.631-59.146L149.631-59.232Q149.674-59.451 149.881-59.474L150.303-59.474L150.303-63.576L149.881-63.576Q149.674-63.599 149.631-63.818L149.631-63.904Q149.678-64.115 149.881-64.138L150.698-64.138Q150.893-64.119 150.944-63.904L150.944-63.834Q151.155-64.001 151.419-64.089Q151.682-64.177 151.952-64.177Q152.292-64.177 152.589-64.033Q152.885-63.888 153.100-63.636Q153.315-63.384 153.430-63.072Q153.546-62.759 153.546-62.416Q153.546-61.951 153.319-61.541Q153.092-61.130 152.706-60.890Q152.319-60.650 151.850-60.650Q151.331-60.650 150.944-61.017L150.944-59.474L151.370-59.474Q151.577-59.451 151.616-59.232L151.616-59.146Q151.577-58.935 151.370-58.912L149.881-58.912Q149.678-58.935 149.631-59.146M151.807-61.209Q152.116-61.209 152.366-61.378Q152.616-61.548 152.760-61.830Q152.905-62.111 152.905-62.416Q152.905-62.705 152.780-62.984Q152.655-63.263 152.423-63.441Q152.190-63.619 151.889-63.619Q151.569-63.619 151.307-63.433Q151.046-63.248 150.944-62.947L150.944-62.095Q151.034-61.728 151.255-61.468Q151.475-61.209 151.807-61.209M157.319-62.177L154.878-62.177Q154.932-61.900 155.130-61.677Q155.327-61.455 155.604-61.332Q155.881-61.209 156.167-61.209Q156.639-61.209 156.862-61.498Q156.870-61.509 156.926-61.615Q156.983-61.720 157.032-61.763Q157.081-61.806 157.174-61.818L157.319-61.818Q157.510-61.798 157.569-61.584L157.569-61.529Q157.503-61.228 157.272-61.031Q157.042-60.834 156.729-60.742Q156.417-60.650 156.112-60.650Q155.628-60.650 155.188-60.878Q154.749-61.107 154.481-61.507Q154.214-61.908 154.214-62.400L154.214-62.459Q154.214-62.927 154.460-63.330Q154.706-63.732 155.114-63.966Q155.522-64.201 155.991-64.201Q156.495-64.201 156.848-63.978Q157.202-63.755 157.385-63.367Q157.569-62.978 157.569-62.474L157.569-62.416Q157.510-62.201 157.319-62.177M154.885-62.728L156.913-62.728Q156.866-63.138 156.628-63.390Q156.389-63.642 155.991-63.642Q155.596-63.642 155.290-63.380Q154.983-63.119 154.885-62.728M158.503-60.927L158.503-61.017Q158.553-61.224 158.749-61.248L159.854-61.248L159.854-65.017L158.749-65.017Q158.553-65.041 158.503-65.255L158.503-65.345Q158.553-65.552 158.749-65.576L160.245-65.576Q160.436-65.552 160.495-65.345L160.495-61.248L161.596-61.248Q161.796-61.224 161.846-61.017L161.846-60.927Q161.796-60.712 161.596-60.689L158.749-60.689Q158.553-60.712 158.503-60.927M162.917-60.927L162.917-61.017Q162.967-61.224 163.163-61.248L164.202-61.248L164.202-63.576L163.229-63.576Q163.030-63.599 162.979-63.818L162.979-63.904Q163.030-64.115 163.229-64.138L164.596-64.138Q164.792-64.119 164.842-63.904L164.842-61.248L165.756-61.248Q165.952-61.224 166.003-61.017L166.003-60.927Q165.952-60.712 165.756-60.689L163.163-60.689Q162.967-60.712 162.917-60.927M163.948-65.115L163.948-65.169Q163.948-65.341 164.085-65.462Q164.221-65.584 164.397-65.584Q164.569-65.584 164.706-65.462Q164.842-65.341 164.842-65.169L164.842-65.115Q164.842-64.939 164.706-64.818Q164.569-64.697 164.397-64.697Q164.221-64.697 164.085-64.818Q163.948-64.939 163.948-65.115M166.616-60.927L166.616-61.017Q166.659-61.224 166.866-61.248L167.288-61.248L167.288-63.576L166.866-63.576Q166.659-63.599 166.616-63.818L166.616-63.904Q166.663-64.115 166.866-64.138L167.682-64.138Q167.878-64.115 167.928-63.904L167.928-63.818L167.921-63.794Q168.147-63.974 168.421-64.076Q168.694-64.177 168.987-64.177Q169.335-64.177 169.573-64.037Q169.811-63.896 169.926-63.638Q170.042-63.380 170.042-63.025L170.042-61.248L170.467-61.248Q170.674-61.224 170.714-61.017L170.714-60.927Q170.674-60.712 170.467-60.689L169.073-60.689Q168.878-60.712 168.827-60.927L168.827-61.017Q168.878-61.228 169.073-61.248L169.401-61.248L169.401-62.994Q169.401-63.302 169.311-63.460Q169.221-63.619 168.928-63.619Q168.659-63.619 168.430-63.488Q168.202-63.357 168.065-63.128Q167.928-62.900 167.928-62.634L167.928-61.248L168.354-61.248Q168.561-61.224 168.600-61.017L168.600-60.927Q168.561-60.712 168.354-60.689L166.866-60.689Q166.659-60.712 166.616-60.927M171.409-60.927L171.409-61.017Q171.460-61.224 171.655-61.248L172.694-61.248L172.694-63.576L171.721-63.576Q171.522-63.599 171.471-63.818L171.471-63.904Q171.522-64.115 171.721-64.138L173.089-64.138Q173.284-64.119 173.335-63.904L173.335-61.248L174.249-61.248Q174.444-61.224 174.495-61.017L174.495-60.927Q174.444-60.712 174.249-60.689L171.655-60.689Q171.460-60.712 171.409-60.927M172.440-65.115L172.440-65.169Q172.440-65.341 172.577-65.462Q172.714-65.584 172.889-65.584Q173.061-65.584 173.198-65.462Q173.335-65.341 173.335-65.169L173.335-65.115Q173.335-64.939 173.198-64.818Q173.061-64.697 172.889-64.697Q172.714-64.697 172.577-64.818Q172.440-64.939 172.440-65.115M175.108-60.927L175.108-61.017Q175.151-61.224 175.358-61.248L175.780-61.248L175.780-63.576L175.358-63.576Q175.151-63.599 175.108-63.818L175.108-63.904Q175.155-64.115 175.358-64.138L176.174-64.138Q176.370-64.115 176.421-63.904L176.421-63.818L176.413-63.794Q176.639-63.974 176.913-64.076Q177.186-64.177 177.479-64.177Q177.827-64.177 178.065-64.037Q178.303-63.896 178.419-63.638Q178.534-63.380 178.534-63.025L178.534-61.248L178.960-61.248Q179.167-61.224 179.206-61.017L179.206-60.927Q179.167-60.712 178.960-60.689L177.565-60.689Q177.370-60.712 177.319-60.927L177.319-61.017Q177.370-61.228 177.565-61.248L177.893-61.248L177.893-62.994Q177.893-63.302 177.803-63.460Q177.714-63.619 177.421-63.619Q177.151-63.619 176.923-63.488Q176.694-63.357 176.557-63.128Q176.421-62.900 176.421-62.634L176.421-61.248L176.846-61.248Q177.053-61.224 177.092-61.017L177.092-60.927Q177.053-60.712 176.846-60.689L175.358-60.689Q175.151-60.712 175.108-60.927M179.522-60.041Q179.522-60.341 179.671-60.603Q179.819-60.865 180.069-61.025Q179.885-61.279 179.885-61.599Q179.885-61.884 180.038-62.146Q179.788-62.470 179.788-62.888Q179.788-63.248 179.979-63.544Q180.171-63.841 180.489-64.009Q180.807-64.177 181.171-64.177Q181.378-64.177 181.581-64.117Q181.784-64.056 181.948-63.955Q182.331-64.216 182.803-64.216Q183.042-64.216 183.223-64.085Q183.405-63.955 183.405-63.728Q183.405-63.580 183.303-63.474Q183.202-63.369 183.046-63.369Q182.913-63.369 182.817-63.447Q182.721-63.525 182.690-63.650Q182.546-63.642 182.346-63.552Q182.549-63.240 182.549-62.888Q182.549-62.607 182.438-62.375Q182.327-62.142 182.131-61.964Q181.936-61.787 181.684-61.689Q181.432-61.591 181.171-61.591Q180.784-61.591 180.452-61.779Q180.440-61.779 180.430-61.707Q180.421-61.634 180.421-61.599Q180.421-61.478 180.487-61.371Q180.553-61.263 180.674-61.224Q180.690-61.228 180.704-61.230Q180.717-61.232 180.741-61.232Q180.756-61.232 180.788-61.224Q180.819-61.216 180.827-61.216L181.421-61.216Q182.202-61.216 182.743-60.974Q183.284-60.732 183.284-60.041Q183.284-59.740 183.104-59.513Q182.924-59.287 182.628-59.142Q182.331-58.998 182.010-58.931Q181.690-58.865 181.405-58.865Q181.014-58.865 180.573-58.988Q180.131-59.111 179.827-59.378Q179.522-59.646 179.522-60.041M180.061-60.048Q180.061-59.830 180.301-59.689Q180.542-59.548 180.866-59.482Q181.190-59.416 181.405-59.416Q181.620-59.416 181.944-59.482Q182.268-59.548 182.508-59.689Q182.749-59.830 182.749-60.048Q182.749-60.337 182.524-60.476Q182.299-60.615 182.018-60.648Q181.737-60.681 181.389-60.681L180.772-60.681Q180.589-60.681 180.426-60.601Q180.264-60.521 180.163-60.375Q180.061-60.228 180.061-60.048M181.171-62.146Q181.471-62.146 181.690-62.365Q181.909-62.584 181.909-62.888Q181.909-63.044 181.854-63.175Q181.799-63.306 181.694-63.412Q181.589-63.517 181.458-63.572Q181.327-63.627 181.171-63.627Q180.866-63.627 180.647-63.408Q180.428-63.189 180.428-62.888Q180.428-62.591 180.651-62.369Q180.874-62.146 181.171-62.146\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-30.731 81.575h182.097V58.813H-30.73Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-63.157 132.772)\">\u003Cpath d=\"M62.806-60.689L60.677-60.689L60.677-61.138Q61.455-61.138 61.494-61.193L63.623-66.130Q63.701-66.298 63.877-66.298L64.127-66.298Q64.302-66.298 64.380-66.130L66.533-61.138L67.326-61.138L67.326-60.689L64.525-60.689L64.525-61.138L65.255-61.138L64.798-62.185L62.533-62.185L62.103-61.185Q62.119-61.162 62.435-61.150Q62.752-61.138 62.806-61.138L62.806-60.689M63.670-64.818L62.724-62.634L64.607-62.634L63.670-64.818M72.892-60.689L68.068-60.689L68.068-61.138L68.931-61.138L68.931-65.728L68.068-65.728L68.068-66.177L71.236-66.177L71.236-65.728L70.158-65.728L70.158-61.138L71.005-61.138Q71.826-61.138 72.203-61.603Q72.580-62.068 72.677-62.919L73.158-62.919L72.892-60.689M74.802-62.505L74.802-65.728L73.939-65.728L73.939-66.177L76.892-66.177L76.892-65.728L76.029-65.728L76.029-62.529Q76.029-61.755 76.367-61.390Q76.705-61.025 77.486-61.025Q77.994-61.025 78.396-61.181Q78.798-61.337 79.033-61.677Q79.267-62.017 79.267-62.529L79.267-65.673Q79.267-65.697 79.193-65.705Q79.119-65.712 79.052-65.712Q78.838-65.728 78.404-65.728L78.404-66.177L80.693-66.177L80.693-65.728Q80.259-65.728 80.045-65.712Q79.978-65.712 79.904-65.705Q79.830-65.697 79.830-65.673L79.830-62.505Q79.830-61.880 79.502-61.443Q79.173-61.005 78.640-60.791Q78.107-60.576 77.486-60.576Q77.005-60.576 76.535-60.683Q76.064-60.791 75.675-61.017Q75.287-61.244 75.045-61.623Q74.802-62.002 74.802-62.505\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-63.157 132.772)\">\u003Cpath d=\"M87.036-62.505L84.563-62.505Q84.485-62.517 84.436-62.566Q84.388-62.615 84.388-62.689Q84.388-62.763 84.436-62.812Q84.485-62.861 84.563-62.873L87.036-62.873L87.036-65.353Q87.063-65.521 87.220-65.521Q87.294-65.521 87.343-65.472Q87.392-65.423 87.403-65.353L87.403-62.873L89.876-62.873Q90.044-62.841 90.044-62.689Q90.044-62.537 89.876-62.505L87.403-62.505L87.403-60.025Q87.392-59.955 87.343-59.906Q87.294-59.857 87.220-59.857Q87.063-59.857 87.036-60.025\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-63.157 132.772)\">\u003Cpath d=\"M93.582-60.927L93.582-61.017Q93.640-61.224 93.832-61.248L94.543-61.248L94.543-63.576L93.832-63.576Q93.636-63.599 93.582-63.818L93.582-63.904Q93.640-64.115 93.832-64.138L94.933-64.138Q95.132-64.119 95.183-63.904L95.183-63.576Q95.445-63.861 95.800-64.019Q96.156-64.177 96.543-64.177Q96.836-64.177 97.070-64.043Q97.304-63.908 97.304-63.642Q97.304-63.474 97.195-63.357Q97.086-63.240 96.918-63.240Q96.765-63.240 96.650-63.351Q96.535-63.462 96.535-63.619Q96.160-63.619 95.845-63.418Q95.531-63.216 95.357-62.882Q95.183-62.548 95.183-62.169L95.183-61.248L96.129-61.248Q96.336-61.224 96.375-61.017L96.375-60.927Q96.336-60.712 96.129-60.689L93.832-60.689Q93.640-60.712 93.582-60.927M101.117-62.177L98.675-62.177Q98.730-61.900 98.927-61.677Q99.125-61.455 99.402-61.332Q99.679-61.209 99.964-61.209Q100.437-61.209 100.660-61.498Q100.668-61.509 100.724-61.615Q100.781-61.720 100.830-61.763Q100.879-61.806 100.972-61.818L101.117-61.818Q101.308-61.798 101.367-61.584L101.367-61.529Q101.300-61.228 101.070-61.031Q100.839-60.834 100.527-60.742Q100.214-60.650 99.910-60.650Q99.425-60.650 98.986-60.878Q98.546-61.107 98.279-61.507Q98.011-61.908 98.011-62.400L98.011-62.459Q98.011-62.927 98.257-63.330Q98.504-63.732 98.912-63.966Q99.320-64.201 99.789-64.201Q100.293-64.201 100.646-63.978Q101-63.755 101.183-63.367Q101.367-62.978 101.367-62.474L101.367-62.416Q101.308-62.201 101.117-62.177M98.683-62.728L100.711-62.728Q100.664-63.138 100.425-63.390Q100.187-63.642 99.789-63.642Q99.394-63.642 99.088-63.380Q98.781-63.119 98.683-62.728M102.089-60.041Q102.089-60.341 102.238-60.603Q102.386-60.865 102.636-61.025Q102.453-61.279 102.453-61.599Q102.453-61.884 102.605-62.146Q102.355-62.470 102.355-62.888Q102.355-63.248 102.546-63.544Q102.738-63.841 103.056-64.009Q103.375-64.177 103.738-64.177Q103.945-64.177 104.148-64.117Q104.351-64.056 104.515-63.955Q104.898-64.216 105.371-64.216Q105.609-64.216 105.791-64.085Q105.972-63.955 105.972-63.728Q105.972-63.580 105.871-63.474Q105.769-63.369 105.613-63.369Q105.480-63.369 105.384-63.447Q105.289-63.525 105.257-63.650Q105.113-63.642 104.914-63.552Q105.117-63.240 105.117-62.888Q105.117-62.607 105.005-62.375Q104.894-62.142 104.699-61.964Q104.504-61.787 104.252-61.689Q104-61.591 103.738-61.591Q103.351-61.591 103.019-61.779Q103.007-61.779 102.998-61.707Q102.988-61.634 102.988-61.599Q102.988-61.478 103.054-61.371Q103.121-61.263 103.242-61.224Q103.257-61.228 103.271-61.230Q103.285-61.232 103.308-61.232Q103.324-61.232 103.355-61.224Q103.386-61.216 103.394-61.216L103.988-61.216Q104.769-61.216 105.310-60.974Q105.851-60.732 105.851-60.041Q105.851-59.740 105.671-59.513Q105.492-59.287 105.195-59.142Q104.898-58.998 104.578-58.931Q104.257-58.865 103.972-58.865Q103.582-58.865 103.140-58.988Q102.699-59.111 102.394-59.378Q102.089-59.646 102.089-60.041M102.629-60.048Q102.629-59.830 102.869-59.689Q103.109-59.548 103.433-59.482Q103.757-59.416 103.972-59.416Q104.187-59.416 104.511-59.482Q104.836-59.548 105.076-59.689Q105.316-59.830 105.316-60.048Q105.316-60.337 105.091-60.476Q104.867-60.615 104.586-60.648Q104.304-60.681 103.957-60.681L103.339-60.681Q103.156-60.681 102.994-60.601Q102.832-60.521 102.730-60.375Q102.629-60.228 102.629-60.048M103.738-62.146Q104.039-62.146 104.257-62.365Q104.476-62.584 104.476-62.888Q104.476-63.044 104.421-63.175Q104.367-63.306 104.261-63.412Q104.156-63.517 104.025-63.572Q103.894-63.627 103.738-63.627Q103.433-63.627 103.214-63.408Q102.996-63.189 102.996-62.888Q102.996-62.591 103.218-62.369Q103.441-62.146 103.738-62.146M106.714-60.927L106.714-61.017Q106.765-61.224 106.961-61.248L108-61.248L108-63.576L107.027-63.576Q106.828-63.599 106.777-63.818L106.777-63.904Q106.828-64.115 107.027-64.138L108.394-64.138Q108.589-64.119 108.640-63.904L108.640-61.248L109.554-61.248Q109.750-61.224 109.800-61.017L109.800-60.927Q109.750-60.712 109.554-60.689L106.961-60.689Q106.765-60.712 106.714-60.927M107.746-65.115L107.746-65.169Q107.746-65.341 107.882-65.462Q108.019-65.584 108.195-65.584Q108.367-65.584 108.504-65.462Q108.640-65.341 108.640-65.169L108.640-65.115Q108.640-64.939 108.504-64.818Q108.367-64.697 108.195-64.697Q108.019-64.697 107.882-64.818Q107.746-64.939 107.746-65.115M110.929-60.888L110.929-61.802Q110.957-62.009 111.168-62.033L111.336-62.033Q111.500-62.009 111.558-61.849Q111.761-61.209 112.488-61.209Q112.695-61.209 112.923-61.244Q113.152-61.279 113.320-61.394Q113.488-61.509 113.488-61.712Q113.488-61.923 113.265-62.037Q113.043-62.150 112.769-62.193L112.070-62.306Q110.929-62.517 110.929-63.240Q110.929-63.529 111.074-63.718Q111.218-63.908 111.459-64.015Q111.699-64.123 111.955-64.162Q112.211-64.201 112.488-64.201Q112.738-64.201 112.931-64.171Q113.125-64.142 113.289-64.064Q113.367-64.181 113.496-64.201L113.574-64.201Q113.671-64.189 113.734-64.126Q113.796-64.064 113.808-63.970L113.808-63.263Q113.796-63.169 113.734-63.103Q113.671-63.037 113.574-63.025L113.406-63.025Q113.312-63.037 113.246-63.103Q113.179-63.169 113.168-63.263Q113.168-63.642 112.472-63.642Q112.125-63.642 111.806-63.560Q111.488-63.478 111.488-63.232Q111.488-62.966 112.160-62.857L112.863-62.736Q113.347-62.654 113.697-62.406Q114.046-62.158 114.046-61.712Q114.046-61.322 113.810-61.080Q113.574-60.837 113.224-60.744Q112.875-60.650 112.488-60.650Q111.910-60.650 111.511-60.904Q111.441-60.779 111.392-60.722Q111.343-60.666 111.238-60.650L111.168-60.650Q110.953-60.673 110.929-60.888M115.789-61.794L115.789-63.576L115.039-63.576Q114.839-63.599 114.789-63.818L114.789-63.904Q114.839-64.115 115.039-64.138L115.789-64.138L115.789-64.888Q115.839-65.095 116.039-65.123L116.183-65.123Q116.379-65.095 116.429-64.888L116.429-64.138L117.789-64.138Q117.980-64.119 118.039-63.904L118.039-63.818Q117.984-63.599 117.789-63.576L116.429-63.576L116.429-61.826Q116.429-61.209 117.004-61.209Q117.254-61.209 117.418-61.394Q117.582-61.580 117.582-61.826Q117.582-61.919 117.654-61.990Q117.726-62.060 117.828-62.072L117.972-62.072Q118.171-62.048 118.222-61.841L118.222-61.794Q118.222-61.470 118.039-61.207Q117.855-60.943 117.562-60.796Q117.269-60.650 116.949-60.650Q116.437-60.650 116.113-60.960Q115.789-61.271 115.789-61.794M122.347-62.177L119.906-62.177Q119.961-61.900 120.158-61.677Q120.355-61.455 120.632-61.332Q120.910-61.209 121.195-61.209Q121.668-61.209 121.890-61.498Q121.898-61.509 121.955-61.615Q122.011-61.720 122.060-61.763Q122.109-61.806 122.203-61.818L122.347-61.818Q122.539-61.798 122.597-61.584L122.597-61.529Q122.531-61.228 122.300-61.031Q122.070-60.834 121.757-60.742Q121.445-60.650 121.140-60.650Q120.656-60.650 120.216-60.878Q119.777-61.107 119.509-61.507Q119.242-61.908 119.242-62.400L119.242-62.459Q119.242-62.927 119.488-63.330Q119.734-63.732 120.142-63.966Q120.550-64.201 121.019-64.201Q121.523-64.201 121.877-63.978Q122.230-63.755 122.414-63.367Q122.597-62.978 122.597-62.474L122.597-62.416Q122.539-62.201 122.347-62.177M119.914-62.728L121.941-62.728Q121.894-63.138 121.656-63.390Q121.418-63.642 121.019-63.642Q120.625-63.642 120.318-63.380Q120.011-63.119 119.914-62.728M123.304-60.927L123.304-61.017Q123.363-61.224 123.554-61.248L124.265-61.248L124.265-63.576L123.554-63.576Q123.359-63.599 123.304-63.818L123.304-63.904Q123.363-64.115 123.554-64.138L124.656-64.138Q124.855-64.119 124.906-63.904L124.906-63.576Q125.168-63.861 125.523-64.019Q125.879-64.177 126.265-64.177Q126.558-64.177 126.793-64.043Q127.027-63.908 127.027-63.642Q127.027-63.474 126.918-63.357Q126.808-63.240 126.640-63.240Q126.488-63.240 126.373-63.351Q126.257-63.462 126.257-63.619Q125.882-63.619 125.568-63.418Q125.254-63.216 125.080-62.882Q124.906-62.548 124.906-62.169L124.906-61.248L125.851-61.248Q126.058-61.224 126.097-61.017L126.097-60.927Q126.058-60.712 125.851-60.689L123.554-60.689Q123.363-60.712 123.304-60.927\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-63.157 132.772)\">\u003Cpath d=\"M131.930-60.927L131.930-61.017Q131.981-61.224 132.176-61.248L133.059-61.248L133.059-63.576L132.204-63.576Q132.005-63.599 131.954-63.818L131.954-63.904Q132.005-64.115 132.204-64.138L133.059-64.138L133.059-64.591Q133.059-65.056 133.465-65.337Q133.872-65.619 134.352-65.619Q134.665-65.619 134.909-65.498Q135.153-65.376 135.153-65.095Q135.153-64.931 135.044-64.814Q134.934-64.697 134.770-64.697Q134.622-64.697 134.501-64.802Q134.380-64.908 134.380-65.056L134.298-65.056Q134.145-65.056 134.008-64.996Q133.872-64.935 133.786-64.820Q133.700-64.705 133.700-64.560L133.700-64.138L134.731-64.138Q134.926-64.119 134.977-63.904L134.977-63.818Q134.926-63.599 134.731-63.576L133.700-63.576L133.700-61.248L134.579-61.248Q134.774-61.224 134.825-61.017L134.825-60.927Q134.774-60.712 134.579-60.689L132.176-60.689Q131.981-60.712 131.930-60.927M136.473-60.927L136.473-61.017Q136.524-61.224 136.719-61.248L137.758-61.248L137.758-63.576L136.786-63.576Q136.587-63.599 136.536-63.818L136.536-63.904Q136.587-64.115 136.786-64.138L138.153-64.138Q138.348-64.119 138.399-63.904L138.399-61.248L139.313-61.248Q139.508-61.224 139.559-61.017L139.559-60.927Q139.508-60.712 139.313-60.689L136.719-60.689Q136.524-60.712 136.473-60.927M137.505-65.115L137.505-65.169Q137.505-65.341 137.641-65.462Q137.778-65.584 137.954-65.584Q138.126-65.584 138.262-65.462Q138.399-65.341 138.399-65.169L138.399-65.115Q138.399-64.939 138.262-64.818Q138.126-64.697 137.954-64.697Q137.778-64.697 137.641-64.818Q137.505-64.939 137.505-65.115M140.551-60.927L140.551-61.017Q140.602-61.224 140.798-61.248L141.903-61.248L141.903-65.017L140.798-65.017Q140.602-65.041 140.551-65.255L140.551-65.345Q140.602-65.552 140.798-65.576L142.294-65.576Q142.485-65.552 142.544-65.345L142.544-61.248L143.645-61.248Q143.844-61.224 143.895-61.017L143.895-60.927Q143.844-60.712 143.645-60.689L140.798-60.689Q140.602-60.712 140.551-60.927M147.860-62.177L145.419-62.177Q145.473-61.900 145.671-61.677Q145.868-61.455 146.145-61.332Q146.423-61.209 146.708-61.209Q147.180-61.209 147.403-61.498Q147.411-61.509 147.467-61.615Q147.524-61.720 147.573-61.763Q147.622-61.806 147.715-61.818L147.860-61.818Q148.051-61.798 148.110-61.584L148.110-61.529Q148.044-61.228 147.813-61.031Q147.583-60.834 147.270-60.742Q146.958-60.650 146.653-60.650Q146.169-60.650 145.729-60.878Q145.290-61.107 145.022-61.507Q144.755-61.908 144.755-62.400L144.755-62.459Q144.755-62.927 145.001-63.330Q145.247-63.732 145.655-63.966Q146.063-64.201 146.532-64.201Q147.036-64.201 147.389-63.978Q147.743-63.755 147.926-63.367Q148.110-62.978 148.110-62.474L148.110-62.416Q148.051-62.201 147.860-62.177M145.426-62.728L147.454-62.728Q147.407-63.138 147.169-63.390Q146.930-63.642 146.532-63.642Q146.137-63.642 145.831-63.380Q145.524-63.119 145.426-62.728\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-63.157 132.772)\">\u003Cpath d=\"M154.565-62.505L152.092-62.505Q152.014-62.517 151.965-62.566Q151.917-62.615 151.917-62.689Q151.917-62.763 151.965-62.812Q152.014-62.861 152.092-62.873L154.565-62.873L154.565-65.353Q154.592-65.521 154.749-65.521Q154.823-65.521 154.872-65.472Q154.921-65.423 154.932-65.353L154.932-62.873L157.405-62.873Q157.573-62.841 157.573-62.689Q157.573-62.537 157.405-62.505L154.932-62.505L154.932-60.025Q154.921-59.955 154.872-59.906Q154.823-59.857 154.749-59.857Q154.592-59.857 154.565-60.025\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-63.157 132.772)\">\u003Cpath d=\"M161.169-62.416Q161.169-62.912 161.419-63.337Q161.669-63.763 162.089-64.009Q162.509-64.255 163.009-64.255Q163.548-64.255 163.939-64.130Q164.329-64.005 164.329-63.591Q164.329-63.486 164.279-63.394Q164.228-63.302 164.136-63.252Q164.044-63.201 163.935-63.201Q163.829-63.201 163.738-63.252Q163.646-63.302 163.595-63.394Q163.544-63.486 163.544-63.591Q163.544-63.814 163.712-63.919Q163.490-63.978 163.017-63.978Q162.720-63.978 162.505-63.839Q162.290-63.701 162.159-63.470Q162.029-63.240 161.970-62.970Q161.911-62.701 161.911-62.416Q161.911-62.021 162.044-61.671Q162.177-61.322 162.449-61.105Q162.720-60.888 163.118-60.888Q163.493-60.888 163.769-61.105Q164.044-61.322 164.146-61.681Q164.161-61.744 164.224-61.744L164.329-61.744Q164.365-61.744 164.390-61.716Q164.415-61.689 164.415-61.650L164.415-61.627Q164.283-61.146 163.898-60.878Q163.513-60.611 163.009-60.611Q162.646-60.611 162.312-60.748Q161.978-60.884 161.718-61.134Q161.458-61.384 161.314-61.720Q161.169-62.056 161.169-62.416M164.904-62.384Q164.904-62.888 165.159-63.320Q165.415-63.752 165.851-64.003Q166.286-64.255 166.786-64.255Q167.173-64.255 167.515-64.111Q167.857-63.966 168.118-63.705Q168.380-63.443 168.523-63.107Q168.665-62.771 168.665-62.384Q168.665-61.892 168.402-61.482Q168.138-61.072 167.708-60.841Q167.279-60.611 166.786-60.611Q166.294-60.611 165.861-60.843Q165.427-61.076 165.165-61.484Q164.904-61.892 164.904-62.384M166.786-60.888Q167.243-60.888 167.495-61.111Q167.747-61.334 167.835-61.685Q167.923-62.037 167.923-62.482Q167.923-62.912 167.829-63.250Q167.736-63.587 167.482-63.794Q167.228-64.001 166.786-64.001Q166.138-64.001 165.894-63.585Q165.650-63.169 165.650-62.482Q165.650-62.037 165.738-61.685Q165.826-61.334 166.077-61.111Q166.329-60.888 166.786-60.888M171.079-60.689L169.224-60.689L169.224-60.986Q169.497-60.986 169.665-61.033Q169.833-61.080 169.833-61.248L169.833-63.384Q169.833-63.599 169.771-63.695Q169.708-63.791 169.589-63.812Q169.470-63.834 169.224-63.834L169.224-64.130L170.415-64.216L170.415-63.482Q170.529-63.697 170.722-63.865Q170.915-64.033 171.154-64.125Q171.392-64.216 171.646-64.216Q172.814-64.216 172.814-63.138L172.814-61.248Q172.814-61.080 172.984-61.033Q173.154-60.986 173.423-60.986L173.423-60.689L171.568-60.689L171.568-60.986Q171.841-60.986 172.009-61.033Q172.177-61.080 172.177-61.248L172.177-63.123Q172.177-63.505 172.056-63.734Q171.935-63.962 171.583-63.962Q171.271-63.962 171.017-63.800Q170.763-63.638 170.617-63.369Q170.470-63.099 170.470-62.802L170.470-61.248Q170.470-61.080 170.640-61.033Q170.810-60.986 171.079-60.986\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-63.157 132.772)\">\u003Cpath d=\"M174.265-61.650L174.265-63.841L173.562-63.841L173.562-64.095Q173.918-64.095 174.160-64.328Q174.402-64.560 174.513-64.908Q174.625-65.255 174.625-65.611L174.906-65.611L174.906-64.138L176.082-64.138L176.082-63.841L174.906-63.841L174.906-61.666Q174.906-61.345 175.025-61.117Q175.144-60.888 175.425-60.888Q175.605-60.888 175.722-61.011Q175.839-61.134 175.892-61.314Q175.945-61.494 175.945-61.666L175.945-62.138L176.226-62.138L176.226-61.650Q176.226-61.396 176.121-61.156Q176.015-60.916 175.818-60.763Q175.621-60.611 175.363-60.611Q175.047-60.611 174.795-60.734Q174.543-60.857 174.404-61.091Q174.265-61.326 174.265-61.650M178.953-60.689L176.972-60.689L176.972-60.986Q177.242-60.986 177.410-61.031Q177.578-61.076 177.578-61.248L177.578-63.384Q177.578-63.599 177.515-63.695Q177.453-63.791 177.336-63.812Q177.218-63.834 176.972-63.834L176.972-64.130L178.140-64.216L178.140-63.431Q178.218-63.642 178.371-63.828Q178.523-64.013 178.722-64.115Q178.922-64.216 179.148-64.216Q179.394-64.216 179.586-64.072Q179.777-63.927 179.777-63.697Q179.777-63.541 179.672-63.431Q179.566-63.322 179.410-63.322Q179.254-63.322 179.144-63.431Q179.035-63.541 179.035-63.697Q179.035-63.857 179.140-63.962Q178.816-63.962 178.601-63.734Q178.386-63.505 178.291-63.166Q178.195-62.826 178.195-62.521L178.195-61.248Q178.195-61.080 178.422-61.033Q178.648-60.986 178.953-60.986L178.953-60.689M180.257-62.384Q180.257-62.888 180.513-63.320Q180.769-63.752 181.205-64.003Q181.640-64.255 182.140-64.255Q182.527-64.255 182.869-64.111Q183.211-63.966 183.472-63.705Q183.734-63.443 183.877-63.107Q184.019-62.771 184.019-62.384Q184.019-61.892 183.756-61.482Q183.492-61.072 183.062-60.841Q182.632-60.611 182.140-60.611Q181.648-60.611 181.214-60.843Q180.781-61.076 180.519-61.484Q180.257-61.892 180.257-62.384M182.140-60.888Q182.597-60.888 182.849-61.111Q183.101-61.334 183.189-61.685Q183.277-62.037 183.277-62.482Q183.277-62.912 183.183-63.250Q183.089-63.587 182.836-63.794Q182.582-64.001 182.140-64.001Q181.492-64.001 181.248-63.585Q181.004-63.169 181.004-62.482Q181.004-62.037 181.091-61.685Q181.179-61.334 181.431-61.111Q181.683-60.888 182.140-60.888M186.418-60.689L184.586-60.689L184.586-60.986Q184.859-60.986 185.027-61.033Q185.195-61.080 185.195-61.248L185.195-65.408Q185.195-65.623 185.132-65.718Q185.070-65.814 184.951-65.835Q184.832-65.857 184.586-65.857L184.586-66.154L185.808-66.240L185.808-61.248Q185.808-61.080 185.976-61.033Q186.144-60.986 186.418-60.986\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(103.118 132.438)\">\u003Cpath d=\"M62.181-60.650Q61.716-60.650 61.351-60.900Q60.986-61.150 60.781-61.554Q60.576-61.959 60.576-62.416Q60.576-62.759 60.701-63.080Q60.826-63.400 61.058-63.650Q61.291-63.900 61.595-64.039Q61.900-64.177 62.255-64.177Q62.767-64.177 63.173-63.857L63.173-65.017L62.752-65.017Q62.541-65.041 62.502-65.255L62.502-65.345Q62.541-65.552 62.752-65.576L63.564-65.576Q63.763-65.552 63.814-65.345L63.814-61.248L64.240-61.248Q64.447-61.224 64.486-61.017L64.486-60.927Q64.447-60.712 64.240-60.689L63.423-60.689Q63.224-60.712 63.173-60.927L63.173-61.056Q62.978-60.865 62.716-60.757Q62.455-60.650 62.181-60.650M62.220-61.209Q62.580-61.209 62.832-61.478Q63.084-61.748 63.173-62.123L63.173-62.955Q63.115-63.142 62.988-63.293Q62.861-63.443 62.683-63.531Q62.505-63.619 62.310-63.619Q62.002-63.619 61.752-63.449Q61.502-63.279 61.357-62.994Q61.213-62.709 61.213-62.408Q61.213-61.959 61.498-61.584Q61.783-61.209 62.220-61.209M65.181-60.927L65.181-61.017Q65.232-61.224 65.427-61.248L66.466-61.248L66.466-63.576L65.494-63.576Q65.295-63.599 65.244-63.818L65.244-63.904Q65.295-64.115 65.494-64.138L66.861-64.138Q67.056-64.119 67.107-63.904L67.107-61.248L68.021-61.248Q68.216-61.224 68.267-61.017L68.267-60.927Q68.216-60.712 68.021-60.689L65.427-60.689Q65.232-60.712 65.181-60.927M66.213-65.115L66.213-65.169Q66.213-65.341 66.349-65.462Q66.486-65.584 66.662-65.584Q66.834-65.584 66.970-65.462Q67.107-65.341 67.107-65.169L67.107-65.115Q67.107-64.939 66.970-64.818Q66.834-64.697 66.662-64.697Q66.486-64.697 66.349-64.818Q66.213-64.939 66.213-65.115M69.048-60.041Q69.048-60.341 69.197-60.603Q69.345-60.865 69.595-61.025Q69.412-61.279 69.412-61.599Q69.412-61.884 69.564-62.146Q69.314-62.470 69.314-62.888Q69.314-63.248 69.505-63.544Q69.697-63.841 70.015-64.009Q70.334-64.177 70.697-64.177Q70.904-64.177 71.107-64.117Q71.310-64.056 71.474-63.955Q71.857-64.216 72.330-64.216Q72.568-64.216 72.750-64.085Q72.931-63.955 72.931-63.728Q72.931-63.580 72.830-63.474Q72.728-63.369 72.572-63.369Q72.439-63.369 72.343-63.447Q72.248-63.525 72.216-63.650Q72.072-63.642 71.873-63.552Q72.076-63.240 72.076-62.888Q72.076-62.607 71.964-62.375Q71.853-62.142 71.658-61.964Q71.463-61.787 71.211-61.689Q70.959-61.591 70.697-61.591Q70.310-61.591 69.978-61.779Q69.966-61.779 69.957-61.707Q69.947-61.634 69.947-61.599Q69.947-61.478 70.013-61.371Q70.080-61.263 70.201-61.224Q70.216-61.228 70.230-61.230Q70.244-61.232 70.267-61.232Q70.283-61.232 70.314-61.224Q70.345-61.216 70.353-61.216L70.947-61.216Q71.728-61.216 72.269-60.974Q72.810-60.732 72.810-60.041Q72.810-59.740 72.630-59.513Q72.451-59.287 72.154-59.142Q71.857-58.998 71.537-58.931Q71.216-58.865 70.931-58.865Q70.541-58.865 70.099-58.988Q69.658-59.111 69.353-59.378Q69.048-59.646 69.048-60.041M69.588-60.048Q69.588-59.830 69.828-59.689Q70.068-59.548 70.392-59.482Q70.716-59.416 70.931-59.416Q71.146-59.416 71.470-59.482Q71.795-59.548 72.035-59.689Q72.275-59.830 72.275-60.048Q72.275-60.337 72.050-60.476Q71.826-60.615 71.545-60.648Q71.263-60.681 70.916-60.681L70.298-60.681Q70.115-60.681 69.953-60.601Q69.791-60.521 69.689-60.375Q69.588-60.228 69.588-60.048M70.697-62.146Q70.998-62.146 71.216-62.365Q71.435-62.584 71.435-62.888Q71.435-63.044 71.380-63.175Q71.326-63.306 71.220-63.412Q71.115-63.517 70.984-63.572Q70.853-63.627 70.697-63.627Q70.392-63.627 70.173-63.408Q69.955-63.189 69.955-62.888Q69.955-62.591 70.177-62.369Q70.400-62.146 70.697-62.146M73.673-60.927L73.673-61.017Q73.724-61.224 73.920-61.248L74.959-61.248L74.959-63.576L73.986-63.576Q73.787-63.599 73.736-63.818L73.736-63.904Q73.787-64.115 73.986-64.138L75.353-64.138Q75.548-64.119 75.599-63.904L75.599-61.248L76.513-61.248Q76.709-61.224 76.759-61.017L76.759-60.927Q76.709-60.712 76.513-60.689L73.920-60.689Q73.724-60.712 73.673-60.927M74.705-65.115L74.705-65.169Q74.705-65.341 74.841-65.462Q74.978-65.584 75.154-65.584Q75.326-65.584 75.463-65.462Q75.599-65.341 75.599-65.169L75.599-65.115Q75.599-64.939 75.463-64.818Q75.326-64.697 75.154-64.697Q74.978-64.697 74.841-64.818Q74.705-64.939 74.705-65.115M78.502-61.794L78.502-63.576L77.752-63.576Q77.552-63.599 77.502-63.818L77.502-63.904Q77.552-64.115 77.752-64.138L78.502-64.138L78.502-64.888Q78.552-65.095 78.752-65.123L78.896-65.123Q79.091-65.095 79.142-64.888L79.142-64.138L80.502-64.138Q80.693-64.119 80.752-63.904L80.752-63.818Q80.697-63.599 80.502-63.576L79.142-63.576L79.142-61.826Q79.142-61.209 79.716-61.209Q79.966-61.209 80.130-61.394Q80.295-61.580 80.295-61.826Q80.295-61.919 80.367-61.990Q80.439-62.060 80.541-62.072L80.685-62.072Q80.884-62.048 80.935-61.841L80.935-61.794Q80.935-61.470 80.752-61.207Q80.568-60.943 80.275-60.796Q79.982-60.650 79.662-60.650Q79.150-60.650 78.826-60.960Q78.502-61.271 78.502-61.794M81.955-61.802Q81.955-62.248 82.369-62.505Q82.783-62.763 83.324-62.863Q83.865-62.962 84.373-62.970Q84.373-63.185 84.238-63.337Q84.103-63.490 83.896-63.566Q83.689-63.642 83.478-63.642Q83.134-63.642 82.974-63.619L82.974-63.560Q82.974-63.392 82.855-63.277Q82.736-63.162 82.572-63.162Q82.396-63.162 82.281-63.285Q82.166-63.408 82.166-63.576Q82.166-63.982 82.547-64.091Q82.927-64.201 83.486-64.201Q83.755-64.201 84.023-64.123Q84.291-64.044 84.515-63.894Q84.740-63.744 84.877-63.523Q85.013-63.302 85.013-63.025L85.013-61.306Q85.013-61.248 85.541-61.248Q85.736-61.228 85.787-61.017L85.787-60.927Q85.736-60.712 85.541-60.689L85.396-60.689Q85.052-60.689 84.824-60.736Q84.595-60.783 84.451-60.970Q83.990-60.650 83.283-60.650Q82.947-60.650 82.642-60.791Q82.338-60.931 82.146-61.193Q81.955-61.455 81.955-61.802M82.595-61.794Q82.595-61.521 82.838-61.365Q83.080-61.209 83.365-61.209Q83.584-61.209 83.816-61.267Q84.048-61.326 84.211-61.464Q84.373-61.603 84.373-61.826L84.373-62.416Q84.091-62.416 83.675-62.359Q83.259-62.302 82.927-62.164Q82.595-62.025 82.595-61.794M86.244-60.927L86.244-61.017Q86.295-61.224 86.490-61.248L87.595-61.248L87.595-65.017L86.490-65.017Q86.295-65.041 86.244-65.255L86.244-65.345Q86.295-65.552 86.490-65.576L87.986-65.576Q88.177-65.552 88.236-65.345L88.236-61.248L89.338-61.248Q89.537-61.224 89.588-61.017L89.588-60.927Q89.537-60.712 89.338-60.689L86.490-60.689Q86.295-60.712 86.244-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 132.438)\">\u003Cpath d=\"M94.767-60.927L94.767-61.017Q94.818-61.224 95.013-61.248L96.119-61.248L96.119-65.017L95.013-65.017Q94.818-65.041 94.767-65.255L94.767-65.345Q94.818-65.552 95.013-65.576L96.509-65.576Q96.701-65.552 96.759-65.345L96.759-61.248L97.861-61.248Q98.060-61.224 98.111-61.017L98.111-60.927Q98.060-60.712 97.861-60.689L95.013-60.689Q94.818-60.712 94.767-60.927M100.685-60.650Q100.213-60.650 99.828-60.894Q99.443-61.138 99.220-61.548Q98.998-61.959 98.998-62.416Q98.998-62.759 99.123-63.082Q99.248-63.404 99.478-63.658Q99.709-63.912 100.015-64.056Q100.322-64.201 100.685-64.201Q101.048-64.201 101.361-64.054Q101.673-63.908 101.896-63.662Q102.119-63.416 102.246-63.095Q102.373-62.775 102.373-62.416Q102.373-61.959 102.148-61.546Q101.923-61.134 101.539-60.892Q101.154-60.650 100.685-60.650M100.685-61.209Q101.150-61.209 101.441-61.603Q101.732-61.998 101.732-62.482Q101.732-62.775 101.597-63.043Q101.463-63.310 101.222-63.476Q100.982-63.642 100.685-63.642Q100.380-63.642 100.142-63.476Q99.904-63.310 99.769-63.043Q99.634-62.775 99.634-62.482Q99.634-62.002 99.927-61.605Q100.220-61.209 100.685-61.209M103.048-60.041Q103.048-60.341 103.197-60.603Q103.345-60.865 103.595-61.025Q103.412-61.279 103.412-61.599Q103.412-61.884 103.564-62.146Q103.314-62.470 103.314-62.888Q103.314-63.248 103.505-63.544Q103.697-63.841 104.015-64.009Q104.334-64.177 104.697-64.177Q104.904-64.177 105.107-64.117Q105.310-64.056 105.474-63.955Q105.857-64.216 106.330-64.216Q106.568-64.216 106.750-64.085Q106.931-63.955 106.931-63.728Q106.931-63.580 106.830-63.474Q106.728-63.369 106.572-63.369Q106.439-63.369 106.343-63.447Q106.248-63.525 106.216-63.650Q106.072-63.642 105.873-63.552Q106.076-63.240 106.076-62.888Q106.076-62.607 105.964-62.375Q105.853-62.142 105.658-61.964Q105.463-61.787 105.211-61.689Q104.959-61.591 104.697-61.591Q104.310-61.591 103.978-61.779Q103.966-61.779 103.957-61.707Q103.947-61.634 103.947-61.599Q103.947-61.478 104.013-61.371Q104.080-61.263 104.201-61.224Q104.216-61.228 104.230-61.230Q104.244-61.232 104.267-61.232Q104.283-61.232 104.314-61.224Q104.345-61.216 104.353-61.216L104.947-61.216Q105.728-61.216 106.269-60.974Q106.810-60.732 106.810-60.041Q106.810-59.740 106.630-59.513Q106.451-59.287 106.154-59.142Q105.857-58.998 105.537-58.931Q105.216-58.865 104.931-58.865Q104.541-58.865 104.099-58.988Q103.658-59.111 103.353-59.378Q103.048-59.646 103.048-60.041M103.588-60.048Q103.588-59.830 103.828-59.689Q104.068-59.548 104.392-59.482Q104.716-59.416 104.931-59.416Q105.146-59.416 105.470-59.482Q105.795-59.548 106.035-59.689Q106.275-59.830 106.275-60.048Q106.275-60.337 106.050-60.476Q105.826-60.615 105.545-60.648Q105.263-60.681 104.916-60.681L104.298-60.681Q104.115-60.681 103.953-60.601Q103.791-60.521 103.689-60.375Q103.588-60.228 103.588-60.048M104.697-62.146Q104.998-62.146 105.216-62.365Q105.435-62.584 105.435-62.888Q105.435-63.044 105.380-63.175Q105.326-63.306 105.220-63.412Q105.115-63.517 104.984-63.572Q104.853-63.627 104.697-63.627Q104.392-63.627 104.173-63.408Q103.955-63.189 103.955-62.888Q103.955-62.591 104.177-62.369Q104.400-62.146 104.697-62.146M107.673-60.927L107.673-61.017Q107.724-61.224 107.920-61.248L108.959-61.248L108.959-63.576L107.986-63.576Q107.787-63.599 107.736-63.818L107.736-63.904Q107.787-64.115 107.986-64.138L109.353-64.138Q109.548-64.119 109.599-63.904L109.599-61.248L110.513-61.248Q110.709-61.224 110.759-61.017L110.759-60.927Q110.709-60.712 110.513-60.689L107.920-60.689Q107.724-60.712 107.673-60.927M108.705-65.115L108.705-65.169Q108.705-65.341 108.841-65.462Q108.978-65.584 109.154-65.584Q109.326-65.584 109.463-65.462Q109.599-65.341 109.599-65.169L109.599-65.115Q109.599-64.939 109.463-64.818Q109.326-64.697 109.154-64.697Q108.978-64.697 108.841-64.818Q108.705-64.939 108.705-65.115M111.861-62.416Q111.861-62.896 112.105-63.310Q112.349-63.724 112.765-63.962Q113.181-64.201 113.662-64.201Q114.216-64.201 114.595-64.091Q114.974-63.982 114.974-63.576Q114.974-63.408 114.861-63.285Q114.748-63.162 114.576-63.162Q114.404-63.162 114.285-63.277Q114.166-63.392 114.166-63.560L114.166-63.619Q114.005-63.642 113.670-63.642Q113.341-63.642 113.074-63.472Q112.806-63.302 112.654-63.019Q112.502-62.736 112.502-62.416Q112.502-62.095 112.673-61.814Q112.845-61.533 113.130-61.371Q113.416-61.209 113.744-61.209Q114.056-61.209 114.183-61.312Q114.310-61.416 114.427-61.605Q114.545-61.794 114.662-61.810L114.830-61.810Q114.935-61.798 115-61.730Q115.064-61.662 115.064-61.560Q115.064-61.513 115.045-61.474Q114.935-61.181 114.732-61.002Q114.529-60.822 114.254-60.736Q113.978-60.650 113.662-60.650Q113.177-60.650 112.761-60.888Q112.345-61.127 112.103-61.529Q111.861-61.931 111.861-62.416\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-30.731 114.295h182.097V91.533H-30.73Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-69.401 165.603)\">\u003Cpath d=\"M60.877-62.416Q60.877-62.896 61.121-63.310Q61.365-63.724 61.781-63.962Q62.197-64.201 62.677-64.201Q63.232-64.201 63.611-64.091Q63.990-63.982 63.990-63.576Q63.990-63.408 63.877-63.285Q63.763-63.162 63.591-63.162Q63.420-63.162 63.300-63.277Q63.181-63.392 63.181-63.560L63.181-63.619Q63.021-63.642 62.685-63.642Q62.357-63.642 62.089-63.472Q61.822-63.302 61.670-63.019Q61.517-62.736 61.517-62.416Q61.517-62.095 61.689-61.814Q61.861-61.533 62.146-61.371Q62.431-61.209 62.759-61.209Q63.072-61.209 63.199-61.312Q63.326-61.416 63.443-61.605Q63.560-61.794 63.677-61.810L63.845-61.810Q63.951-61.798 64.015-61.730Q64.080-61.662 64.080-61.560Q64.080-61.513 64.060-61.474Q63.951-61.181 63.748-61.002Q63.545-60.822 63.269-60.736Q62.994-60.650 62.677-60.650Q62.193-60.650 61.777-60.888Q61.361-61.127 61.119-61.529Q60.877-61.931 60.877-62.416M64.970-61.802Q64.970-62.248 65.384-62.505Q65.798-62.763 66.339-62.863Q66.880-62.962 67.388-62.970Q67.388-63.185 67.254-63.337Q67.119-63.490 66.912-63.566Q66.705-63.642 66.494-63.642Q66.150-63.642 65.990-63.619L65.990-63.560Q65.990-63.392 65.871-63.277Q65.752-63.162 65.588-63.162Q65.412-63.162 65.297-63.285Q65.181-63.408 65.181-63.576Q65.181-63.982 65.562-64.091Q65.943-64.201 66.502-64.201Q66.771-64.201 67.039-64.123Q67.306-64.044 67.531-63.894Q67.755-63.744 67.892-63.523Q68.029-63.302 68.029-63.025L68.029-61.306Q68.029-61.248 68.556-61.248Q68.752-61.228 68.802-61.017L68.802-60.927Q68.752-60.712 68.556-60.689L68.412-60.689Q68.068-60.689 67.839-60.736Q67.611-60.783 67.466-60.970Q67.005-60.650 66.298-60.650Q65.963-60.650 65.658-60.791Q65.353-60.931 65.162-61.193Q64.970-61.455 64.970-61.802M65.611-61.794Q65.611-61.521 65.853-61.365Q66.095-61.209 66.380-61.209Q66.599-61.209 66.832-61.267Q67.064-61.326 67.226-61.464Q67.388-61.603 67.388-61.826L67.388-62.416Q67.107-62.416 66.691-62.359Q66.275-62.302 65.943-62.164Q65.611-62.025 65.611-61.794M69.369-62.416Q69.369-62.896 69.613-63.310Q69.857-63.724 70.273-63.962Q70.689-64.201 71.170-64.201Q71.724-64.201 72.103-64.091Q72.482-63.982 72.482-63.576Q72.482-63.408 72.369-63.285Q72.255-63.162 72.084-63.162Q71.912-63.162 71.793-63.277Q71.673-63.392 71.673-63.560L71.673-63.619Q71.513-63.642 71.177-63.642Q70.849-63.642 70.582-63.472Q70.314-63.302 70.162-63.019Q70.009-62.736 70.009-62.416Q70.009-62.095 70.181-61.814Q70.353-61.533 70.638-61.371Q70.923-61.209 71.252-61.209Q71.564-61.209 71.691-61.312Q71.818-61.416 71.935-61.605Q72.052-61.794 72.170-61.810L72.338-61.810Q72.443-61.798 72.507-61.730Q72.572-61.662 72.572-61.560Q72.572-61.513 72.552-61.474Q72.443-61.181 72.240-61.002Q72.037-60.822 71.761-60.736Q71.486-60.650 71.170-60.650Q70.685-60.650 70.269-60.888Q69.853-61.127 69.611-61.529Q69.369-61.931 69.369-62.416M73.127-60.927L73.127-61.017Q73.170-61.224 73.377-61.248L73.798-61.248L73.798-65.017L73.377-65.017Q73.170-65.041 73.127-65.255L73.127-65.345Q73.170-65.552 73.377-65.576L74.193-65.576Q74.388-65.552 74.439-65.345L74.439-63.794Q74.900-64.177 75.498-64.177Q75.845-64.177 76.084-64.037Q76.322-63.896 76.437-63.638Q76.552-63.380 76.552-63.025L76.552-61.248L76.978-61.248Q77.185-61.224 77.224-61.017L77.224-60.927Q77.185-60.712 76.978-60.689L75.584-60.689Q75.388-60.712 75.338-60.927L75.338-61.017Q75.388-61.228 75.584-61.248L75.912-61.248L75.912-62.994Q75.912-63.302 75.822-63.460Q75.732-63.619 75.439-63.619Q75.170-63.619 74.941-63.488Q74.713-63.357 74.576-63.128Q74.439-62.900 74.439-62.634L74.439-61.248L74.865-61.248Q75.072-61.224 75.111-61.017L75.111-60.927Q75.072-60.712 74.865-60.689L73.377-60.689Q73.170-60.712 73.127-60.927M80.814-62.177L78.373-62.177Q78.427-61.900 78.625-61.677Q78.822-61.455 79.099-61.332Q79.377-61.209 79.662-61.209Q80.134-61.209 80.357-61.498Q80.365-61.509 80.422-61.615Q80.478-61.720 80.527-61.763Q80.576-61.806 80.670-61.818L80.814-61.818Q81.005-61.798 81.064-61.584L81.064-61.529Q80.998-61.228 80.767-61.031Q80.537-60.834 80.224-60.742Q79.912-60.650 79.607-60.650Q79.123-60.650 78.683-60.878Q78.244-61.107 77.976-61.507Q77.709-61.908 77.709-62.400L77.709-62.459Q77.709-62.927 77.955-63.330Q78.201-63.732 78.609-63.966Q79.017-64.201 79.486-64.201Q79.990-64.201 80.343-63.978Q80.697-63.755 80.880-63.367Q81.064-62.978 81.064-62.474L81.064-62.416Q81.005-62.201 80.814-62.177M78.380-62.728L80.408-62.728Q80.361-63.138 80.123-63.390Q79.884-63.642 79.486-63.642Q79.091-63.642 78.785-63.380Q78.478-63.119 78.380-62.728\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-69.401 165.603)\">\u003Cpath d=\"M86.753-62.138L84.499-62.138L84.499-62.689L86.753-62.689L86.753-62.138M87.706-60.154Q87.706-60.388 87.805-60.603Q87.905-60.818 88.081-60.962Q88.491-61.263 88.733-61.716Q88.975-62.169 88.975-62.666L88.975-63.056Q88.975-63.091 89.003-63.119Q89.030-63.146 89.065-63.146L89.171-63.146Q89.206-63.146 89.231-63.117Q89.256-63.087 89.256-63.056L89.256-62.650Q89.256-62.013 89.034-61.466Q88.952-61.259 88.776-61.003Q88.600-60.748 88.524-60.584Q88.448-60.419 88.448-60.146Q88.448-59.853 88.493-59.677Q88.538-59.502 88.682-59.408Q88.827-59.314 89.120-59.314Q90.014-59.314 90.362-59.759Q90.202-59.759 90.094-59.877Q89.987-59.994 89.987-60.154Q89.987-60.255 90.038-60.347Q90.088-60.439 90.178-60.492Q90.268-60.544 90.378-60.544Q90.487-60.544 90.577-60.492Q90.667-60.439 90.717-60.347Q90.768-60.255 90.768-60.154Q90.768-59.865 90.616-59.650Q90.463-59.435 90.213-59.304Q89.963-59.173 89.680-59.115Q89.397-59.056 89.120-59.056Q88.526-59.056 88.116-59.322Q87.706-59.587 87.706-60.154M88.659-64.232Q88.659-64.423 88.792-64.556Q88.924-64.689 89.120-64.689Q89.311-64.689 89.444-64.556Q89.577-64.423 89.577-64.232Q89.577-64.041 89.440-63.904Q89.303-63.767 89.120-63.767Q88.932-63.767 88.796-63.904Q88.659-64.041 88.659-64.232\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-69.401 165.603)\">\u003Cpath d=\"M98.668-60.689L95.625-60.689L95.625-60.986Q96.387-60.986 96.570-61.025Q96.613-61.037 96.662-61.070Q96.711-61.103 96.736-61.146Q96.762-61.189 96.762-61.248L96.762-65.591Q96.762-65.767 96.670-65.812Q96.578-65.857 96.363-65.857L95.969-65.857Q95.273-65.857 94.984-65.568Q94.836-65.419 94.773-65.099Q94.711-64.779 94.668-64.306L94.387-64.306L94.547-66.154L99.746-66.154L99.906-64.306L99.625-64.306Q99.582-64.814 99.519-65.117Q99.457-65.419 99.305-65.568Q99.019-65.857 98.320-65.857L97.930-65.857Q97.715-65.857 97.623-65.814Q97.531-65.771 97.531-65.591L97.531-61.248Q97.531-61.173 97.586-61.109Q97.641-61.044 97.723-61.025Q97.906-60.986 98.668-60.986L98.668-60.689M104.937-60.689L100.555-60.689L100.555-60.986Q100.875-60.986 101.119-61.033Q101.363-61.080 101.363-61.248L101.363-65.591Q101.363-65.763 101.119-65.810Q100.875-65.857 100.555-65.857L100.555-66.154L103.141-66.154L103.141-65.857Q102.129-65.857 102.129-65.591L102.129-61.248Q102.129-61.076 102.221-61.031Q102.312-60.986 102.531-60.986L103.219-60.986Q103.691-60.986 104-61.111Q104.309-61.236 104.486-61.466Q104.664-61.697 104.756-62.023Q104.848-62.349 104.891-62.802L105.172-62.802L104.937-60.689M109.172-60.689L105.891-60.689L105.891-60.986Q106.215-60.986 106.457-61.033Q106.699-61.080 106.699-61.248L106.699-65.591Q106.699-65.763 106.457-65.810Q106.215-65.857 105.891-65.857L105.891-66.154L108.937-66.154Q109.363-66.154 109.797-66Q110.230-65.845 110.525-65.537Q110.820-65.228 110.820-64.794Q110.820-64.541 110.695-64.324Q110.570-64.107 110.369-63.951Q110.168-63.794 109.936-63.695Q109.703-63.595 109.445-63.544Q109.820-63.509 110.199-63.332Q110.578-63.154 110.818-62.855Q111.059-62.556 111.059-62.162Q111.059-61.709 110.775-61.375Q110.492-61.041 110.057-60.865Q109.621-60.689 109.172-60.689M107.410-63.400L107.410-61.248Q107.410-61.076 107.502-61.031Q107.594-60.986 107.812-60.986L108.937-60.986Q109.176-60.986 109.410-61.074Q109.644-61.162 109.830-61.322Q110.016-61.482 110.117-61.695Q110.219-61.908 110.219-62.162Q110.219-62.482 110.066-62.767Q109.914-63.052 109.644-63.226Q109.375-63.400 109.059-63.400L107.410-63.400M107.410-65.591L107.410-63.658L108.699-63.658Q108.941-63.658 109.180-63.740Q109.418-63.822 109.602-63.968Q109.785-64.115 109.898-64.332Q110.012-64.548 110.012-64.794Q110.012-65.005 109.926-65.207Q109.840-65.408 109.693-65.550Q109.547-65.693 109.352-65.775Q109.156-65.857 108.937-65.857L107.812-65.857Q107.594-65.857 107.502-65.814Q107.410-65.771 107.410-65.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-69.401 165.603)\">\u003Cpath d=\"M114.852-58.873Q114.852-58.892 114.867-58.947L117.793-66.584Q117.859-66.689 117.965-66.689Q118.043-66.689 118.096-66.636Q118.149-66.584 118.149-66.505Q118.149-66.486 118.133-66.431L115.203-58.794Q115.141-58.689 115.035-58.689Q114.961-58.689 114.906-58.744Q114.852-58.798 114.852-58.873\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-69.401 165.603)\">\u003Cpath d=\"M123.584-59.138L121.729-59.138L121.729-59.431Q121.998-59.431 122.166-59.476Q122.334-59.521 122.334-59.697L122.334-63.521Q122.334-63.728 122.178-63.781Q122.022-63.834 121.729-63.834L121.729-64.130L122.951-64.216L122.951-63.752Q123.182-63.974 123.496-64.095Q123.811-64.216 124.150-64.216Q124.623-64.216 125.027-63.970Q125.432-63.724 125.664-63.308Q125.897-62.892 125.897-62.416Q125.897-62.041 125.748-61.712Q125.600-61.384 125.330-61.132Q125.061-60.880 124.717-60.746Q124.373-60.611 124.014-60.611Q123.725-60.611 123.453-60.732Q123.182-60.853 122.975-61.064L122.975-59.697Q122.975-59.521 123.143-59.476Q123.311-59.431 123.584-59.431L123.584-59.138M122.975-63.353L122.975-61.513Q123.127-61.224 123.389-61.044Q123.650-60.865 123.959-60.865Q124.244-60.865 124.467-61.003Q124.690-61.142 124.842-61.373Q124.994-61.603 125.072-61.875Q125.150-62.146 125.150-62.416Q125.150-62.748 125.025-63.105Q124.900-63.462 124.652-63.699Q124.404-63.935 124.057-63.935Q123.733-63.935 123.438-63.779Q123.143-63.623 122.975-63.353M126.518-61.521Q126.518-62.005 126.920-62.300Q127.322-62.595 127.873-62.714Q128.424-62.834 128.916-62.834L128.916-63.123Q128.916-63.349 128.801-63.556Q128.686-63.763 128.488-63.882Q128.291-64.001 128.061-64.001Q127.635-64.001 127.350-63.896Q127.420-63.869 127.467-63.814Q127.514-63.759 127.539-63.689Q127.565-63.619 127.565-63.544Q127.565-63.439 127.514-63.347Q127.463-63.255 127.371-63.205Q127.279-63.154 127.174-63.154Q127.068-63.154 126.977-63.205Q126.885-63.255 126.834-63.347Q126.783-63.439 126.783-63.544Q126.783-63.962 127.172-64.109Q127.561-64.255 128.061-64.255Q128.393-64.255 128.746-64.125Q129.100-63.994 129.328-63.740Q129.557-63.486 129.557-63.138L129.557-61.337Q129.557-61.205 129.629-61.095Q129.701-60.986 129.830-60.986Q129.955-60.986 130.024-61.091Q130.092-61.197 130.092-61.337L130.092-61.849L130.373-61.849L130.373-61.337Q130.373-61.134 130.256-60.976Q130.139-60.818 129.957-60.734Q129.775-60.650 129.572-60.650Q129.342-60.650 129.190-60.822Q129.037-60.994 129.006-61.224Q128.846-60.943 128.537-60.777Q128.229-60.611 127.877-60.611Q127.365-60.611 126.942-60.834Q126.518-61.056 126.518-61.521M127.205-61.521Q127.205-61.236 127.432-61.050Q127.658-60.865 127.951-60.865Q128.197-60.865 128.422-60.982Q128.647-61.099 128.781-61.302Q128.916-61.505 128.916-61.759L128.916-62.591Q128.650-62.591 128.365-62.537Q128.080-62.482 127.809-62.353Q127.537-62.224 127.371-62.017Q127.205-61.810 127.205-61.521M130.666-60.080Q130.666-60.361 130.877-60.572Q131.088-60.783 131.373-60.873Q131.217-60.998 131.139-61.187Q131.061-61.377 131.061-61.576Q131.061-61.931 131.291-62.224Q130.924-62.564 130.924-63.033Q130.924-63.384 131.127-63.654Q131.330-63.923 131.650-64.070Q131.971-64.216 132.315-64.216Q132.834-64.216 133.205-63.935Q133.568-64.306 134.115-64.306Q134.295-64.306 134.422-64.179Q134.549-64.052 134.549-63.873Q134.549-63.767 134.471-63.689Q134.393-63.611 134.283-63.611Q134.174-63.611 134.098-63.687Q134.022-63.763 134.022-63.873Q134.022-63.974 134.061-64.025Q134.068-64.033 134.072-64.039Q134.076-64.044 134.076-64.048Q133.701-64.048 133.381-63.794Q133.701-63.455 133.701-63.033Q133.701-62.763 133.584-62.546Q133.467-62.330 133.262-62.171Q133.057-62.013 132.815-61.931Q132.572-61.849 132.315-61.849Q132.096-61.849 131.883-61.908Q131.670-61.966 131.475-62.087Q131.381-61.947 131.381-61.767Q131.381-61.560 131.518-61.408Q131.654-61.255 131.861-61.255L132.557-61.255Q133.045-61.255 133.457-61.171Q133.869-61.087 134.149-60.830Q134.428-60.572 134.428-60.080Q134.428-59.716 134.108-59.484Q133.787-59.252 133.346-59.150Q132.904-59.048 132.549-59.048Q132.193-59.048 131.750-59.150Q131.307-59.252 130.986-59.484Q130.666-59.716 130.666-60.080M131.170-60.080Q131.170-59.884 131.315-59.736Q131.459-59.587 131.672-59.498Q131.885-59.408 132.125-59.361Q132.365-59.314 132.549-59.314Q132.791-59.314 133.121-59.392Q133.451-59.470 133.688-59.644Q133.924-59.818 133.924-60.080Q133.924-60.486 133.514-60.595Q133.104-60.705 132.541-60.705L131.861-60.705Q131.592-60.705 131.381-60.527Q131.170-60.349 131.170-60.080M132.315-62.115Q133.037-62.115 133.037-63.033Q133.037-63.955 132.315-63.955Q131.588-63.955 131.588-63.033Q131.588-62.115 132.315-62.115M134.912-62.443Q134.912-62.923 135.145-63.339Q135.377-63.755 135.787-64.005Q136.197-64.255 136.674-64.255Q137.404-64.255 137.803-63.814Q138.201-63.373 138.201-62.642Q138.201-62.537 138.108-62.513L135.658-62.513L135.658-62.443Q135.658-62.033 135.779-61.677Q135.900-61.322 136.172-61.105Q136.443-60.888 136.873-60.888Q137.236-60.888 137.533-61.117Q137.830-61.345 137.932-61.697Q137.940-61.744 138.025-61.759L138.108-61.759Q138.201-61.732 138.201-61.650Q138.201-61.642 138.193-61.611Q138.131-61.384 137.992-61.201Q137.854-61.017 137.662-60.884Q137.471-60.752 137.252-60.681Q137.033-60.611 136.795-60.611Q136.424-60.611 136.086-60.748Q135.748-60.884 135.481-61.136Q135.213-61.388 135.063-61.728Q134.912-62.068 134.912-62.443M135.666-62.752L137.627-62.752Q137.627-63.056 137.525-63.347Q137.424-63.638 137.207-63.820Q136.990-64.001 136.674-64.001Q136.373-64.001 136.143-63.814Q135.912-63.627 135.789-63.335Q135.666-63.044 135.666-62.752\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-69.401 165.603)\">\u003Cpath d=\"M142.159-61.650L142.159-63.841L141.456-63.841L141.456-64.095Q141.812-64.095 142.054-64.328Q142.296-64.560 142.407-64.908Q142.519-65.255 142.519-65.611L142.800-65.611L142.800-64.138L143.976-64.138L143.976-63.841L142.800-63.841L142.800-61.666Q142.800-61.345 142.919-61.117Q143.038-60.888 143.319-60.888Q143.499-60.888 143.616-61.011Q143.733-61.134 143.786-61.314Q143.839-61.494 143.839-61.666L143.839-62.138L144.120-62.138L144.120-61.650Q144.120-61.396 144.015-61.156Q143.909-60.916 143.712-60.763Q143.515-60.611 143.257-60.611Q142.941-60.611 142.689-60.734Q142.437-60.857 142.298-61.091Q142.159-61.326 142.159-61.650M144.937-61.521Q144.937-62.005 145.339-62.300Q145.741-62.595 146.292-62.714Q146.843-62.834 147.335-62.834L147.335-63.123Q147.335-63.349 147.220-63.556Q147.105-63.763 146.907-63.882Q146.710-64.001 146.480-64.001Q146.054-64.001 145.769-63.896Q145.839-63.869 145.886-63.814Q145.933-63.759 145.958-63.689Q145.983-63.619 145.983-63.544Q145.983-63.439 145.933-63.347Q145.882-63.255 145.790-63.205Q145.698-63.154 145.593-63.154Q145.487-63.154 145.396-63.205Q145.304-63.255 145.253-63.347Q145.202-63.439 145.202-63.544Q145.202-63.962 145.591-64.109Q145.980-64.255 146.480-64.255Q146.812-64.255 147.165-64.125Q147.519-63.994 147.747-63.740Q147.976-63.486 147.976-63.138L147.976-61.337Q147.976-61.205 148.048-61.095Q148.120-60.986 148.249-60.986Q148.374-60.986 148.442-61.091Q148.511-61.197 148.511-61.337L148.511-61.849L148.792-61.849L148.792-61.337Q148.792-61.134 148.675-60.976Q148.558-60.818 148.376-60.734Q148.194-60.650 147.991-60.650Q147.761-60.650 147.608-60.822Q147.456-60.994 147.425-61.224Q147.265-60.943 146.956-60.777Q146.648-60.611 146.296-60.611Q145.784-60.611 145.360-60.834Q144.937-61.056 144.937-61.521M145.624-61.521Q145.624-61.236 145.851-61.050Q146.077-60.865 146.370-60.865Q146.616-60.865 146.841-60.982Q147.066-61.099 147.200-61.302Q147.335-61.505 147.335-61.759L147.335-62.591Q147.069-62.591 146.784-62.537Q146.499-62.482 146.228-62.353Q145.956-62.224 145.790-62.017Q145.624-61.810 145.624-61.521M149.999-60.689L149.718-60.689L149.718-65.408Q149.718-65.623 149.655-65.718Q149.593-65.814 149.476-65.835Q149.358-65.857 149.112-65.857L149.112-66.154L150.335-66.240L150.335-63.752Q150.812-64.216 151.511-64.216Q151.991-64.216 152.400-63.972Q152.808-63.728 153.044-63.314Q153.280-62.900 153.280-62.416Q153.280-62.041 153.132-61.712Q152.983-61.384 152.714-61.132Q152.444-60.880 152.101-60.746Q151.757-60.611 151.398-60.611Q151.077-60.611 150.778-60.759Q150.480-60.908 150.273-61.169L149.999-60.689M150.358-63.361L150.358-61.521Q150.511-61.224 150.771-61.044Q151.030-60.865 151.343-60.865Q151.769-60.865 152.036-61.084Q152.304-61.302 152.419-61.648Q152.534-61.994 152.534-62.416Q152.534-63.064 152.286-63.513Q152.038-63.962 151.441-63.962Q151.105-63.962 150.816-63.804Q150.526-63.646 150.358-63.361M155.718-60.689L153.886-60.689L153.886-60.986Q154.159-60.986 154.327-61.033Q154.495-61.080 154.495-61.248L154.495-65.408Q154.495-65.623 154.433-65.718Q154.370-65.814 154.251-65.835Q154.132-65.857 153.886-65.857L153.886-66.154L155.108-66.240L155.108-61.248Q155.108-61.080 155.276-61.033Q155.444-60.986 155.718-60.986L155.718-60.689M156.163-62.443Q156.163-62.923 156.396-63.339Q156.628-63.755 157.038-64.005Q157.448-64.255 157.925-64.255Q158.655-64.255 159.054-63.814Q159.452-63.373 159.452-62.642Q159.452-62.537 159.358-62.513L156.909-62.513L156.909-62.443Q156.909-62.033 157.030-61.677Q157.151-61.322 157.423-61.105Q157.694-60.888 158.124-60.888Q158.487-60.888 158.784-61.117Q159.081-61.345 159.183-61.697Q159.191-61.744 159.276-61.759L159.358-61.759Q159.452-61.732 159.452-61.650Q159.452-61.642 159.444-61.611Q159.382-61.384 159.243-61.201Q159.105-61.017 158.913-60.884Q158.722-60.752 158.503-60.681Q158.284-60.611 158.046-60.611Q157.675-60.611 157.337-60.748Q156.999-60.884 156.732-61.136Q156.464-61.388 156.314-61.728Q156.163-62.068 156.163-62.443M156.917-62.752L158.878-62.752Q158.878-63.056 158.776-63.347Q158.675-63.638 158.458-63.820Q158.241-64.001 157.925-64.001Q157.624-64.001 157.394-63.814Q157.163-63.627 157.040-63.335Q156.917-63.044 156.917-62.752\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-69.401 165.603)\">\u003Cpath d=\"M164.899-62.138L162.645-62.138L162.645-62.689L164.899-62.689L164.899-62.138M165.852-60.154Q165.852-60.388 165.951-60.603Q166.051-60.818 166.227-60.962Q166.637-61.263 166.879-61.716Q167.121-62.169 167.121-62.666L167.121-63.056Q167.121-63.091 167.149-63.119Q167.176-63.146 167.211-63.146L167.317-63.146Q167.352-63.146 167.377-63.117Q167.402-63.087 167.402-63.056L167.402-62.650Q167.402-62.013 167.180-61.466Q167.098-61.259 166.922-61.003Q166.746-60.748 166.670-60.584Q166.594-60.419 166.594-60.146Q166.594-59.853 166.639-59.677Q166.684-59.502 166.828-59.408Q166.973-59.314 167.266-59.314Q168.160-59.314 168.508-59.759Q168.348-59.759 168.240-59.877Q168.133-59.994 168.133-60.154Q168.133-60.255 168.184-60.347Q168.234-60.439 168.324-60.492Q168.414-60.544 168.524-60.544Q168.633-60.544 168.723-60.492Q168.813-60.439 168.863-60.347Q168.914-60.255 168.914-60.154Q168.914-59.865 168.762-59.650Q168.609-59.435 168.359-59.304Q168.109-59.173 167.826-59.115Q167.543-59.056 167.266-59.056Q166.672-59.056 166.262-59.322Q165.852-59.587 165.852-60.154M166.805-64.232Q166.805-64.423 166.938-64.556Q167.070-64.689 167.266-64.689Q167.457-64.689 167.590-64.556Q167.723-64.423 167.723-64.232Q167.723-64.041 167.586-63.904Q167.449-63.767 167.266-63.767Q167.078-63.767 166.942-63.904Q166.805-64.041 166.805-64.232\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-69.401 165.603)\">\u003Cpath d=\"M175.641-60.689L172.579-60.689L172.579-60.986Q172.903-60.986 173.145-61.033Q173.387-61.080 173.387-61.248L173.387-65.591Q173.387-65.763 173.145-65.810Q172.903-65.857 172.579-65.857L172.579-66.154L175.641-66.154Q176.192-66.154 176.670-65.927Q177.149-65.701 177.502-65.306Q177.856-64.912 178.045-64.412Q178.235-63.912 178.235-63.369Q178.235-62.662 177.891-62.044Q177.547-61.427 176.952-61.058Q176.356-60.689 175.641-60.689M174.129-65.591L174.129-61.248Q174.129-61.076 174.221-61.031Q174.313-60.986 174.532-60.986L175.426-60.986Q175.872-60.986 176.264-61.156Q176.657-61.326 176.928-61.650Q177.200-61.974 177.297-62.394Q177.395-62.814 177.395-63.369Q177.395-63.724 177.358-64.037Q177.321-64.349 177.215-64.644Q177.110-64.939 176.930-65.162Q176.747-65.396 176.508-65.546Q176.270-65.697 175.989-65.777Q175.707-65.857 175.426-65.857L174.532-65.857Q174.313-65.857 174.221-65.814Q174.129-65.771 174.129-65.591M181.426-60.689L179.067-60.689L179.067-60.986Q179.391-60.986 179.633-61.033Q179.875-61.080 179.875-61.248L179.875-65.591Q179.875-65.763 179.633-65.810Q179.391-65.857 179.067-65.857L179.067-66.154L181.661-66.154Q181.993-66.154 182.379-66.068Q182.766-65.982 183.114-65.808Q183.461-65.634 183.680-65.353Q183.899-65.072 183.899-64.705Q183.899-64.380 183.698-64.115Q183.497-63.849 183.190-63.673Q182.883-63.498 182.555-63.408Q182.922-63.287 183.182-63.017Q183.442-62.748 183.493-62.384L183.586-61.689Q183.657-61.240 183.754-61.009Q183.852-60.779 184.149-60.779Q184.395-60.779 184.528-60.996Q184.661-61.212 184.661-61.474Q184.680-61.548 184.762-61.568L184.844-61.568Q184.938-61.544 184.938-61.451Q184.938-61.220 184.840-61.005Q184.743-60.791 184.565-60.656Q184.387-60.521 184.157-60.521Q183.559-60.521 183.141-60.808Q182.723-61.095 182.723-61.666L182.723-62.361Q182.723-62.642 182.571-62.857Q182.418-63.072 182.168-63.185Q181.918-63.298 181.645-63.298L180.618-63.298L180.618-61.248Q180.618-61.084 180.862-61.035Q181.106-60.986 181.426-60.986L181.426-60.689M180.618-65.591L180.618-63.552L181.547-63.552Q181.868-63.552 182.135-63.605Q182.403-63.658 182.602-63.785Q182.801-63.912 182.918-64.144Q183.036-64.376 183.036-64.705Q183.036-65.357 182.639-65.607Q182.243-65.857 181.547-65.857L181.020-65.857Q180.801-65.857 180.709-65.814Q180.618-65.771 180.618-65.591M187-60.689L185.250-60.689L185.250-60.986Q185.950-60.986 186.137-61.466L187.938-66.291Q187.993-66.400 188.106-66.400L188.176-66.400Q188.290-66.400 188.344-66.291L190.235-61.248Q190.313-61.080 190.516-61.033Q190.719-60.986 191.032-60.986L191.032-60.689L188.809-60.689L188.809-60.986Q189.450-60.986 189.450-61.201Q189.450-61.220 189.448-61.230Q189.446-61.240 189.442-61.248L188.977-62.482L186.832-62.482L186.450-61.466Q186.446-61.451 186.440-61.421Q186.434-61.392 186.434-61.369Q186.434-61.228 186.524-61.144Q186.614-61.060 186.747-61.023Q186.879-60.986 187-60.986L187-60.689M187.907-65.345L186.938-62.779L188.864-62.779L187.907-65.345M193.618-60.689L191.696-60.689L191.696-60.986Q192.504-60.986 192.504-61.466L192.504-65.591Q192.504-65.763 192.262-65.810Q192.020-65.857 191.696-65.857L191.696-66.154L193.192-66.154Q193.301-66.154 193.360-66.041L195.207-61.498L197.047-66.041Q197.110-66.154 197.215-66.154L198.719-66.154L198.719-65.857Q198.399-65.857 198.157-65.810Q197.915-65.763 197.915-65.591L197.915-61.248Q197.915-61.080 198.157-61.033Q198.399-60.986 198.719-60.986L198.719-60.689L196.418-60.689L196.418-60.986Q197.223-60.986 197.223-61.248L197.223-65.841L195.176-60.802Q195.141-60.689 195.008-60.689Q194.868-60.689 194.832-60.802L192.809-65.779L192.809-61.466Q192.809-60.986 193.618-60.986\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(103.118 165.159)\">\u003Cpath d=\"M60.263-60.927L60.263-61.017Q60.314-61.228 60.509-61.248L60.709-61.248L60.709-63.576L60.509-63.576Q60.302-63.599 60.263-63.818L60.263-63.904Q60.314-64.119 60.509-64.138L60.990-64.138Q61.181-64.115 61.240-63.904Q61.560-64.177 61.974-64.177Q62.166-64.177 62.334-64.068Q62.502-63.959 62.576-63.787Q62.752-63.978 62.974-64.078Q63.197-64.177 63.439-64.177Q63.857-64.177 64.011-63.835Q64.166-63.494 64.166-63.025L64.166-61.248L64.365-61.248Q64.576-61.224 64.615-61.017L64.615-60.927Q64.564-60.712 64.365-60.689L63.548-60.689Q63.353-60.712 63.302-60.927L63.302-61.017Q63.353-61.224 63.548-61.248L63.638-61.248L63.638-62.994Q63.638-63.619 63.388-63.619Q63.056-63.619 62.879-63.308Q62.701-62.998 62.701-62.634L62.701-61.248L62.904-61.248Q63.111-61.224 63.150-61.017L63.150-60.927Q63.099-60.712 62.904-60.689L62.088-60.689Q61.888-60.712 61.838-60.927L61.838-61.017Q61.888-61.224 62.088-61.248L62.173-61.248L62.173-62.994Q62.173-63.619 61.927-63.619Q61.595-63.619 61.418-63.306Q61.240-62.994 61.240-62.634L61.240-61.248L61.439-61.248Q61.646-61.224 61.685-61.017L61.685-60.927Q61.634-60.709 61.439-60.689L60.509-60.689Q60.302-60.712 60.263-60.927M68.076-62.177L65.634-62.177Q65.689-61.900 65.886-61.677Q66.084-61.455 66.361-61.332Q66.638-61.209 66.923-61.209Q67.396-61.209 67.619-61.498Q67.627-61.509 67.683-61.615Q67.740-61.720 67.789-61.763Q67.838-61.806 67.931-61.818L68.076-61.818Q68.267-61.798 68.326-61.584L68.326-61.529Q68.259-61.228 68.029-61.031Q67.798-60.834 67.486-60.742Q67.173-60.650 66.869-60.650Q66.384-60.650 65.945-60.878Q65.505-61.107 65.238-61.507Q64.970-61.908 64.970-62.400L64.970-62.459Q64.970-62.927 65.216-63.330Q65.463-63.732 65.871-63.966Q66.279-64.201 66.748-64.201Q67.252-64.201 67.605-63.978Q67.959-63.755 68.142-63.367Q68.326-62.978 68.326-62.474L68.326-62.416Q68.267-62.201 68.076-62.177M65.642-62.728L67.670-62.728Q67.623-63.138 67.384-63.390Q67.146-63.642 66.748-63.642Q66.353-63.642 66.047-63.380Q65.740-63.119 65.642-62.728M68.755-60.927L68.755-61.017Q68.806-61.228 69.002-61.248L69.201-61.248L69.201-63.576L69.002-63.576Q68.795-63.599 68.755-63.818L68.755-63.904Q68.806-64.119 69.002-64.138L69.482-64.138Q69.673-64.115 69.732-63.904Q70.052-64.177 70.466-64.177Q70.658-64.177 70.826-64.068Q70.994-63.959 71.068-63.787Q71.244-63.978 71.466-64.078Q71.689-64.177 71.931-64.177Q72.349-64.177 72.504-63.835Q72.658-63.494 72.658-63.025L72.658-61.248L72.857-61.248Q73.068-61.224 73.107-61.017L73.107-60.927Q73.056-60.712 72.857-60.689L72.041-60.689Q71.845-60.712 71.795-60.927L71.795-61.017Q71.845-61.224 72.041-61.248L72.130-61.248L72.130-62.994Q72.130-63.619 71.880-63.619Q71.548-63.619 71.371-63.308Q71.193-62.998 71.193-62.634L71.193-61.248L71.396-61.248Q71.603-61.224 71.642-61.017L71.642-60.927Q71.591-60.712 71.396-60.689L70.580-60.689Q70.380-60.712 70.330-60.927L70.330-61.017Q70.380-61.224 70.580-61.248L70.666-61.248L70.666-62.994Q70.666-63.619 70.420-63.619Q70.088-63.619 69.910-63.306Q69.732-62.994 69.732-62.634L69.732-61.248L69.931-61.248Q70.138-61.224 70.177-61.017L70.177-60.927Q70.127-60.709 69.931-60.689L69.002-60.689Q68.795-60.712 68.755-60.927M75.177-60.650Q74.705-60.650 74.320-60.894Q73.935-61.138 73.713-61.548Q73.490-61.959 73.490-62.416Q73.490-62.759 73.615-63.082Q73.740-63.404 73.970-63.658Q74.201-63.912 74.507-64.056Q74.814-64.201 75.177-64.201Q75.541-64.201 75.853-64.054Q76.166-63.908 76.388-63.662Q76.611-63.416 76.738-63.095Q76.865-62.775 76.865-62.416Q76.865-61.959 76.640-61.546Q76.416-61.134 76.031-60.892Q75.646-60.650 75.177-60.650M75.177-61.209Q75.642-61.209 75.933-61.603Q76.224-61.998 76.224-62.482Q76.224-62.775 76.089-63.043Q75.955-63.310 75.714-63.476Q75.474-63.642 75.177-63.642Q74.873-63.642 74.634-63.476Q74.396-63.310 74.261-63.043Q74.127-62.775 74.127-62.482Q74.127-62.002 74.420-61.605Q74.713-61.209 75.177-61.209M77.525-60.927L77.525-61.017Q77.584-61.224 77.775-61.248L78.486-61.248L78.486-63.576L77.775-63.576Q77.580-63.599 77.525-63.818L77.525-63.904Q77.584-64.115 77.775-64.138L78.877-64.138Q79.076-64.119 79.127-63.904L79.127-63.576Q79.388-63.861 79.744-64.019Q80.099-64.177 80.486-64.177Q80.779-64.177 81.013-64.043Q81.248-63.908 81.248-63.642Q81.248-63.474 81.138-63.357Q81.029-63.240 80.861-63.240Q80.709-63.240 80.593-63.351Q80.478-63.462 80.478-63.619Q80.103-63.619 79.789-63.418Q79.474-63.216 79.300-62.882Q79.127-62.548 79.127-62.169L79.127-61.248L80.072-61.248Q80.279-61.224 80.318-61.017L80.318-60.927Q80.279-60.712 80.072-60.689L77.775-60.689Q77.584-60.712 77.525-60.927M81.892-59.568Q81.892-59.677 81.943-59.769Q81.994-59.861 82.086-59.912Q82.177-59.962 82.283-59.962Q82.392-59.962 82.484-59.912Q82.576-59.861 82.627-59.769Q82.677-59.677 82.677-59.568L82.533-59.568Q82.533-59.431 82.556-59.431Q82.814-59.431 83.002-59.623Q83.189-59.814 83.275-60.080L83.486-60.689L82.349-63.576L82.021-63.576Q81.826-63.599 81.771-63.818L81.771-63.904Q81.830-64.115 82.021-64.138L83.181-64.138Q83.377-64.115 83.427-63.904L83.427-63.818Q83.377-63.599 83.181-63.576L82.916-63.576Q83.252-62.728 83.496-62.074Q83.740-61.419 83.740-61.330L83.748-61.330Q83.748-61.388 83.839-61.681Q83.931-61.974 84.125-62.558Q84.318-63.142 84.459-63.576L84.181-63.576Q83.970-63.599 83.931-63.818L83.931-63.904Q83.982-64.119 84.181-64.138L85.334-64.138Q85.541-64.115 85.580-63.904L85.580-63.818Q85.541-63.599 85.334-63.576L85.013-63.576L83.838-60.080Q83.670-59.580 83.343-59.226Q83.017-58.873 82.556-58.873Q82.283-58.873 82.088-59.084Q81.892-59.294 81.892-59.568\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 165.159)\">\u003Cpath d=\"M91.884-61.611L91.884-62.826L90.670-62.826Q90.545-62.837 90.459-62.923Q90.373-63.009 90.373-63.138Q90.373-63.267 90.459-63.349Q90.545-63.431 90.670-63.443L91.884-63.443L91.884-64.666Q91.896-64.791 91.982-64.873Q92.068-64.955 92.197-64.955Q92.326-64.955 92.408-64.873Q92.490-64.791 92.502-64.666L92.502-63.443L93.716-63.443Q93.841-63.431 93.923-63.349Q94.005-63.267 94.005-63.138Q94.005-63.009 93.923-62.923Q93.841-62.837 93.716-62.826L92.502-62.826L92.502-61.611Q92.490-61.486 92.408-61.400Q92.326-61.314 92.197-61.314Q92.068-61.314 91.982-61.400Q91.896-61.486 91.884-61.611\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 165.159)\">\u003Cpath d=\"M100.224-60.912L99.338-63.576L99.017-63.576Q98.818-63.599 98.767-63.818L98.767-63.904Q98.818-64.115 99.017-64.138L100.177-64.138Q100.373-64.119 100.423-63.904L100.423-63.818Q100.373-63.599 100.177-63.576L99.896-63.576L100.689-61.201L101.478-63.576L101.201-63.576Q101.002-63.599 100.951-63.818L100.951-63.904Q101.002-64.115 101.201-64.138L102.361-64.138Q102.556-64.115 102.607-63.904L102.607-63.818Q102.556-63.599 102.361-63.576L102.041-63.576L101.154-60.912Q101.111-60.798 101.009-60.724Q100.908-60.650 100.783-60.650L100.591-60.650Q100.474-60.650 100.371-60.722Q100.267-60.794 100.224-60.912M103.431-60.927L103.431-61.017Q103.482-61.224 103.677-61.248L104.716-61.248L104.716-63.576L103.744-63.576Q103.545-63.599 103.494-63.818L103.494-63.904Q103.545-64.115 103.744-64.138L105.111-64.138Q105.306-64.119 105.357-63.904L105.357-61.248L106.271-61.248Q106.466-61.224 106.517-61.017L106.517-60.927Q106.466-60.712 106.271-60.689L103.677-60.689Q103.482-60.712 103.431-60.927M104.463-65.115L104.463-65.169Q104.463-65.341 104.599-65.462Q104.736-65.584 104.912-65.584Q105.084-65.584 105.220-65.462Q105.357-65.341 105.357-65.169L105.357-65.115Q105.357-64.939 105.220-64.818Q105.084-64.697 104.912-64.697Q104.736-64.697 104.599-64.818Q104.463-64.939 104.463-65.115M107.283-60.927L107.283-61.017Q107.341-61.224 107.533-61.248L108.244-61.248L108.244-63.576L107.533-63.576Q107.338-63.599 107.283-63.818L107.283-63.904Q107.341-64.115 107.533-64.138L108.634-64.138Q108.834-64.119 108.884-63.904L108.884-63.576Q109.146-63.861 109.502-64.019Q109.857-64.177 110.244-64.177Q110.537-64.177 110.771-64.043Q111.005-63.908 111.005-63.642Q111.005-63.474 110.896-63.357Q110.787-63.240 110.619-63.240Q110.466-63.240 110.351-63.351Q110.236-63.462 110.236-63.619Q109.861-63.619 109.547-63.418Q109.232-63.216 109.058-62.882Q108.884-62.548 108.884-62.169L108.884-61.248L109.830-61.248Q110.037-61.224 110.076-61.017L110.076-60.927Q110.037-60.712 109.830-60.689L107.533-60.689Q107.341-60.712 107.283-60.927M112.505-61.794L112.505-63.576L111.755-63.576Q111.556-63.599 111.505-63.818L111.505-63.904Q111.556-64.115 111.755-64.138L112.505-64.138L112.505-64.888Q112.556-65.095 112.755-65.123L112.900-65.123Q113.095-65.095 113.146-64.888L113.146-64.138L114.505-64.138Q114.697-64.119 114.755-63.904L114.755-63.818Q114.701-63.599 114.505-63.576L113.146-63.576L113.146-61.826Q113.146-61.209 113.720-61.209Q113.970-61.209 114.134-61.394Q114.298-61.580 114.298-61.826Q114.298-61.919 114.371-61.990Q114.443-62.060 114.545-62.072L114.689-62.072Q114.888-62.048 114.939-61.841L114.939-61.794Q114.939-61.470 114.755-61.207Q114.572-60.943 114.279-60.796Q113.986-60.650 113.666-60.650Q113.154-60.650 112.830-60.960Q112.505-61.271 112.505-61.794M116.295-61.544L116.295-63.576L115.873-63.576Q115.666-63.599 115.623-63.818L115.623-63.904Q115.670-64.115 115.873-64.138L116.689-64.138Q116.884-64.115 116.935-63.904L116.935-61.576Q116.935-61.341 117.105-61.275Q117.275-61.209 117.560-61.209Q117.767-61.209 117.963-61.285Q118.158-61.361 118.283-61.511Q118.408-61.662 118.408-61.873L118.408-63.576L117.986-63.576Q117.775-63.599 117.736-63.818L117.736-63.904Q117.775-64.115 117.986-64.138L118.798-64.138Q118.998-64.115 119.048-63.904L119.048-61.248L119.474-61.248Q119.681-61.224 119.720-61.017L119.720-60.927Q119.681-60.712 119.474-60.689L118.658-60.689Q118.459-60.712 118.408-60.912Q118.005-60.650 117.498-60.650Q117.263-60.650 117.048-60.691Q116.834-60.732 116.668-60.834Q116.502-60.935 116.398-61.113Q116.295-61.291 116.295-61.544M120.205-61.802Q120.205-62.248 120.619-62.505Q121.033-62.763 121.574-62.863Q122.115-62.962 122.623-62.970Q122.623-63.185 122.488-63.337Q122.353-63.490 122.146-63.566Q121.939-63.642 121.728-63.642Q121.384-63.642 121.224-63.619L121.224-63.560Q121.224-63.392 121.105-63.277Q120.986-63.162 120.822-63.162Q120.646-63.162 120.531-63.285Q120.416-63.408 120.416-63.576Q120.416-63.982 120.797-64.091Q121.177-64.201 121.736-64.201Q122.005-64.201 122.273-64.123Q122.541-64.044 122.765-63.894Q122.990-63.744 123.127-63.523Q123.263-63.302 123.263-63.025L123.263-61.306Q123.263-61.248 123.791-61.248Q123.986-61.228 124.037-61.017L124.037-60.927Q123.986-60.712 123.791-60.689L123.646-60.689Q123.302-60.689 123.074-60.736Q122.845-60.783 122.701-60.970Q122.240-60.650 121.533-60.650Q121.197-60.650 120.892-60.791Q120.588-60.931 120.396-61.193Q120.205-61.455 120.205-61.802M120.845-61.794Q120.845-61.521 121.088-61.365Q121.330-61.209 121.615-61.209Q121.834-61.209 122.066-61.267Q122.298-61.326 122.461-61.464Q122.623-61.603 122.623-61.826L122.623-62.416Q122.341-62.416 121.925-62.359Q121.509-62.302 121.177-62.164Q120.845-62.025 120.845-61.794M124.494-60.927L124.494-61.017Q124.545-61.224 124.740-61.248L125.845-61.248L125.845-65.017L124.740-65.017Q124.545-65.041 124.494-65.255L124.494-65.345Q124.545-65.552 124.740-65.576L126.236-65.576Q126.427-65.552 126.486-65.345L126.486-61.248L127.588-61.248Q127.787-61.224 127.838-61.017L127.838-60.927Q127.787-60.712 127.588-60.689L124.740-60.689Q124.545-60.712 124.494-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 165.159)\">\u003Cpath d=\"M132.514-60.927L132.514-61.017Q132.565-61.228 132.760-61.248L132.960-61.248L132.960-63.576L132.760-63.576Q132.553-63.599 132.514-63.818L132.514-63.904Q132.565-64.119 132.760-64.138L133.241-64.138Q133.432-64.115 133.491-63.904Q133.811-64.177 134.225-64.177Q134.417-64.177 134.585-64.068Q134.753-63.959 134.827-63.787Q135.003-63.978 135.225-64.078Q135.448-64.177 135.690-64.177Q136.108-64.177 136.262-63.835Q136.417-63.494 136.417-63.025L136.417-61.248L136.616-61.248Q136.827-61.224 136.866-61.017L136.866-60.927Q136.815-60.712 136.616-60.689L135.799-60.689Q135.604-60.712 135.553-60.927L135.553-61.017Q135.604-61.224 135.799-61.248L135.889-61.248L135.889-62.994Q135.889-63.619 135.639-63.619Q135.307-63.619 135.130-63.308Q134.952-62.998 134.952-62.634L134.952-61.248L135.155-61.248Q135.362-61.224 135.401-61.017L135.401-60.927Q135.350-60.712 135.155-60.689L134.339-60.689Q134.139-60.712 134.089-60.927L134.089-61.017Q134.139-61.224 134.339-61.248L134.424-61.248L134.424-62.994Q134.424-63.619 134.178-63.619Q133.846-63.619 133.669-63.306Q133.491-62.994 133.491-62.634L133.491-61.248L133.690-61.248Q133.897-61.224 133.936-61.017L133.936-60.927Q133.885-60.709 133.690-60.689L132.760-60.689Q132.553-60.712 132.514-60.927M140.327-62.177L137.885-62.177Q137.940-61.900 138.137-61.677Q138.335-61.455 138.612-61.332Q138.889-61.209 139.174-61.209Q139.647-61.209 139.870-61.498Q139.878-61.509 139.934-61.615Q139.991-61.720 140.040-61.763Q140.089-61.806 140.182-61.818L140.327-61.818Q140.518-61.798 140.577-61.584L140.577-61.529Q140.510-61.228 140.280-61.031Q140.049-60.834 139.737-60.742Q139.424-60.650 139.120-60.650Q138.635-60.650 138.196-60.878Q137.756-61.107 137.489-61.507Q137.221-61.908 137.221-62.400L137.221-62.459Q137.221-62.927 137.467-63.330Q137.714-63.732 138.122-63.966Q138.530-64.201 138.999-64.201Q139.503-64.201 139.856-63.978Q140.210-63.755 140.393-63.367Q140.577-62.978 140.577-62.474L140.577-62.416Q140.518-62.201 140.327-62.177M137.893-62.728L139.921-62.728Q139.874-63.138 139.635-63.390Q139.397-63.642 138.999-63.642Q138.604-63.642 138.298-63.380Q137.991-63.119 137.893-62.728M141.006-60.927L141.006-61.017Q141.057-61.228 141.253-61.248L141.452-61.248L141.452-63.576L141.253-63.576Q141.046-63.599 141.006-63.818L141.006-63.904Q141.057-64.119 141.253-64.138L141.733-64.138Q141.924-64.115 141.983-63.904Q142.303-64.177 142.717-64.177Q142.909-64.177 143.077-64.068Q143.245-63.959 143.319-63.787Q143.495-63.978 143.717-64.078Q143.940-64.177 144.182-64.177Q144.600-64.177 144.755-63.835Q144.909-63.494 144.909-63.025L144.909-61.248L145.108-61.248Q145.319-61.224 145.358-61.017L145.358-60.927Q145.307-60.712 145.108-60.689L144.292-60.689Q144.096-60.712 144.046-60.927L144.046-61.017Q144.096-61.224 144.292-61.248L144.381-61.248L144.381-62.994Q144.381-63.619 144.131-63.619Q143.799-63.619 143.622-63.308Q143.444-62.998 143.444-62.634L143.444-61.248L143.647-61.248Q143.854-61.224 143.893-61.017L143.893-60.927Q143.842-60.712 143.647-60.689L142.831-60.689Q142.631-60.712 142.581-60.927L142.581-61.017Q142.631-61.224 142.831-61.248L142.917-61.248L142.917-62.994Q142.917-63.619 142.671-63.619Q142.339-63.619 142.161-63.306Q141.983-62.994 141.983-62.634L141.983-61.248L142.182-61.248Q142.389-61.224 142.428-61.017L142.428-60.927Q142.378-60.709 142.182-60.689L141.253-60.689Q141.046-60.712 141.006-60.927M147.428-60.650Q146.956-60.650 146.571-60.894Q146.186-61.138 145.964-61.548Q145.741-61.959 145.741-62.416Q145.741-62.759 145.866-63.082Q145.991-63.404 146.221-63.658Q146.452-63.912 146.758-64.056Q147.065-64.201 147.428-64.201Q147.792-64.201 148.104-64.054Q148.417-63.908 148.639-63.662Q148.862-63.416 148.989-63.095Q149.116-62.775 149.116-62.416Q149.116-61.959 148.891-61.546Q148.667-61.134 148.282-60.892Q147.897-60.650 147.428-60.650M147.428-61.209Q147.893-61.209 148.184-61.603Q148.475-61.998 148.475-62.482Q148.475-62.775 148.340-63.043Q148.206-63.310 147.965-63.476Q147.725-63.642 147.428-63.642Q147.124-63.642 146.885-63.476Q146.647-63.310 146.512-63.043Q146.378-62.775 146.378-62.482Q146.378-62.002 146.671-61.605Q146.964-61.209 147.428-61.209M149.776-60.927L149.776-61.017Q149.835-61.224 150.026-61.248L150.737-61.248L150.737-63.576L150.026-63.576Q149.831-63.599 149.776-63.818L149.776-63.904Q149.835-64.115 150.026-64.138L151.128-64.138Q151.327-64.119 151.378-63.904L151.378-63.576Q151.639-63.861 151.995-64.019Q152.350-64.177 152.737-64.177Q153.030-64.177 153.264-64.043Q153.499-63.908 153.499-63.642Q153.499-63.474 153.389-63.357Q153.280-63.240 153.112-63.240Q152.960-63.240 152.844-63.351Q152.729-63.462 152.729-63.619Q152.354-63.619 152.040-63.418Q151.725-63.216 151.551-62.882Q151.378-62.548 151.378-62.169L151.378-61.248L152.323-61.248Q152.530-61.224 152.569-61.017L152.569-60.927Q152.530-60.712 152.323-60.689L150.026-60.689Q149.835-60.712 149.776-60.927M154.143-59.568Q154.143-59.677 154.194-59.769Q154.245-59.861 154.337-59.912Q154.428-59.962 154.534-59.962Q154.643-59.962 154.735-59.912Q154.827-59.861 154.878-59.769Q154.928-59.677 154.928-59.568L154.784-59.568Q154.784-59.431 154.807-59.431Q155.065-59.431 155.253-59.623Q155.440-59.814 155.526-60.080L155.737-60.689L154.600-63.576L154.272-63.576Q154.077-63.599 154.022-63.818L154.022-63.904Q154.081-64.115 154.272-64.138L155.432-64.138Q155.628-64.115 155.678-63.904L155.678-63.818Q155.628-63.599 155.432-63.576L155.167-63.576Q155.503-62.728 155.747-62.074Q155.991-61.419 155.991-61.330L155.999-61.330Q155.999-61.388 156.090-61.681Q156.182-61.974 156.376-62.558Q156.569-63.142 156.710-63.576L156.432-63.576Q156.221-63.599 156.182-63.818L156.182-63.904Q156.233-64.119 156.432-64.138L157.585-64.138Q157.792-64.115 157.831-63.904L157.831-63.818Q157.792-63.599 157.585-63.576L157.264-63.576L156.089-60.080Q155.921-59.580 155.594-59.226Q155.268-58.873 154.807-58.873Q154.534-58.873 154.339-59.084Q154.143-59.294 154.143-59.568\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-30.731 147.016h182.097v-22.762H-30.73Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-54.904 198.324)\">\u003Cpath d=\"M60.556-60.080Q60.556-60.361 60.767-60.572Q60.978-60.783 61.263-60.873Q61.107-60.998 61.029-61.187Q60.951-61.377 60.951-61.576Q60.951-61.931 61.181-62.224Q60.814-62.564 60.814-63.033Q60.814-63.384 61.017-63.654Q61.220-63.923 61.541-64.070Q61.861-64.216 62.205-64.216Q62.724-64.216 63.095-63.935Q63.459-64.306 64.005-64.306Q64.185-64.306 64.312-64.179Q64.439-64.052 64.439-63.873Q64.439-63.767 64.361-63.689Q64.283-63.611 64.173-63.611Q64.064-63.611 63.988-63.687Q63.912-63.763 63.912-63.873Q63.912-63.974 63.951-64.025Q63.959-64.033 63.963-64.039Q63.966-64.044 63.966-64.048Q63.591-64.048 63.271-63.794Q63.591-63.455 63.591-63.033Q63.591-62.763 63.474-62.546Q63.357-62.330 63.152-62.171Q62.947-62.013 62.705-61.931Q62.463-61.849 62.205-61.849Q61.986-61.849 61.773-61.908Q61.560-61.966 61.365-62.087Q61.271-61.947 61.271-61.767Q61.271-61.560 61.408-61.408Q61.545-61.255 61.752-61.255L62.447-61.255Q62.935-61.255 63.347-61.171Q63.759-61.087 64.039-60.830Q64.318-60.572 64.318-60.080Q64.318-59.716 63.998-59.484Q63.677-59.252 63.236-59.150Q62.795-59.048 62.439-59.048Q62.084-59.048 61.640-59.150Q61.197-59.252 60.877-59.484Q60.556-59.716 60.556-60.080M61.060-60.080Q61.060-59.884 61.205-59.736Q61.349-59.587 61.562-59.498Q61.775-59.408 62.015-59.361Q62.255-59.314 62.439-59.314Q62.681-59.314 63.011-59.392Q63.341-59.470 63.578-59.644Q63.814-59.818 63.814-60.080Q63.814-60.486 63.404-60.595Q62.994-60.705 62.431-60.705L61.752-60.705Q61.482-60.705 61.271-60.527Q61.060-60.349 61.060-60.080M62.205-62.115Q62.927-62.115 62.927-63.033Q62.927-63.955 62.205-63.955Q61.478-63.955 61.478-63.033Q61.478-62.115 62.205-62.115M64.900-61.521Q64.900-62.005 65.302-62.300Q65.705-62.595 66.255-62.714Q66.806-62.834 67.298-62.834L67.298-63.123Q67.298-63.349 67.183-63.556Q67.068-63.763 66.871-63.882Q66.673-64.001 66.443-64.001Q66.017-64.001 65.732-63.896Q65.802-63.869 65.849-63.814Q65.896-63.759 65.922-63.689Q65.947-63.619 65.947-63.544Q65.947-63.439 65.896-63.347Q65.845-63.255 65.754-63.205Q65.662-63.154 65.556-63.154Q65.451-63.154 65.359-63.205Q65.267-63.255 65.216-63.347Q65.166-63.439 65.166-63.544Q65.166-63.962 65.554-64.109Q65.943-64.255 66.443-64.255Q66.775-64.255 67.129-64.125Q67.482-63.994 67.711-63.740Q67.939-63.486 67.939-63.138L67.939-61.337Q67.939-61.205 68.011-61.095Q68.084-60.986 68.213-60.986Q68.338-60.986 68.406-61.091Q68.474-61.197 68.474-61.337L68.474-61.849L68.755-61.849L68.755-61.337Q68.755-61.134 68.638-60.976Q68.521-60.818 68.339-60.734Q68.158-60.650 67.955-60.650Q67.724-60.650 67.572-60.822Q67.420-60.994 67.388-61.224Q67.228-60.943 66.920-60.777Q66.611-60.611 66.259-60.611Q65.748-60.611 65.324-60.834Q64.900-61.056 64.900-61.521M65.588-61.521Q65.588-61.236 65.814-61.050Q66.041-60.865 66.334-60.865Q66.580-60.865 66.804-60.982Q67.029-61.099 67.164-61.302Q67.298-61.505 67.298-61.759L67.298-62.591Q67.033-62.591 66.748-62.537Q66.463-62.482 66.191-62.353Q65.920-62.224 65.754-62.017Q65.588-61.810 65.588-61.521M69.673-61.650L69.673-63.841L68.970-63.841L68.970-64.095Q69.326-64.095 69.568-64.328Q69.810-64.560 69.922-64.908Q70.033-65.255 70.033-65.611L70.314-65.611L70.314-64.138L71.490-64.138L71.490-63.841L70.314-63.841L70.314-61.666Q70.314-61.345 70.433-61.117Q70.552-60.888 70.834-60.888Q71.013-60.888 71.130-61.011Q71.248-61.134 71.300-61.314Q71.353-61.494 71.353-61.666L71.353-62.138L71.634-62.138L71.634-61.650Q71.634-61.396 71.529-61.156Q71.423-60.916 71.226-60.763Q71.029-60.611 70.771-60.611Q70.455-60.611 70.203-60.734Q69.951-60.857 69.812-61.091Q69.673-61.326 69.673-61.650M72.353-62.443Q72.353-62.923 72.586-63.339Q72.818-63.755 73.228-64.005Q73.638-64.255 74.115-64.255Q74.845-64.255 75.244-63.814Q75.642-63.373 75.642-62.642Q75.642-62.537 75.548-62.513L73.099-62.513L73.099-62.443Q73.099-62.033 73.220-61.677Q73.341-61.322 73.613-61.105Q73.884-60.888 74.314-60.888Q74.677-60.888 74.974-61.117Q75.271-61.345 75.373-61.697Q75.380-61.744 75.466-61.759L75.548-61.759Q75.642-61.732 75.642-61.650Q75.642-61.642 75.634-61.611Q75.572-61.384 75.433-61.201Q75.295-61.017 75.103-60.884Q74.912-60.752 74.693-60.681Q74.474-60.611 74.236-60.611Q73.865-60.611 73.527-60.748Q73.189-60.884 72.922-61.136Q72.654-61.388 72.504-61.728Q72.353-62.068 72.353-62.443M73.107-62.752L75.068-62.752Q75.068-63.056 74.966-63.347Q74.865-63.638 74.648-63.820Q74.431-64.001 74.115-64.001Q73.814-64.001 73.584-63.814Q73.353-63.627 73.230-63.335Q73.107-63.044 73.107-62.752M76.173-60.697L76.173-61.919Q76.173-61.947 76.205-61.978Q76.236-62.009 76.259-62.009L76.365-62.009Q76.435-62.009 76.451-61.947Q76.513-61.627 76.652-61.386Q76.791-61.146 77.023-61.005Q77.255-60.865 77.564-60.865Q77.802-60.865 78.011-60.925Q78.220-60.986 78.357-61.134Q78.494-61.283 78.494-61.529Q78.494-61.783 78.283-61.949Q78.072-62.115 77.802-62.169L77.181-62.283Q76.775-62.361 76.474-62.617Q76.173-62.873 76.173-63.248Q76.173-63.615 76.375-63.837Q76.576-64.060 76.900-64.158Q77.224-64.255 77.564-64.255Q78.029-64.255 78.326-64.048L78.548-64.232Q78.572-64.255 78.603-64.255L78.654-64.255Q78.685-64.255 78.713-64.228Q78.740-64.201 78.740-64.169L78.740-63.185Q78.740-63.154 78.714-63.125Q78.689-63.095 78.654-63.095L78.548-63.095Q78.513-63.095 78.486-63.123Q78.459-63.150 78.459-63.185Q78.459-63.584 78.207-63.804Q77.955-64.025 77.556-64.025Q77.201-64.025 76.918-63.902Q76.634-63.779 76.634-63.474Q76.634-63.255 76.836-63.123Q77.037-62.990 77.283-62.947L77.908-62.834Q78.338-62.744 78.646-62.447Q78.955-62.150 78.955-61.736Q78.955-61.166 78.556-60.888Q78.158-60.611 77.564-60.611Q77.013-60.611 76.662-60.947L76.365-60.634Q76.341-60.611 76.306-60.611L76.259-60.611Q76.236-60.611 76.205-60.642Q76.173-60.673 76.173-60.697\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.904 198.324)\">\u003Cpath d=\"M82.423-61.521Q82.423-62.005 82.825-62.300Q83.228-62.595 83.778-62.714Q84.329-62.834 84.821-62.834L84.821-63.123Q84.821-63.349 84.706-63.556Q84.591-63.763 84.394-63.882Q84.196-64.001 83.966-64.001Q83.540-64.001 83.255-63.896Q83.325-63.869 83.372-63.814Q83.419-63.759 83.444-63.689Q83.470-63.619 83.470-63.544Q83.470-63.439 83.419-63.347Q83.368-63.255 83.276-63.205Q83.185-63.154 83.079-63.154Q82.974-63.154 82.882-63.205Q82.790-63.255 82.739-63.347Q82.689-63.439 82.689-63.544Q82.689-63.962 83.077-64.109Q83.466-64.255 83.966-64.255Q84.298-64.255 84.651-64.125Q85.005-63.994 85.233-63.740Q85.462-63.486 85.462-63.138L85.462-61.337Q85.462-61.205 85.534-61.095Q85.607-60.986 85.735-60.986Q85.860-60.986 85.929-61.091Q85.997-61.197 85.997-61.337L85.997-61.849L86.278-61.849L86.278-61.337Q86.278-61.134 86.161-60.976Q86.044-60.818 85.862-60.734Q85.681-60.650 85.478-60.650Q85.247-60.650 85.095-60.822Q84.942-60.994 84.911-61.224Q84.751-60.943 84.442-60.777Q84.134-60.611 83.782-60.611Q83.271-60.611 82.847-60.834Q82.423-61.056 82.423-61.521M83.110-61.521Q83.110-61.236 83.337-61.050Q83.564-60.865 83.857-60.865Q84.103-60.865 84.327-60.982Q84.552-61.099 84.687-61.302Q84.821-61.505 84.821-61.759L84.821-62.591Q84.556-62.591 84.271-62.537Q83.985-62.482 83.714-62.353Q83.442-62.224 83.276-62.017Q83.110-61.810 83.110-61.521M88.501-60.689L86.646-60.689L86.646-60.986Q86.919-60.986 87.087-61.033Q87.255-61.080 87.255-61.248L87.255-63.384Q87.255-63.599 87.192-63.695Q87.130-63.791 87.011-63.812Q86.892-63.834 86.646-63.834L86.646-64.130L87.837-64.216L87.837-63.482Q87.950-63.697 88.144-63.865Q88.337-64.033 88.575-64.125Q88.814-64.216 89.067-64.216Q90.235-64.216 90.235-63.138L90.235-61.248Q90.235-61.080 90.405-61.033Q90.575-60.986 90.845-60.986L90.845-60.689L88.989-60.689L88.989-60.986Q89.263-60.986 89.431-61.033Q89.599-61.080 89.599-61.248L89.599-63.123Q89.599-63.505 89.478-63.734Q89.357-63.962 89.005-63.962Q88.692-63.962 88.439-63.800Q88.185-63.638 88.038-63.369Q87.892-63.099 87.892-62.802L87.892-61.248Q87.892-61.080 88.062-61.033Q88.232-60.986 88.501-60.986L88.501-60.689M93.107-60.611Q92.626-60.611 92.218-60.855Q91.810-61.099 91.571-61.513Q91.333-61.927 91.333-62.416Q91.333-62.908 91.591-63.324Q91.849-63.740 92.280-63.978Q92.712-64.216 93.204-64.216Q93.825-64.216 94.275-63.779L94.275-65.408Q94.275-65.623 94.212-65.718Q94.150-65.814 94.032-65.835Q93.915-65.857 93.669-65.857L93.669-66.154L94.892-66.240L94.892-61.431Q94.892-61.220 94.954-61.125Q95.017-61.029 95.134-61.007Q95.251-60.986 95.501-60.986L95.501-60.689L94.251-60.611L94.251-61.095Q93.786-60.611 93.107-60.611M93.173-60.865Q93.513-60.865 93.806-61.056Q94.099-61.248 94.251-61.544L94.251-63.377Q94.103-63.650 93.841-63.806Q93.579-63.962 93.267-63.962Q92.642-63.962 92.358-63.515Q92.075-63.068 92.075-62.408Q92.075-61.763 92.327-61.314Q92.579-60.865 93.173-60.865\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.904 198.324)\">\u003Cpath d=\"M99.478-61.650L99.478-63.841L98.775-63.841L98.775-64.095Q99.131-64.095 99.373-64.328Q99.615-64.560 99.726-64.908Q99.838-65.255 99.838-65.611L100.119-65.611L100.119-64.138L101.295-64.138L101.295-63.841L100.119-63.841L100.119-61.666Q100.119-61.345 100.238-61.117Q100.357-60.888 100.638-60.888Q100.818-60.888 100.935-61.011Q101.052-61.134 101.105-61.314Q101.158-61.494 101.158-61.666L101.158-62.138L101.439-62.138L101.439-61.650Q101.439-61.396 101.334-61.156Q101.228-60.916 101.031-60.763Q100.834-60.611 100.576-60.611Q100.260-60.611 100.008-60.734Q99.756-60.857 99.617-61.091Q99.478-61.326 99.478-61.650M104.166-60.689L102.185-60.689L102.185-60.986Q102.455-60.986 102.623-61.031Q102.791-61.076 102.791-61.248L102.791-63.384Q102.791-63.599 102.728-63.695Q102.666-63.791 102.549-63.812Q102.431-63.834 102.185-63.834L102.185-64.130L103.353-64.216L103.353-63.431Q103.431-63.642 103.584-63.828Q103.736-64.013 103.935-64.115Q104.135-64.216 104.361-64.216Q104.607-64.216 104.799-64.072Q104.990-63.927 104.990-63.697Q104.990-63.541 104.885-63.431Q104.779-63.322 104.623-63.322Q104.467-63.322 104.357-63.431Q104.248-63.541 104.248-63.697Q104.248-63.857 104.353-63.962Q104.029-63.962 103.814-63.734Q103.599-63.505 103.504-63.166Q103.408-62.826 103.408-62.521L103.408-61.248Q103.408-61.080 103.635-61.033Q103.861-60.986 104.166-60.986L104.166-60.689M105.568-61.521Q105.568-62.005 105.970-62.300Q106.373-62.595 106.924-62.714Q107.474-62.834 107.967-62.834L107.967-63.123Q107.967-63.349 107.851-63.556Q107.736-63.763 107.539-63.882Q107.342-64.001 107.111-64.001Q106.685-64.001 106.400-63.896Q106.470-63.869 106.517-63.814Q106.564-63.759 106.590-63.689Q106.615-63.619 106.615-63.544Q106.615-63.439 106.564-63.347Q106.513-63.255 106.422-63.205Q106.330-63.154 106.224-63.154Q106.119-63.154 106.027-63.205Q105.935-63.255 105.885-63.347Q105.834-63.439 105.834-63.544Q105.834-63.962 106.222-64.109Q106.611-64.255 107.111-64.255Q107.443-64.255 107.797-64.125Q108.150-63.994 108.379-63.740Q108.607-63.486 108.607-63.138L108.607-61.337Q108.607-61.205 108.679-61.095Q108.752-60.986 108.881-60.986Q109.006-60.986 109.074-61.091Q109.142-61.197 109.142-61.337L109.142-61.849L109.424-61.849L109.424-61.337Q109.424-61.134 109.306-60.976Q109.189-60.818 109.008-60.734Q108.826-60.650 108.623-60.650Q108.392-60.650 108.240-60.822Q108.088-60.994 108.056-61.224Q107.896-60.943 107.588-60.777Q107.279-60.611 106.927-60.611Q106.416-60.611 105.992-60.834Q105.568-61.056 105.568-61.521M106.256-61.521Q106.256-61.236 106.482-61.050Q106.709-60.865 107.002-60.865Q107.248-60.865 107.472-60.982Q107.697-61.099 107.832-61.302Q107.967-61.505 107.967-61.759L107.967-62.591Q107.701-62.591 107.416-62.537Q107.131-62.482 106.859-62.353Q106.588-62.224 106.422-62.017Q106.256-61.810 106.256-61.521M111.646-60.689L109.791-60.689L109.791-60.986Q110.064-60.986 110.232-61.033Q110.400-61.080 110.400-61.248L110.400-63.384Q110.400-63.599 110.338-63.695Q110.275-63.791 110.156-63.812Q110.037-63.834 109.791-63.834L109.791-64.130L110.982-64.216L110.982-63.482Q111.095-63.697 111.289-63.865Q111.482-64.033 111.720-64.125Q111.959-64.216 112.213-64.216Q113.381-64.216 113.381-63.138L113.381-61.248Q113.381-61.080 113.551-61.033Q113.720-60.986 113.990-60.986L113.990-60.689L112.135-60.689L112.135-60.986Q112.408-60.986 112.576-61.033Q112.744-61.080 112.744-61.248L112.744-63.123Q112.744-63.505 112.623-63.734Q112.502-63.962 112.150-63.962Q111.838-63.962 111.584-63.800Q111.330-63.638 111.183-63.369Q111.037-63.099 111.037-62.802L111.037-61.248Q111.037-61.080 111.207-61.033Q111.377-60.986 111.646-60.986L111.646-60.689M114.478-60.697L114.478-61.919Q114.478-61.947 114.510-61.978Q114.541-62.009 114.564-62.009L114.670-62.009Q114.740-62.009 114.756-61.947Q114.818-61.627 114.957-61.386Q115.095-61.146 115.328-61.005Q115.560-60.865 115.869-60.865Q116.107-60.865 116.316-60.925Q116.525-60.986 116.662-61.134Q116.799-61.283 116.799-61.529Q116.799-61.783 116.588-61.949Q116.377-62.115 116.107-62.169L115.486-62.283Q115.080-62.361 114.779-62.617Q114.478-62.873 114.478-63.248Q114.478-63.615 114.679-63.837Q114.881-64.060 115.205-64.158Q115.529-64.255 115.869-64.255Q116.334-64.255 116.631-64.048L116.853-64.232Q116.877-64.255 116.908-64.255L116.959-64.255Q116.990-64.255 117.017-64.228Q117.045-64.201 117.045-64.169L117.045-63.185Q117.045-63.154 117.019-63.125Q116.994-63.095 116.959-63.095L116.853-63.095Q116.818-63.095 116.791-63.123Q116.763-63.150 116.763-63.185Q116.763-63.584 116.511-63.804Q116.260-64.025 115.861-64.025Q115.506-64.025 115.222-63.902Q114.939-63.779 114.939-63.474Q114.939-63.255 115.140-63.123Q115.342-62.990 115.588-62.947L116.213-62.834Q116.642-62.744 116.951-62.447Q117.260-62.150 117.260-61.736Q117.260-61.166 116.861-60.888Q116.463-60.611 115.869-60.611Q115.318-60.611 114.967-60.947L114.670-60.634Q114.646-60.611 114.611-60.611L114.564-60.611Q114.541-60.611 114.510-60.642Q114.478-60.673 114.478-60.697M119.646-60.689L117.869-60.689L117.869-60.986Q118.142-60.986 118.310-61.033Q118.478-61.080 118.478-61.248L118.478-63.384Q118.478-63.599 118.422-63.695Q118.365-63.791 118.252-63.812Q118.138-63.834 117.892-63.834L117.892-64.130L119.092-64.216L119.092-61.248Q119.092-61.080 119.238-61.033Q119.385-60.986 119.646-60.986L119.646-60.689M118.205-65.611Q118.205-65.802 118.340-65.933Q118.474-66.064 118.670-66.064Q118.791-66.064 118.894-66.001Q118.998-65.939 119.060-65.835Q119.123-65.732 119.123-65.611Q119.123-65.416 118.992-65.281Q118.861-65.146 118.670-65.146Q118.470-65.146 118.338-65.279Q118.205-65.412 118.205-65.611M120.189-60.697L120.189-61.919Q120.189-61.947 120.220-61.978Q120.252-62.009 120.275-62.009L120.381-62.009Q120.451-62.009 120.467-61.947Q120.529-61.627 120.668-61.386Q120.806-61.146 121.039-61.005Q121.271-60.865 121.580-60.865Q121.818-60.865 122.027-60.925Q122.236-60.986 122.373-61.134Q122.510-61.283 122.510-61.529Q122.510-61.783 122.299-61.949Q122.088-62.115 121.818-62.169L121.197-62.283Q120.791-62.361 120.490-62.617Q120.189-62.873 120.189-63.248Q120.189-63.615 120.390-63.837Q120.592-64.060 120.916-64.158Q121.240-64.255 121.580-64.255Q122.045-64.255 122.342-64.048L122.564-64.232Q122.588-64.255 122.619-64.255L122.670-64.255Q122.701-64.255 122.728-64.228Q122.756-64.201 122.756-64.169L122.756-63.185Q122.756-63.154 122.730-63.125Q122.705-63.095 122.670-63.095L122.564-63.095Q122.529-63.095 122.502-63.123Q122.474-63.150 122.474-63.185Q122.474-63.584 122.222-63.804Q121.970-64.025 121.572-64.025Q121.217-64.025 120.933-63.902Q120.650-63.779 120.650-63.474Q120.650-63.255 120.851-63.123Q121.052-62.990 121.299-62.947L121.924-62.834Q122.353-62.744 122.662-62.447Q122.970-62.150 122.970-61.736Q122.970-61.166 122.572-60.888Q122.174-60.611 121.580-60.611Q121.029-60.611 120.677-60.947L120.381-60.634Q120.357-60.611 120.322-60.611L120.275-60.611Q120.252-60.611 120.220-60.642Q120.189-60.673 120.189-60.697M124.123-61.650L124.123-63.841L123.420-63.841L123.420-64.095Q123.775-64.095 124.017-64.328Q124.260-64.560 124.371-64.908Q124.482-65.255 124.482-65.611L124.763-65.611L124.763-64.138L125.939-64.138L125.939-63.841L124.763-63.841L124.763-61.666Q124.763-61.345 124.883-61.117Q125.002-60.888 125.283-60.888Q125.463-60.888 125.580-61.011Q125.697-61.134 125.750-61.314Q125.802-61.494 125.802-61.666L125.802-62.138L126.084-62.138L126.084-61.650Q126.084-61.396 125.978-61.156Q125.873-60.916 125.676-60.763Q125.478-60.611 125.220-60.611Q124.904-60.611 124.652-60.734Q124.400-60.857 124.261-61.091Q124.123-61.326 124.123-61.650M126.802-62.384Q126.802-62.888 127.058-63.320Q127.314-63.752 127.750-64.003Q128.185-64.255 128.685-64.255Q129.072-64.255 129.414-64.111Q129.756-63.966 130.017-63.705Q130.279-63.443 130.422-63.107Q130.564-62.771 130.564-62.384Q130.564-61.892 130.301-61.482Q130.037-61.072 129.607-60.841Q129.178-60.611 128.685-60.611Q128.193-60.611 127.760-60.843Q127.326-61.076 127.064-61.484Q126.802-61.892 126.802-62.384M128.685-60.888Q129.142-60.888 129.394-61.111Q129.646-61.334 129.734-61.685Q129.822-62.037 129.822-62.482Q129.822-62.912 129.728-63.250Q129.635-63.587 129.381-63.794Q129.127-64.001 128.685-64.001Q128.037-64.001 127.793-63.585Q127.549-63.169 127.549-62.482Q127.549-62.037 127.636-61.685Q127.724-61.334 127.976-61.111Q128.228-60.888 128.685-60.888M133.056-60.689L131.076-60.689L131.076-60.986Q131.345-60.986 131.513-61.031Q131.681-61.076 131.681-61.248L131.681-63.384Q131.681-63.599 131.619-63.695Q131.556-63.791 131.439-63.812Q131.322-63.834 131.076-63.834L131.076-64.130L132.244-64.216L132.244-63.431Q132.322-63.642 132.474-63.828Q132.627-64.013 132.826-64.115Q133.025-64.216 133.252-64.216Q133.498-64.216 133.689-64.072Q133.881-63.927 133.881-63.697Q133.881-63.541 133.775-63.431Q133.670-63.322 133.513-63.322Q133.357-63.322 133.248-63.431Q133.138-63.541 133.138-63.697Q133.138-63.857 133.244-63.962Q132.920-63.962 132.705-63.734Q132.490-63.505 132.394-63.166Q132.299-62.826 132.299-62.521L132.299-61.248Q132.299-61.080 132.525-61.033Q132.752-60.986 133.056-60.986L133.056-60.689M134.404-60.697L134.404-61.919Q134.404-61.947 134.435-61.978Q134.467-62.009 134.490-62.009L134.595-62.009Q134.666-62.009 134.681-61.947Q134.744-61.627 134.883-61.386Q135.021-61.146 135.254-61.005Q135.486-60.865 135.795-60.865Q136.033-60.865 136.242-60.925Q136.451-60.986 136.588-61.134Q136.724-61.283 136.724-61.529Q136.724-61.783 136.513-61.949Q136.303-62.115 136.033-62.169L135.412-62.283Q135.006-62.361 134.705-62.617Q134.404-62.873 134.404-63.248Q134.404-63.615 134.605-63.837Q134.806-64.060 135.131-64.158Q135.455-64.255 135.795-64.255Q136.260-64.255 136.556-64.048L136.779-64.232Q136.803-64.255 136.834-64.255L136.885-64.255Q136.916-64.255 136.943-64.228Q136.970-64.201 136.970-64.169L136.970-63.185Q136.970-63.154 136.945-63.125Q136.920-63.095 136.885-63.095L136.779-63.095Q136.744-63.095 136.717-63.123Q136.689-63.150 136.689-63.185Q136.689-63.584 136.437-63.804Q136.185-64.025 135.787-64.025Q135.431-64.025 135.148-63.902Q134.865-63.779 134.865-63.474Q134.865-63.255 135.066-63.123Q135.267-62.990 135.513-62.947L136.138-62.834Q136.568-62.744 136.877-62.447Q137.185-62.150 137.185-61.736Q137.185-61.166 136.787-60.888Q136.388-60.611 135.795-60.611Q135.244-60.611 134.892-60.947L134.595-60.634Q134.572-60.611 134.537-60.611L134.490-60.611Q134.467-60.611 134.435-60.642Q134.404-60.673 134.404-60.697\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.904 198.324)\">\u003Cpath d=\"M142.944-58.697Q142.331-59.154 141.929-59.789Q141.526-60.423 141.331-61.169Q141.136-61.916 141.136-62.689Q141.136-63.462 141.331-64.209Q141.526-64.955 141.929-65.589Q142.331-66.224 142.944-66.681Q142.956-66.685 142.964-66.687Q142.972-66.689 142.983-66.689L143.061-66.689Q143.100-66.689 143.126-66.662Q143.151-66.634 143.151-66.591Q143.151-66.541 143.120-66.521Q142.612-66.068 142.290-65.445Q141.968-64.822 141.827-64.126Q141.686-63.431 141.686-62.689Q141.686-61.955 141.825-61.255Q141.964-60.556 142.288-59.931Q142.612-59.306 143.120-58.857Q143.151-58.837 143.151-58.787Q143.151-58.744 143.126-58.716Q143.100-58.689 143.061-58.689L142.983-58.689Q142.975-58.693 142.966-58.695Q142.956-58.697 142.944-58.697M143.913-60.697L143.913-61.919Q143.913-61.947 143.944-61.978Q143.975-62.009 143.999-62.009L144.104-62.009Q144.175-62.009 144.190-61.947Q144.253-61.627 144.391-61.386Q144.530-61.146 144.763-61.005Q144.995-60.865 145.304-60.865Q145.542-60.865 145.751-60.925Q145.960-60.986 146.097-61.134Q146.233-61.283 146.233-61.529Q146.233-61.783 146.022-61.949Q145.811-62.115 145.542-62.169L144.921-62.283Q144.514-62.361 144.214-62.617Q143.913-62.873 143.913-63.248Q143.913-63.615 144.114-63.837Q144.315-64.060 144.639-64.158Q144.964-64.255 145.304-64.255Q145.768-64.255 146.065-64.048L146.288-64.232Q146.311-64.255 146.343-64.255L146.393-64.255Q146.425-64.255 146.452-64.228Q146.479-64.201 146.479-64.169L146.479-63.185Q146.479-63.154 146.454-63.125Q146.429-63.095 146.393-63.095L146.288-63.095Q146.253-63.095 146.225-63.123Q146.198-63.150 146.198-63.185Q146.198-63.584 145.946-63.804Q145.694-64.025 145.296-64.025Q144.940-64.025 144.657-63.902Q144.374-63.779 144.374-63.474Q144.374-63.255 144.575-63.123Q144.776-62.990 145.022-62.947L145.647-62.834Q146.077-62.744 146.386-62.447Q146.694-62.150 146.694-61.736Q146.694-61.166 146.296-60.888Q145.897-60.611 145.304-60.611Q144.753-60.611 144.401-60.947L144.104-60.634Q144.081-60.611 144.046-60.611L143.999-60.611Q143.975-60.611 143.944-60.642Q143.913-60.673 143.913-60.697M149.081-60.689L147.304-60.689L147.304-60.986Q147.577-60.986 147.745-61.033Q147.913-61.080 147.913-61.248L147.913-63.384Q147.913-63.599 147.856-63.695Q147.800-63.791 147.686-63.812Q147.573-63.834 147.327-63.834L147.327-64.130L148.526-64.216L148.526-61.248Q148.526-61.080 148.673-61.033Q148.819-60.986 149.081-60.986L149.081-60.689M147.639-65.611Q147.639-65.802 147.774-65.933Q147.909-66.064 148.104-66.064Q148.225-66.064 148.329-66.001Q148.432-65.939 148.495-65.835Q148.557-65.732 148.557-65.611Q148.557-65.416 148.427-65.281Q148.296-65.146 148.104-65.146Q147.905-65.146 147.772-65.279Q147.639-65.412 147.639-65.611M151.495-60.689L149.663-60.689L149.663-60.986Q149.936-60.986 150.104-61.033Q150.272-61.080 150.272-61.248L150.272-65.408Q150.272-65.623 150.210-65.718Q150.147-65.814 150.028-65.835Q149.909-65.857 149.663-65.857L149.663-66.154L150.886-66.240L150.886-61.248Q150.886-61.080 151.054-61.033Q151.222-60.986 151.495-60.986L151.495-60.689M153.800-60.689L152.022-60.689L152.022-60.986Q152.296-60.986 152.464-61.033Q152.632-61.080 152.632-61.248L152.632-63.384Q152.632-63.599 152.575-63.695Q152.518-63.791 152.405-63.812Q152.292-63.834 152.046-63.834L152.046-64.130L153.245-64.216L153.245-61.248Q153.245-61.080 153.391-61.033Q153.538-60.986 153.800-60.986L153.800-60.689M152.358-65.611Q152.358-65.802 152.493-65.933Q152.628-66.064 152.823-66.064Q152.944-66.064 153.048-66.001Q153.151-65.939 153.214-65.835Q153.276-65.732 153.276-65.611Q153.276-65.416 153.145-65.281Q153.014-65.146 152.823-65.146Q152.624-65.146 152.491-65.279Q152.358-65.412 152.358-65.611M154.343-62.416Q154.343-62.912 154.593-63.337Q154.843-63.763 155.263-64.009Q155.682-64.255 156.182-64.255Q156.722-64.255 157.112-64.130Q157.503-64.005 157.503-63.591Q157.503-63.486 157.452-63.394Q157.401-63.302 157.309-63.252Q157.218-63.201 157.108-63.201Q157.003-63.201 156.911-63.252Q156.819-63.302 156.768-63.394Q156.718-63.486 156.718-63.591Q156.718-63.814 156.886-63.919Q156.663-63.978 156.190-63.978Q155.893-63.978 155.679-63.839Q155.464-63.701 155.333-63.470Q155.202-63.240 155.143-62.970Q155.085-62.701 155.085-62.416Q155.085-62.021 155.218-61.671Q155.350-61.322 155.622-61.105Q155.893-60.888 156.292-60.888Q156.667-60.888 156.942-61.105Q157.218-61.322 157.319-61.681Q157.335-61.744 157.397-61.744L157.503-61.744Q157.538-61.744 157.563-61.716Q157.589-61.689 157.589-61.650L157.589-61.627Q157.456-61.146 157.071-60.878Q156.686-60.611 156.182-60.611Q155.819-60.611 155.485-60.748Q155.151-60.884 154.891-61.134Q154.632-61.384 154.487-61.720Q154.343-62.056 154.343-62.416M158.077-62.384Q158.077-62.888 158.333-63.320Q158.589-63.752 159.024-64.003Q159.460-64.255 159.960-64.255Q160.347-64.255 160.688-64.111Q161.030-63.966 161.292-63.705Q161.554-63.443 161.696-63.107Q161.839-62.771 161.839-62.384Q161.839-61.892 161.575-61.482Q161.311-61.072 160.882-60.841Q160.452-60.611 159.960-60.611Q159.468-60.611 159.034-60.843Q158.600-61.076 158.339-61.484Q158.077-61.892 158.077-62.384M159.960-60.888Q160.417-60.888 160.669-61.111Q160.921-61.334 161.009-61.685Q161.097-62.037 161.097-62.482Q161.097-62.912 161.003-63.250Q160.909-63.587 160.655-63.794Q160.401-64.001 159.960-64.001Q159.311-64.001 159.067-63.585Q158.823-63.169 158.823-62.482Q158.823-62.037 158.911-61.685Q158.999-61.334 159.251-61.111Q159.503-60.888 159.960-60.888M164.253-60.689L162.397-60.689L162.397-60.986Q162.671-60.986 162.839-61.033Q163.007-61.080 163.007-61.248L163.007-63.384Q163.007-63.599 162.944-63.695Q162.882-63.791 162.763-63.812Q162.643-63.834 162.397-63.834L162.397-64.130L163.589-64.216L163.589-63.482Q163.702-63.697 163.895-63.865Q164.089-64.033 164.327-64.125Q164.565-64.216 164.819-64.216Q165.987-64.216 165.987-63.138L165.987-61.248Q165.987-61.080 166.157-61.033Q166.327-60.986 166.597-60.986L166.597-60.689L164.741-60.689L164.741-60.986Q165.014-60.986 165.182-61.033Q165.350-61.080 165.350-61.248L165.350-63.123Q165.350-63.505 165.229-63.734Q165.108-63.962 164.757-63.962Q164.444-63.962 164.190-63.800Q163.936-63.638 163.790-63.369Q163.643-63.099 163.643-62.802L163.643-61.248Q163.643-61.080 163.813-61.033Q163.983-60.986 164.253-60.986L164.253-60.689M167.444-58.689L167.362-58.689Q167.327-58.689 167.302-58.718Q167.276-58.748 167.276-58.787Q167.276-58.837 167.307-58.857Q167.694-59.193 167.977-59.642Q168.261-60.091 168.427-60.591Q168.593-61.091 168.667-61.609Q168.741-62.127 168.741-62.689Q168.741-63.259 168.667-63.775Q168.593-64.291 168.427-64.787Q168.261-65.283 167.981-65.730Q167.702-66.177 167.307-66.521Q167.276-66.541 167.276-66.591Q167.276-66.630 167.302-66.660Q167.327-66.689 167.362-66.689L167.444-66.689Q167.456-66.689 167.466-66.687Q167.475-66.685 167.483-66.681Q168.097-66.224 168.499-65.589Q168.901-64.955 169.097-64.209Q169.292-63.462 169.292-62.689Q169.292-61.916 169.097-61.169Q168.901-60.423 168.499-59.789Q168.097-59.154 167.483-58.697Q167.472-58.697 167.464-58.695Q167.456-58.693 167.444-58.689\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(103.118 197.88)\">\u003Cpath d=\"M62.181-60.650Q61.716-60.650 61.351-60.900Q60.986-61.150 60.781-61.554Q60.576-61.959 60.576-62.416Q60.576-62.759 60.701-63.080Q60.826-63.400 61.058-63.650Q61.291-63.900 61.595-64.039Q61.900-64.177 62.255-64.177Q62.767-64.177 63.173-63.857L63.173-65.017L62.752-65.017Q62.541-65.041 62.502-65.255L62.502-65.345Q62.541-65.552 62.752-65.576L63.564-65.576Q63.763-65.552 63.814-65.345L63.814-61.248L64.240-61.248Q64.447-61.224 64.486-61.017L64.486-60.927Q64.447-60.712 64.240-60.689L63.423-60.689Q63.224-60.712 63.173-60.927L63.173-61.056Q62.978-60.865 62.716-60.757Q62.455-60.650 62.181-60.650M62.220-61.209Q62.580-61.209 62.832-61.478Q63.084-61.748 63.173-62.123L63.173-62.955Q63.115-63.142 62.988-63.293Q62.861-63.443 62.683-63.531Q62.505-63.619 62.310-63.619Q62.002-63.619 61.752-63.449Q61.502-63.279 61.357-62.994Q61.213-62.709 61.213-62.408Q61.213-61.959 61.498-61.584Q61.783-61.209 62.220-61.209M65.181-60.927L65.181-61.017Q65.232-61.224 65.427-61.248L66.466-61.248L66.466-63.576L65.494-63.576Q65.295-63.599 65.244-63.818L65.244-63.904Q65.295-64.115 65.494-64.138L66.861-64.138Q67.056-64.119 67.107-63.904L67.107-61.248L68.021-61.248Q68.216-61.224 68.267-61.017L68.267-60.927Q68.216-60.712 68.021-60.689L65.427-60.689Q65.232-60.712 65.181-60.927M66.213-65.115L66.213-65.169Q66.213-65.341 66.349-65.462Q66.486-65.584 66.662-65.584Q66.834-65.584 66.970-65.462Q67.107-65.341 67.107-65.169L67.107-65.115Q67.107-64.939 66.970-64.818Q66.834-64.697 66.662-64.697Q66.486-64.697 66.349-64.818Q66.213-64.939 66.213-65.115M69.048-60.041Q69.048-60.341 69.197-60.603Q69.345-60.865 69.595-61.025Q69.412-61.279 69.412-61.599Q69.412-61.884 69.564-62.146Q69.314-62.470 69.314-62.888Q69.314-63.248 69.505-63.544Q69.697-63.841 70.015-64.009Q70.334-64.177 70.697-64.177Q70.904-64.177 71.107-64.117Q71.310-64.056 71.474-63.955Q71.857-64.216 72.330-64.216Q72.568-64.216 72.750-64.085Q72.931-63.955 72.931-63.728Q72.931-63.580 72.830-63.474Q72.728-63.369 72.572-63.369Q72.439-63.369 72.343-63.447Q72.248-63.525 72.216-63.650Q72.072-63.642 71.873-63.552Q72.076-63.240 72.076-62.888Q72.076-62.607 71.964-62.375Q71.853-62.142 71.658-61.964Q71.463-61.787 71.211-61.689Q70.959-61.591 70.697-61.591Q70.310-61.591 69.978-61.779Q69.966-61.779 69.957-61.707Q69.947-61.634 69.947-61.599Q69.947-61.478 70.013-61.371Q70.080-61.263 70.201-61.224Q70.216-61.228 70.230-61.230Q70.244-61.232 70.267-61.232Q70.283-61.232 70.314-61.224Q70.345-61.216 70.353-61.216L70.947-61.216Q71.728-61.216 72.269-60.974Q72.810-60.732 72.810-60.041Q72.810-59.740 72.630-59.513Q72.451-59.287 72.154-59.142Q71.857-58.998 71.537-58.931Q71.216-58.865 70.931-58.865Q70.541-58.865 70.099-58.988Q69.658-59.111 69.353-59.378Q69.048-59.646 69.048-60.041M69.588-60.048Q69.588-59.830 69.828-59.689Q70.068-59.548 70.392-59.482Q70.716-59.416 70.931-59.416Q71.146-59.416 71.470-59.482Q71.795-59.548 72.035-59.689Q72.275-59.830 72.275-60.048Q72.275-60.337 72.050-60.476Q71.826-60.615 71.545-60.648Q71.263-60.681 70.916-60.681L70.298-60.681Q70.115-60.681 69.953-60.601Q69.791-60.521 69.689-60.375Q69.588-60.228 69.588-60.048M70.697-62.146Q70.998-62.146 71.216-62.365Q71.435-62.584 71.435-62.888Q71.435-63.044 71.380-63.175Q71.326-63.306 71.220-63.412Q71.115-63.517 70.984-63.572Q70.853-63.627 70.697-63.627Q70.392-63.627 70.173-63.408Q69.955-63.189 69.955-62.888Q69.955-62.591 70.177-62.369Q70.400-62.146 70.697-62.146M73.673-60.927L73.673-61.017Q73.724-61.224 73.920-61.248L74.959-61.248L74.959-63.576L73.986-63.576Q73.787-63.599 73.736-63.818L73.736-63.904Q73.787-64.115 73.986-64.138L75.353-64.138Q75.548-64.119 75.599-63.904L75.599-61.248L76.513-61.248Q76.709-61.224 76.759-61.017L76.759-60.927Q76.709-60.712 76.513-60.689L73.920-60.689Q73.724-60.712 73.673-60.927M74.705-65.115L74.705-65.169Q74.705-65.341 74.841-65.462Q74.978-65.584 75.154-65.584Q75.326-65.584 75.463-65.462Q75.599-65.341 75.599-65.169L75.599-65.115Q75.599-64.939 75.463-64.818Q75.326-64.697 75.154-64.697Q74.978-64.697 74.841-64.818Q74.705-64.939 74.705-65.115M78.502-61.794L78.502-63.576L77.752-63.576Q77.552-63.599 77.502-63.818L77.502-63.904Q77.552-64.115 77.752-64.138L78.502-64.138L78.502-64.888Q78.552-65.095 78.752-65.123L78.896-65.123Q79.091-65.095 79.142-64.888L79.142-64.138L80.502-64.138Q80.693-64.119 80.752-63.904L80.752-63.818Q80.697-63.599 80.502-63.576L79.142-63.576L79.142-61.826Q79.142-61.209 79.716-61.209Q79.966-61.209 80.130-61.394Q80.295-61.580 80.295-61.826Q80.295-61.919 80.367-61.990Q80.439-62.060 80.541-62.072L80.685-62.072Q80.884-62.048 80.935-61.841L80.935-61.794Q80.935-61.470 80.752-61.207Q80.568-60.943 80.275-60.796Q79.982-60.650 79.662-60.650Q79.150-60.650 78.826-60.960Q78.502-61.271 78.502-61.794M81.955-61.802Q81.955-62.248 82.369-62.505Q82.783-62.763 83.324-62.863Q83.865-62.962 84.373-62.970Q84.373-63.185 84.238-63.337Q84.103-63.490 83.896-63.566Q83.689-63.642 83.478-63.642Q83.134-63.642 82.974-63.619L82.974-63.560Q82.974-63.392 82.855-63.277Q82.736-63.162 82.572-63.162Q82.396-63.162 82.281-63.285Q82.166-63.408 82.166-63.576Q82.166-63.982 82.547-64.091Q82.927-64.201 83.486-64.201Q83.755-64.201 84.023-64.123Q84.291-64.044 84.515-63.894Q84.740-63.744 84.877-63.523Q85.013-63.302 85.013-63.025L85.013-61.306Q85.013-61.248 85.541-61.248Q85.736-61.228 85.787-61.017L85.787-60.927Q85.736-60.712 85.541-60.689L85.396-60.689Q85.052-60.689 84.824-60.736Q84.595-60.783 84.451-60.970Q83.990-60.650 83.283-60.650Q82.947-60.650 82.642-60.791Q82.338-60.931 82.146-61.193Q81.955-61.455 81.955-61.802M82.595-61.794Q82.595-61.521 82.838-61.365Q83.080-61.209 83.365-61.209Q83.584-61.209 83.816-61.267Q84.048-61.326 84.211-61.464Q84.373-61.603 84.373-61.826L84.373-62.416Q84.091-62.416 83.675-62.359Q83.259-62.302 82.927-62.164Q82.595-62.025 82.595-61.794M86.244-60.927L86.244-61.017Q86.295-61.224 86.490-61.248L87.595-61.248L87.595-65.017L86.490-65.017Q86.295-65.041 86.244-65.255L86.244-65.345Q86.295-65.552 86.490-65.576L87.986-65.576Q88.177-65.552 88.236-65.345L88.236-61.248L89.338-61.248Q89.537-61.224 89.588-61.017L89.588-60.927Q89.537-60.712 89.338-60.689L86.490-60.689Q86.295-60.712 86.244-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(103.118 197.88)\">\u003Cpath d=\"M94.767-60.927L94.767-61.017Q94.818-61.224 95.013-61.248L96.119-61.248L96.119-65.017L95.013-65.017Q94.818-65.041 94.767-65.255L94.767-65.345Q94.818-65.552 95.013-65.576L96.509-65.576Q96.701-65.552 96.759-65.345L96.759-61.248L97.861-61.248Q98.060-61.224 98.111-61.017L98.111-60.927Q98.060-60.712 97.861-60.689L95.013-60.689Q94.818-60.712 94.767-60.927M100.685-60.650Q100.213-60.650 99.828-60.894Q99.443-61.138 99.220-61.548Q98.998-61.959 98.998-62.416Q98.998-62.759 99.123-63.082Q99.248-63.404 99.478-63.658Q99.709-63.912 100.015-64.056Q100.322-64.201 100.685-64.201Q101.048-64.201 101.361-64.054Q101.673-63.908 101.896-63.662Q102.119-63.416 102.246-63.095Q102.373-62.775 102.373-62.416Q102.373-61.959 102.148-61.546Q101.923-61.134 101.539-60.892Q101.154-60.650 100.685-60.650M100.685-61.209Q101.150-61.209 101.441-61.603Q101.732-61.998 101.732-62.482Q101.732-62.775 101.597-63.043Q101.463-63.310 101.222-63.476Q100.982-63.642 100.685-63.642Q100.380-63.642 100.142-63.476Q99.904-63.310 99.769-63.043Q99.634-62.775 99.634-62.482Q99.634-62.002 99.927-61.605Q100.220-61.209 100.685-61.209M103.048-60.041Q103.048-60.341 103.197-60.603Q103.345-60.865 103.595-61.025Q103.412-61.279 103.412-61.599Q103.412-61.884 103.564-62.146Q103.314-62.470 103.314-62.888Q103.314-63.248 103.505-63.544Q103.697-63.841 104.015-64.009Q104.334-64.177 104.697-64.177Q104.904-64.177 105.107-64.117Q105.310-64.056 105.474-63.955Q105.857-64.216 106.330-64.216Q106.568-64.216 106.750-64.085Q106.931-63.955 106.931-63.728Q106.931-63.580 106.830-63.474Q106.728-63.369 106.572-63.369Q106.439-63.369 106.343-63.447Q106.248-63.525 106.216-63.650Q106.072-63.642 105.873-63.552Q106.076-63.240 106.076-62.888Q106.076-62.607 105.964-62.375Q105.853-62.142 105.658-61.964Q105.463-61.787 105.211-61.689Q104.959-61.591 104.697-61.591Q104.310-61.591 103.978-61.779Q103.966-61.779 103.957-61.707Q103.947-61.634 103.947-61.599Q103.947-61.478 104.013-61.371Q104.080-61.263 104.201-61.224Q104.216-61.228 104.230-61.230Q104.244-61.232 104.267-61.232Q104.283-61.232 104.314-61.224Q104.345-61.216 104.353-61.216L104.947-61.216Q105.728-61.216 106.269-60.974Q106.810-60.732 106.810-60.041Q106.810-59.740 106.630-59.513Q106.451-59.287 106.154-59.142Q105.857-58.998 105.537-58.931Q105.216-58.865 104.931-58.865Q104.541-58.865 104.099-58.988Q103.658-59.111 103.353-59.378Q103.048-59.646 103.048-60.041M103.588-60.048Q103.588-59.830 103.828-59.689Q104.068-59.548 104.392-59.482Q104.716-59.416 104.931-59.416Q105.146-59.416 105.470-59.482Q105.795-59.548 106.035-59.689Q106.275-59.830 106.275-60.048Q106.275-60.337 106.050-60.476Q105.826-60.615 105.545-60.648Q105.263-60.681 104.916-60.681L104.298-60.681Q104.115-60.681 103.953-60.601Q103.791-60.521 103.689-60.375Q103.588-60.228 103.588-60.048M104.697-62.146Q104.998-62.146 105.216-62.365Q105.435-62.584 105.435-62.888Q105.435-63.044 105.380-63.175Q105.326-63.306 105.220-63.412Q105.115-63.517 104.984-63.572Q104.853-63.627 104.697-63.627Q104.392-63.627 104.173-63.408Q103.955-63.189 103.955-62.888Q103.955-62.591 104.177-62.369Q104.400-62.146 104.697-62.146M107.673-60.927L107.673-61.017Q107.724-61.224 107.920-61.248L108.959-61.248L108.959-63.576L107.986-63.576Q107.787-63.599 107.736-63.818L107.736-63.904Q107.787-64.115 107.986-64.138L109.353-64.138Q109.548-64.119 109.599-63.904L109.599-61.248L110.513-61.248Q110.709-61.224 110.759-61.017L110.759-60.927Q110.709-60.712 110.513-60.689L107.920-60.689Q107.724-60.712 107.673-60.927M108.705-65.115L108.705-65.169Q108.705-65.341 108.841-65.462Q108.978-65.584 109.154-65.584Q109.326-65.584 109.463-65.462Q109.599-65.341 109.599-65.169L109.599-65.115Q109.599-64.939 109.463-64.818Q109.326-64.697 109.154-64.697Q108.978-64.697 108.841-64.818Q108.705-64.939 108.705-65.115M111.861-62.416Q111.861-62.896 112.105-63.310Q112.349-63.724 112.765-63.962Q113.181-64.201 113.662-64.201Q114.216-64.201 114.595-64.091Q114.974-63.982 114.974-63.576Q114.974-63.408 114.861-63.285Q114.748-63.162 114.576-63.162Q114.404-63.162 114.285-63.277Q114.166-63.392 114.166-63.560L114.166-63.619Q114.005-63.642 113.670-63.642Q113.341-63.642 113.074-63.472Q112.806-63.302 112.654-63.019Q112.502-62.736 112.502-62.416Q112.502-62.095 112.673-61.814Q112.845-61.533 113.130-61.371Q113.416-61.209 113.744-61.209Q114.056-61.209 114.183-61.312Q114.310-61.416 114.427-61.605Q114.545-61.794 114.662-61.810L114.830-61.810Q114.935-61.798 115-61.730Q115.064-61.662 115.064-61.560Q115.064-61.513 115.045-61.474Q114.935-61.181 114.732-61.002Q114.529-60.822 114.254-60.736Q113.978-60.650 113.662-60.650Q113.177-60.650 112.761-60.888Q112.345-61.127 112.103-61.529Q111.861-61.931 111.861-62.416\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-44.958-67.802v208.55\"\u002F>\u003Cpath stroke=\"none\" d=\"m-44.958 142.748 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 59.05 55.742)\">\u003Cpath d=\"M60.767-60.927L60.767-61.017Q60.818-61.224 61.013-61.248L62.119-61.248L62.119-65.017L61.013-65.017Q60.818-65.041 60.767-65.255L60.767-65.345Q60.818-65.552 61.013-65.576L62.509-65.576Q62.701-65.552 62.759-65.345L62.759-61.248L63.861-61.248Q64.060-61.224 64.111-61.017L64.111-60.927Q64.060-60.712 63.861-60.689L61.013-60.689Q60.818-60.712 60.767-60.927M66.685-60.650Q66.213-60.650 65.828-60.894Q65.443-61.138 65.220-61.548Q64.998-61.959 64.998-62.416Q64.998-62.759 65.123-63.082Q65.248-63.404 65.478-63.658Q65.709-63.912 66.015-64.056Q66.322-64.201 66.685-64.201Q67.048-64.201 67.361-64.054Q67.673-63.908 67.896-63.662Q68.119-63.416 68.246-63.095Q68.373-62.775 68.373-62.416Q68.373-61.959 68.148-61.546Q67.923-61.134 67.539-60.892Q67.154-60.650 66.685-60.650M66.685-61.209Q67.150-61.209 67.441-61.603Q67.732-61.998 67.732-62.482Q67.732-62.775 67.597-63.043Q67.463-63.310 67.222-63.476Q66.982-63.642 66.685-63.642Q66.380-63.642 66.142-63.476Q65.904-63.310 65.769-63.043Q65.634-62.775 65.634-62.482Q65.634-62.002 65.927-61.605Q66.220-61.209 66.685-61.209M69.818-60.912L69.353-63.576L69.193-63.576Q68.986-63.599 68.947-63.818L68.947-63.904Q68.986-64.115 69.193-64.138L70.361-64.138Q70.572-64.115 70.611-63.904L70.611-63.818Q70.572-63.599 70.361-63.576L69.888-63.576Q70.002-62.931 70.080-62.486Q70.158-62.041 70.209-61.722Q70.259-61.404 70.259-61.330Q70.267-61.502 70.552-62.498Q70.591-62.611 70.689-62.685Q70.787-62.759 70.908-62.759L70.986-62.759Q71.107-62.759 71.205-62.685Q71.302-62.611 71.338-62.498Q71.447-62.115 71.529-61.791Q71.611-61.466 71.611-61.330Q71.623-61.619 71.970-63.576L71.498-63.576Q71.291-63.599 71.252-63.818L71.252-63.904Q71.291-64.115 71.498-64.138L72.673-64.138Q72.865-64.115 72.923-63.904L72.923-63.818Q72.869-63.599 72.673-63.576L72.505-63.576L72.041-60.912Q72.017-60.794 71.929-60.722Q71.841-60.650 71.720-60.650L71.580-60.650Q71.459-60.650 71.363-60.722Q71.267-60.794 71.224-60.912Q71.177-61.091 71.105-61.347Q71.033-61.603 70.990-61.812Q70.947-62.021 70.947-62.123Q70.939-61.841 70.658-60.912Q70.630-60.802 70.533-60.726Q70.435-60.650 70.314-60.650L70.138-60.650Q70.017-60.650 69.929-60.722Q69.841-60.794 69.818-60.912M76.568-62.177L74.127-62.177Q74.181-61.900 74.379-61.677Q74.576-61.455 74.853-61.332Q75.130-61.209 75.416-61.209Q75.888-61.209 76.111-61.498Q76.119-61.509 76.175-61.615Q76.232-61.720 76.281-61.763Q76.330-61.806 76.423-61.818L76.568-61.818Q76.759-61.798 76.818-61.584L76.818-61.529Q76.752-61.228 76.521-61.031Q76.291-60.834 75.978-60.742Q75.666-60.650 75.361-60.650Q74.877-60.650 74.437-60.878Q73.998-61.107 73.730-61.507Q73.463-61.908 73.463-62.400L73.463-62.459Q73.463-62.927 73.709-63.330Q73.955-63.732 74.363-63.966Q74.771-64.201 75.240-64.201Q75.744-64.201 76.097-63.978Q76.451-63.755 76.634-63.367Q76.818-62.978 76.818-62.474L76.818-62.416Q76.759-62.201 76.568-62.177M74.134-62.728L76.162-62.728Q76.115-63.138 75.877-63.390Q75.638-63.642 75.240-63.642Q74.845-63.642 74.539-63.380Q74.232-63.119 74.134-62.728M77.525-60.927L77.525-61.017Q77.584-61.224 77.775-61.248L78.486-61.248L78.486-63.576L77.775-63.576Q77.580-63.599 77.525-63.818L77.525-63.904Q77.584-64.115 77.775-64.138L78.877-64.138Q79.076-64.119 79.127-63.904L79.127-63.576Q79.388-63.861 79.744-64.019Q80.099-64.177 80.486-64.177Q80.779-64.177 81.013-64.043Q81.248-63.908 81.248-63.642Q81.248-63.474 81.138-63.357Q81.029-63.240 80.861-63.240Q80.709-63.240 80.593-63.351Q80.478-63.462 80.478-63.619Q80.103-63.619 79.789-63.418Q79.474-63.216 79.300-62.882Q79.127-62.548 79.127-62.169L79.127-61.248L80.072-61.248Q80.279-61.224 80.318-61.017L80.318-60.927Q80.279-60.712 80.072-60.689L77.775-60.689Q77.584-60.712 77.525-60.927M82.166-60.927L82.166-61.017Q82.216-61.224 82.412-61.248L83.451-61.248L83.451-63.576L82.478-63.576Q82.279-63.599 82.228-63.818L82.228-63.904Q82.279-64.115 82.478-64.138L83.845-64.138Q84.041-64.119 84.091-63.904L84.091-61.248L85.005-61.248Q85.201-61.224 85.252-61.017L85.252-60.927Q85.201-60.712 85.005-60.689L82.412-60.689Q82.216-60.712 82.166-60.927M83.197-65.115L83.197-65.169Q83.197-65.341 83.334-65.462Q83.470-65.584 83.646-65.584Q83.818-65.584 83.955-65.462Q84.091-65.341 84.091-65.169L84.091-65.115Q84.091-64.939 83.955-64.818Q83.818-64.697 83.646-64.697Q83.470-64.697 83.334-64.818Q83.197-64.939 83.197-65.115M85.865-60.927L85.865-61.017Q85.908-61.224 86.115-61.248L86.537-61.248L86.537-63.576L86.115-63.576Q85.908-63.599 85.865-63.818L85.865-63.904Q85.912-64.115 86.115-64.138L86.931-64.138Q87.127-64.115 87.177-63.904L87.177-63.818L87.170-63.794Q87.396-63.974 87.670-64.076Q87.943-64.177 88.236-64.177Q88.584-64.177 88.822-64.037Q89.060-63.896 89.175-63.638Q89.291-63.380 89.291-63.025L89.291-61.248L89.716-61.248Q89.923-61.224 89.963-61.017L89.963-60.927Q89.923-60.712 89.716-60.689L88.322-60.689Q88.127-60.712 88.076-60.927L88.076-61.017Q88.127-61.228 88.322-61.248L88.650-61.248L88.650-62.994Q88.650-63.302 88.560-63.460Q88.470-63.619 88.177-63.619Q87.908-63.619 87.679-63.488Q87.451-63.357 87.314-63.128Q87.177-62.900 87.177-62.634L87.177-61.248L87.603-61.248Q87.810-61.224 87.849-61.017L87.849-60.927Q87.810-60.712 87.603-60.689L86.115-60.689Q85.908-60.712 85.865-60.927M90.279-60.041Q90.279-60.341 90.427-60.603Q90.576-60.865 90.826-61.025Q90.642-61.279 90.642-61.599Q90.642-61.884 90.795-62.146Q90.545-62.470 90.545-62.888Q90.545-63.248 90.736-63.544Q90.927-63.841 91.246-64.009Q91.564-64.177 91.927-64.177Q92.134-64.177 92.338-64.117Q92.541-64.056 92.705-63.955Q93.088-64.216 93.560-64.216Q93.798-64.216 93.980-64.085Q94.162-63.955 94.162-63.728Q94.162-63.580 94.060-63.474Q93.959-63.369 93.802-63.369Q93.670-63.369 93.574-63.447Q93.478-63.525 93.447-63.650Q93.302-63.642 93.103-63.552Q93.306-63.240 93.306-62.888Q93.306-62.607 93.195-62.375Q93.084-62.142 92.888-61.964Q92.693-61.787 92.441-61.689Q92.189-61.591 91.927-61.591Q91.541-61.591 91.209-61.779Q91.197-61.779 91.187-61.707Q91.177-61.634 91.177-61.599Q91.177-61.478 91.244-61.371Q91.310-61.263 91.431-61.224Q91.447-61.228 91.461-61.230Q91.474-61.232 91.498-61.232Q91.513-61.232 91.545-61.224Q91.576-61.216 91.584-61.216L92.177-61.216Q92.959-61.216 93.500-60.974Q94.041-60.732 94.041-60.041Q94.041-59.740 93.861-59.513Q93.681-59.287 93.384-59.142Q93.088-58.998 92.767-58.931Q92.447-58.865 92.162-58.865Q91.771-58.865 91.330-58.988Q90.888-59.111 90.584-59.378Q90.279-59.646 90.279-60.041M90.818-60.048Q90.818-59.830 91.058-59.689Q91.298-59.548 91.623-59.482Q91.947-59.416 92.162-59.416Q92.377-59.416 92.701-59.482Q93.025-59.548 93.265-59.689Q93.505-59.830 93.505-60.048Q93.505-60.337 93.281-60.476Q93.056-60.615 92.775-60.648Q92.494-60.681 92.146-60.681L91.529-60.681Q91.345-60.681 91.183-60.601Q91.021-60.521 90.920-60.375Q90.818-60.228 90.818-60.048M91.927-62.146Q92.228-62.146 92.447-62.365Q92.666-62.584 92.666-62.888Q92.666-63.044 92.611-63.175Q92.556-63.306 92.451-63.412Q92.345-63.517 92.214-63.572Q92.084-63.627 91.927-63.627Q91.623-63.627 91.404-63.408Q91.185-63.189 91.185-62.888Q91.185-62.591 91.408-62.369Q91.630-62.146 91.927-62.146\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">One line of C descending through every layer of the course. Each band is a stop on the path: the compiler lowers C to assembly, the assembler to machine-code bytes, the datapath fetches and runs them on the ALU and register file, and the result settles through cache and DRAM in silicon.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:464.428px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 348.321 60.989\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-136.502 -27.718)\">\u003Cpath d=\"M99.978-34.474Q99.528-34.474 99.163-34.698Q98.798-34.923 98.544-35.306Q98.290-35.689 98.165-36.132Q98.040-36.575 98.040-37.001Q98.040-37.427 98.165-37.866Q98.290-38.306 98.544-38.689Q98.798-39.072 99.157-39.296Q99.517-39.521 99.978-39.521Q100.255-39.521 100.513-39.429Q100.771-39.337 100.985-39.169L101.118-39.407Q101.146-39.458 101.200-39.489Q101.255-39.521 101.314-39.521L101.392-39.521Q101.485-39.509 101.548-39.450Q101.610-39.392 101.622-39.286L101.622-37.958Q101.610-37.857 101.548-37.794Q101.485-37.732 101.392-37.720L101.224-37.720Q101.122-37.732 101.060-37.798Q100.997-37.864 100.985-37.958Q100.946-38.224 100.823-38.448Q100.700-38.673 100.497-38.816Q100.294-38.958 100.032-38.958Q99.700-38.958 99.448-38.775Q99.196-38.591 99.025-38.290Q98.853-37.989 98.767-37.648Q98.681-37.306 98.681-37.001Q98.681-36.697 98.765-36.355Q98.849-36.013 99.021-35.710Q99.192-35.407 99.450-35.220Q99.708-35.032 100.040-35.032Q100.423-35.032 100.704-35.306Q100.985-35.579 100.985-35.966Q101.013-36.177 101.224-36.200L101.392-36.200Q101.622-36.161 101.622-35.935Q101.622-35.618 101.485-35.347Q101.349-35.075 101.114-34.878Q100.880-34.681 100.589-34.577Q100.298-34.474 99.978-34.474\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-136.502 -27.718)\">\u003Cpath d=\"M106.798-34.751L106.798-35.665Q106.825-35.872 107.036-35.896L107.204-35.896Q107.368-35.872 107.427-35.712Q107.630-35.072 108.357-35.072Q108.564-35.072 108.792-35.107Q109.021-35.142 109.189-35.257Q109.357-35.372 109.357-35.575Q109.357-35.786 109.134-35.900Q108.911-36.013 108.638-36.056L107.939-36.169Q106.798-36.380 106.798-37.103Q106.798-37.392 106.942-37.581Q107.087-37.771 107.327-37.878Q107.567-37.986 107.823-38.025Q108.079-38.064 108.357-38.064Q108.607-38.064 108.800-38.034Q108.993-38.005 109.157-37.927Q109.235-38.044 109.364-38.064L109.442-38.064Q109.540-38.052 109.603-37.989Q109.665-37.927 109.677-37.833L109.677-37.126Q109.665-37.032 109.603-36.966Q109.540-36.900 109.442-36.888L109.275-36.888Q109.181-36.900 109.114-36.966Q109.048-37.032 109.036-37.126Q109.036-37.505 108.341-37.505Q107.993-37.505 107.675-37.423Q107.357-37.341 107.357-37.095Q107.357-36.829 108.028-36.720L108.732-36.599Q109.216-36.517 109.566-36.269Q109.915-36.021 109.915-35.575Q109.915-35.185 109.679-34.943Q109.442-34.700 109.093-34.607Q108.743-34.513 108.357-34.513Q107.778-34.513 107.380-34.767Q107.310-34.642 107.261-34.585Q107.212-34.529 107.107-34.513L107.036-34.513Q106.821-34.536 106.798-34.751M112.579-34.513Q112.107-34.513 111.722-34.757Q111.337-35.001 111.114-35.411Q110.892-35.822 110.892-36.279Q110.892-36.622 111.017-36.945Q111.142-37.267 111.372-37.521Q111.603-37.775 111.909-37.919Q112.216-38.064 112.579-38.064Q112.942-38.064 113.255-37.917Q113.567-37.771 113.790-37.525Q114.013-37.279 114.140-36.958Q114.267-36.638 114.267-36.279Q114.267-35.822 114.042-35.409Q113.817-34.997 113.433-34.755Q113.048-34.513 112.579-34.513M112.579-35.072Q113.044-35.072 113.335-35.466Q113.626-35.861 113.626-36.345Q113.626-36.638 113.491-36.906Q113.357-37.173 113.116-37.339Q112.876-37.505 112.579-37.505Q112.275-37.505 112.036-37.339Q111.798-37.173 111.663-36.906Q111.528-36.638 111.528-36.345Q111.528-35.864 111.821-35.468Q112.114-35.072 112.579-35.072M115.446-35.407L115.446-37.439L115.025-37.439Q114.817-37.462 114.775-37.681L114.775-37.767Q114.821-37.978 115.025-38.001L115.841-38.001Q116.036-37.978 116.087-37.767L116.087-35.439Q116.087-35.204 116.257-35.138Q116.427-35.072 116.712-35.072Q116.919-35.072 117.114-35.148Q117.310-35.224 117.435-35.374Q117.560-35.525 117.560-35.736L117.560-37.439L117.138-37.439Q116.927-37.462 116.888-37.681L116.888-37.767Q116.927-37.978 117.138-38.001L117.950-38.001Q118.150-37.978 118.200-37.767L118.200-35.111L118.626-35.111Q118.833-35.087 118.872-34.880L118.872-34.790Q118.833-34.575 118.626-34.552L117.810-34.552Q117.610-34.575 117.560-34.775Q117.157-34.513 116.650-34.513Q116.415-34.513 116.200-34.554Q115.985-34.595 115.819-34.697Q115.653-34.798 115.550-34.976Q115.446-35.154 115.446-35.407M119.173-34.790L119.173-34.880Q119.232-35.087 119.423-35.111L120.134-35.111L120.134-37.439L119.423-37.439Q119.228-37.462 119.173-37.681L119.173-37.767Q119.232-37.978 119.423-38.001L120.525-38.001Q120.724-37.982 120.775-37.767L120.775-37.439Q121.036-37.724 121.392-37.882Q121.747-38.040 122.134-38.040Q122.427-38.040 122.661-37.906Q122.896-37.771 122.896-37.505Q122.896-37.337 122.786-37.220Q122.677-37.103 122.509-37.103Q122.357-37.103 122.241-37.214Q122.126-37.325 122.126-37.482Q121.751-37.482 121.437-37.281Q121.122-37.079 120.948-36.745Q120.775-36.411 120.775-36.032L120.775-35.111L121.720-35.111Q121.927-35.087 121.966-34.880L121.966-34.790Q121.927-34.575 121.720-34.552L119.423-34.552Q119.232-34.575 119.173-34.790M123.755-36.279Q123.755-36.759 123.999-37.173Q124.243-37.587 124.659-37.825Q125.075-38.064 125.556-38.064Q126.110-38.064 126.489-37.954Q126.868-37.845 126.868-37.439Q126.868-37.271 126.755-37.148Q126.642-37.025 126.470-37.025Q126.298-37.025 126.179-37.140Q126.060-37.255 126.060-37.423L126.060-37.482Q125.900-37.505 125.564-37.505Q125.235-37.505 124.968-37.335Q124.700-37.165 124.548-36.882Q124.396-36.599 124.396-36.279Q124.396-35.958 124.567-35.677Q124.739-35.396 125.025-35.234Q125.310-35.072 125.638-35.072Q125.950-35.072 126.077-35.175Q126.204-35.279 126.321-35.468Q126.439-35.657 126.556-35.673L126.724-35.673Q126.829-35.661 126.894-35.593Q126.958-35.525 126.958-35.423Q126.958-35.376 126.939-35.337Q126.829-35.044 126.626-34.864Q126.423-34.685 126.148-34.599Q125.872-34.513 125.556-34.513Q125.071-34.513 124.655-34.751Q124.239-34.989 123.997-35.392Q123.755-35.794 123.755-36.279M130.954-36.040L128.513-36.040Q128.567-35.763 128.765-35.540Q128.962-35.318 129.239-35.195Q129.517-35.072 129.802-35.072Q130.274-35.072 130.497-35.361Q130.505-35.372 130.562-35.478Q130.618-35.583 130.667-35.626Q130.716-35.669 130.810-35.681L130.954-35.681Q131.146-35.661 131.204-35.447L131.204-35.392Q131.138-35.091 130.907-34.894Q130.677-34.697 130.364-34.605Q130.052-34.513 129.747-34.513Q129.263-34.513 128.823-34.741Q128.384-34.970 128.116-35.370Q127.849-35.771 127.849-36.263L127.849-36.322Q127.849-36.790 128.095-37.193Q128.341-37.595 128.749-37.829Q129.157-38.064 129.626-38.064Q130.130-38.064 130.483-37.841Q130.837-37.618 131.021-37.230Q131.204-36.841 131.204-36.337L131.204-36.279Q131.146-36.064 130.954-36.040M128.521-36.591L130.548-36.591Q130.501-37.001 130.263-37.253Q130.024-37.505 129.626-37.505Q129.232-37.505 128.925-37.243Q128.618-36.982 128.521-36.591\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-31.875 -29.496)\">\u003Cpath d=\"M98.993-34.790L98.993-34.880Q99.044-35.087 99.239-35.111L99.513-35.111L99.513-36.505L98.384-38.880L98.126-38.880Q97.931-38.904 97.880-39.118L97.880-39.208Q97.931-39.415 98.126-39.439L99.192-39.439Q99.400-39.415 99.439-39.208L99.439-39.118Q99.400-38.904 99.192-38.880L99.095-38.880Q99.833-37.333 99.833-37.154Q99.845-37.361 100.567-38.880L100.474-38.880Q100.263-38.904 100.224-39.118L100.224-39.208Q100.263-39.415 100.474-39.439L101.536-39.439Q101.732-39.415 101.782-39.208L101.782-39.118Q101.732-38.904 101.536-38.880L101.278-38.880L100.153-36.505L100.153-35.111L100.423-35.111Q100.622-35.087 100.673-34.880L100.673-34.790Q100.622-34.575 100.423-34.552L99.239-34.552Q99.044-34.575 98.993-34.790M102.310-35.966Q102.310-36.251 102.466-36.505Q102.622-36.759 102.872-36.933Q103.122-37.107 103.407-37.193Q103.169-37.267 102.942-37.409Q102.716-37.552 102.573-37.761Q102.431-37.970 102.431-38.216Q102.431-38.614 102.677-38.909Q102.923-39.204 103.306-39.363Q103.689-39.521 104.079-39.521Q104.470-39.521 104.853-39.363Q105.235-39.204 105.482-38.906Q105.728-38.607 105.728-38.216Q105.728-37.970 105.585-37.763Q105.442-37.556 105.216-37.411Q104.989-37.267 104.751-37.193Q105.204-37.056 105.525-36.730Q105.845-36.404 105.845-35.966Q105.845-35.529 105.587-35.185Q105.329-34.841 104.919-34.657Q104.509-34.474 104.079-34.474Q103.650-34.474 103.239-34.656Q102.829-34.837 102.569-35.181Q102.310-35.525 102.310-35.966M102.950-35.966Q102.950-35.693 103.116-35.478Q103.282-35.263 103.544-35.148Q103.806-35.032 104.079-35.032Q104.353-35.032 104.612-35.148Q104.872-35.263 105.038-35.480Q105.204-35.697 105.204-35.966Q105.204-36.243 105.038-36.460Q104.872-36.677 104.612-36.794Q104.353-36.911 104.079-36.911Q103.806-36.911 103.544-36.794Q103.282-36.677 103.116-36.462Q102.950-36.247 102.950-35.966M103.071-38.216Q103.071-37.978 103.228-37.810Q103.384-37.642 103.620-37.558Q103.857-37.474 104.079-37.474Q104.298-37.474 104.536-37.558Q104.775-37.642 104.931-37.812Q105.087-37.982 105.087-38.216Q105.087-38.450 104.931-38.620Q104.775-38.790 104.536-38.874Q104.298-38.958 104.079-38.958Q103.857-38.958 103.620-38.874Q103.384-38.790 103.228-38.622Q103.071-38.454 103.071-38.216M108.325-34.474Q107.685-34.474 107.298-34.851Q106.911-35.228 106.753-35.800Q106.595-36.372 106.595-37.001Q106.595-37.466 106.755-37.921Q106.915-38.376 107.204-38.736Q107.493-39.095 107.901-39.308Q108.310-39.521 108.798-39.521Q109.071-39.521 109.321-39.423Q109.571-39.325 109.724-39.130Q109.876-38.935 109.876-38.642Q109.876-38.466 109.763-38.345Q109.650-38.224 109.478-38.224Q109.302-38.224 109.185-38.337Q109.067-38.450 109.067-38.622Q109.067-38.743 109.142-38.864Q109.032-38.958 108.798-38.958Q108.380-38.958 108.044-38.718Q107.708-38.478 107.503-38.091Q107.298-37.704 107.251-37.306Q107.489-37.505 107.798-37.613Q108.107-37.720 108.427-37.720Q108.767-37.720 109.066-37.595Q109.364-37.470 109.583-37.251Q109.802-37.032 109.927-36.734Q110.052-36.435 110.052-36.095Q110.052-35.747 109.913-35.447Q109.775-35.146 109.534-34.929Q109.294-34.712 108.980-34.593Q108.665-34.474 108.325-34.474M107.341-36.017Q107.403-35.755 107.532-35.531Q107.661-35.306 107.860-35.169Q108.060-35.032 108.325-35.032Q108.778-35.032 109.095-35.339Q109.411-35.646 109.411-36.095Q109.411-36.376 109.276-36.622Q109.142-36.868 108.905-37.011Q108.669-37.154 108.372-37.154Q107.982-37.154 107.650-36.927Q107.317-36.700 107.317-36.329Q107.317-36.290 107.333-36.212Q107.349-36.134 107.349-36.095Q107.349-36.068 107.347-36.052Q107.345-36.036 107.341-36.017M113.946-36.689L111.204-36.689Q111.079-36.700 110.993-36.786Q110.907-36.872 110.907-37.001Q110.907-37.130 110.993-37.212Q111.079-37.294 111.204-37.306L113.946-37.306Q114.071-37.294 114.153-37.212Q114.235-37.130 114.235-37.001Q114.235-36.872 114.153-36.786Q114.071-36.700 113.946-36.689M116.817-34.474Q116.177-34.474 115.790-34.851Q115.403-35.228 115.245-35.800Q115.087-36.372 115.087-37.001Q115.087-37.466 115.247-37.921Q115.407-38.376 115.696-38.736Q115.985-39.095 116.394-39.308Q116.802-39.521 117.290-39.521Q117.564-39.521 117.814-39.423Q118.064-39.325 118.216-39.130Q118.368-38.935 118.368-38.642Q118.368-38.466 118.255-38.345Q118.142-38.224 117.970-38.224Q117.794-38.224 117.677-38.337Q117.560-38.450 117.560-38.622Q117.560-38.743 117.634-38.864Q117.525-38.958 117.290-38.958Q116.872-38.958 116.536-38.718Q116.200-38.478 115.995-38.091Q115.790-37.704 115.743-37.306Q115.982-37.505 116.290-37.613Q116.599-37.720 116.919-37.720Q117.259-37.720 117.558-37.595Q117.857-37.470 118.075-37.251Q118.294-37.032 118.419-36.734Q118.544-36.435 118.544-36.095Q118.544-35.747 118.405-35.447Q118.267-35.146 118.026-34.929Q117.786-34.712 117.472-34.593Q117.157-34.474 116.817-34.474M115.833-36.017Q115.896-35.755 116.025-35.531Q116.153-35.306 116.353-35.169Q116.552-35.032 116.817-35.032Q117.271-35.032 117.587-35.339Q117.903-35.646 117.903-36.095Q117.903-36.376 117.769-36.622Q117.634-36.868 117.398-37.011Q117.161-37.154 116.864-37.154Q116.474-37.154 116.142-36.927Q115.810-36.700 115.810-36.329Q115.810-36.290 115.825-36.212Q115.841-36.134 115.841-36.095Q115.841-36.068 115.839-36.052Q115.837-36.036 115.833-36.017M121.501-35.896L119.431-35.896Q119.235-35.919 119.181-36.138L119.181-36.376Q119.181-36.450 119.224-36.521L121.071-39.392Q121.157-39.521 121.310-39.521L121.767-39.521Q121.876-39.521 121.954-39.443Q122.032-39.364 122.032-39.255L122.032-36.454L122.696-36.454Q122.892-36.431 122.942-36.224L122.942-36.138Q122.892-35.919 122.696-35.896L122.032-35.896L122.032-35.111L122.607-35.111Q122.814-35.087 122.853-34.880L122.853-34.790Q122.814-34.575 122.607-34.552L120.927-34.552Q120.720-34.575 120.677-34.790L120.677-34.880Q120.720-35.087 120.927-35.111L121.501-35.111L121.501-35.896M121.501-39.048L119.829-36.454L121.501-36.454\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-31.875 -29.496)\">\u003Cpath d=\"M127.868-35.665Q127.868-36.111 128.282-36.368Q128.696-36.626 129.237-36.726Q129.778-36.825 130.286-36.833Q130.286-37.048 130.151-37.200Q130.017-37.353 129.810-37.429Q129.603-37.505 129.392-37.505Q129.048-37.505 128.888-37.482L128.888-37.423Q128.888-37.255 128.769-37.140Q128.649-37.025 128.485-37.025Q128.310-37.025 128.194-37.148Q128.079-37.271 128.079-37.439Q128.079-37.845 128.460-37.954Q128.841-38.064 129.399-38.064Q129.669-38.064 129.937-37.986Q130.204-37.907 130.429-37.757Q130.653-37.607 130.790-37.386Q130.927-37.165 130.927-36.888L130.927-35.169Q130.927-35.111 131.454-35.111Q131.649-35.091 131.700-34.880L131.700-34.790Q131.649-34.575 131.454-34.552L131.310-34.552Q130.966-34.552 130.737-34.599Q130.509-34.646 130.364-34.833Q129.903-34.513 129.196-34.513Q128.860-34.513 128.556-34.654Q128.251-34.794 128.060-35.056Q127.868-35.318 127.868-35.665M128.509-35.657Q128.509-35.384 128.751-35.228Q128.993-35.072 129.278-35.072Q129.497-35.072 129.730-35.130Q129.962-35.189 130.124-35.327Q130.286-35.466 130.286-35.689L130.286-36.279Q130.005-36.279 129.589-36.222Q129.173-36.165 128.841-36.027Q128.509-35.888 128.509-35.657M132.294-34.751L132.294-35.665Q132.321-35.872 132.532-35.896L132.700-35.896Q132.864-35.872 132.923-35.712Q133.126-35.072 133.853-35.072Q134.060-35.072 134.288-35.107Q134.517-35.142 134.685-35.257Q134.853-35.372 134.853-35.575Q134.853-35.786 134.630-35.900Q134.407-36.013 134.134-36.056L133.435-36.169Q132.294-36.380 132.294-37.103Q132.294-37.392 132.439-37.581Q132.583-37.771 132.823-37.878Q133.064-37.986 133.319-38.025Q133.575-38.064 133.853-38.064Q134.103-38.064 134.296-38.034Q134.489-38.005 134.653-37.927Q134.732-38.044 134.860-38.064L134.939-38.064Q135.036-38.052 135.099-37.989Q135.161-37.927 135.173-37.833L135.173-37.126Q135.161-37.032 135.099-36.966Q135.036-36.900 134.939-36.888L134.771-36.888Q134.677-36.900 134.610-36.966Q134.544-37.032 134.532-37.126Q134.532-37.505 133.837-37.505Q133.489-37.505 133.171-37.423Q132.853-37.341 132.853-37.095Q132.853-36.829 133.524-36.720L134.228-36.599Q134.712-36.517 135.062-36.269Q135.411-36.021 135.411-35.575Q135.411-35.185 135.175-34.943Q134.939-34.700 134.589-34.607Q134.239-34.513 133.853-34.513Q133.274-34.513 132.876-34.767Q132.806-34.642 132.757-34.585Q132.708-34.529 132.603-34.513L132.532-34.513Q132.317-34.536 132.294-34.751M136.540-34.751L136.540-35.665Q136.567-35.872 136.778-35.896L136.946-35.896Q137.110-35.872 137.169-35.712Q137.372-35.072 138.099-35.072Q138.306-35.072 138.534-35.107Q138.763-35.142 138.931-35.257Q139.099-35.372 139.099-35.575Q139.099-35.786 138.876-35.900Q138.653-36.013 138.380-36.056L137.681-36.169Q136.540-36.380 136.540-37.103Q136.540-37.392 136.685-37.581Q136.829-37.771 137.069-37.878Q137.310-37.986 137.566-38.025Q137.821-38.064 138.099-38.064Q138.349-38.064 138.542-38.034Q138.735-38.005 138.899-37.927Q138.978-38.044 139.107-38.064L139.185-38.064Q139.282-38.052 139.345-37.989Q139.407-37.927 139.419-37.833L139.419-37.126Q139.407-37.032 139.345-36.966Q139.282-36.900 139.185-36.888L139.017-36.888Q138.923-36.900 138.857-36.966Q138.790-37.032 138.778-37.126Q138.778-37.505 138.083-37.505Q137.735-37.505 137.417-37.423Q137.099-37.341 137.099-37.095Q137.099-36.829 137.771-36.720L138.474-36.599Q138.958-36.517 139.308-36.269Q139.657-36.021 139.657-35.575Q139.657-35.185 139.421-34.943Q139.185-34.700 138.835-34.607Q138.485-34.513 138.099-34.513Q137.521-34.513 137.122-34.767Q137.052-34.642 137.003-34.585Q136.954-34.529 136.849-34.513L136.778-34.513Q136.564-34.536 136.540-34.751M143.712-36.040L141.271-36.040Q141.325-35.763 141.523-35.540Q141.720-35.318 141.997-35.195Q142.274-35.072 142.560-35.072Q143.032-35.072 143.255-35.361Q143.263-35.372 143.319-35.478Q143.376-35.583 143.425-35.626Q143.474-35.669 143.567-35.681L143.712-35.681Q143.903-35.661 143.962-35.447L143.962-35.392Q143.896-35.091 143.665-34.894Q143.435-34.697 143.122-34.605Q142.810-34.513 142.505-34.513Q142.021-34.513 141.581-34.741Q141.142-34.970 140.874-35.370Q140.607-35.771 140.607-36.263L140.607-36.322Q140.607-36.790 140.853-37.193Q141.099-37.595 141.507-37.829Q141.915-38.064 142.384-38.064Q142.888-38.064 143.241-37.841Q143.595-37.618 143.778-37.230Q143.962-36.841 143.962-36.337L143.962-36.279Q143.903-36.064 143.712-36.040M141.278-36.591L143.306-36.591Q143.259-37.001 143.021-37.253Q142.782-37.505 142.384-37.505Q141.989-37.505 141.683-37.243Q141.376-36.982 141.278-36.591M144.392-34.790L144.392-34.880Q144.442-35.091 144.638-35.111L144.837-35.111L144.837-37.439L144.638-37.439Q144.431-37.462 144.392-37.681L144.392-37.767Q144.442-37.982 144.638-38.001L145.118-38.001Q145.310-37.978 145.368-37.767Q145.689-38.040 146.103-38.040Q146.294-38.040 146.462-37.931Q146.630-37.822 146.704-37.650Q146.880-37.841 147.103-37.941Q147.325-38.040 147.567-38.040Q147.985-38.040 148.140-37.698Q148.294-37.357 148.294-36.888L148.294-35.111L148.493-35.111Q148.704-35.087 148.743-34.880L148.743-34.790Q148.692-34.575 148.493-34.552L147.677-34.552Q147.482-34.575 147.431-34.790L147.431-34.880Q147.482-35.087 147.677-35.111L147.767-35.111L147.767-36.857Q147.767-37.482 147.517-37.482Q147.185-37.482 147.007-37.171Q146.829-36.861 146.829-36.497L146.829-35.111L147.032-35.111Q147.239-35.087 147.278-34.880L147.278-34.790Q147.228-34.575 147.032-34.552L146.216-34.552Q146.017-34.575 145.966-34.790L145.966-34.880Q146.017-35.087 146.216-35.111L146.302-35.111L146.302-36.857Q146.302-37.482 146.056-37.482Q145.724-37.482 145.546-37.169Q145.368-36.857 145.368-36.497L145.368-35.111L145.567-35.111Q145.774-35.087 145.814-34.880L145.814-34.790Q145.763-34.572 145.567-34.552L144.638-34.552Q144.431-34.575 144.392-34.790M149.435-34.790L149.435-38.880L149.013-38.880Q148.806-38.904 148.763-39.118L148.763-39.208Q148.806-39.415 149.013-39.439L149.829-39.439Q150.024-39.415 150.075-39.208L150.075-37.697Q150.286-37.864 150.550-37.952Q150.814-38.040 151.083-38.040Q151.423-38.040 151.720-37.896Q152.017-37.751 152.232-37.499Q152.446-37.247 152.562-36.935Q152.677-36.622 152.677-36.279Q152.677-35.814 152.450-35.404Q152.224-34.993 151.837-34.753Q151.450-34.513 150.982-34.513Q150.462-34.513 150.075-34.880L150.075-34.790Q150.024-34.572 149.829-34.552L149.685-34.552Q149.493-34.575 149.435-34.790M150.939-35.072Q151.247-35.072 151.497-35.241Q151.747-35.411 151.892-35.693Q152.036-35.974 152.036-36.279Q152.036-36.568 151.911-36.847Q151.786-37.126 151.554-37.304Q151.321-37.482 151.021-37.482Q150.700-37.482 150.439-37.296Q150.177-37.111 150.075-36.810L150.075-35.958Q150.165-35.591 150.386-35.331Q150.607-35.072 150.939-35.072M153.388-34.790L153.388-34.880Q153.439-35.087 153.634-35.111L154.739-35.111L154.739-38.880L153.634-38.880Q153.439-38.904 153.388-39.118L153.388-39.208Q153.439-39.415 153.634-39.439L155.130-39.439Q155.321-39.415 155.380-39.208L155.380-35.111L156.482-35.111Q156.681-35.087 156.732-34.880L156.732-34.790Q156.681-34.575 156.482-34.552L153.634-34.552Q153.439-34.575 153.388-34.790M157.528-33.431Q157.528-33.540 157.579-33.632Q157.630-33.724 157.722-33.775Q157.814-33.825 157.919-33.825Q158.028-33.825 158.120-33.775Q158.212-33.724 158.263-33.632Q158.314-33.540 158.314-33.431L158.169-33.431Q158.169-33.294 158.192-33.294Q158.450-33.294 158.638-33.486Q158.825-33.677 158.911-33.943L159.122-34.552L157.985-37.439L157.657-37.439Q157.462-37.462 157.407-37.681L157.407-37.767Q157.466-37.978 157.657-38.001L158.817-38.001Q159.013-37.978 159.064-37.767L159.064-37.681Q159.013-37.462 158.817-37.439L158.552-37.439Q158.888-36.591 159.132-35.937Q159.376-35.282 159.376-35.193L159.384-35.193Q159.384-35.251 159.476-35.544Q159.567-35.837 159.761-36.421Q159.954-37.005 160.095-37.439L159.817-37.439Q159.607-37.462 159.567-37.681L159.567-37.767Q159.618-37.982 159.817-38.001L160.970-38.001Q161.177-37.978 161.216-37.767L161.216-37.681Q161.177-37.462 160.970-37.439L160.649-37.439L159.474-33.943Q159.306-33.443 158.980-33.089Q158.653-32.736 158.192-32.736Q157.919-32.736 157.724-32.947Q157.528-33.157 157.528-33.431\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(86.941 -29.496)\">\u003Cpath d=\"M97.657-34.790L97.657-34.880Q97.708-35.091 97.903-35.111L98.103-35.111L98.103-37.439L97.903-37.439Q97.696-37.462 97.657-37.681L97.657-37.767Q97.708-37.982 97.903-38.001L98.384-38.001Q98.575-37.978 98.634-37.767Q98.954-38.040 99.368-38.040Q99.560-38.040 99.728-37.931Q99.896-37.822 99.970-37.650Q100.146-37.841 100.368-37.941Q100.591-38.040 100.833-38.040Q101.251-38.040 101.405-37.698Q101.560-37.357 101.560-36.888L101.560-35.111L101.759-35.111Q101.970-35.087 102.009-34.880L102.009-34.790Q101.958-34.575 101.759-34.552L100.942-34.552Q100.747-34.575 100.696-34.790L100.696-34.880Q100.747-35.087 100.942-35.111L101.032-35.111L101.032-36.857Q101.032-37.482 100.782-37.482Q100.450-37.482 100.273-37.171Q100.095-36.861 100.095-36.497L100.095-35.111L100.298-35.111Q100.505-35.087 100.544-34.880L100.544-34.790Q100.493-34.575 100.298-34.552L99.482-34.552Q99.282-34.575 99.232-34.790L99.232-34.880Q99.282-35.087 99.482-35.111L99.567-35.111L99.567-36.857Q99.567-37.482 99.321-37.482Q98.989-37.482 98.812-37.169Q98.634-36.857 98.634-36.497L98.634-35.111L98.833-35.111Q99.040-35.087 99.079-34.880L99.079-34.790Q99.028-34.572 98.833-34.552L97.903-34.552Q97.696-34.575 97.657-34.790M102.364-35.665Q102.364-36.111 102.778-36.368Q103.192-36.626 103.733-36.726Q104.275-36.825 104.782-36.833Q104.782-37.048 104.648-37.200Q104.513-37.353 104.306-37.429Q104.099-37.505 103.888-37.505Q103.544-37.505 103.384-37.482L103.384-37.423Q103.384-37.255 103.265-37.140Q103.146-37.025 102.982-37.025Q102.806-37.025 102.691-37.148Q102.575-37.271 102.575-37.439Q102.575-37.845 102.956-37.954Q103.337-38.064 103.896-38.064Q104.165-38.064 104.433-37.986Q104.700-37.907 104.925-37.757Q105.150-37.607 105.286-37.386Q105.423-37.165 105.423-36.888L105.423-35.169Q105.423-35.111 105.950-35.111Q106.146-35.091 106.196-34.880L106.196-34.790Q106.146-34.575 105.950-34.552L105.806-34.552Q105.462-34.552 105.233-34.599Q105.005-34.646 104.860-34.833Q104.400-34.513 103.692-34.513Q103.357-34.513 103.052-34.654Q102.747-34.794 102.556-35.056Q102.364-35.318 102.364-35.665M103.005-35.657Q103.005-35.384 103.247-35.228Q103.489-35.072 103.775-35.072Q103.993-35.072 104.226-35.130Q104.458-35.189 104.620-35.327Q104.782-35.466 104.782-35.689L104.782-36.279Q104.501-36.279 104.085-36.222Q103.669-36.165 103.337-36.027Q103.005-35.888 103.005-35.657M106.763-36.279Q106.763-36.759 107.007-37.173Q107.251-37.587 107.667-37.825Q108.083-38.064 108.564-38.064Q109.118-38.064 109.497-37.954Q109.876-37.845 109.876-37.439Q109.876-37.271 109.763-37.148Q109.650-37.025 109.478-37.025Q109.306-37.025 109.187-37.140Q109.067-37.255 109.067-37.423L109.067-37.482Q108.907-37.505 108.571-37.505Q108.243-37.505 107.976-37.335Q107.708-37.165 107.556-36.882Q107.403-36.599 107.403-36.279Q107.403-35.958 107.575-35.677Q107.747-35.396 108.032-35.234Q108.317-35.072 108.646-35.072Q108.958-35.072 109.085-35.175Q109.212-35.279 109.329-35.468Q109.446-35.657 109.564-35.673L109.732-35.673Q109.837-35.661 109.901-35.593Q109.966-35.525 109.966-35.423Q109.966-35.376 109.946-35.337Q109.837-35.044 109.634-34.864Q109.431-34.685 109.155-34.599Q108.880-34.513 108.564-34.513Q108.079-34.513 107.663-34.751Q107.247-34.989 107.005-35.392Q106.763-35.794 106.763-36.279M110.521-34.790L110.521-34.880Q110.564-35.087 110.771-35.111L111.192-35.111L111.192-38.880L110.771-38.880Q110.564-38.904 110.521-39.118L110.521-39.208Q110.564-39.415 110.771-39.439L111.587-39.439Q111.782-39.415 111.833-39.208L111.833-37.657Q112.294-38.040 112.892-38.040Q113.239-38.040 113.478-37.900Q113.716-37.759 113.831-37.501Q113.946-37.243 113.946-36.888L113.946-35.111L114.372-35.111Q114.579-35.087 114.618-34.880L114.618-34.790Q114.579-34.575 114.372-34.552L112.978-34.552Q112.782-34.575 112.732-34.790L112.732-34.880Q112.782-35.091 112.978-35.111L113.306-35.111L113.306-36.857Q113.306-37.165 113.216-37.323Q113.126-37.482 112.833-37.482Q112.564-37.482 112.335-37.351Q112.107-37.220 111.970-36.991Q111.833-36.763 111.833-36.497L111.833-35.111L112.259-35.111Q112.466-35.087 112.505-34.880L112.505-34.790Q112.466-34.575 112.259-34.552L110.771-34.552Q110.564-34.575 110.521-34.790M115.314-34.790L115.314-34.880Q115.364-35.087 115.560-35.111L116.599-35.111L116.599-37.439L115.626-37.439Q115.427-37.462 115.376-37.681L115.376-37.767Q115.427-37.978 115.626-38.001L116.993-38.001Q117.189-37.982 117.239-37.767L117.239-35.111L118.153-35.111Q118.349-35.087 118.400-34.880L118.400-34.790Q118.349-34.575 118.153-34.552L115.560-34.552Q115.364-34.575 115.314-34.790M116.345-38.978L116.345-39.032Q116.345-39.204 116.482-39.325Q116.618-39.447 116.794-39.447Q116.966-39.447 117.103-39.325Q117.239-39.204 117.239-39.032L117.239-38.978Q117.239-38.802 117.103-38.681Q116.966-38.560 116.794-38.560Q116.618-38.560 116.482-38.681Q116.345-38.802 116.345-38.978M119.013-34.790L119.013-34.880Q119.056-35.087 119.263-35.111L119.685-35.111L119.685-37.439L119.263-37.439Q119.056-37.462 119.013-37.681L119.013-37.767Q119.060-37.978 119.263-38.001L120.079-38.001Q120.275-37.978 120.325-37.767L120.325-37.681L120.317-37.657Q120.544-37.837 120.817-37.939Q121.091-38.040 121.384-38.040Q121.732-38.040 121.970-37.900Q122.208-37.759 122.323-37.501Q122.439-37.243 122.439-36.888L122.439-35.111L122.864-35.111Q123.071-35.087 123.110-34.880L123.110-34.790Q123.071-34.575 122.864-34.552L121.470-34.552Q121.275-34.575 121.224-34.790L121.224-34.880Q121.275-35.091 121.470-35.111L121.798-35.111L121.798-36.857Q121.798-37.165 121.708-37.323Q121.618-37.482 121.325-37.482Q121.056-37.482 120.827-37.351Q120.599-37.220 120.462-36.991Q120.325-36.763 120.325-36.497L120.325-35.111L120.751-35.111Q120.958-35.087 120.997-34.880L120.997-34.790Q120.958-34.575 120.751-34.552L119.263-34.552Q119.056-34.575 119.013-34.790M126.700-36.040L124.259-36.040Q124.314-35.763 124.511-35.540Q124.708-35.318 124.985-35.195Q125.263-35.072 125.548-35.072Q126.021-35.072 126.243-35.361Q126.251-35.372 126.308-35.478Q126.364-35.583 126.413-35.626Q126.462-35.669 126.556-35.681L126.700-35.681Q126.892-35.661 126.950-35.447L126.950-35.392Q126.884-35.091 126.653-34.894Q126.423-34.697 126.110-34.605Q125.798-34.513 125.493-34.513Q125.009-34.513 124.569-34.741Q124.130-34.970 123.862-35.370Q123.595-35.771 123.595-36.263L123.595-36.322Q123.595-36.790 123.841-37.193Q124.087-37.595 124.495-37.829Q124.903-38.064 125.372-38.064Q125.876-38.064 126.230-37.841Q126.583-37.618 126.767-37.230Q126.950-36.841 126.950-36.337L126.950-36.279Q126.892-36.064 126.700-36.040M124.267-36.591L126.294-36.591Q126.247-37.001 126.009-37.253Q125.771-37.505 125.372-37.505Q124.978-37.505 124.671-37.243Q124.364-36.982 124.267-36.591M130.931-36.689L128.189-36.689Q128.064-36.700 127.978-36.786Q127.892-36.872 127.892-37.001Q127.892-37.130 127.978-37.212Q128.064-37.294 128.189-37.306L130.931-37.306Q131.056-37.294 131.138-37.212Q131.220-37.130 131.220-37.001Q131.220-36.872 131.138-36.786Q131.056-36.700 130.931-36.689M132.239-36.279Q132.239-36.759 132.483-37.173Q132.728-37.587 133.144-37.825Q133.560-38.064 134.040-38.064Q134.595-38.064 134.974-37.954Q135.353-37.845 135.353-37.439Q135.353-37.271 135.239-37.148Q135.126-37.025 134.954-37.025Q134.782-37.025 134.663-37.140Q134.544-37.255 134.544-37.423L134.544-37.482Q134.384-37.505 134.048-37.505Q133.720-37.505 133.452-37.335Q133.185-37.165 133.032-36.882Q132.880-36.599 132.880-36.279Q132.880-35.958 133.052-35.677Q133.224-35.396 133.509-35.234Q133.794-35.072 134.122-35.072Q134.435-35.072 134.562-35.175Q134.689-35.279 134.806-35.468Q134.923-35.657 135.040-35.673L135.208-35.673Q135.314-35.661 135.378-35.593Q135.442-35.525 135.442-35.423Q135.442-35.376 135.423-35.337Q135.314-35.044 135.110-34.864Q134.907-34.685 134.632-34.599Q134.357-34.513 134.040-34.513Q133.556-34.513 133.140-34.751Q132.724-34.989 132.482-35.392Q132.239-35.794 132.239-36.279M138.048-34.513Q137.575-34.513 137.191-34.757Q136.806-35.001 136.583-35.411Q136.360-35.822 136.360-36.279Q136.360-36.622 136.485-36.945Q136.610-37.267 136.841-37.521Q137.071-37.775 137.378-37.919Q137.685-38.064 138.048-38.064Q138.411-38.064 138.724-37.917Q139.036-37.771 139.259-37.525Q139.482-37.279 139.608-36.958Q139.735-36.638 139.735-36.279Q139.735-35.822 139.511-35.409Q139.286-34.997 138.901-34.755Q138.517-34.513 138.048-34.513M138.048-35.072Q138.513-35.072 138.804-35.466Q139.095-35.861 139.095-36.345Q139.095-36.638 138.960-36.906Q138.825-37.173 138.585-37.339Q138.345-37.505 138.048-37.505Q137.743-37.505 137.505-37.339Q137.267-37.173 137.132-36.906Q136.997-36.638 136.997-36.345Q136.997-35.864 137.290-35.468Q137.583-35.072 138.048-35.072M142.036-34.513Q141.571-34.513 141.206-34.763Q140.841-35.013 140.636-35.417Q140.431-35.822 140.431-36.279Q140.431-36.622 140.556-36.943Q140.681-37.263 140.913-37.513Q141.146-37.763 141.450-37.902Q141.755-38.040 142.110-38.040Q142.622-38.040 143.028-37.720L143.028-38.880L142.607-38.880Q142.396-38.904 142.357-39.118L142.357-39.208Q142.396-39.415 142.607-39.439L143.419-39.439Q143.618-39.415 143.669-39.208L143.669-35.111L144.095-35.111Q144.302-35.087 144.341-34.880L144.341-34.790Q144.302-34.575 144.095-34.552L143.278-34.552Q143.079-34.575 143.028-34.790L143.028-34.919Q142.833-34.728 142.571-34.620Q142.310-34.513 142.036-34.513M142.075-35.072Q142.435-35.072 142.687-35.341Q142.939-35.611 143.028-35.986L143.028-36.818Q142.970-37.005 142.843-37.156Q142.716-37.306 142.538-37.394Q142.360-37.482 142.165-37.482Q141.857-37.482 141.607-37.312Q141.357-37.142 141.212-36.857Q141.067-36.572 141.067-36.271Q141.067-35.822 141.353-35.447Q141.638-35.072 142.075-35.072M147.931-36.040L145.489-36.040Q145.544-35.763 145.741-35.540Q145.939-35.318 146.216-35.195Q146.493-35.072 146.778-35.072Q147.251-35.072 147.474-35.361Q147.482-35.372 147.538-35.478Q147.595-35.583 147.644-35.626Q147.692-35.669 147.786-35.681L147.931-35.681Q148.122-35.661 148.181-35.447L148.181-35.392Q148.114-35.091 147.884-34.894Q147.653-34.697 147.341-34.605Q147.028-34.513 146.724-34.513Q146.239-34.513 145.800-34.741Q145.360-34.970 145.093-35.370Q144.825-35.771 144.825-36.263L144.825-36.322Q144.825-36.790 145.071-37.193Q145.317-37.595 145.726-37.829Q146.134-38.064 146.603-38.064Q147.107-38.064 147.460-37.841Q147.814-37.618 147.997-37.230Q148.181-36.841 148.181-36.337L148.181-36.279Q148.122-36.064 147.931-36.040M145.497-36.591L147.524-36.591Q147.478-37.001 147.239-37.253Q147.001-37.505 146.603-37.505Q146.208-37.505 145.901-37.243Q145.595-36.982 145.497-36.591\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(86.941 -29.496)\">\u003Cpath d=\"M153.705-34.790L153.705-38.880L153.283-38.880Q153.076-38.904 153.033-39.118L153.033-39.208Q153.076-39.415 153.283-39.439L154.100-39.439Q154.295-39.415 154.346-39.208L154.346-37.697Q154.557-37.864 154.820-37.952Q155.084-38.040 155.354-38.040Q155.693-38.040 155.990-37.896Q156.287-37.751 156.502-37.499Q156.717-37.247 156.832-36.935Q156.947-36.622 156.947-36.279Q156.947-35.814 156.721-35.404Q156.494-34.993 156.108-34.753Q155.721-34.513 155.252-34.513Q154.733-34.513 154.346-34.880L154.346-34.790Q154.295-34.572 154.100-34.552L153.955-34.552Q153.764-34.575 153.705-34.790M155.209-35.072Q155.518-35.072 155.768-35.241Q156.018-35.411 156.162-35.693Q156.307-35.974 156.307-36.279Q156.307-36.568 156.182-36.847Q156.057-37.126 155.824-37.304Q155.592-37.482 155.291-37.482Q154.971-37.482 154.709-37.296Q154.447-37.111 154.346-36.810L154.346-35.958Q154.436-35.591 154.656-35.331Q154.877-35.072 155.209-35.072M157.553-33.431Q157.553-33.540 157.604-33.632Q157.654-33.724 157.746-33.775Q157.838-33.825 157.943-33.825Q158.053-33.825 158.145-33.775Q158.236-33.724 158.287-33.632Q158.338-33.540 158.338-33.431L158.193-33.431Q158.193-33.294 158.217-33.294Q158.475-33.294 158.662-33.486Q158.850-33.677 158.936-33.943L159.147-34.552L158.010-37.439L157.682-37.439Q157.486-37.462 157.432-37.681L157.432-37.767Q157.490-37.978 157.682-38.001L158.842-38.001Q159.037-37.978 159.088-37.767L159.088-37.681Q159.037-37.462 158.842-37.439L158.576-37.439Q158.912-36.591 159.156-35.937Q159.400-35.282 159.400-35.193L159.408-35.193Q159.408-35.251 159.500-35.544Q159.592-35.837 159.785-36.421Q159.979-37.005 160.119-37.439L159.842-37.439Q159.631-37.462 159.592-37.681L159.592-37.767Q159.643-37.982 159.842-38.001L160.994-38.001Q161.201-37.978 161.240-37.767L161.240-37.681Q161.201-37.462 160.994-37.439L160.674-37.439L159.498-33.943Q159.330-33.443 159.004-33.089Q158.678-32.736 158.217-32.736Q157.943-32.736 157.748-32.947Q157.553-33.157 157.553-33.431M162.654-35.657L162.654-37.439L161.904-37.439Q161.705-37.462 161.654-37.681L161.654-37.767Q161.705-37.978 161.904-38.001L162.654-38.001L162.654-38.751Q162.705-38.958 162.904-38.986L163.049-38.986Q163.244-38.958 163.295-38.751L163.295-38.001L164.654-38.001Q164.846-37.982 164.904-37.767L164.904-37.681Q164.850-37.462 164.654-37.439L163.295-37.439L163.295-35.689Q163.295-35.072 163.869-35.072Q164.119-35.072 164.283-35.257Q164.447-35.443 164.447-35.689Q164.447-35.782 164.520-35.853Q164.592-35.923 164.693-35.935L164.838-35.935Q165.037-35.911 165.088-35.704L165.088-35.657Q165.088-35.333 164.904-35.070Q164.721-34.806 164.428-34.659Q164.135-34.513 163.815-34.513Q163.303-34.513 162.979-34.823Q162.654-35.134 162.654-35.657M169.213-36.040L166.772-36.040Q166.826-35.763 167.024-35.540Q167.221-35.318 167.498-35.195Q167.775-35.072 168.061-35.072Q168.533-35.072 168.756-35.361Q168.764-35.372 168.820-35.478Q168.877-35.583 168.926-35.626Q168.975-35.669 169.068-35.681L169.213-35.681Q169.404-35.661 169.463-35.447L169.463-35.392Q169.397-35.091 169.166-34.894Q168.936-34.697 168.623-34.605Q168.311-34.513 168.006-34.513Q167.522-34.513 167.082-34.741Q166.643-34.970 166.375-35.370Q166.108-35.771 166.108-36.263L166.108-36.322Q166.108-36.790 166.354-37.193Q166.600-37.595 167.008-37.829Q167.416-38.064 167.885-38.064Q168.389-38.064 168.742-37.841Q169.096-37.618 169.279-37.230Q169.463-36.841 169.463-36.337L169.463-36.279Q169.404-36.064 169.213-36.040M166.779-36.591L168.807-36.591Q168.760-37.001 168.522-37.253Q168.283-37.505 167.885-37.505Q167.490-37.505 167.184-37.243Q166.877-36.982 166.779-36.591M170.533-34.751L170.533-35.665Q170.561-35.872 170.772-35.896L170.940-35.896Q171.104-35.872 171.162-35.712Q171.365-35.072 172.092-35.072Q172.299-35.072 172.527-35.107Q172.756-35.142 172.924-35.257Q173.092-35.372 173.092-35.575Q173.092-35.786 172.869-35.900Q172.647-36.013 172.373-36.056L171.674-36.169Q170.533-36.380 170.533-37.103Q170.533-37.392 170.678-37.581Q170.822-37.771 171.063-37.878Q171.303-37.986 171.559-38.025Q171.815-38.064 172.092-38.064Q172.342-38.064 172.535-38.034Q172.729-38.005 172.893-37.927Q172.971-38.044 173.100-38.064L173.178-38.064Q173.275-38.052 173.338-37.989Q173.400-37.927 173.412-37.833L173.412-37.126Q173.400-37.032 173.338-36.966Q173.275-36.900 173.178-36.888L173.010-36.888Q172.916-36.900 172.850-36.966Q172.783-37.032 172.772-37.126Q172.772-37.505 172.076-37.505Q171.729-37.505 171.410-37.423Q171.092-37.341 171.092-37.095Q171.092-36.829 171.764-36.720L172.467-36.599Q172.951-36.517 173.301-36.269Q173.650-36.021 173.650-35.575Q173.650-35.185 173.414-34.943Q173.178-34.700 172.828-34.607Q172.479-34.513 172.092-34.513Q171.514-34.513 171.115-34.767Q171.045-34.642 170.996-34.585Q170.947-34.529 170.842-34.513L170.772-34.513Q170.557-34.536 170.533-34.751\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-68.737-17.48h93.894v-34.144h-93.894Z\"\u002F>\u003Cg transform=\"translate(-128.002 2.444)\">\u003Cpath d=\"M98.118-35.665Q98.118-36.111 98.532-36.368Q98.946-36.626 99.487-36.726Q100.028-36.825 100.536-36.833Q100.536-37.048 100.401-37.200Q100.267-37.353 100.060-37.429Q99.853-37.505 99.642-37.505Q99.298-37.505 99.138-37.482L99.138-37.423Q99.138-37.255 99.019-37.140Q98.900-37.025 98.735-37.025Q98.560-37.025 98.444-37.148Q98.329-37.271 98.329-37.439Q98.329-37.845 98.710-37.954Q99.091-38.064 99.650-38.064Q99.919-38.064 100.187-37.986Q100.454-37.907 100.679-37.757Q100.903-37.607 101.040-37.386Q101.177-37.165 101.177-36.888L101.177-35.169Q101.177-35.111 101.704-35.111Q101.900-35.091 101.950-34.880L101.950-34.790Q101.900-34.575 101.704-34.552L101.560-34.552Q101.216-34.552 100.987-34.599Q100.759-34.646 100.614-34.833Q100.153-34.513 99.446-34.513Q99.110-34.513 98.806-34.654Q98.501-34.794 98.310-35.056Q98.118-35.318 98.118-35.665M98.759-35.657Q98.759-35.384 99.001-35.228Q99.243-35.072 99.528-35.072Q99.747-35.072 99.980-35.130Q100.212-35.189 100.374-35.327Q100.536-35.466 100.536-35.689L100.536-36.279Q100.255-36.279 99.839-36.222Q99.423-36.165 99.091-36.027Q98.759-35.888 98.759-35.657M103.692-34.118L103.692-39.872Q103.751-40.079 103.942-40.103L105.622-40.103Q105.817-40.083 105.868-39.872L105.868-39.782Q105.817-39.568 105.622-39.544L104.333-39.544L104.333-34.447L105.622-34.447Q105.817-34.427 105.868-34.208L105.868-34.118Q105.817-33.911 105.622-33.888L103.942-33.888Q103.751-33.907 103.692-34.118M106.821-34.790L106.821-34.880Q106.872-35.087 107.067-35.111L108.107-35.111L108.107-37.439L107.134-37.439Q106.935-37.462 106.884-37.681L106.884-37.767Q106.935-37.978 107.134-38.001L108.501-38.001Q108.696-37.982 108.747-37.767L108.747-35.111L109.661-35.111Q109.857-35.087 109.907-34.880L109.907-34.790Q109.857-34.575 109.661-34.552L107.067-34.552Q106.872-34.575 106.821-34.790M107.853-38.978L107.853-39.032Q107.853-39.204 107.989-39.325Q108.126-39.447 108.302-39.447Q108.474-39.447 108.610-39.325Q108.747-39.204 108.747-39.032L108.747-38.978Q108.747-38.802 108.610-38.681Q108.474-38.560 108.302-38.560Q108.126-38.560 107.989-38.681Q107.853-38.802 107.853-38.978M110.778-34.118L110.778-34.208Q110.829-34.423 111.025-34.447L112.314-34.447L112.314-39.544L111.025-39.544Q110.829-39.568 110.778-39.782L110.778-39.872Q110.829-40.079 111.025-40.103L112.708-40.103Q112.903-40.079 112.954-39.872L112.954-34.118Q112.903-33.911 112.708-33.888L111.025-33.888Q110.829-33.911 110.778-34.118\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M50.765-17.48h93.894v-34.144H50.765Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-29.75 7.194)\">\u003Cpath d=\"M97.657-44.290L97.657-44.380Q97.708-44.591 97.903-44.611L98.103-44.611L98.103-46.939L97.903-46.939Q97.696-46.962 97.657-47.181L97.657-47.267Q97.708-47.482 97.903-47.501L98.384-47.501Q98.575-47.478 98.634-47.267Q98.954-47.540 99.368-47.540Q99.560-47.540 99.728-47.431Q99.896-47.322 99.970-47.150Q100.146-47.341 100.368-47.441Q100.591-47.540 100.833-47.540Q101.251-47.540 101.405-47.198Q101.560-46.857 101.560-46.388L101.560-44.611L101.759-44.611Q101.970-44.587 102.009-44.380L102.009-44.290Q101.958-44.075 101.759-44.052L100.942-44.052Q100.747-44.075 100.696-44.290L100.696-44.380Q100.747-44.587 100.942-44.611L101.032-44.611L101.032-46.357Q101.032-46.982 100.782-46.982Q100.450-46.982 100.273-46.671Q100.095-46.361 100.095-45.997L100.095-44.611L100.298-44.611Q100.505-44.587 100.544-44.380L100.544-44.290Q100.493-44.075 100.298-44.052L99.482-44.052Q99.282-44.075 99.232-44.290L99.232-44.380Q99.282-44.587 99.482-44.611L99.567-44.611L99.567-46.357Q99.567-46.982 99.321-46.982Q98.989-46.982 98.812-46.669Q98.634-46.357 98.634-45.997L98.634-44.611L98.833-44.611Q99.040-44.587 99.079-44.380L99.079-44.290Q99.028-44.072 98.833-44.052L97.903-44.052Q97.696-44.075 97.657-44.290M102.181-44.290L102.181-44.380Q102.239-44.587 102.431-44.611L103.142-44.611L103.142-46.939L102.431-46.939Q102.235-46.962 102.181-47.181L102.181-47.267Q102.239-47.478 102.431-47.501L103.532-47.501Q103.732-47.482 103.782-47.267L103.782-46.939Q104.044-47.224 104.400-47.382Q104.755-47.540 105.142-47.540Q105.435-47.540 105.669-47.406Q105.903-47.271 105.903-47.005Q105.903-46.837 105.794-46.720Q105.685-46.603 105.517-46.603Q105.364-46.603 105.249-46.714Q105.134-46.825 105.134-46.982Q104.759-46.982 104.444-46.781Q104.130-46.579 103.956-46.245Q103.782-45.911 103.782-45.532L103.782-44.611L104.728-44.611Q104.935-44.587 104.974-44.380L104.974-44.290Q104.935-44.075 104.728-44.052L102.431-44.052Q102.239-44.075 102.181-44.290M106.150-44.290L106.150-44.380Q106.200-44.591 106.396-44.611L106.595-44.611L106.595-46.939L106.396-46.939Q106.189-46.962 106.150-47.181L106.150-47.267Q106.200-47.482 106.396-47.501L106.876-47.501Q107.067-47.478 107.126-47.267Q107.446-47.540 107.860-47.540Q108.052-47.540 108.220-47.431Q108.388-47.322 108.462-47.150Q108.638-47.341 108.860-47.441Q109.083-47.540 109.325-47.540Q109.743-47.540 109.898-47.198Q110.052-46.857 110.052-46.388L110.052-44.611L110.251-44.611Q110.462-44.587 110.501-44.380L110.501-44.290Q110.450-44.075 110.251-44.052L109.435-44.052Q109.239-44.075 109.189-44.290L109.189-44.380Q109.239-44.587 109.435-44.611L109.525-44.611L109.525-46.357Q109.525-46.982 109.275-46.982Q108.942-46.982 108.765-46.671Q108.587-46.361 108.587-45.997L108.587-44.611L108.790-44.611Q108.997-44.587 109.036-44.380L109.036-44.290Q108.985-44.075 108.790-44.052L107.974-44.052Q107.775-44.075 107.724-44.290L107.724-44.380Q107.775-44.587 107.974-44.611L108.060-44.611L108.060-46.357Q108.060-46.982 107.814-46.982Q107.482-46.982 107.304-46.669Q107.126-46.357 107.126-45.997L107.126-44.611L107.325-44.611Q107.532-44.587 107.571-44.380L107.571-44.290Q107.521-44.072 107.325-44.052L106.396-44.052Q106.189-44.075 106.150-44.290M112.571-44.013Q112.099-44.013 111.714-44.257Q111.329-44.501 111.107-44.911Q110.884-45.322 110.884-45.779Q110.884-46.122 111.009-46.445Q111.134-46.767 111.364-47.021Q111.595-47.275 111.901-47.419Q112.208-47.564 112.571-47.564Q112.935-47.564 113.247-47.417Q113.560-47.271 113.782-47.025Q114.005-46.779 114.132-46.458Q114.259-46.138 114.259-45.779Q114.259-45.322 114.034-44.909Q113.810-44.497 113.425-44.255Q113.040-44.013 112.571-44.013M112.571-44.572Q113.036-44.572 113.327-44.966Q113.618-45.361 113.618-45.845Q113.618-46.138 113.483-46.406Q113.349-46.673 113.108-46.839Q112.868-47.005 112.571-47.005Q112.267-47.005 112.028-46.839Q111.790-46.673 111.655-46.406Q111.521-46.138 111.521-45.845Q111.521-45.364 111.814-44.968Q112.107-44.572 112.571-44.572M116.353-44.275L115.466-46.939L115.146-46.939Q114.946-46.962 114.896-47.181L114.896-47.267Q114.946-47.478 115.146-47.501L116.306-47.501Q116.501-47.482 116.552-47.267L116.552-47.181Q116.501-46.962 116.306-46.939L116.025-46.939L116.817-44.564L117.607-46.939L117.329-46.939Q117.130-46.962 117.079-47.181L117.079-47.267Q117.130-47.478 117.329-47.501L118.489-47.501Q118.685-47.478 118.735-47.267L118.735-47.181Q118.685-46.962 118.489-46.939L118.169-46.939L117.282-44.275Q117.239-44.161 117.138-44.087Q117.036-44.013 116.911-44.013L116.720-44.013Q116.603-44.013 116.499-44.085Q116.396-44.157 116.353-44.275M121.255-42.509L121.255-42.595Q121.306-42.814 121.501-42.837L121.966-42.837L121.966-44.435Q121.513-44.013 120.903-44.013Q120.548-44.013 120.243-44.156Q119.939-44.298 119.706-44.548Q119.474-44.798 119.349-45.120Q119.224-45.443 119.224-45.779Q119.224-46.263 119.462-46.663Q119.700-47.064 120.107-47.302Q120.513-47.540 120.989-47.540Q121.552-47.540 121.966-47.150L121.966-47.310Q122.017-47.521 122.216-47.540L122.357-47.540Q122.556-47.517 122.607-47.310L122.607-42.837L123.071-42.837Q123.267-42.814 123.317-42.595L123.317-42.509Q123.267-42.298 123.071-42.275L121.501-42.275Q121.306-42.298 121.255-42.509M120.950-44.572Q121.321-44.572 121.597-44.825Q121.872-45.079 121.966-45.443L121.966-46.060Q121.923-46.298 121.800-46.511Q121.677-46.724 121.480-46.853Q121.282-46.982 121.040-46.982Q120.724-46.982 120.452-46.816Q120.181-46.650 120.023-46.368Q119.864-46.087 119.864-45.771Q119.864-45.306 120.179-44.939Q120.493-44.572 120.950-44.572\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-29.75 7.194)\">\u003Cpath d=\"M130.575-43.411Q130.044-43.720 129.644-44.208Q129.243-44.697 129.032-45.290Q128.821-45.884 128.821-46.501Q128.821-47.118 129.030-47.706Q129.239-48.294 129.636-48.775Q130.032-49.255 130.567-49.579Q130.638-49.603 130.669-49.603L130.759-49.603Q130.857-49.591 130.923-49.525Q130.989-49.458 130.989-49.357Q130.989-49.212 130.888-49.150Q130.439-48.861 130.112-48.445Q129.786-48.029 129.624-47.536Q129.462-47.044 129.462-46.501Q129.462-46.095 129.558-45.708Q129.653-45.322 129.831-44.986Q130.009-44.650 130.269-44.366Q130.528-44.083 130.876-43.853Q130.989-43.775 130.989-43.638Q130.989-43.540 130.923-43.470Q130.857-43.400 130.759-43.388L130.669-43.388Q130.610-43.388 130.575-43.411M132.388-43.693Q132.388-43.747 132.411-43.814L134.677-49.419Q134.771-49.603 134.966-49.603Q135.091-49.603 135.179-49.515Q135.267-49.427 135.267-49.298Q135.267-49.239 135.243-49.181L132.982-43.572Q132.880-43.388 132.700-43.388Q132.575-43.388 132.482-43.478Q132.388-43.568 132.388-43.693M134.966-43.388Q134.614-43.388 134.433-43.728Q134.251-44.068 134.251-44.450Q134.251-44.837 134.431-45.177Q134.610-45.517 134.966-45.517Q135.204-45.517 135.362-45.347Q135.521-45.177 135.595-44.933Q135.669-44.689 135.669-44.450Q135.669-44.216 135.595-43.972Q135.521-43.728 135.362-43.558Q135.204-43.388 134.966-43.388M134.966-43.947Q135.048-43.978 135.095-44.146Q135.142-44.314 135.142-44.450Q135.142-44.587 135.095-44.757Q135.048-44.927 134.966-44.954Q134.880-44.927 134.829-44.759Q134.778-44.591 134.778-44.450Q134.778-44.322 134.829-44.150Q134.880-43.978 134.966-43.947M132.700-47.466Q132.458-47.466 132.298-47.636Q132.138-47.806 132.064-48.052Q131.989-48.298 131.989-48.540Q131.989-48.923 132.169-49.263Q132.349-49.603 132.700-49.603Q132.939-49.603 133.097-49.433Q133.255-49.263 133.329-49.019Q133.403-48.775 133.403-48.540Q133.403-48.298 133.329-48.052Q133.255-47.806 133.097-47.636Q132.939-47.466 132.700-47.466M132.700-48.029Q132.790-48.072 132.833-48.228Q132.876-48.384 132.876-48.540Q132.876-48.669 132.829-48.845Q132.782-49.021 132.692-49.044Q132.677-49.044 132.648-49.009Q132.618-48.974 132.610-48.954Q132.517-48.767 132.517-48.540Q132.517-48.404 132.566-48.232Q132.614-48.060 132.700-48.029M136.177-44.290L136.177-44.380Q136.235-44.587 136.427-44.611L137.138-44.611L137.138-46.939L136.427-46.939Q136.232-46.962 136.177-47.181L136.177-47.267Q136.235-47.478 136.427-47.501L137.528-47.501Q137.728-47.482 137.778-47.267L137.778-46.939Q138.040-47.224 138.396-47.382Q138.751-47.540 139.138-47.540Q139.431-47.540 139.665-47.406Q139.899-47.271 139.899-47.005Q139.899-46.837 139.790-46.720Q139.681-46.603 139.513-46.603Q139.360-46.603 139.245-46.714Q139.130-46.825 139.130-46.982Q138.755-46.982 138.441-46.781Q138.126-46.579 137.952-46.245Q137.778-45.911 137.778-45.532L137.778-44.611L138.724-44.611Q138.931-44.587 138.970-44.380L138.970-44.290Q138.931-44.075 138.724-44.052L136.427-44.052Q136.235-44.075 136.177-44.290M142.064-44.013Q141.599-44.013 141.233-44.263Q140.868-44.513 140.663-44.917Q140.458-45.322 140.458-45.779Q140.458-46.122 140.583-46.443Q140.708-46.763 140.941-47.013Q141.173-47.263 141.478-47.402Q141.782-47.540 142.138-47.540Q142.649-47.540 143.056-47.220L143.056-48.380L142.634-48.380Q142.423-48.404 142.384-48.618L142.384-48.708Q142.423-48.915 142.634-48.939L143.446-48.939Q143.646-48.915 143.696-48.708L143.696-44.611L144.122-44.611Q144.329-44.587 144.368-44.380L144.368-44.290Q144.329-44.075 144.122-44.052L143.306-44.052Q143.107-44.075 143.056-44.290L143.056-44.419Q142.860-44.228 142.599-44.120Q142.337-44.013 142.064-44.013M142.103-44.572Q142.462-44.572 142.714-44.841Q142.966-45.111 143.056-45.486L143.056-46.318Q142.997-46.505 142.870-46.656Q142.743-46.806 142.566-46.894Q142.388-46.982 142.192-46.982Q141.884-46.982 141.634-46.812Q141.384-46.642 141.239-46.357Q141.095-46.072 141.095-45.771Q141.095-45.322 141.380-44.947Q141.665-44.572 142.103-44.572M145.064-44.290L145.064-44.380Q145.114-44.587 145.310-44.611L146.349-44.611L146.349-46.939L145.376-46.939Q145.177-46.962 145.126-47.181L145.126-47.267Q145.177-47.478 145.376-47.501L146.743-47.501Q146.939-47.482 146.989-47.267L146.989-44.611L147.903-44.611Q148.099-44.587 148.149-44.380L148.149-44.290Q148.099-44.075 147.903-44.052L145.310-44.052Q145.114-44.075 145.064-44.290M146.095-48.478L146.095-48.532Q146.095-48.704 146.232-48.825Q146.368-48.947 146.544-48.947Q146.716-48.947 146.853-48.825Q146.989-48.704 146.989-48.532L146.989-48.478Q146.989-48.302 146.853-48.181Q146.716-48.060 146.544-48.060Q146.368-48.060 146.232-48.181Q146.095-48.302 146.095-48.478M149.732-43.388L149.646-43.388Q149.540-43.400 149.472-43.472Q149.403-43.544 149.403-43.638Q149.403-43.779 149.509-43.845Q149.845-44.060 150.114-44.349Q150.384-44.638 150.567-44.986Q150.751-45.333 150.841-45.712Q150.931-46.091 150.931-46.501Q150.931-47.040 150.767-47.532Q150.603-48.025 150.284-48.439Q149.966-48.853 149.524-49.142Q149.403-49.224 149.403-49.357Q149.403-49.454 149.472-49.523Q149.540-49.591 149.646-49.603L149.732-49.603Q149.786-49.603 149.821-49.579Q150.208-49.357 150.548-49.009Q150.888-48.661 151.108-48.267Q151.329-47.872 151.450-47.427Q151.571-46.982 151.571-46.501Q151.571-46.017 151.450-45.566Q151.329-45.114 151.105-44.718Q150.880-44.322 150.556-43.988Q150.232-43.654 149.829-43.411Q149.759-43.388 149.732-43.388M154.657-42.939Q154.544-42.939 154.454-43.029Q154.364-43.118 154.364-43.228Q154.364-43.404 154.556-43.478Q154.774-43.529 154.946-43.687Q155.118-43.845 155.185-44.068Q155.161-44.068 155.130-44.052L155.067-44.052Q154.837-44.052 154.671-44.214Q154.505-44.376 154.505-44.611Q154.505-44.845 154.669-45.005Q154.833-45.165 155.067-45.165Q155.278-45.165 155.442-45.044Q155.607-44.923 155.696-44.730Q155.786-44.536 155.786-44.325Q155.786-43.849 155.487-43.460Q155.189-43.072 154.724-42.947Q154.700-42.939 154.657-42.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-29.75 7.194)\">\u003Cpath d=\"M119.642-34.193Q119.642-34.247 119.665-34.314L121.931-39.919Q122.025-40.103 122.220-40.103Q122.345-40.103 122.433-40.015Q122.521-39.927 122.521-39.798Q122.521-39.739 122.497-39.681L120.235-34.072Q120.134-33.888 119.954-33.888Q119.829-33.888 119.735-33.978Q119.642-34.068 119.642-34.193M122.220-33.888Q121.868-33.888 121.687-34.228Q121.505-34.568 121.505-34.950Q121.505-35.337 121.685-35.677Q121.864-36.017 122.220-36.017Q122.458-36.017 122.616-35.847Q122.775-35.677 122.849-35.433Q122.923-35.189 122.923-34.950Q122.923-34.716 122.849-34.472Q122.775-34.228 122.616-34.058Q122.458-33.888 122.220-33.888M122.220-34.447Q122.302-34.478 122.349-34.646Q122.396-34.814 122.396-34.950Q122.396-35.087 122.349-35.257Q122.302-35.427 122.220-35.454Q122.134-35.427 122.083-35.259Q122.032-35.091 122.032-34.950Q122.032-34.822 122.083-34.650Q122.134-34.478 122.220-34.447M119.954-37.966Q119.712-37.966 119.552-38.136Q119.392-38.306 119.317-38.552Q119.243-38.798 119.243-39.040Q119.243-39.423 119.423-39.763Q119.603-40.103 119.954-40.103Q120.192-40.103 120.351-39.933Q120.509-39.763 120.583-39.519Q120.657-39.275 120.657-39.040Q120.657-38.798 120.583-38.552Q120.509-38.306 120.351-38.136Q120.192-37.966 119.954-37.966M119.954-38.529Q120.044-38.572 120.087-38.728Q120.130-38.884 120.130-39.040Q120.130-39.169 120.083-39.345Q120.036-39.521 119.946-39.544Q119.931-39.544 119.901-39.509Q119.872-39.474 119.864-39.454Q119.771-39.267 119.771-39.040Q119.771-38.904 119.819-38.732Q119.868-38.560 119.954-38.529M123.431-34.790L123.431-34.880Q123.489-35.087 123.681-35.111L124.392-35.111L124.392-37.439L123.681-37.439Q123.485-37.462 123.431-37.681L123.431-37.767Q123.489-37.978 123.681-38.001L124.782-38.001Q124.982-37.982 125.032-37.767L125.032-37.439Q125.294-37.724 125.650-37.882Q126.005-38.040 126.392-38.040Q126.685-38.040 126.919-37.906Q127.153-37.771 127.153-37.505Q127.153-37.337 127.044-37.220Q126.935-37.103 126.767-37.103Q126.614-37.103 126.499-37.214Q126.384-37.325 126.384-37.482Q126.009-37.482 125.694-37.281Q125.380-37.079 125.206-36.745Q125.032-36.411 125.032-36.032L125.032-35.111L125.978-35.111Q126.185-35.087 126.224-34.880L126.224-34.790Q126.185-34.575 125.978-34.552L123.681-34.552Q123.489-34.575 123.431-34.790M127.860-35.665Q127.860-36.111 128.274-36.368Q128.689-36.626 129.230-36.726Q129.771-36.825 130.278-36.833Q130.278-37.048 130.144-37.200Q130.009-37.353 129.802-37.429Q129.595-37.505 129.384-37.505Q129.040-37.505 128.880-37.482L128.880-37.423Q128.880-37.255 128.761-37.140Q128.642-37.025 128.478-37.025Q128.302-37.025 128.187-37.148Q128.071-37.271 128.071-37.439Q128.071-37.845 128.452-37.954Q128.833-38.064 129.392-38.064Q129.661-38.064 129.929-37.986Q130.196-37.907 130.421-37.757Q130.646-37.607 130.782-37.386Q130.919-37.165 130.919-36.888L130.919-35.169Q130.919-35.111 131.446-35.111Q131.642-35.091 131.692-34.880L131.692-34.790Q131.642-34.575 131.446-34.552L131.302-34.552Q130.958-34.552 130.730-34.599Q130.501-34.646 130.357-34.833Q129.896-34.513 129.189-34.513Q128.853-34.513 128.548-34.654Q128.243-34.794 128.052-35.056Q127.860-35.318 127.860-35.665M128.501-35.657Q128.501-35.384 128.743-35.228Q128.985-35.072 129.271-35.072Q129.489-35.072 129.722-35.130Q129.954-35.189 130.116-35.327Q130.278-35.466 130.278-35.689L130.278-36.279Q129.997-36.279 129.581-36.222Q129.165-36.165 128.833-36.027Q128.501-35.888 128.501-35.657M131.958-34.790L131.958-34.880Q131.997-35.087 132.204-35.111L132.610-35.111L133.540-36.329L132.669-37.439L132.251-37.439Q132.056-37.458 132.005-37.681L132.005-37.767Q132.056-37.978 132.251-38.001L133.411-38.001Q133.610-37.978 133.661-37.767L133.661-37.681Q133.610-37.462 133.411-37.439L133.302-37.439L133.798-36.782L134.274-37.439L134.157-37.439Q133.958-37.462 133.907-37.681L133.907-37.767Q133.958-37.978 134.157-38.001L135.317-38.001Q135.513-37.982 135.564-37.767L135.564-37.681Q135.513-37.462 135.317-37.439L134.907-37.439L134.060-36.329L135.021-35.111L135.427-35.111Q135.626-35.087 135.677-34.880L135.677-34.790Q135.638-34.575 135.427-34.552L134.274-34.552Q134.067-34.575 134.028-34.790L134.028-34.880Q134.067-35.087 134.274-35.111L134.403-35.111L133.798-35.966L133.212-35.111L133.357-35.111Q133.564-35.087 133.603-34.880L133.603-34.790Q133.564-34.575 133.357-34.552L132.204-34.552Q132.009-34.572 131.958-34.790\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M175.957-17.48h93.894v-34.144h-93.894Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(89.066 7.194)\">\u003Cpath d=\"M111.599-44.931Q111.716-44.728 111.950-44.630Q112.185-44.532 112.446-44.532Q112.743-44.532 113.017-44.661Q113.290-44.790 113.464-45.027Q113.638-45.263 113.638-45.564Q113.638-45.818 113.519-46.060Q113.400-46.302 113.185-46.448Q112.970-46.595 112.700-46.595Q112.095-46.595 111.759-46.275Q111.681-46.189 111.626-46.142Q111.571-46.095 111.485-46.083L111.384-46.083Q111.185-46.107 111.134-46.325L111.134-48.708Q111.185-48.915 111.384-48.939L113.743-48.939Q113.939-48.919 113.989-48.708L113.989-48.618Q113.939-48.404 113.743-48.380L111.775-48.380L111.775-46.954Q112.181-47.157 112.700-47.157Q113.130-47.157 113.495-46.941Q113.860-46.724 114.069-46.355Q114.278-45.986 114.278-45.564Q114.278-45.091 114.015-44.732Q113.751-44.372 113.327-44.173Q112.903-43.974 112.446-43.974Q112.192-43.974 111.915-44.048Q111.638-44.122 111.403-44.279Q111.169-44.435 111.028-44.669Q110.888-44.904 110.888-45.189Q110.888-45.357 111.003-45.480Q111.118-45.603 111.294-45.603Q111.376-45.603 111.446-45.573Q111.517-45.544 111.573-45.489Q111.630-45.435 111.661-45.359Q111.692-45.282 111.692-45.204Q111.692-45.044 111.599-44.931M116.829-43.974Q116.396-43.974 116.064-44.212Q115.732-44.450 115.511-44.839Q115.290-45.228 115.183-45.665Q115.075-46.103 115.075-46.501Q115.075-46.892 115.185-47.335Q115.294-47.779 115.511-48.159Q115.728-48.540 116.062-48.781Q116.396-49.021 116.829-49.021Q117.384-49.021 117.784-48.622Q118.185-48.224 118.382-47.638Q118.579-47.052 118.579-46.501Q118.579-45.947 118.382-45.359Q118.185-44.771 117.784-44.372Q117.384-43.974 116.829-43.974M116.829-44.532Q117.130-44.532 117.347-44.749Q117.564-44.966 117.691-45.294Q117.817-45.622 117.878-45.968Q117.939-46.314 117.939-46.595Q117.939-46.845 117.876-47.171Q117.814-47.497 117.683-47.788Q117.552-48.079 117.339-48.269Q117.126-48.458 116.829-48.458Q116.454-48.458 116.202-48.146Q115.950-47.833 115.833-47.400Q115.716-46.966 115.716-46.595Q115.716-46.197 115.829-45.716Q115.942-45.236 116.191-44.884Q116.439-44.532 116.829-44.532\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(89.066 7.194)\">\u003Cpath d=\"M125.333-43.974Q124.900-43.974 124.567-44.212Q124.235-44.450 124.015-44.839Q123.794-45.228 123.687-45.665Q123.579-46.103 123.579-46.501Q123.579-46.892 123.689-47.335Q123.798-47.779 124.015-48.159Q124.232-48.540 124.566-48.781Q124.900-49.021 125.333-49.021Q125.888-49.021 126.288-48.622Q126.689-48.224 126.886-47.638Q127.083-47.052 127.083-46.501Q127.083-45.947 126.886-45.359Q126.689-44.771 126.288-44.372Q125.888-43.974 125.333-43.974M125.333-44.532Q125.634-44.532 125.851-44.749Q126.067-44.966 126.194-45.294Q126.321-45.622 126.382-45.968Q126.442-46.314 126.442-46.595Q126.442-46.845 126.380-47.171Q126.317-47.497 126.187-47.788Q126.056-48.079 125.843-48.269Q125.630-48.458 125.333-48.458Q124.958-48.458 124.706-48.146Q124.454-47.833 124.337-47.400Q124.220-46.966 124.220-46.595Q124.220-46.197 124.333-45.716Q124.446-45.236 124.694-44.884Q124.942-44.532 125.333-44.532M128.794-44.267L128.794-44.325Q128.794-44.868 128.899-45.415Q129.005-45.962 129.210-46.486Q129.415-47.009 129.712-47.488Q130.009-47.966 130.388-48.380L128.450-48.380L128.450-48.243Q128.399-48.029 128.200-48.005L128.060-48.005Q127.860-48.029 127.810-48.243L127.810-48.837Q127.860-49.048 128.060-49.068L128.200-49.068Q128.337-49.056 128.411-48.939L131.099-48.939Q131.294-48.915 131.345-48.708L131.345-48.618Q131.333-48.529 131.290-48.478Q131.028-48.220 130.798-47.954Q130.567-47.689 130.405-47.456Q130.243-47.224 130.085-46.925Q129.927-46.626 129.794-46.275Q129.618-45.802 129.526-45.286Q129.435-44.771 129.435-44.267Q129.423-44.142 129.337-44.064Q129.251-43.986 129.130-43.974Q128.993-43.974 128.899-44.052Q128.806-44.130 128.794-44.267\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(89.066 7.194)\">\u003Cpath d=\"M138.083-43.974Q137.649-43.974 137.317-44.212Q136.985-44.450 136.765-44.839Q136.544-45.228 136.437-45.665Q136.329-46.103 136.329-46.501Q136.329-46.892 136.439-47.335Q136.548-47.779 136.765-48.159Q136.982-48.540 137.316-48.781Q137.649-49.021 138.083-49.021Q138.638-49.021 139.038-48.622Q139.439-48.224 139.636-47.638Q139.833-47.052 139.833-46.501Q139.833-45.947 139.636-45.359Q139.439-44.771 139.038-44.372Q138.638-43.974 138.083-43.974M138.083-44.532Q138.384-44.532 138.601-44.749Q138.817-44.966 138.944-45.294Q139.071-45.622 139.132-45.968Q139.192-46.314 139.192-46.595Q139.192-46.845 139.130-47.171Q139.067-47.497 138.937-47.788Q138.806-48.079 138.593-48.269Q138.380-48.458 138.083-48.458Q137.708-48.458 137.456-48.146Q137.204-47.833 137.087-47.400Q136.970-46.966 136.970-46.595Q136.970-46.197 137.083-45.716Q137.196-45.236 137.444-44.884Q137.692-44.532 138.083-44.532M142.329-43.974Q141.896-43.974 141.564-44.212Q141.232-44.450 141.011-44.839Q140.790-45.228 140.683-45.665Q140.575-46.103 140.575-46.501Q140.575-46.892 140.685-47.335Q140.794-47.779 141.011-48.159Q141.228-48.540 141.562-48.781Q141.896-49.021 142.329-49.021Q142.884-49.021 143.284-48.622Q143.685-48.224 143.882-47.638Q144.079-47.052 144.079-46.501Q144.079-45.947 143.882-45.359Q143.685-44.771 143.284-44.372Q142.884-43.974 142.329-43.974M142.329-44.532Q142.630-44.532 142.847-44.749Q143.064-44.966 143.191-45.294Q143.317-45.622 143.378-45.968Q143.439-46.314 143.439-46.595Q143.439-46.845 143.376-47.171Q143.314-47.497 143.183-47.788Q143.052-48.079 142.839-48.269Q142.626-48.458 142.329-48.458Q141.954-48.458 141.702-48.146Q141.450-47.833 141.333-47.400Q141.216-46.966 141.216-46.595Q141.216-46.197 141.329-45.716Q141.442-45.236 141.691-44.884Q141.939-44.532 142.329-44.532\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(89.066 7.194)\">\u003Cpath d=\"M150.834-43.974Q150.400-43.974 150.068-44.212Q149.736-44.450 149.516-44.839Q149.295-45.228 149.188-45.665Q149.080-46.103 149.080-46.501Q149.080-46.892 149.190-47.335Q149.299-47.779 149.516-48.159Q149.733-48.540 150.067-48.781Q150.400-49.021 150.834-49.021Q151.389-49.021 151.789-48.622Q152.190-48.224 152.387-47.638Q152.584-47.052 152.584-46.501Q152.584-45.947 152.387-45.359Q152.190-44.771 151.789-44.372Q151.389-43.974 150.834-43.974M150.834-44.532Q151.135-44.532 151.352-44.749Q151.568-44.966 151.695-45.294Q151.822-45.622 151.883-45.968Q151.943-46.314 151.943-46.595Q151.943-46.845 151.881-47.171Q151.818-47.497 151.688-47.788Q151.557-48.079 151.344-48.269Q151.131-48.458 150.834-48.458Q150.459-48.458 150.207-48.146Q149.955-47.833 149.838-47.400Q149.721-46.966 149.721-46.595Q149.721-46.197 149.834-45.716Q149.947-45.236 150.195-44.884Q150.443-44.532 150.834-44.532M155.080-43.974Q154.647-43.974 154.315-44.212Q153.983-44.450 153.762-44.839Q153.541-45.228 153.434-45.665Q153.326-46.103 153.326-46.501Q153.326-46.892 153.436-47.335Q153.545-47.779 153.762-48.159Q153.979-48.540 154.313-48.781Q154.647-49.021 155.080-49.021Q155.635-49.021 156.035-48.622Q156.436-48.224 156.633-47.638Q156.830-47.052 156.830-46.501Q156.830-45.947 156.633-45.359Q156.436-44.771 156.035-44.372Q155.635-43.974 155.080-43.974M155.080-44.532Q155.381-44.532 155.598-44.749Q155.815-44.966 155.942-45.294Q156.068-45.622 156.129-45.968Q156.190-46.314 156.190-46.595Q156.190-46.845 156.127-47.171Q156.065-47.497 155.934-47.788Q155.803-48.079 155.590-48.269Q155.377-48.458 155.080-48.458Q154.705-48.458 154.453-48.146Q154.201-47.833 154.084-47.400Q153.967-46.966 153.967-46.595Q153.967-46.197 154.080-45.716Q154.193-45.236 154.442-44.884Q154.690-44.532 155.080-44.532\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(89.066 7.194)\">\u003Cpath d=\"M99.833-34.474Q99.400-34.474 99.067-34.712Q98.735-34.950 98.515-35.339Q98.294-35.728 98.187-36.165Q98.079-36.603 98.079-37.001Q98.079-37.392 98.189-37.835Q98.298-38.279 98.515-38.659Q98.732-39.040 99.066-39.281Q99.400-39.521 99.833-39.521Q100.388-39.521 100.788-39.122Q101.189-38.724 101.386-38.138Q101.583-37.552 101.583-37.001Q101.583-36.447 101.386-35.859Q101.189-35.271 100.788-34.872Q100.388-34.474 99.833-34.474M99.833-35.032Q100.134-35.032 100.351-35.249Q100.567-35.466 100.694-35.794Q100.821-36.122 100.882-36.468Q100.942-36.814 100.942-37.095Q100.942-37.345 100.880-37.671Q100.817-37.997 100.687-38.288Q100.556-38.579 100.343-38.769Q100.130-38.958 99.833-38.958Q99.458-38.958 99.206-38.646Q98.954-38.333 98.837-37.900Q98.720-37.466 98.720-37.095Q98.720-36.697 98.833-36.216Q98.946-35.736 99.194-35.384Q99.442-35.032 99.833-35.032M104.079-34.474Q103.646-34.474 103.314-34.712Q102.982-34.950 102.761-35.339Q102.540-35.728 102.433-36.165Q102.325-36.603 102.325-37.001Q102.325-37.392 102.435-37.835Q102.544-38.279 102.761-38.659Q102.978-39.040 103.312-39.281Q103.646-39.521 104.079-39.521Q104.634-39.521 105.034-39.122Q105.435-38.724 105.632-38.138Q105.829-37.552 105.829-37.001Q105.829-36.447 105.632-35.859Q105.435-35.271 105.034-34.872Q104.634-34.474 104.079-34.474M104.079-35.032Q104.380-35.032 104.597-35.249Q104.814-35.466 104.941-35.794Q105.067-36.122 105.128-36.468Q105.189-36.814 105.189-37.095Q105.189-37.345 105.126-37.671Q105.064-37.997 104.933-38.288Q104.802-38.579 104.589-38.769Q104.376-38.958 104.079-38.958Q103.704-38.958 103.452-38.646Q103.200-38.333 103.083-37.900Q102.966-37.466 102.966-37.095Q102.966-36.697 103.079-36.216Q103.192-35.736 103.441-35.384Q103.689-35.032 104.079-35.032\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(89.066 7.194)\">\u003Cpath d=\"M112.583-34.474Q112.150-34.474 111.817-34.712Q111.485-34.950 111.265-35.339Q111.044-35.728 110.937-36.165Q110.829-36.603 110.829-37.001Q110.829-37.392 110.939-37.835Q111.048-38.279 111.265-38.659Q111.482-39.040 111.816-39.281Q112.150-39.521 112.583-39.521Q113.138-39.521 113.538-39.122Q113.939-38.724 114.136-38.138Q114.333-37.552 114.333-37.001Q114.333-36.447 114.136-35.859Q113.939-35.271 113.538-34.872Q113.138-34.474 112.583-34.474M112.583-35.032Q112.884-35.032 113.101-35.249Q113.317-35.466 113.444-35.794Q113.571-36.122 113.632-36.468Q113.692-36.814 113.692-37.095Q113.692-37.345 113.630-37.671Q113.567-37.997 113.437-38.288Q113.306-38.579 113.093-38.769Q112.880-38.958 112.583-38.958Q112.208-38.958 111.956-38.646Q111.704-38.333 111.587-37.900Q111.470-37.466 111.470-37.095Q111.470-36.697 111.583-36.216Q111.696-35.736 111.944-35.384Q112.192-35.032 112.583-35.032M116.829-34.474Q116.396-34.474 116.064-34.712Q115.732-34.950 115.511-35.339Q115.290-35.728 115.183-36.165Q115.075-36.603 115.075-37.001Q115.075-37.392 115.185-37.835Q115.294-38.279 115.511-38.659Q115.728-39.040 116.062-39.281Q116.396-39.521 116.829-39.521Q117.384-39.521 117.784-39.122Q118.185-38.724 118.382-38.138Q118.579-37.552 118.579-37.001Q118.579-36.447 118.382-35.859Q118.185-35.271 117.784-34.872Q117.384-34.474 116.829-34.474M116.829-35.032Q117.130-35.032 117.347-35.249Q117.564-35.466 117.691-35.794Q117.817-36.122 117.878-36.468Q117.939-36.814 117.939-37.095Q117.939-37.345 117.876-37.671Q117.814-37.997 117.683-38.288Q117.552-38.579 117.339-38.769Q117.126-38.958 116.829-38.958Q116.454-38.958 116.202-38.646Q115.950-38.333 115.833-37.900Q115.716-37.466 115.716-37.095Q115.716-36.697 115.829-36.216Q115.942-35.736 116.191-35.384Q116.439-35.032 116.829-35.032\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(89.066 7.194)\">\u003Cpath d=\"M125.333-34.474Q124.900-34.474 124.567-34.712Q124.235-34.950 124.015-35.339Q123.794-35.728 123.687-36.165Q123.579-36.603 123.579-37.001Q123.579-37.392 123.689-37.835Q123.798-38.279 124.015-38.659Q124.232-39.040 124.566-39.281Q124.900-39.521 125.333-39.521Q125.888-39.521 126.288-39.122Q126.689-38.724 126.886-38.138Q127.083-37.552 127.083-37.001Q127.083-36.447 126.886-35.859Q126.689-35.271 126.288-34.872Q125.888-34.474 125.333-34.474M125.333-35.032Q125.634-35.032 125.851-35.249Q126.067-35.466 126.194-35.794Q126.321-36.122 126.382-36.468Q126.442-36.814 126.442-37.095Q126.442-37.345 126.380-37.671Q126.317-37.997 126.187-38.288Q126.056-38.579 125.843-38.769Q125.630-38.958 125.333-38.958Q124.958-38.958 124.706-38.646Q124.454-38.333 124.337-37.900Q124.220-37.466 124.220-37.095Q124.220-36.697 124.333-36.216Q124.446-35.736 124.694-35.384Q124.942-35.032 125.333-35.032M129.579-34.474Q129.146-34.474 128.814-34.712Q128.482-34.950 128.261-35.339Q128.040-35.728 127.933-36.165Q127.825-36.603 127.825-37.001Q127.825-37.392 127.935-37.835Q128.044-38.279 128.261-38.659Q128.478-39.040 128.812-39.281Q129.146-39.521 129.579-39.521Q130.134-39.521 130.534-39.122Q130.935-38.724 131.132-38.138Q131.329-37.552 131.329-37.001Q131.329-36.447 131.132-35.859Q130.935-35.271 130.534-34.872Q130.134-34.474 129.579-34.474M129.579-35.032Q129.880-35.032 130.097-35.249Q130.314-35.466 130.441-35.794Q130.567-36.122 130.628-36.468Q130.689-36.814 130.689-37.095Q130.689-37.345 130.626-37.671Q130.564-37.997 130.433-38.288Q130.302-38.579 130.089-38.769Q129.876-38.958 129.579-38.958Q129.204-38.958 128.952-38.646Q128.700-38.333 128.583-37.900Q128.466-37.466 128.466-37.095Q128.466-36.697 128.579-36.216Q128.692-35.736 128.941-35.384Q129.189-35.032 129.579-35.032\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(89.066 7.194)\">\u003Cpath d=\"M138.083-34.474Q137.649-34.474 137.317-34.712Q136.985-34.950 136.765-35.339Q136.544-35.728 136.437-36.165Q136.329-36.603 136.329-37.001Q136.329-37.392 136.439-37.835Q136.548-38.279 136.765-38.659Q136.982-39.040 137.316-39.281Q137.649-39.521 138.083-39.521Q138.638-39.521 139.038-39.122Q139.439-38.724 139.636-38.138Q139.833-37.552 139.833-37.001Q139.833-36.447 139.636-35.859Q139.439-35.271 139.038-34.872Q138.638-34.474 138.083-34.474M138.083-35.032Q138.384-35.032 138.601-35.249Q138.817-35.466 138.944-35.794Q139.071-36.122 139.132-36.468Q139.192-36.814 139.192-37.095Q139.192-37.345 139.130-37.671Q139.067-37.997 138.937-38.288Q138.806-38.579 138.593-38.769Q138.380-38.958 138.083-38.958Q137.708-38.958 137.456-38.646Q137.204-38.333 137.087-37.900Q136.970-37.466 136.970-37.095Q136.970-36.697 137.083-36.216Q137.196-35.736 137.444-35.384Q137.692-35.032 138.083-35.032M142.329-34.474Q141.896-34.474 141.564-34.712Q141.232-34.950 141.011-35.339Q140.790-35.728 140.683-36.165Q140.575-36.603 140.575-37.001Q140.575-37.392 140.685-37.835Q140.794-38.279 141.011-38.659Q141.228-39.040 141.562-39.281Q141.896-39.521 142.329-39.521Q142.884-39.521 143.284-39.122Q143.685-38.724 143.882-38.138Q144.079-37.552 144.079-37.001Q144.079-36.447 143.882-35.859Q143.685-35.271 143.284-34.872Q142.884-34.474 142.329-34.474M142.329-35.032Q142.630-35.032 142.847-35.249Q143.064-35.466 143.191-35.794Q143.317-36.122 143.378-36.468Q143.439-36.814 143.439-37.095Q143.439-37.345 143.376-37.671Q143.314-37.997 143.183-38.288Q143.052-38.579 142.839-38.769Q142.626-38.958 142.329-38.958Q141.954-38.958 141.702-38.646Q141.450-38.333 141.333-37.900Q141.216-37.466 141.216-37.095Q141.216-36.697 141.329-36.216Q141.442-35.736 141.691-35.384Q141.939-35.032 142.329-35.032\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(89.066 7.194)\">\u003Cpath d=\"M150.834-34.474Q150.400-34.474 150.068-34.712Q149.736-34.950 149.516-35.339Q149.295-35.728 149.188-36.165Q149.080-36.603 149.080-37.001Q149.080-37.392 149.190-37.835Q149.299-38.279 149.516-38.659Q149.733-39.040 150.067-39.281Q150.400-39.521 150.834-39.521Q151.389-39.521 151.789-39.122Q152.190-38.724 152.387-38.138Q152.584-37.552 152.584-37.001Q152.584-36.447 152.387-35.859Q152.190-35.271 151.789-34.872Q151.389-34.474 150.834-34.474M150.834-35.032Q151.135-35.032 151.352-35.249Q151.568-35.466 151.695-35.794Q151.822-36.122 151.883-36.468Q151.943-36.814 151.943-37.095Q151.943-37.345 151.881-37.671Q151.818-37.997 151.688-38.288Q151.557-38.579 151.344-38.769Q151.131-38.958 150.834-38.958Q150.459-38.958 150.207-38.646Q149.955-38.333 149.838-37.900Q149.721-37.466 149.721-37.095Q149.721-36.697 149.834-36.216Q149.947-35.736 150.195-35.384Q150.443-35.032 150.834-35.032M155.080-34.474Q154.647-34.474 154.315-34.712Q153.983-34.950 153.762-35.339Q153.541-35.728 153.434-36.165Q153.326-36.603 153.326-37.001Q153.326-37.392 153.436-37.835Q153.545-38.279 153.762-38.659Q153.979-39.040 154.313-39.281Q154.647-39.521 155.080-39.521Q155.635-39.521 156.035-39.122Q156.436-38.724 156.633-38.138Q156.830-37.552 156.830-37.001Q156.830-36.447 156.633-35.859Q156.436-35.271 156.035-34.872Q155.635-34.474 155.080-34.474M155.080-35.032Q155.381-35.032 155.598-35.249Q155.815-35.466 155.942-35.794Q156.068-36.122 156.129-36.468Q156.190-36.814 156.190-37.095Q156.190-37.345 156.127-37.671Q156.065-37.997 155.934-38.288Q155.803-38.579 155.590-38.769Q155.377-38.958 155.080-38.958Q154.705-38.958 154.453-38.646Q154.201-38.333 154.084-37.900Q153.967-37.466 153.967-37.095Q153.967-36.697 154.080-36.216Q154.193-35.736 154.442-35.384Q154.690-35.032 155.080-35.032\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(89.066 7.194)\">\u003Cpath d=\"M163.584-34.474Q163.150-34.474 162.818-34.712Q162.486-34.950 162.266-35.339Q162.045-35.728 161.938-36.165Q161.830-36.603 161.830-37.001Q161.830-37.392 161.940-37.835Q162.049-38.279 162.266-38.659Q162.483-39.040 162.817-39.281Q163.150-39.521 163.584-39.521Q164.139-39.521 164.539-39.122Q164.940-38.724 165.137-38.138Q165.334-37.552 165.334-37.001Q165.334-36.447 165.137-35.859Q164.940-35.271 164.539-34.872Q164.139-34.474 163.584-34.474M163.584-35.032Q163.885-35.032 164.102-35.249Q164.318-35.466 164.445-35.794Q164.572-36.122 164.633-36.468Q164.693-36.814 164.693-37.095Q164.693-37.345 164.631-37.671Q164.568-37.997 164.438-38.288Q164.307-38.579 164.094-38.769Q163.881-38.958 163.584-38.958Q163.209-38.958 162.957-38.646Q162.705-38.333 162.588-37.900Q162.471-37.466 162.471-37.095Q162.471-36.697 162.584-36.216Q162.697-35.736 162.945-35.384Q163.193-35.032 163.584-35.032M167.830-34.474Q167.397-34.474 167.065-34.712Q166.733-34.950 166.512-35.339Q166.291-35.728 166.184-36.165Q166.076-36.603 166.076-37.001Q166.076-37.392 166.186-37.835Q166.295-38.279 166.512-38.659Q166.729-39.040 167.063-39.281Q167.397-39.521 167.830-39.521Q168.385-39.521 168.785-39.122Q169.186-38.724 169.383-38.138Q169.580-37.552 169.580-37.001Q169.580-36.447 169.383-35.859Q169.186-35.271 168.785-34.872Q168.385-34.474 167.830-34.474M167.830-35.032Q168.131-35.032 168.348-35.249Q168.565-35.466 168.692-35.794Q168.818-36.122 168.879-36.468Q168.940-36.814 168.940-37.095Q168.940-37.345 168.877-37.671Q168.815-37.997 168.684-38.288Q168.553-38.579 168.340-38.769Q168.127-38.958 167.830-38.958Q167.455-38.958 167.203-38.646Q166.951-38.333 166.834-37.900Q166.717-37.466 166.717-37.095Q166.717-36.697 166.830-36.216Q166.943-35.736 167.192-35.384Q167.440-35.032 167.830-35.032\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M25.357-34.552h23.208\"\u002F>\u003Cpath stroke=\"none\" d=\"m50.565-34.552-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(-73.056 -4.894)\">\u003Cpath d=\"M98.026-36.063Q98.026-36.391 98.161-36.692Q98.296-36.992 98.532-37.213Q98.768-37.433 99.072-37.553Q99.377-37.673 99.701-37.673Q100.207-37.673 100.556-37.570Q100.904-37.468 100.904-37.092Q100.904-36.945 100.807-36.844Q100.710-36.743 100.563-36.743Q100.409-36.743 100.310-36.842Q100.211-36.941 100.211-37.092Q100.211-37.280 100.351-37.372Q100.149-37.423 99.708-37.423Q99.353-37.423 99.124-37.227Q98.895-37.030 98.794-36.721Q98.693-36.411 98.693-36.063Q98.693-35.714 98.819-35.408Q98.946-35.102 99.201-34.918Q99.455-34.733 99.811-34.733Q100.033-34.733 100.217-34.817Q100.402-34.901 100.537-35.056Q100.672-35.212 100.730-35.420Q100.744-35.475 100.798-35.475L100.911-35.475Q100.942-35.475 100.964-35.451Q100.986-35.427 100.986-35.393L100.986-35.372Q100.901-35.085 100.713-34.887Q100.525-34.689 100.260-34.586Q99.995-34.484 99.701-34.484Q99.271-34.484 98.883-34.690Q98.495-34.897 98.261-35.260Q98.026-35.622 98.026-36.063M101.533-36.035Q101.533-36.377 101.668-36.676Q101.803-36.975 102.043-37.199Q102.282-37.423 102.600-37.548Q102.918-37.673 103.249-37.673Q103.693-37.673 104.093-37.457Q104.493-37.242 104.727-36.864Q104.962-36.487 104.962-36.035Q104.962-35.694 104.820-35.410Q104.678-35.126 104.433-34.919Q104.189-34.713 103.880-34.598Q103.570-34.484 103.249-34.484Q102.818-34.484 102.417-34.685Q102.015-34.887 101.774-35.239Q101.533-35.591 101.533-36.035M103.249-34.733Q103.851-34.733 104.075-35.111Q104.298-35.489 104.298-36.121Q104.298-36.733 104.064-37.092Q103.830-37.450 103.249-37.450Q102.196-37.450 102.196-36.121Q102.196-35.489 102.422-35.111Q102.648-34.733 103.249-34.733M107.238-34.552L105.604-34.552L105.604-34.832Q105.833-34.832 105.982-34.866Q106.130-34.901 106.130-35.041L106.130-36.890Q106.130-37.160 106.023-37.221Q105.915-37.283 105.604-37.283L105.604-37.563L106.664-37.638L106.664-36.989Q106.835-37.297 107.139-37.468Q107.443-37.638 107.788-37.638Q108.188-37.638 108.465-37.498Q108.742-37.358 108.827-37.010Q108.995-37.303 109.294-37.471Q109.593-37.638 109.938-37.638Q110.444-37.638 110.728-37.415Q111.011-37.191 111.011-36.695L111.011-35.041Q111.011-34.904 111.160-34.868Q111.309-34.832 111.534-34.832L111.534-34.552L109.904-34.552L109.904-34.832Q110.129-34.832 110.280-34.868Q110.430-34.904 110.430-35.041L110.430-36.681Q110.430-37.016 110.311-37.216Q110.191-37.416 109.877-37.416Q109.607-37.416 109.372-37.280Q109.138-37.143 109-36.909Q108.861-36.675 108.861-36.401L108.861-35.041Q108.861-34.904 109.010-34.868Q109.159-34.832 109.384-34.832L109.384-34.552L107.754-34.552L107.754-34.832Q107.983-34.832 108.132-34.866Q108.280-34.901 108.280-35.041L108.280-36.681Q108.280-37.016 108.161-37.216Q108.041-37.416 107.727-37.416Q107.457-37.416 107.222-37.280Q106.988-37.143 106.850-36.909Q106.712-36.675 106.712-36.401L106.712-35.041Q106.712-34.904 106.862-34.868Q107.012-34.832 107.238-34.832L107.238-34.552M113.766-33.195L112.136-33.195L112.136-33.475Q112.365-33.475 112.514-33.510Q112.662-33.544 112.662-33.684L112.662-37.030Q112.662-37.201 112.525-37.242Q112.389-37.283 112.136-37.283L112.136-37.563L113.216-37.638L113.216-37.232Q113.438-37.433 113.725-37.536Q114.012-37.638 114.320-37.638Q114.747-37.638 115.111-37.425Q115.475-37.211 115.689-36.847Q115.902-36.483 115.902-36.063Q115.902-35.618 115.663-35.254Q115.424-34.890 115.031-34.687Q114.638-34.484 114.193-34.484Q113.927-34.484 113.679-34.584Q113.431-34.685 113.243-34.866L113.243-33.684Q113.243-33.547 113.392-33.511Q113.541-33.475 113.766-33.475L113.766-33.195M113.243-36.883L113.243-35.273Q113.377-35.020 113.619-34.863Q113.862-34.706 114.139-34.706Q114.467-34.706 114.720-34.907Q114.973-35.109 115.106-35.427Q115.239-35.745 115.239-36.063Q115.239-36.292 115.174-36.521Q115.109-36.750 114.981-36.948Q114.853-37.146 114.658-37.266Q114.463-37.385 114.231-37.385Q113.937-37.385 113.669-37.256Q113.400-37.126 113.243-36.883M118.155-34.552L116.603-34.552L116.603-34.832Q116.829-34.832 116.977-34.866Q117.126-34.901 117.126-35.041L117.126-36.890Q117.126-37.078 117.078-37.162Q117.030-37.245 116.933-37.264Q116.836-37.283 116.624-37.283L116.624-37.563L117.680-37.638L117.680-35.041Q117.680-34.901 117.811-34.866Q117.943-34.832 118.155-34.832L118.155-34.552M116.883-38.859Q116.883-39.030 117.006-39.149Q117.129-39.269 117.300-39.269Q117.468-39.269 117.591-39.149Q117.714-39.030 117.714-38.859Q117.714-38.684 117.591-38.561Q117.468-38.438 117.300-38.438Q117.129-38.438 117.006-38.561Q116.883-38.684 116.883-38.859M120.469-34.552L118.866-34.552L118.866-34.832Q119.091-34.832 119.240-34.866Q119.389-34.901 119.389-35.041L119.389-38.660Q119.389-38.930 119.281-38.992Q119.173-39.053 118.866-39.053L118.866-39.334L119.942-39.409L119.942-35.041Q119.942-34.904 120.093-34.868Q120.243-34.832 120.469-34.832L120.469-34.552M121.023-36.087Q121.023-36.408 121.147-36.697Q121.272-36.986 121.498-37.209Q121.723-37.433 122.019-37.553Q122.315-37.673 122.632-37.673Q122.961-37.673 123.222-37.573Q123.483-37.474 123.660-37.292Q123.836-37.109 123.930-36.851Q124.024-36.593 124.024-36.261Q124.024-36.169 123.941-36.148L121.686-36.148L121.686-36.087Q121.686-35.499 121.969-35.116Q122.253-34.733 122.820-34.733Q123.142-34.733 123.410-34.926Q123.678-35.119 123.767-35.434Q123.774-35.475 123.849-35.489L123.941-35.489Q124.024-35.465 124.024-35.393Q124.024-35.386 124.017-35.359Q123.904-34.962 123.533-34.723Q123.162-34.484 122.738-34.484Q122.301-34.484 121.901-34.692Q121.501-34.901 121.262-35.268Q121.023-35.635 121.023-36.087M121.692-36.357L123.507-36.357Q123.507-36.634 123.410-36.886Q123.313-37.139 123.114-37.295Q122.916-37.450 122.632-37.450Q122.356-37.450 122.142-37.292Q121.928-37.133 121.810-36.878Q121.692-36.623 121.692-36.357\" 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=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M144.859-34.552h28.898\"\u002F>\u003Cpath stroke=\"none\" d=\"m175.757-34.552-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(47.362 -3.533)\">\u003Cpath d=\"M98.085-35.280Q98.085-35.612 98.308-35.839Q98.532-36.066 98.876-36.194Q99.219-36.323 99.592-36.375Q99.964-36.428 100.269-36.428L100.269-36.681Q100.269-36.886 100.161-37.066Q100.053-37.245 99.872-37.348Q99.691-37.450 99.483-37.450Q99.076-37.450 98.840-37.358Q98.929-37.321 98.975-37.237Q99.021-37.153 99.021-37.051Q99.021-36.955 98.975-36.876Q98.929-36.798 98.848-36.753Q98.768-36.709 98.679-36.709Q98.529-36.709 98.428-36.806Q98.327-36.904 98.327-37.051Q98.327-37.673 99.483-37.673Q99.694-37.673 99.944-37.609Q100.193-37.546 100.395-37.427Q100.597-37.307 100.723-37.122Q100.850-36.938 100.850-36.695L100.850-35.119Q100.850-35.003 100.911-34.907Q100.973-34.812 101.086-34.812Q101.195-34.812 101.260-34.906Q101.325-35 101.325-35.119L101.325-35.567L101.591-35.567L101.591-35.119Q101.591-34.849 101.364-34.684Q101.137-34.518 100.857-34.518Q100.648-34.518 100.511-34.672Q100.375-34.825 100.351-35.041Q100.204-34.774 99.922-34.629Q99.640-34.484 99.315-34.484Q99.038-34.484 98.754-34.559Q98.471-34.634 98.278-34.813Q98.085-34.993 98.085-35.280M98.700-35.280Q98.700-35.106 98.801-34.976Q98.901-34.846 99.057-34.776Q99.212-34.706 99.377-34.706Q99.595-34.706 99.804-34.803Q100.012-34.901 100.140-35.082Q100.269-35.263 100.269-35.489L100.269-36.217Q99.944-36.217 99.578-36.126Q99.212-36.035 98.956-35.823Q98.700-35.612 98.700-35.280M102.008-34.559L102.008-35.622Q102.008-35.646 102.036-35.673Q102.063-35.700 102.087-35.700L102.196-35.700Q102.261-35.700 102.275-35.642Q102.371-35.208 102.617-34.957Q102.863-34.706 103.276-34.706Q103.618-34.706 103.871-34.839Q104.124-34.972 104.124-35.280Q104.124-35.437 104.030-35.552Q103.936-35.666 103.798-35.735Q103.659-35.803 103.492-35.841L102.911-35.940Q102.555-36.008 102.282-36.229Q102.008-36.449 102.008-36.791Q102.008-37.040 102.119-37.215Q102.231-37.389 102.417-37.488Q102.603-37.587 102.818-37.630Q103.034-37.673 103.276-37.673Q103.690-37.673 103.970-37.491L104.186-37.666Q104.196-37.669 104.203-37.671Q104.210-37.673 104.220-37.673L104.271-37.673Q104.298-37.673 104.322-37.649Q104.346-37.625 104.346-37.597L104.346-36.750Q104.346-36.729 104.322-36.702Q104.298-36.675 104.271-36.675L104.158-36.675Q104.131-36.675 104.105-36.700Q104.080-36.726 104.080-36.750Q104.080-36.986 103.974-37.150Q103.868-37.314 103.685-37.396Q103.502-37.478 103.270-37.478Q102.941-37.478 102.685-37.375Q102.429-37.273 102.429-36.996Q102.429-36.801 102.612-36.692Q102.795-36.582 103.024-36.541L103.598-36.435Q103.844-36.387 104.057-36.259Q104.271-36.131 104.408-35.928Q104.545-35.724 104.545-35.475Q104.545-34.962 104.179-34.723Q103.813-34.484 103.276-34.484Q102.781-34.484 102.449-34.778L102.183-34.504Q102.162-34.484 102.135-34.484L102.087-34.484Q102.063-34.484 102.036-34.511Q102.008-34.538 102.008-34.559M105.173-34.559L105.173-35.622Q105.173-35.646 105.201-35.673Q105.228-35.700 105.252-35.700L105.361-35.700Q105.426-35.700 105.440-35.642Q105.536-35.208 105.782-34.957Q106.028-34.706 106.441-34.706Q106.783-34.706 107.036-34.839Q107.289-34.972 107.289-35.280Q107.289-35.437 107.195-35.552Q107.101-35.666 106.963-35.735Q106.824-35.803 106.657-35.841L106.076-35.940Q105.720-36.008 105.447-36.229Q105.173-36.449 105.173-36.791Q105.173-37.040 105.285-37.215Q105.396-37.389 105.582-37.488Q105.768-37.587 105.983-37.630Q106.199-37.673 106.441-37.673Q106.855-37.673 107.135-37.491L107.351-37.666Q107.361-37.669 107.368-37.671Q107.375-37.673 107.385-37.673L107.436-37.673Q107.463-37.673 107.487-37.649Q107.511-37.625 107.511-37.597L107.511-36.750Q107.511-36.729 107.487-36.702Q107.463-36.675 107.436-36.675L107.323-36.675Q107.296-36.675 107.270-36.700Q107.245-36.726 107.245-36.750Q107.245-36.986 107.139-37.150Q107.033-37.314 106.850-37.396Q106.667-37.478 106.435-37.478Q106.107-37.478 105.850-37.375Q105.594-37.273 105.594-36.996Q105.594-36.801 105.777-36.692Q105.960-36.582 106.189-36.541L106.763-36.435Q107.009-36.387 107.222-36.259Q107.436-36.131 107.573-35.928Q107.710-35.724 107.710-35.475Q107.710-34.962 107.344-34.723Q106.978-34.484 106.441-34.484Q105.946-34.484 105.614-34.778L105.348-34.504Q105.327-34.484 105.300-34.484L105.252-34.484Q105.228-34.484 105.201-34.511Q105.173-34.538 105.173-34.559M108.297-36.087Q108.297-36.408 108.422-36.697Q108.547-36.986 108.773-37.209Q108.998-37.433 109.294-37.553Q109.589-37.673 109.907-37.673Q110.235-37.673 110.497-37.573Q110.758-37.474 110.934-37.292Q111.110-37.109 111.204-36.851Q111.298-36.593 111.298-36.261Q111.298-36.169 111.216-36.148L108.961-36.148L108.961-36.087Q108.961-35.499 109.244-35.116Q109.528-34.733 110.095-34.733Q110.417-34.733 110.685-34.926Q110.953-35.119 111.042-35.434Q111.049-35.475 111.124-35.489L111.216-35.489Q111.298-35.465 111.298-35.393Q111.298-35.386 111.292-35.359Q111.179-34.962 110.808-34.723Q110.437-34.484 110.013-34.484Q109.576-34.484 109.176-34.692Q108.776-34.901 108.537-35.268Q108.297-35.635 108.297-36.087M108.967-36.357L110.782-36.357Q110.782-36.634 110.685-36.886Q110.587-37.139 110.389-37.295Q110.191-37.450 109.907-37.450Q109.630-37.450 109.417-37.292Q109.203-37.133 109.085-36.878Q108.967-36.623 108.967-36.357M113.568-34.552L111.934-34.552L111.934-34.832Q112.163-34.832 112.312-34.866Q112.461-34.901 112.461-35.041L112.461-36.890Q112.461-37.160 112.353-37.221Q112.245-37.283 111.934-37.283L111.934-37.563L112.994-37.638L112.994-36.989Q113.165-37.297 113.469-37.468Q113.773-37.638 114.118-37.638Q114.518-37.638 114.795-37.498Q115.072-37.358 115.157-37.010Q115.325-37.303 115.624-37.471Q115.923-37.638 116.268-37.638Q116.774-37.638 117.058-37.415Q117.341-37.191 117.341-36.695L117.341-35.041Q117.341-34.904 117.490-34.868Q117.639-34.832 117.864-34.832L117.864-34.552L116.234-34.552L116.234-34.832Q116.460-34.832 116.610-34.868Q116.760-34.904 116.760-35.041L116.760-36.681Q116.760-37.016 116.641-37.216Q116.521-37.416 116.207-37.416Q115.937-37.416 115.702-37.280Q115.468-37.143 115.330-36.909Q115.191-36.675 115.191-36.401L115.191-35.041Q115.191-34.904 115.340-34.868Q115.489-34.832 115.714-34.832L115.714-34.552L114.084-34.552L114.084-34.832Q114.313-34.832 114.462-34.866Q114.610-34.901 114.610-35.041L114.610-36.681Q114.610-37.016 114.491-37.216Q114.371-37.416 114.057-37.416Q113.787-37.416 113.553-37.280Q113.318-37.143 113.180-36.909Q113.042-36.675 113.042-36.401L113.042-35.041Q113.042-34.904 113.192-34.868Q113.342-34.832 113.568-34.832\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(47.362 -3.533)\">\u003Cpath d=\"M119.065-34.552L118.798-34.552L118.798-38.660Q118.798-38.930 118.691-38.992Q118.583-39.053 118.272-39.053L118.272-39.334L119.352-39.409L119.352-37.239Q119.561-37.430 119.846-37.534Q120.132-37.638 120.429-37.638Q120.747-37.638 121.044-37.517Q121.341-37.396 121.564-37.180Q121.786-36.965 121.912-36.680Q122.039-36.394 122.039-36.063Q122.039-35.618 121.799-35.254Q121.560-34.890 121.167-34.687Q120.774-34.484 120.330-34.484Q120.135-34.484 119.945-34.540Q119.756-34.596 119.595-34.701Q119.434-34.805 119.294-34.966L119.065-34.552M119.380-36.897L119.380-35.280Q119.516-35.020 119.757-34.863Q119.998-34.706 120.275-34.706Q120.569-34.706 120.781-34.813Q120.993-34.921 121.126-35.113Q121.259-35.304 121.318-35.543Q121.376-35.782 121.376-36.063Q121.376-36.422 121.282-36.726Q121.188-37.030 120.960-37.223Q120.733-37.416 120.367-37.416Q120.067-37.416 119.800-37.280Q119.533-37.143 119.380-36.897M124.342-34.552L122.739-34.552L122.739-34.832Q122.965-34.832 123.114-34.866Q123.262-34.901 123.262-35.041L123.262-38.660Q123.262-38.930 123.155-38.992Q123.047-39.053 122.739-39.053L122.739-39.334L123.816-39.409L123.816-35.041Q123.816-34.904 123.966-34.868Q124.117-34.832 124.342-34.832L124.342-34.552M124.896-36.087Q124.896-36.408 125.021-36.697Q125.146-36.986 125.371-37.209Q125.597-37.433 125.892-37.553Q126.188-37.673 126.506-37.673Q126.834-37.673 127.096-37.573Q127.357-37.474 127.533-37.292Q127.709-37.109 127.803-36.851Q127.897-36.593 127.897-36.261Q127.897-36.169 127.815-36.148L125.559-36.148L125.559-36.087Q125.559-35.499 125.843-35.116Q126.127-34.733 126.694-34.733Q127.015-34.733 127.284-34.926Q127.552-35.119 127.641-35.434Q127.648-35.475 127.723-35.489L127.815-35.489Q127.897-35.465 127.897-35.393Q127.897-35.386 127.890-35.359Q127.777-34.962 127.407-34.723Q127.036-34.484 126.612-34.484Q126.174-34.484 125.775-34.692Q125.375-34.901 125.135-35.268Q124.896-35.635 124.896-36.087M125.566-36.357L127.381-36.357Q127.381-36.634 127.284-36.886Q127.186-37.139 126.988-37.295Q126.790-37.450 126.506-37.450Q126.229-37.450 126.016-37.292Q125.802-37.133 125.684-36.878Q125.566-36.623 125.566-36.357\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The same load shown three ways. The C subscript a[i] is one assembly instruction mrmovq (%rdi),%rax, which the assembler encodes as the ten machine-code bytes the datapath fetches. Reading left to right is compiling; the machine only ever sees the right column.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:544.096px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 408.072 165.819\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-68.737-5.06h56.906v-28.453h-56.906Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-18.652 6.528)\">\u003Cpath d=\"M-36.341-28.709Q-36.822-28.709-37.230-28.953Q-37.638-29.197-37.876-29.611Q-38.115-30.025-38.115-30.514Q-38.115-31.006-37.857-31.422Q-37.599-31.838-37.167-32.076Q-36.736-32.314-36.244-32.314Q-35.623-32.314-35.173-31.877L-35.173-33.506Q-35.173-33.721-35.236-33.816Q-35.298-33.912-35.416-33.933Q-35.533-33.955-35.779-33.955L-35.779-34.252L-34.556-34.338L-34.556-29.529Q-34.556-29.318-34.494-29.223Q-34.431-29.127-34.314-29.105Q-34.197-29.084-33.947-29.084L-33.947-28.787L-35.197-28.709L-35.197-29.193Q-35.662-28.709-36.341-28.709M-36.275-28.963Q-35.935-28.963-35.642-29.154Q-35.349-29.346-35.197-29.642L-35.197-31.474Q-35.345-31.748-35.607-31.904Q-35.869-32.060-36.181-32.060Q-36.806-32.060-37.089-31.613Q-37.373-31.166-37.373-30.506Q-37.373-29.861-37.121-29.412Q-36.869-28.963-36.275-28.963M-33.341-29.619Q-33.341-30.103-32.939-30.398Q-32.537-30.693-31.986-30.812Q-31.435-30.932-30.943-30.932L-30.943-31.221Q-30.943-31.447-31.058-31.654Q-31.173-31.861-31.371-31.980Q-31.568-32.099-31.798-32.099Q-32.224-32.099-32.509-31.994Q-32.439-31.967-32.392-31.912Q-32.345-31.857-32.320-31.787Q-32.294-31.717-32.294-31.642Q-32.294-31.537-32.345-31.445Q-32.396-31.353-32.488-31.303Q-32.580-31.252-32.685-31.252Q-32.791-31.252-32.882-31.303Q-32.974-31.353-33.025-31.445Q-33.076-31.537-33.076-31.642Q-33.076-32.060-32.687-32.207Q-32.298-32.353-31.798-32.353Q-31.466-32.353-31.113-32.223Q-30.759-32.092-30.531-31.838Q-30.302-31.584-30.302-31.236L-30.302-29.435Q-30.302-29.303-30.230-29.193Q-30.158-29.084-30.029-29.084Q-29.904-29.084-29.835-29.189Q-29.767-29.295-29.767-29.435L-29.767-29.947L-29.486-29.947L-29.486-29.435Q-29.486-29.232-29.603-29.074Q-29.720-28.916-29.902-28.832Q-30.084-28.748-30.287-28.748Q-30.517-28.748-30.669-28.920Q-30.822-29.092-30.853-29.322Q-31.013-29.041-31.322-28.875Q-31.630-28.709-31.982-28.709Q-32.494-28.709-32.917-28.932Q-33.341-29.154-33.341-29.619M-32.654-29.619Q-32.654-29.334-32.427-29.148Q-32.201-28.963-31.908-28.963Q-31.662-28.963-31.437-29.080Q-31.212-29.197-31.078-29.400Q-30.943-29.603-30.943-29.857L-30.943-30.689Q-31.209-30.689-31.494-30.635Q-31.779-30.580-32.050-30.451Q-32.322-30.322-32.488-30.115Q-32.654-29.908-32.654-29.619M-28.568-29.748L-28.568-31.939L-29.271-31.939L-29.271-32.193Q-28.916-32.193-28.673-32.426Q-28.431-32.658-28.320-33.006Q-28.209-33.353-28.209-33.709L-27.927-33.709L-27.927-32.236L-26.751-32.236L-26.751-31.939L-27.927-31.939L-27.927-29.764Q-27.927-29.443-27.808-29.215Q-27.689-28.986-27.408-28.986Q-27.228-28.986-27.111-29.109Q-26.994-29.232-26.941-29.412Q-26.888-29.592-26.888-29.764L-26.888-30.236L-26.607-30.236L-26.607-29.748Q-26.607-29.494-26.712-29.254Q-26.818-29.014-27.015-28.861Q-27.212-28.709-27.470-28.709Q-27.787-28.709-28.039-28.832Q-28.291-28.955-28.429-29.189Q-28.568-29.424-28.568-29.748M-25.791-29.619Q-25.791-30.103-25.388-30.398Q-24.986-30.693-24.435-30.812Q-23.884-30.932-23.392-30.932L-23.392-31.221Q-23.392-31.447-23.507-31.654Q-23.623-31.861-23.820-31.980Q-24.017-32.099-24.248-32.099Q-24.673-32.099-24.959-31.994Q-24.888-31.967-24.841-31.912Q-24.794-31.857-24.769-31.787Q-24.744-31.717-24.744-31.642Q-24.744-31.537-24.794-31.445Q-24.845-31.353-24.937-31.303Q-25.029-31.252-25.134-31.252Q-25.240-31.252-25.332-31.303Q-25.423-31.353-25.474-31.445Q-25.525-31.537-25.525-31.642Q-25.525-32.060-25.136-32.207Q-24.748-32.353-24.248-32.353Q-23.916-32.353-23.562-32.223Q-23.209-32.092-22.980-31.838Q-22.751-31.584-22.751-31.236L-22.751-29.435Q-22.751-29.303-22.679-29.193Q-22.607-29.084-22.478-29.084Q-22.353-29.084-22.285-29.189Q-22.216-29.295-22.216-29.435L-22.216-29.947L-21.935-29.947L-21.935-29.435Q-21.935-29.232-22.052-29.074Q-22.169-28.916-22.351-28.832Q-22.533-28.748-22.736-28.748Q-22.966-28.748-23.119-28.920Q-23.271-29.092-23.302-29.322Q-23.462-29.041-23.771-28.875Q-24.080-28.709-24.431-28.709Q-24.943-28.709-25.367-28.932Q-25.791-29.154-25.791-29.619M-25.103-29.619Q-25.103-29.334-24.876-29.148Q-24.650-28.963-24.357-28.963Q-24.111-28.963-23.886-29.080Q-23.662-29.197-23.527-29.400Q-23.392-29.603-23.392-29.857L-23.392-30.689Q-23.658-30.689-23.943-30.635Q-24.228-30.580-24.500-30.451Q-24.771-30.322-24.937-30.115Q-25.103-29.908-25.103-29.619M-19.759-27.236L-21.615-27.236L-21.615-27.529Q-21.345-27.529-21.177-27.574Q-21.009-27.619-21.009-27.795L-21.009-31.619Q-21.009-31.826-21.166-31.879Q-21.322-31.932-21.615-31.932L-21.615-32.228L-20.392-32.314L-20.392-31.849Q-20.162-32.072-19.847-32.193Q-19.533-32.314-19.193-32.314Q-18.720-32.314-18.316-32.068Q-17.912-31.822-17.679-31.406Q-17.447-30.990-17.447-30.514Q-17.447-30.139-17.595-29.810Q-17.744-29.482-18.013-29.230Q-18.283-28.978-18.626-28.844Q-18.970-28.709-19.330-28.709Q-19.619-28.709-19.890-28.830Q-20.162-28.951-20.369-29.162L-20.369-27.795Q-20.369-27.619-20.201-27.574Q-20.033-27.529-19.759-27.529L-19.759-27.236M-20.369-31.451L-20.369-29.611Q-20.216-29.322-19.955-29.142Q-19.693-28.963-19.384-28.963Q-19.099-28.963-18.876-29.101Q-18.654-29.240-18.501-29.471Q-18.349-29.701-18.271-29.973Q-18.193-30.244-18.193-30.514Q-18.193-30.846-18.318-31.203Q-18.443-31.560-18.691-31.797Q-18.939-32.033-19.287-32.033Q-19.611-32.033-19.906-31.877Q-20.201-31.721-20.369-31.451M-16.826-29.619Q-16.826-30.103-16.423-30.398Q-16.021-30.693-15.470-30.812Q-14.919-30.932-14.427-30.932L-14.427-31.221Q-14.427-31.447-14.542-31.654Q-14.658-31.861-14.855-31.980Q-15.052-32.099-15.283-32.099Q-15.709-32.099-15.994-31.994Q-15.923-31.967-15.876-31.912Q-15.830-31.857-15.804-31.787Q-15.779-31.717-15.779-31.642Q-15.779-31.537-15.830-31.445Q-15.880-31.353-15.972-31.303Q-16.064-31.252-16.169-31.252Q-16.275-31.252-16.367-31.303Q-16.459-31.353-16.509-31.445Q-16.560-31.537-16.560-31.642Q-16.560-32.060-16.171-32.207Q-15.783-32.353-15.283-32.353Q-14.951-32.353-14.597-32.223Q-14.244-32.092-14.015-31.838Q-13.787-31.584-13.787-31.236L-13.787-29.435Q-13.787-29.303-13.714-29.193Q-13.642-29.084-13.513-29.084Q-13.388-29.084-13.320-29.189Q-13.251-29.295-13.251-29.435L-13.251-29.947L-12.970-29.947L-12.970-29.435Q-12.970-29.232-13.087-29.074Q-13.205-28.916-13.386-28.832Q-13.568-28.748-13.771-28.748Q-14.001-28.748-14.154-28.920Q-14.306-29.092-14.337-29.322Q-14.498-29.041-14.806-28.875Q-15.115-28.709-15.466-28.709Q-15.978-28.709-16.402-28.932Q-16.826-29.154-16.826-29.619M-16.138-29.619Q-16.138-29.334-15.912-29.148Q-15.685-28.963-15.392-28.963Q-15.146-28.963-14.921-29.080Q-14.697-29.197-14.562-29.400Q-14.427-29.603-14.427-29.857L-14.427-30.689Q-14.693-30.689-14.978-30.635Q-15.263-30.580-15.535-30.451Q-15.806-30.322-15.972-30.115Q-16.138-29.908-16.138-29.619M-12.052-29.748L-12.052-31.939L-12.755-31.939L-12.755-32.193Q-12.400-32.193-12.158-32.426Q-11.916-32.658-11.804-33.006Q-11.693-33.353-11.693-33.709L-11.412-33.709L-11.412-32.236L-10.236-32.236L-10.236-31.939L-11.412-31.939L-11.412-29.764Q-11.412-29.443-11.292-29.215Q-11.173-28.986-10.892-28.986Q-10.712-28.986-10.595-29.109Q-10.478-29.232-10.425-29.412Q-10.373-29.592-10.373-29.764L-10.373-30.236L-10.091-30.236L-10.091-29.748Q-10.091-29.494-10.197-29.254Q-10.302-29.014-10.500-28.861Q-10.697-28.709-10.955-28.709Q-11.271-28.709-11.523-28.832Q-11.775-28.955-11.914-29.189Q-12.052-29.424-12.052-29.748M-7.443-28.787L-9.298-28.787L-9.298-29.084Q-9.025-29.084-8.857-29.131Q-8.689-29.178-8.689-29.346L-8.689-33.506Q-8.689-33.721-8.751-33.816Q-8.814-33.912-8.933-33.933Q-9.052-33.955-9.298-33.955L-9.298-34.252L-8.076-34.338L-8.076-31.635Q-7.951-31.846-7.763-31.996Q-7.576-32.146-7.349-32.230Q-7.123-32.314-6.876-32.314Q-5.709-32.314-5.709-31.236L-5.709-29.346Q-5.709-29.178-5.539-29.131Q-5.369-29.084-5.099-29.084L-5.099-28.787L-6.955-28.787L-6.955-29.084Q-6.681-29.084-6.513-29.131Q-6.345-29.178-6.345-29.346L-6.345-31.221Q-6.345-31.603-6.466-31.832Q-6.587-32.060-6.939-32.060Q-7.251-32.060-7.505-31.898Q-7.759-31.736-7.906-31.467Q-8.052-31.197-8.052-30.900L-8.052-29.346Q-8.052-29.178-7.882-29.131Q-7.712-29.084-7.443-29.084\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-18.652 6.528)\">\u003Cpath d=\"M-37.667-17.295Q-38.280-17.752-38.682-18.387Q-39.085-19.021-39.280-19.767Q-39.475-20.514-39.475-21.287Q-39.475-22.060-39.280-22.807Q-39.085-23.553-38.682-24.187Q-38.280-24.822-37.667-25.279Q-37.655-25.283-37.647-25.285Q-37.639-25.287-37.628-25.287L-37.550-25.287Q-37.511-25.287-37.485-25.260Q-37.460-25.232-37.460-25.189Q-37.460-25.139-37.491-25.119Q-37.999-24.666-38.321-24.043Q-38.643-23.420-38.784-22.724Q-38.925-22.029-38.925-21.287Q-38.925-20.553-38.786-19.853Q-38.647-19.154-38.323-18.529Q-37.999-17.904-37.491-17.455Q-37.460-17.435-37.460-17.385Q-37.460-17.342-37.485-17.314Q-37.511-17.287-37.550-17.287L-37.628-17.287Q-37.636-17.291-37.645-17.293Q-37.655-17.295-37.667-17.295M-34.682-19.287L-36.604-19.287L-36.604-19.584Q-35.796-19.584-35.796-20.064L-35.796-24.189Q-35.796-24.361-36.038-24.408Q-36.280-24.455-36.604-24.455L-36.604-24.752L-35.108-24.752Q-34.999-24.752-34.940-24.639L-33.093-20.096L-31.253-24.639Q-31.190-24.752-31.085-24.752L-29.581-24.752L-29.581-24.455Q-29.901-24.455-30.143-24.408Q-30.386-24.361-30.386-24.189L-30.386-19.846Q-30.386-19.678-30.143-19.631Q-29.901-19.584-29.581-19.584L-29.581-19.287L-31.882-19.287L-31.882-19.584Q-31.077-19.584-31.077-19.846L-31.077-24.439L-33.124-19.400Q-33.159-19.287-33.292-19.287Q-33.432-19.287-33.468-19.400L-35.491-24.377L-35.491-20.064Q-35.491-19.584-34.682-19.584L-34.682-19.287M-28.964-21.041Q-28.964-21.521-28.731-21.937Q-28.499-22.353-28.089-22.603Q-27.679-22.853-27.202-22.853Q-26.471-22.853-26.073-22.412Q-25.675-21.971-25.675-21.240Q-25.675-21.135-25.768-21.111L-28.218-21.111L-28.218-21.041Q-28.218-20.631-28.096-20.275Q-27.975-19.920-27.704-19.703Q-27.432-19.486-27.003-19.486Q-26.639-19.486-26.343-19.715Q-26.046-19.943-25.944-20.295Q-25.936-20.342-25.850-20.357L-25.768-20.357Q-25.675-20.330-25.675-20.248Q-25.675-20.240-25.682-20.209Q-25.745-19.982-25.884-19.799Q-26.022-19.615-26.214-19.482Q-26.405-19.349-26.624-19.279Q-26.843-19.209-27.081-19.209Q-27.452-19.209-27.790-19.346Q-28.128-19.482-28.395-19.734Q-28.663-19.986-28.813-20.326Q-28.964-20.666-28.964-21.041M-28.210-21.349L-26.249-21.349Q-26.249-21.654-26.350-21.945Q-26.452-22.236-26.669-22.418Q-26.886-22.599-27.202-22.599Q-27.503-22.599-27.733-22.412Q-27.964-22.224-28.087-21.933Q-28.210-21.642-28.210-21.349M-23.257-19.287L-25.112-19.287L-25.112-19.584Q-24.839-19.584-24.671-19.631Q-24.503-19.678-24.503-19.846L-24.503-21.982Q-24.503-22.197-24.565-22.293Q-24.628-22.389-24.747-22.410Q-24.866-22.432-25.112-22.432L-25.112-22.728L-23.921-22.814L-23.921-22.080Q-23.807-22.295-23.614-22.463Q-23.421-22.631-23.182-22.723Q-22.944-22.814-22.690-22.814Q-21.729-22.814-21.554-22.103Q-21.370-22.432-21.042-22.623Q-20.714-22.814-20.335-22.814Q-19.159-22.814-19.159-21.736L-19.159-19.846Q-19.159-19.678-18.991-19.631Q-18.823-19.584-18.554-19.584L-18.554-19.287L-20.409-19.287L-20.409-19.584Q-20.136-19.584-19.968-19.629Q-19.800-19.674-19.800-19.846L-19.800-21.721Q-19.800-22.107-19.925-22.334Q-20.050-22.560-20.401-22.560Q-20.706-22.560-20.962-22.398Q-21.218-22.236-21.366-21.967Q-21.514-21.697-21.514-21.400L-21.514-19.846Q-21.514-19.678-21.345-19.631Q-21.175-19.584-20.905-19.584L-20.905-19.287L-22.761-19.287L-22.761-19.584Q-22.487-19.584-22.319-19.631Q-22.151-19.678-22.151-19.846L-22.151-21.721Q-22.151-22.107-22.276-22.334Q-22.401-22.560-22.753-22.560Q-23.057-22.560-23.313-22.398Q-23.569-22.236-23.718-21.967Q-23.866-21.697-23.866-21.400L-23.866-19.846Q-23.866-19.678-23.696-19.631Q-23.526-19.584-23.257-19.584L-23.257-19.287M-18.108-20.982Q-18.108-21.486-17.852-21.918Q-17.596-22.349-17.161-22.601Q-16.725-22.853-16.225-22.853Q-15.839-22.853-15.497-22.709Q-15.155-22.564-14.893-22.303Q-14.632-22.041-14.489-21.705Q-14.346-21.369-14.346-20.982Q-14.346-20.490-14.610-20.080Q-14.874-19.670-15.304-19.439Q-15.733-19.209-16.225-19.209Q-16.718-19.209-17.151-19.441Q-17.585-19.674-17.846-20.082Q-18.108-20.490-18.108-20.982M-16.225-19.486Q-15.768-19.486-15.516-19.709Q-15.264-19.932-15.177-20.283Q-15.089-20.635-15.089-21.080Q-15.089-21.510-15.182-21.848Q-15.276-22.185-15.530-22.392Q-15.784-22.599-16.225-22.599Q-16.874-22.599-17.118-22.183Q-17.362-21.767-17.362-21.080Q-17.362-20.635-17.274-20.283Q-17.186-19.932-16.934-19.709Q-16.682-19.486-16.225-19.486M-11.854-19.287L-13.835-19.287L-13.835-19.584Q-13.565-19.584-13.397-19.629Q-13.229-19.674-13.229-19.846L-13.229-21.982Q-13.229-22.197-13.292-22.293Q-13.354-22.389-13.471-22.410Q-13.589-22.432-13.835-22.432L-13.835-22.728L-12.667-22.814L-12.667-22.029Q-12.589-22.240-12.436-22.426Q-12.284-22.611-12.085-22.713Q-11.886-22.814-11.659-22.814Q-11.413-22.814-11.221-22.670Q-11.030-22.525-11.030-22.295Q-11.030-22.139-11.136-22.029Q-11.241-21.920-11.397-21.920Q-11.554-21.920-11.663-22.029Q-11.772-22.139-11.772-22.295Q-11.772-22.455-11.667-22.560Q-11.991-22.560-12.206-22.332Q-12.421-22.103-12.516-21.764Q-12.612-21.424-12.612-21.119L-12.612-19.846Q-12.612-19.678-12.386-19.631Q-12.159-19.584-11.854-19.584L-11.854-19.287M-10.132-17.990Q-10.018-17.912-9.843-17.912Q-9.554-17.912-9.333-18.125Q-9.112-18.338-8.987-18.639L-8.698-19.287L-9.971-22.174Q-10.054-22.349-10.198-22.394Q-10.343-22.439-10.612-22.439L-10.612-22.736L-8.893-22.736L-8.893-22.439Q-9.315-22.439-9.315-22.256Q-9.315-22.244-9.300-22.174L-8.362-20.049L-7.530-21.959Q-7.491-22.049-7.491-22.127Q-7.491-22.267-7.593-22.353Q-7.694-22.439-7.835-22.439L-7.835-22.736L-6.483-22.736L-6.483-22.439Q-6.737-22.439-6.930-22.314Q-7.124-22.189-7.229-21.959L-8.675-18.639Q-8.788-18.385-8.954-18.162Q-9.120-17.939-9.348-17.797Q-9.577-17.654-9.843-17.654Q-10.139-17.654-10.380-17.846Q-10.620-18.037-10.620-18.326Q-10.620-18.482-10.514-18.584Q-10.409-18.685-10.261-18.685Q-10.155-18.685-10.075-18.639Q-9.995-18.592-9.948-18.514Q-9.901-18.435-9.901-18.326Q-9.901-18.205-9.962-18.117Q-10.022-18.029-10.132-17.990M-5.667-17.287L-5.749-17.287Q-5.784-17.287-5.809-17.316Q-5.835-17.346-5.835-17.385Q-5.835-17.435-5.804-17.455Q-5.417-17.791-5.134-18.240Q-4.850-18.689-4.684-19.189Q-4.518-19.689-4.444-20.207Q-4.370-20.724-4.370-21.287Q-4.370-21.857-4.444-22.373Q-4.518-22.889-4.684-23.385Q-4.850-23.881-5.130-24.328Q-5.409-24.775-5.804-25.119Q-5.835-25.139-5.835-25.189Q-5.835-25.228-5.809-25.258Q-5.784-25.287-5.749-25.287L-5.667-25.287Q-5.655-25.287-5.645-25.285Q-5.636-25.283-5.628-25.279Q-5.014-24.822-4.612-24.187Q-4.210-23.553-4.014-22.807Q-3.819-22.060-3.819-21.287Q-3.819-20.514-4.014-19.767Q-4.210-19.021-4.612-18.387Q-5.014-17.752-5.628-17.295Q-5.639-17.295-5.647-17.293Q-5.655-17.291-5.667-17.287\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M53.61-5.06h56.906v-28.453H53.61Z\"\u002F>\u003Cg transform=\"translate(111.722 2.444)\">\u003Cpath d=\"M-39.725-21.014Q-39.725-21.494-39.481-21.908Q-39.237-22.322-38.821-22.560Q-38.405-22.799-37.925-22.799Q-37.370-22.799-36.991-22.689Q-36.612-22.580-36.612-22.174Q-36.612-22.006-36.725-21.883Q-36.839-21.760-37.011-21.760Q-37.182-21.760-37.302-21.875Q-37.421-21.990-37.421-22.158L-37.421-22.217Q-37.581-22.240-37.917-22.240Q-38.245-22.240-38.513-22.070Q-38.780-21.900-38.932-21.617Q-39.085-21.334-39.085-21.014Q-39.085-20.693-38.913-20.412Q-38.741-20.131-38.456-19.969Q-38.171-19.807-37.843-19.807Q-37.530-19.807-37.403-19.910Q-37.276-20.014-37.159-20.203Q-37.042-20.392-36.925-20.408L-36.757-20.408Q-36.651-20.396-36.587-20.328Q-36.522-20.260-36.522-20.158Q-36.522-20.111-36.542-20.072Q-36.651-19.779-36.854-19.599Q-37.057-19.420-37.333-19.334Q-37.608-19.248-37.925-19.248Q-38.409-19.248-38.825-19.486Q-39.241-19.724-39.483-20.127Q-39.725-20.529-39.725-21.014M-35.632-20.400Q-35.632-20.846-35.218-21.103Q-34.804-21.361-34.263-21.461Q-33.721-21.560-33.214-21.568Q-33.214-21.783-33.348-21.935Q-33.483-22.088-33.690-22.164Q-33.897-22.240-34.108-22.240Q-34.452-22.240-34.612-22.217L-34.612-22.158Q-34.612-21.990-34.731-21.875Q-34.850-21.760-35.014-21.760Q-35.190-21.760-35.305-21.883Q-35.421-22.006-35.421-22.174Q-35.421-22.580-35.040-22.689Q-34.659-22.799-34.100-22.799Q-33.831-22.799-33.563-22.721Q-33.296-22.642-33.071-22.492Q-32.846-22.342-32.710-22.121Q-32.573-21.900-32.573-21.623L-32.573-19.904Q-32.573-19.846-32.046-19.846Q-31.850-19.826-31.800-19.615L-31.800-19.525Q-31.850-19.310-32.046-19.287L-32.190-19.287Q-32.534-19.287-32.763-19.334Q-32.991-19.381-33.136-19.568Q-33.596-19.248-34.304-19.248Q-34.639-19.248-34.944-19.389Q-35.249-19.529-35.440-19.791Q-35.632-20.053-35.632-20.400M-34.991-20.392Q-34.991-20.119-34.749-19.963Q-34.507-19.807-34.221-19.807Q-34.003-19.807-33.770-19.865Q-33.538-19.924-33.376-20.062Q-33.214-20.201-33.214-20.424L-33.214-21.014Q-33.495-21.014-33.911-20.957Q-34.327-20.900-34.659-20.762Q-34.991-20.623-34.991-20.392M-31.233-21.014Q-31.233-21.494-30.989-21.908Q-30.745-22.322-30.329-22.560Q-29.913-22.799-29.432-22.799Q-28.878-22.799-28.499-22.689Q-28.120-22.580-28.120-22.174Q-28.120-22.006-28.233-21.883Q-28.346-21.760-28.518-21.760Q-28.690-21.760-28.809-21.875Q-28.929-21.990-28.929-22.158L-28.929-22.217Q-29.089-22.240-29.425-22.240Q-29.753-22.240-30.020-22.070Q-30.288-21.900-30.440-21.617Q-30.593-21.334-30.593-21.014Q-30.593-20.693-30.421-20.412Q-30.249-20.131-29.964-19.969Q-29.679-19.807-29.350-19.807Q-29.038-19.807-28.911-19.910Q-28.784-20.014-28.667-20.203Q-28.550-20.392-28.432-20.408L-28.264-20.408Q-28.159-20.396-28.095-20.328Q-28.030-20.260-28.030-20.158Q-28.030-20.111-28.050-20.072Q-28.159-19.779-28.362-19.599Q-28.565-19.420-28.841-19.334Q-29.116-19.248-29.432-19.248Q-29.917-19.248-30.333-19.486Q-30.749-19.724-30.991-20.127Q-31.233-20.529-31.233-21.014M-27.475-19.525L-27.475-19.615Q-27.432-19.822-27.225-19.846L-26.804-19.846L-26.804-23.615L-27.225-23.615Q-27.432-23.639-27.475-23.853L-27.475-23.943Q-27.432-24.150-27.225-24.174L-26.409-24.174Q-26.214-24.150-26.163-23.943L-26.163-22.392Q-25.702-22.775-25.104-22.775Q-24.757-22.775-24.518-22.635Q-24.280-22.494-24.165-22.236Q-24.050-21.978-24.050-21.623L-24.050-19.846L-23.624-19.846Q-23.417-19.822-23.378-19.615L-23.378-19.525Q-23.417-19.310-23.624-19.287L-25.018-19.287Q-25.214-19.310-25.264-19.525L-25.264-19.615Q-25.214-19.826-25.018-19.846L-24.690-19.846L-24.690-21.592Q-24.690-21.900-24.780-22.058Q-24.870-22.217-25.163-22.217Q-25.432-22.217-25.661-22.086Q-25.889-21.955-26.026-21.726Q-26.163-21.498-26.163-21.232L-26.163-19.846L-25.737-19.846Q-25.530-19.822-25.491-19.615L-25.491-19.525Q-25.530-19.310-25.737-19.287L-27.225-19.287Q-27.432-19.310-27.475-19.525M-19.788-20.775L-22.229-20.775Q-22.175-20.498-21.977-20.275Q-21.780-20.053-21.503-19.930Q-21.225-19.807-20.940-19.807Q-20.468-19.807-20.245-20.096Q-20.237-20.107-20.180-20.213Q-20.124-20.318-20.075-20.361Q-20.026-20.404-19.932-20.416L-19.788-20.416Q-19.596-20.396-19.538-20.182L-19.538-20.127Q-19.604-19.826-19.835-19.629Q-20.065-19.432-20.378-19.340Q-20.690-19.248-20.995-19.248Q-21.479-19.248-21.919-19.476Q-22.358-19.705-22.626-20.105Q-22.893-20.506-22.893-20.998L-22.893-21.057Q-22.893-21.525-22.647-21.928Q-22.401-22.330-21.993-22.564Q-21.585-22.799-21.116-22.799Q-20.612-22.799-20.259-22.576Q-19.905-22.353-19.721-21.965Q-19.538-21.576-19.538-21.072L-19.538-21.014Q-19.596-20.799-19.788-20.775M-22.221-21.326L-20.194-21.326Q-20.241-21.736-20.479-21.988Q-20.718-22.240-21.116-22.240Q-21.511-22.240-21.817-21.978Q-22.124-21.717-22.221-21.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M164.576-5.06h56.905v-28.453h-56.905Z\"\u002F>\u003Cg transform=\"translate(224.58 2.733)\">\u003Cpath d=\"M-35.698-19.287L-38.741-19.287L-38.741-19.584Q-37.979-19.584-37.796-19.623Q-37.753-19.635-37.704-19.668Q-37.655-19.701-37.630-19.744Q-37.604-19.787-37.604-19.846L-37.604-24.189Q-37.604-24.365-37.696-24.410Q-37.788-24.455-38.003-24.455L-38.397-24.455Q-39.093-24.455-39.382-24.166Q-39.530-24.017-39.593-23.697Q-39.655-23.377-39.698-22.904L-39.979-22.904L-39.819-24.752L-34.620-24.752L-34.460-22.904L-34.741-22.904Q-34.784-23.412-34.846-23.715Q-34.909-24.017-35.061-24.166Q-35.346-24.455-36.046-24.455L-36.436-24.455Q-36.651-24.455-36.743-24.412Q-36.835-24.369-36.835-24.189L-36.835-19.846Q-36.835-19.771-36.780-19.707Q-36.725-19.642-36.643-19.623Q-36.460-19.584-35.698-19.584L-35.698-19.287M-29.429-19.287L-33.811-19.287L-33.811-19.584Q-33.491-19.584-33.247-19.631Q-33.003-19.678-33.003-19.846L-33.003-24.189Q-33.003-24.361-33.247-24.408Q-33.491-24.455-33.811-24.455L-33.811-24.752L-31.225-24.752L-31.225-24.455Q-32.237-24.455-32.237-24.189L-32.237-19.846Q-32.237-19.674-32.145-19.629Q-32.054-19.584-31.835-19.584L-31.147-19.584Q-30.675-19.584-30.366-19.709Q-30.057-19.834-29.880-20.064Q-29.702-20.295-29.610-20.621Q-29.518-20.947-29.475-21.400L-29.194-21.400L-29.429-19.287M-25.194-19.287L-28.475-19.287L-28.475-19.584Q-28.151-19.584-27.909-19.631Q-27.667-19.678-27.667-19.846L-27.667-24.189Q-27.667-24.361-27.909-24.408Q-28.151-24.455-28.475-24.455L-28.475-24.752L-25.429-24.752Q-25.003-24.752-24.569-24.598Q-24.136-24.443-23.841-24.135Q-23.546-23.826-23.546-23.392Q-23.546-23.139-23.671-22.922Q-23.796-22.705-23.997-22.549Q-24.198-22.392-24.430-22.293Q-24.663-22.193-24.921-22.142Q-24.546-22.107-24.167-21.930Q-23.788-21.752-23.548-21.453Q-23.307-21.154-23.307-20.760Q-23.307-20.307-23.591-19.973Q-23.874-19.639-24.309-19.463Q-24.745-19.287-25.194-19.287M-26.956-21.998L-26.956-19.846Q-26.956-19.674-26.864-19.629Q-26.772-19.584-26.554-19.584L-25.429-19.584Q-25.190-19.584-24.956-19.672Q-24.721-19.760-24.536-19.920Q-24.350-20.080-24.249-20.293Q-24.147-20.506-24.147-20.760Q-24.147-21.080-24.300-21.365Q-24.452-21.650-24.721-21.824Q-24.991-21.998-25.307-21.998L-26.956-21.998M-26.956-24.189L-26.956-22.256L-25.667-22.256Q-25.425-22.256-25.186-22.338Q-24.948-22.420-24.764-22.566Q-24.581-22.713-24.468-22.930Q-24.354-23.146-24.354-23.392Q-24.354-23.603-24.440-23.805Q-24.526-24.006-24.673-24.148Q-24.819-24.291-25.014-24.373Q-25.210-24.455-25.429-24.455L-26.554-24.455Q-26.772-24.455-26.864-24.412Q-26.956-24.369-26.956-24.189\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M164.576 57.536h56.905V29.083h-56.905Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(224.104 69.068)\">\u003Cpath d=\"M-37.455-27.236L-39.310-27.236L-39.310-27.529Q-39.041-27.529-38.873-27.574Q-38.705-27.619-38.705-27.795L-38.705-31.619Q-38.705-31.826-38.861-31.879Q-39.017-31.932-39.310-31.932L-39.310-32.228L-38.088-32.314L-38.088-31.849Q-37.857-32.072-37.543-32.193Q-37.228-32.314-36.889-32.314Q-36.416-32.314-36.012-32.068Q-35.607-31.822-35.375-31.406Q-35.142-30.990-35.142-30.514Q-35.142-30.139-35.291-29.810Q-35.439-29.482-35.709-29.230Q-35.978-28.978-36.322-28.844Q-36.666-28.709-37.025-28.709Q-37.314-28.709-37.586-28.830Q-37.857-28.951-38.064-29.162L-38.064-27.795Q-38.064-27.619-37.896-27.574Q-37.728-27.529-37.455-27.529L-37.455-27.236M-38.064-31.451L-38.064-29.611Q-37.912-29.322-37.650-29.142Q-37.389-28.963-37.080-28.963Q-36.795-28.963-36.572-29.101Q-36.349-29.240-36.197-29.471Q-36.045-29.701-35.967-29.973Q-35.889-30.244-35.889-30.514Q-35.889-30.846-36.014-31.203Q-36.139-31.560-36.387-31.797Q-36.635-32.033-36.982-32.033Q-37.306-32.033-37.601-31.877Q-37.896-31.721-38.064-31.451M-34.521-29.619Q-34.521-30.103-34.119-30.398Q-33.717-30.693-33.166-30.812Q-32.615-30.932-32.123-30.932L-32.123-31.221Q-32.123-31.447-32.238-31.654Q-32.353-31.861-32.551-31.980Q-32.748-32.099-32.978-32.099Q-33.404-32.099-33.689-31.994Q-33.619-31.967-33.572-31.912Q-33.525-31.857-33.500-31.787Q-33.474-31.717-33.474-31.642Q-33.474-31.537-33.525-31.445Q-33.576-31.353-33.668-31.303Q-33.760-31.252-33.865-31.252Q-33.971-31.252-34.062-31.303Q-34.154-31.353-34.205-31.445Q-34.256-31.537-34.256-31.642Q-34.256-32.060-33.867-32.207Q-33.478-32.353-32.978-32.353Q-32.646-32.353-32.293-32.223Q-31.939-32.092-31.711-31.838Q-31.482-31.584-31.482-31.236L-31.482-29.435Q-31.482-29.303-31.410-29.193Q-31.338-29.084-31.209-29.084Q-31.084-29.084-31.015-29.189Q-30.947-29.295-30.947-29.435L-30.947-29.947L-30.666-29.947L-30.666-29.435Q-30.666-29.232-30.783-29.074Q-30.900-28.916-31.082-28.832Q-31.264-28.748-31.467-28.748Q-31.697-28.748-31.849-28.920Q-32.002-29.092-32.033-29.322Q-32.193-29.041-32.502-28.875Q-32.810-28.709-33.162-28.709Q-33.674-28.709-34.097-28.932Q-34.521-29.154-34.521-29.619M-33.834-29.619Q-33.834-29.334-33.607-29.148Q-33.381-28.963-33.088-28.963Q-32.842-28.963-32.617-29.080Q-32.392-29.197-32.258-29.400Q-32.123-29.603-32.123-29.857L-32.123-30.689Q-32.389-30.689-32.674-30.635Q-32.959-30.580-33.230-30.451Q-33.502-30.322-33.668-30.115Q-33.834-29.908-33.834-29.619M-30.373-28.178Q-30.373-28.459-30.162-28.670Q-29.951-28.881-29.666-28.971Q-29.822-29.096-29.900-29.285Q-29.978-29.474-29.978-29.674Q-29.978-30.029-29.748-30.322Q-30.115-30.662-30.115-31.131Q-30.115-31.482-29.912-31.752Q-29.709-32.021-29.389-32.168Q-29.068-32.314-28.724-32.314Q-28.205-32.314-27.834-32.033Q-27.471-32.404-26.924-32.404Q-26.744-32.404-26.617-32.277Q-26.490-32.150-26.490-31.971Q-26.490-31.865-26.568-31.787Q-26.646-31.709-26.756-31.709Q-26.865-31.709-26.941-31.785Q-27.017-31.861-27.017-31.971Q-27.017-32.072-26.978-32.123Q-26.971-32.131-26.967-32.137Q-26.963-32.142-26.963-32.146Q-27.338-32.146-27.658-31.892Q-27.338-31.553-27.338-31.131Q-27.338-30.861-27.455-30.644Q-27.572-30.428-27.777-30.269Q-27.982-30.111-28.224-30.029Q-28.467-29.947-28.724-29.947Q-28.943-29.947-29.156-30.006Q-29.369-30.064-29.564-30.185Q-29.658-30.045-29.658-29.865Q-29.658-29.658-29.521-29.506Q-29.385-29.353-29.178-29.353L-28.482-29.353Q-27.994-29.353-27.582-29.269Q-27.170-29.185-26.890-28.928Q-26.611-28.670-26.611-28.178Q-26.611-27.814-26.931-27.582Q-27.252-27.349-27.693-27.248Q-28.135-27.146-28.490-27.146Q-28.846-27.146-29.289-27.248Q-29.732-27.349-30.053-27.582Q-30.373-27.814-30.373-28.178M-29.869-28.178Q-29.869-27.982-29.724-27.834Q-29.580-27.685-29.367-27.596Q-29.154-27.506-28.914-27.459Q-28.674-27.412-28.490-27.412Q-28.248-27.412-27.918-27.490Q-27.588-27.568-27.351-27.742Q-27.115-27.916-27.115-28.178Q-27.115-28.584-27.525-28.693Q-27.935-28.803-28.498-28.803L-29.178-28.803Q-29.447-28.803-29.658-28.625Q-29.869-28.447-29.869-28.178M-28.724-30.213Q-28.002-30.213-28.002-31.131Q-28.002-32.053-28.724-32.053Q-29.451-32.053-29.451-31.131Q-29.451-30.213-28.724-30.213M-26.127-30.541Q-26.127-31.021-25.894-31.437Q-25.662-31.853-25.252-32.103Q-24.842-32.353-24.365-32.353Q-23.635-32.353-23.236-31.912Q-22.838-31.471-22.838-30.740Q-22.838-30.635-22.931-30.611L-25.381-30.611L-25.381-30.541Q-25.381-30.131-25.260-29.775Q-25.139-29.420-24.867-29.203Q-24.596-28.986-24.166-28.986Q-23.803-28.986-23.506-29.215Q-23.209-29.443-23.107-29.795Q-23.099-29.842-23.014-29.857L-22.931-29.857Q-22.838-29.830-22.838-29.748Q-22.838-29.740-22.846-29.709Q-22.908-29.482-23.047-29.299Q-23.185-29.115-23.377-28.982Q-23.568-28.849-23.787-28.779Q-24.006-28.709-24.244-28.709Q-24.615-28.709-24.953-28.846Q-25.291-28.982-25.558-29.234Q-25.826-29.486-25.976-29.826Q-26.127-30.166-26.127-30.541M-25.373-30.849L-23.412-30.849Q-23.412-31.154-23.514-31.445Q-23.615-31.736-23.832-31.918Q-24.049-32.099-24.365-32.099Q-24.666-32.099-24.896-31.912Q-25.127-31.724-25.250-31.433Q-25.373-31.142-25.373-30.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(224.104 69.068)\">\u003Cpath d=\"M-39.421-20.248L-39.421-22.439L-40.124-22.439L-40.124-22.693Q-39.768-22.693-39.526-22.926Q-39.284-23.158-39.173-23.506Q-39.061-23.853-39.061-24.209L-38.780-24.209L-38.780-22.736L-37.604-22.736L-37.604-22.439L-38.780-22.439L-38.780-20.264Q-38.780-19.943-38.661-19.715Q-38.542-19.486-38.261-19.486Q-38.081-19.486-37.964-19.609Q-37.846-19.732-37.794-19.912Q-37.741-20.092-37.741-20.264L-37.741-20.736L-37.460-20.736L-37.460-20.248Q-37.460-19.994-37.565-19.754Q-37.671-19.514-37.868-19.361Q-38.065-19.209-38.323-19.209Q-38.639-19.209-38.891-19.332Q-39.143-19.455-39.282-19.689Q-39.421-19.924-39.421-20.248M-36.643-20.119Q-36.643-20.603-36.241-20.898Q-35.839-21.193-35.288-21.312Q-34.737-21.432-34.245-21.432L-34.245-21.721Q-34.245-21.947-34.360-22.154Q-34.475-22.361-34.673-22.480Q-34.870-22.599-35.100-22.599Q-35.526-22.599-35.811-22.494Q-35.741-22.467-35.694-22.412Q-35.647-22.357-35.622-22.287Q-35.596-22.217-35.596-22.142Q-35.596-22.037-35.647-21.945Q-35.698-21.853-35.790-21.803Q-35.882-21.752-35.987-21.752Q-36.093-21.752-36.184-21.803Q-36.276-21.853-36.327-21.945Q-36.378-22.037-36.378-22.142Q-36.378-22.560-35.989-22.707Q-35.600-22.853-35.100-22.853Q-34.768-22.853-34.415-22.723Q-34.061-22.592-33.833-22.338Q-33.604-22.084-33.604-21.736L-33.604-19.935Q-33.604-19.803-33.532-19.693Q-33.460-19.584-33.331-19.584Q-33.206-19.584-33.138-19.689Q-33.069-19.795-33.069-19.935L-33.069-20.447L-32.788-20.447L-32.788-19.935Q-32.788-19.732-32.905-19.574Q-33.022-19.416-33.204-19.332Q-33.386-19.248-33.589-19.248Q-33.819-19.248-33.971-19.420Q-34.124-19.592-34.155-19.822Q-34.315-19.541-34.624-19.375Q-34.932-19.209-35.284-19.209Q-35.796-19.209-36.220-19.432Q-36.643-19.654-36.643-20.119M-35.956-20.119Q-35.956-19.834-35.729-19.648Q-35.503-19.463-35.210-19.463Q-34.964-19.463-34.739-19.580Q-34.514-19.697-34.380-19.900Q-34.245-20.103-34.245-20.357L-34.245-21.189Q-34.511-21.189-34.796-21.135Q-35.081-21.080-35.352-20.951Q-35.624-20.822-35.790-20.615Q-35.956-20.408-35.956-20.119M-31.581-19.287L-31.862-19.287L-31.862-24.006Q-31.862-24.221-31.925-24.316Q-31.987-24.412-32.104-24.433Q-32.221-24.455-32.468-24.455L-32.468-24.752L-31.245-24.838L-31.245-22.349Q-30.768-22.814-30.069-22.814Q-29.589-22.814-29.180-22.570Q-28.772-22.326-28.536-21.912Q-28.300-21.498-28.300-21.014Q-28.300-20.639-28.448-20.310Q-28.596-19.982-28.866-19.730Q-29.136-19.478-29.479-19.344Q-29.823-19.209-30.182-19.209Q-30.503-19.209-30.802-19.357Q-31.100-19.506-31.307-19.767L-31.581-19.287M-31.221-21.959L-31.221-20.119Q-31.069-19.822-30.809-19.642Q-30.550-19.463-30.237-19.463Q-29.811-19.463-29.544-19.682Q-29.276-19.900-29.161-20.246Q-29.046-20.592-29.046-21.014Q-29.046-21.662-29.294-22.111Q-29.542-22.560-30.139-22.560Q-30.475-22.560-30.764-22.402Q-31.054-22.244-31.221-21.959M-25.862-19.287L-27.694-19.287L-27.694-19.584Q-27.421-19.584-27.253-19.631Q-27.085-19.678-27.085-19.846L-27.085-24.006Q-27.085-24.221-27.147-24.316Q-27.210-24.412-27.329-24.433Q-27.448-24.455-27.694-24.455L-27.694-24.752L-26.471-24.838L-26.471-19.846Q-26.471-19.678-26.304-19.631Q-26.136-19.584-25.862-19.584L-25.862-19.287M-25.417-21.041Q-25.417-21.521-25.184-21.937Q-24.952-22.353-24.542-22.603Q-24.132-22.853-23.655-22.853Q-22.925-22.853-22.526-22.412Q-22.128-21.971-22.128-21.240Q-22.128-21.135-22.221-21.111L-24.671-21.111L-24.671-21.041Q-24.671-20.631-24.550-20.275Q-24.429-19.920-24.157-19.703Q-23.886-19.486-23.456-19.486Q-23.093-19.486-22.796-19.715Q-22.499-19.943-22.397-20.295Q-22.389-20.342-22.304-20.357L-22.221-20.357Q-22.128-20.330-22.128-20.248Q-22.128-20.240-22.136-20.209Q-22.198-19.982-22.337-19.799Q-22.475-19.615-22.667-19.482Q-22.858-19.349-23.077-19.279Q-23.296-19.209-23.534-19.209Q-23.905-19.209-24.243-19.346Q-24.581-19.482-24.848-19.734Q-25.116-19.986-25.266-20.326Q-25.417-20.666-25.417-21.041M-24.663-21.349L-22.702-21.349Q-22.702-21.654-22.804-21.945Q-22.905-22.236-23.122-22.418Q-23.339-22.599-23.655-22.599Q-23.956-22.599-24.186-22.412Q-24.417-22.224-24.540-21.933Q-24.663-21.642-24.663-21.349\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M272.696-5.06h56.906v-28.453h-56.906Z\"\u002F>\u003Cg transform=\"translate(327.987 2.733)\">\u003Cpath d=\"M-36.870-19.287L-39.932-19.287L-39.932-19.584Q-39.608-19.584-39.366-19.631Q-39.124-19.678-39.124-19.846L-39.124-24.189Q-39.124-24.361-39.366-24.408Q-39.608-24.455-39.932-24.455L-39.932-24.752L-36.870-24.752Q-36.319-24.752-35.841-24.525Q-35.362-24.299-35.009-23.904Q-34.655-23.510-34.466-23.010Q-34.276-22.510-34.276-21.967Q-34.276-21.260-34.620-20.642Q-34.964-20.025-35.559-19.656Q-36.155-19.287-36.870-19.287M-38.382-24.189L-38.382-19.846Q-38.382-19.674-38.290-19.629Q-38.198-19.584-37.979-19.584L-37.085-19.584Q-36.639-19.584-36.247-19.754Q-35.854-19.924-35.583-20.248Q-35.311-20.572-35.214-20.992Q-35.116-21.412-35.116-21.967Q-35.116-22.322-35.153-22.635Q-35.190-22.947-35.296-23.242Q-35.401-23.537-35.581-23.760Q-35.764-23.994-36.003-24.144Q-36.241-24.295-36.522-24.375Q-36.804-24.455-37.085-24.455L-37.979-24.455Q-38.198-24.455-38.290-24.412Q-38.382-24.369-38.382-24.189M-31.085-19.287L-33.444-19.287L-33.444-19.584Q-33.120-19.584-32.878-19.631Q-32.636-19.678-32.636-19.846L-32.636-24.189Q-32.636-24.361-32.878-24.408Q-33.120-24.455-33.444-24.455L-33.444-24.752L-30.850-24.752Q-30.518-24.752-30.132-24.666Q-29.745-24.580-29.397-24.406Q-29.050-24.232-28.831-23.951Q-28.612-23.670-28.612-23.303Q-28.612-22.978-28.813-22.713Q-29.014-22.447-29.321-22.271Q-29.628-22.096-29.956-22.006Q-29.589-21.885-29.329-21.615Q-29.069-21.346-29.018-20.982L-28.925-20.287Q-28.854-19.838-28.757-19.607Q-28.659-19.377-28.362-19.377Q-28.116-19.377-27.983-19.594Q-27.850-19.810-27.850-20.072Q-27.831-20.146-27.749-20.166L-27.667-20.166Q-27.573-20.142-27.573-20.049Q-27.573-19.818-27.671-19.603Q-27.768-19.389-27.946-19.254Q-28.124-19.119-28.354-19.119Q-28.952-19.119-29.370-19.406Q-29.788-19.693-29.788-20.264L-29.788-20.959Q-29.788-21.240-29.940-21.455Q-30.093-21.670-30.343-21.783Q-30.593-21.896-30.866-21.896L-31.893-21.896L-31.893-19.846Q-31.893-19.682-31.649-19.633Q-31.405-19.584-31.085-19.584L-31.085-19.287M-31.893-24.189L-31.893-22.150L-30.964-22.150Q-30.643-22.150-30.376-22.203Q-30.108-22.256-29.909-22.383Q-29.710-22.510-29.593-22.742Q-29.475-22.974-29.475-23.303Q-29.475-23.955-29.872-24.205Q-30.268-24.455-30.964-24.455L-31.491-24.455Q-31.710-24.455-31.802-24.412Q-31.893-24.369-31.893-24.189M-25.511-19.287L-27.261-19.287L-27.261-19.584Q-26.561-19.584-26.374-20.064L-24.573-24.889Q-24.518-24.998-24.405-24.998L-24.335-24.998Q-24.221-24.998-24.167-24.889L-22.276-19.846Q-22.198-19.678-21.995-19.631Q-21.792-19.584-21.479-19.584L-21.479-19.287L-23.702-19.287L-23.702-19.584Q-23.061-19.584-23.061-19.799Q-23.061-19.818-23.063-19.828Q-23.065-19.838-23.069-19.846L-23.534-21.080L-25.679-21.080L-26.061-20.064Q-26.065-20.049-26.071-20.019Q-26.077-19.990-26.077-19.967Q-26.077-19.826-25.987-19.742Q-25.897-19.658-25.764-19.621Q-25.632-19.584-25.511-19.584L-25.511-19.287M-24.604-23.943L-25.573-21.377L-23.647-21.377L-24.604-23.943M-18.893-19.287L-20.815-19.287L-20.815-19.584Q-20.007-19.584-20.007-20.064L-20.007-24.189Q-20.007-24.361-20.249-24.408Q-20.491-24.455-20.815-24.455L-20.815-24.752L-19.319-24.752Q-19.210-24.752-19.151-24.639L-17.304-20.096L-15.464-24.639Q-15.401-24.752-15.296-24.752L-13.792-24.752L-13.792-24.455Q-14.112-24.455-14.354-24.408Q-14.596-24.361-14.596-24.189L-14.596-19.846Q-14.596-19.678-14.354-19.631Q-14.112-19.584-13.792-19.584L-13.792-19.287L-16.093-19.287L-16.093-19.584Q-15.288-19.584-15.288-19.846L-15.288-24.439L-17.335-19.400Q-17.370-19.287-17.503-19.287Q-17.643-19.287-17.679-19.400L-19.702-24.377L-19.702-20.064Q-19.702-19.584-18.893-19.584\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-11.631-19.287H51.41\"\u002F>\u003Cpath stroke=\"none\" d=\"m53.41-19.287-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(40.163 -3.533)\">\u003Cpath d=\"M-38.380-19.314L-39.508-21.813Q-39.580-21.960-39.710-21.992Q-39.840-22.025-40.069-22.025L-40.069-22.305L-38.555-22.305L-38.555-22.025Q-38.907-22.025-38.907-21.878Q-38.907-21.833-38.896-21.813L-38.032-19.895L-37.252-21.625Q-37.218-21.693-37.218-21.772Q-37.218-21.885-37.302-21.955Q-37.386-22.025-37.505-22.025L-37.505-22.305L-36.309-22.305L-36.309-22.025Q-36.528-22.025-36.699-21.922Q-36.869-21.820-36.958-21.625L-37.994-19.314Q-38.042-19.219-38.148-19.219L-38.226-19.219Q-38.332-19.219-38.380-19.314M-34.152-19.287L-35.704-19.287L-35.704-19.567Q-35.478-19.567-35.330-19.601Q-35.181-19.636-35.181-19.776L-35.181-21.625Q-35.181-21.813-35.229-21.897Q-35.277-21.980-35.374-21.999Q-35.471-22.018-35.683-22.018L-35.683-22.298L-34.627-22.373L-34.627-19.776Q-34.627-19.636-34.496-19.601Q-34.364-19.567-34.152-19.567L-34.152-19.287M-35.424-23.594Q-35.424-23.765-35.301-23.884Q-35.178-24.004-35.007-24.004Q-34.839-24.004-34.716-23.884Q-34.593-23.765-34.593-23.594Q-34.593-23.419-34.716-23.296Q-34.839-23.173-35.007-23.173Q-35.178-23.173-35.301-23.296Q-35.424-23.419-35.424-23.594M-31.756-19.287L-33.492-19.287L-33.492-19.567Q-33.263-19.567-33.115-19.601Q-32.966-19.636-32.966-19.776L-32.966-21.625Q-32.966-21.895-33.074-21.956Q-33.181-22.018-33.492-22.018L-33.492-22.298L-32.464-22.373L-32.464-21.666Q-32.334-21.974-32.091-22.173Q-31.848-22.373-31.531-22.373Q-31.312-22.373-31.141-22.249Q-30.970-22.124-30.970-21.912Q-30.970-21.775-31.069-21.676Q-31.168-21.577-31.302-21.577Q-31.438-21.577-31.537-21.676Q-31.637-21.775-31.637-21.912Q-31.637-22.052-31.537-22.151Q-31.828-22.151-32.028-21.955Q-32.228-21.758-32.320-21.464Q-32.412-21.170-32.412-20.890L-32.412-19.776Q-32.412-19.567-31.756-19.567L-31.756-19.287M-29.859-20.128L-29.859-22.025L-30.498-22.025L-30.498-22.247Q-30.180-22.247-29.963-22.457Q-29.746-22.667-29.646-22.977Q-29.545-23.286-29.545-23.594L-29.278-23.594L-29.278-22.305L-28.201-22.305L-28.201-22.025L-29.278-22.025L-29.278-20.141Q-29.278-19.865-29.174-19.666Q-29.070-19.468-28.810-19.468Q-28.653-19.468-28.547-19.572Q-28.441-19.677-28.391-19.830Q-28.342-19.984-28.342-20.141L-28.342-20.555L-28.075-20.555L-28.075-20.128Q-28.075-19.902-28.174-19.692Q-28.273-19.482-28.458-19.350Q-28.642-19.219-28.871-19.219Q-29.309-19.219-29.584-19.456Q-29.859-19.694-29.859-20.128M-26.691-20.121L-26.691-21.625Q-26.691-21.895-26.798-21.956Q-26.906-22.018-27.217-22.018L-27.217-22.298L-26.110-22.373L-26.110-20.141L-26.110-20.121Q-26.110-19.841-26.058-19.697Q-26.007-19.554-25.865-19.497Q-25.723-19.441-25.436-19.441Q-25.183-19.441-24.978-19.581Q-24.773-19.721-24.657-19.947Q-24.541-20.172-24.541-20.422L-24.541-21.625Q-24.541-21.895-24.649-21.956Q-24.756-22.018-25.067-22.018L-25.067-22.298L-23.960-22.373L-23.960-19.960Q-23.960-19.769-23.907-19.687Q-23.854-19.605-23.753-19.586Q-23.652-19.567-23.437-19.567L-23.437-19.287L-24.513-19.219L-24.513-19.783Q-24.623-19.601-24.768-19.478Q-24.913-19.355-25.100-19.287Q-25.286-19.219-25.488-19.219Q-26.691-19.219-26.691-20.121M-22.791-20.015Q-22.791-20.347-22.567-20.574Q-22.343-20.801-22-20.929Q-21.656-21.058-21.284-21.110Q-20.911-21.163-20.607-21.163L-20.607-21.416Q-20.607-21.621-20.714-21.801Q-20.822-21.980-21.003-22.083Q-21.184-22.185-21.393-22.185Q-21.800-22.185-22.035-22.093Q-21.947-22.056-21.900-21.972Q-21.854-21.888-21.854-21.786Q-21.854-21.690-21.900-21.611Q-21.947-21.533-22.027-21.488Q-22.107-21.444-22.196-21.444Q-22.346-21.444-22.447-21.541Q-22.548-21.639-22.548-21.786Q-22.548-22.408-21.393-22.408Q-21.181-22.408-20.931-22.344Q-20.682-22.281-20.480-22.162Q-20.279-22.042-20.152-21.857Q-20.026-21.673-20.026-21.430L-20.026-19.854Q-20.026-19.738-19.964-19.642Q-19.903-19.547-19.790-19.547Q-19.680-19.547-19.616-19.641Q-19.551-19.735-19.551-19.854L-19.551-20.302L-19.284-20.302L-19.284-19.854Q-19.284-19.584-19.511-19.419Q-19.739-19.253-20.019-19.253Q-20.227-19.253-20.364-19.407Q-20.501-19.560-20.525-19.776Q-20.672-19.509-20.954-19.364Q-21.236-19.219-21.560-19.219Q-21.837-19.219-22.121-19.294Q-22.405-19.369-22.598-19.548Q-22.791-19.728-22.791-20.015M-22.176-20.015Q-22.176-19.841-22.075-19.711Q-21.974-19.581-21.818-19.511Q-21.663-19.441-21.499-19.441Q-21.280-19.441-21.072-19.538Q-20.863-19.636-20.735-19.817Q-20.607-19.998-20.607-20.224L-20.607-20.952Q-20.931-20.952-21.297-20.861Q-21.663-20.770-21.919-20.558Q-22.176-20.347-22.176-20.015M-17.199-19.287L-18.802-19.287L-18.802-19.567Q-18.576-19.567-18.428-19.601Q-18.279-19.636-18.279-19.776L-18.279-23.395Q-18.279-23.665-18.387-23.727Q-18.494-23.788-18.802-23.788L-18.802-24.069L-17.725-24.144L-17.725-19.776Q-17.725-19.639-17.575-19.603Q-17.425-19.567-17.199-19.567\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(40.163 -3.533)\">\u003Cpath d=\"M-13.834-20.015Q-13.834-20.347-13.611-20.574Q-13.387-20.801-13.043-20.929Q-12.700-21.058-12.327-21.110Q-11.955-21.163-11.650-21.163L-11.650-21.416Q-11.650-21.621-11.758-21.801Q-11.866-21.980-12.047-22.083Q-12.228-22.185-12.436-22.185Q-12.843-22.185-13.079-22.093Q-12.990-22.056-12.944-21.972Q-12.898-21.888-12.898-21.786Q-12.898-21.690-12.944-21.611Q-12.990-21.533-13.071-21.488Q-13.151-21.444-13.240-21.444Q-13.390-21.444-13.491-21.541Q-13.592-21.639-13.592-21.786Q-13.592-22.408-12.436-22.408Q-12.225-22.408-11.975-22.344Q-11.726-22.281-11.524-22.162Q-11.322-22.042-11.196-21.857Q-11.069-21.673-11.069-21.430L-11.069-19.854Q-11.069-19.738-11.008-19.642Q-10.946-19.547-10.833-19.547Q-10.724-19.547-10.659-19.641Q-10.594-19.735-10.594-19.854L-10.594-20.302L-10.328-20.302L-10.328-19.854Q-10.328-19.584-10.555-19.419Q-10.782-19.253-11.062-19.253Q-11.271-19.253-11.408-19.407Q-11.544-19.560-11.568-19.776Q-11.715-19.509-11.997-19.364Q-12.279-19.219-12.604-19.219Q-12.881-19.219-13.165-19.294Q-13.448-19.369-13.641-19.548Q-13.834-19.728-13.834-20.015M-13.219-20.015Q-13.219-19.841-13.118-19.711Q-13.018-19.581-12.862-19.511Q-12.707-19.441-12.542-19.441Q-12.324-19.441-12.115-19.538Q-11.907-19.636-11.779-19.817Q-11.650-19.998-11.650-20.224L-11.650-20.952Q-11.975-20.952-12.341-20.861Q-12.707-20.770-12.963-20.558Q-13.219-20.347-13.219-20.015M-9.911-20.798Q-9.911-21.136-9.770-21.427Q-9.630-21.717-9.386-21.931Q-9.142-22.144-8.837-22.259Q-8.533-22.373-8.208-22.373Q-7.938-22.373-7.675-22.274Q-7.412-22.175-7.221-21.997L-7.221-23.395Q-7.221-23.665-7.328-23.727Q-7.436-23.788-7.747-23.788L-7.747-24.069L-6.670-24.144L-6.670-19.960Q-6.670-19.772-6.616-19.689Q-6.561-19.605-6.460-19.586Q-6.359-19.567-6.144-19.567L-6.144-19.287L-7.251-19.219L-7.251-19.636Q-7.668-19.219-8.294-19.219Q-8.725-19.219-9.097-19.431Q-9.470-19.642-9.690-20.003Q-9.911-20.364-9.911-20.798M-8.236-19.441Q-8.027-19.441-7.841-19.513Q-7.655-19.584-7.501-19.721Q-7.347-19.858-7.251-20.036L-7.251-21.645Q-7.337-21.792-7.482-21.912Q-7.627-22.032-7.797-22.091Q-7.966-22.151-8.147-22.151Q-8.707-22.151-8.976-21.762Q-9.244-21.372-9.244-20.791Q-9.244-20.220-9.010-19.830Q-8.776-19.441-8.236-19.441M-5.495-20.798Q-5.495-21.136-5.354-21.427Q-5.214-21.717-4.970-21.931Q-4.726-22.144-4.421-22.259Q-4.117-22.373-3.792-22.373Q-3.522-22.373-3.259-22.274Q-2.996-22.175-2.805-21.997L-2.805-23.395Q-2.805-23.665-2.912-23.727Q-3.020-23.788-3.331-23.788L-3.331-24.069L-2.254-24.144L-2.254-19.960Q-2.254-19.772-2.200-19.689Q-2.145-19.605-2.044-19.586Q-1.943-19.567-1.728-19.567L-1.728-19.287L-2.835-19.219L-2.835-19.636Q-3.252-19.219-3.878-19.219Q-4.309-19.219-4.681-19.431Q-5.054-19.642-5.274-20.003Q-5.495-20.364-5.495-20.798M-3.820-19.441Q-3.611-19.441-3.425-19.513Q-3.239-19.584-3.085-19.721Q-2.931-19.858-2.835-20.036L-2.835-21.645Q-2.921-21.792-3.066-21.912Q-3.211-22.032-3.381-22.091Q-3.550-22.151-3.731-22.151Q-4.291-22.151-4.560-21.762Q-4.828-21.372-4.828-20.791Q-4.828-20.220-4.594-19.830Q-4.360-19.441-3.820-19.441M0.671-19.287L-1.065-19.287L-1.065-19.567Q-0.836-19.567-0.687-19.601Q-0.539-19.636-0.539-19.776L-0.539-21.625Q-0.539-21.895-0.646-21.956Q-0.754-22.018-1.065-22.018L-1.065-22.298L-0.036-22.373L-0.036-21.666Q0.094-21.974 0.336-22.173Q0.579-22.373 0.897-22.373Q1.116-22.373 1.287-22.249Q1.458-22.124 1.458-21.912Q1.458-21.775 1.358-21.676Q1.259-21.577 1.126-21.577Q0.989-21.577 0.890-21.676Q0.791-21.775 0.791-21.912Q0.791-22.052 0.890-22.151Q0.600-22.151 0.400-21.955Q0.200-21.758 0.107-21.464Q0.015-21.170 0.015-20.890L0.015-19.776Q0.015-19.567 0.671-19.567\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M110.716-19.287h51.66\"\u002F>\u003Cpath stroke=\"none\" d=\"m164.376-19.287-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(170.245 -3.533)\">\u003Cpath d=\"M-38.288-19.287L-39.922-19.287L-39.922-19.567Q-39.693-19.567-39.544-19.601Q-39.395-19.636-39.395-19.776L-39.395-21.625Q-39.395-21.895-39.503-21.956Q-39.611-22.018-39.922-22.018L-39.922-22.298L-38.862-22.373L-38.862-21.724Q-38.691-22.032-38.387-22.203Q-38.083-22.373-37.738-22.373Q-37.338-22.373-37.061-22.233Q-36.784-22.093-36.699-21.745Q-36.531-22.038-36.232-22.206Q-35.933-22.373-35.588-22.373Q-35.082-22.373-34.798-22.150Q-34.514-21.926-34.514-21.430L-34.514-19.776Q-34.514-19.639-34.366-19.603Q-34.217-19.567-33.992-19.567L-33.992-19.287L-35.622-19.287L-35.622-19.567Q-35.396-19.567-35.246-19.603Q-35.096-19.639-35.096-19.776L-35.096-21.416Q-35.096-21.751-35.215-21.951Q-35.335-22.151-35.649-22.151Q-35.919-22.151-36.153-22.015Q-36.388-21.878-36.526-21.644Q-36.664-21.410-36.664-21.136L-36.664-19.776Q-36.664-19.639-36.516-19.603Q-36.367-19.567-36.141-19.567L-36.141-19.287L-37.772-19.287L-37.772-19.567Q-37.543-19.567-37.394-19.601Q-37.245-19.636-37.245-19.776L-37.245-21.416Q-37.245-21.751-37.365-21.951Q-37.485-22.151-37.799-22.151Q-38.069-22.151-38.303-22.015Q-38.537-21.878-38.676-21.644Q-38.814-21.410-38.814-21.136L-38.814-19.776Q-38.814-19.639-38.664-19.603Q-38.513-19.567-38.288-19.567L-38.288-19.287M-31.787-19.287L-33.339-19.287L-33.339-19.567Q-33.113-19.567-32.964-19.601Q-32.816-19.636-32.816-19.776L-32.816-21.625Q-32.816-21.813-32.864-21.897Q-32.911-21.980-33.009-21.999Q-33.106-22.018-33.318-22.018L-33.318-22.298L-32.262-22.373L-32.262-19.776Q-32.262-19.636-32.130-19.601Q-31.999-19.567-31.787-19.567L-31.787-19.287M-33.058-23.594Q-33.058-23.765-32.935-23.884Q-32.812-24.004-32.641-24.004Q-32.474-24.004-32.351-23.884Q-32.228-23.765-32.228-23.594Q-32.228-23.419-32.351-23.296Q-32.474-23.173-32.641-23.173Q-32.812-23.173-32.935-23.296Q-33.058-23.419-33.058-23.594M-31.141-19.294L-31.141-20.357Q-31.141-20.381-31.114-20.408Q-31.086-20.435-31.062-20.435L-30.953-20.435Q-30.888-20.435-30.874-20.377Q-30.779-19.943-30.533-19.692Q-30.286-19.441-29.873-19.441Q-29.531-19.441-29.278-19.574Q-29.025-19.707-29.025-20.015Q-29.025-20.172-29.119-20.287Q-29.213-20.401-29.352-20.470Q-29.490-20.538-29.658-20.576L-30.239-20.675Q-30.594-20.743-30.867-20.964Q-31.141-21.184-31.141-21.526Q-31.141-21.775-31.030-21.950Q-30.919-22.124-30.732-22.223Q-30.546-22.322-30.331-22.365Q-30.116-22.408-29.873-22.408Q-29.459-22.408-29.179-22.226L-28.964-22.401Q-28.953-22.404-28.947-22.406Q-28.940-22.408-28.930-22.408L-28.878-22.408Q-28.851-22.408-28.827-22.384Q-28.803-22.360-28.803-22.332L-28.803-21.485Q-28.803-21.464-28.827-21.437Q-28.851-21.410-28.878-21.410L-28.991-21.410Q-29.018-21.410-29.044-21.435Q-29.070-21.461-29.070-21.485Q-29.070-21.721-29.176-21.885Q-29.282-22.049-29.464-22.131Q-29.647-22.213-29.880-22.213Q-30.208-22.213-30.464-22.110Q-30.721-22.008-30.721-21.731Q-30.721-21.536-30.538-21.427Q-30.355-21.317-30.126-21.276L-29.552-21.170Q-29.305-21.122-29.092-20.994Q-28.878-20.866-28.742-20.663Q-28.605-20.459-28.605-20.210Q-28.605-19.697-28.971-19.458Q-29.336-19.219-29.873-19.219Q-30.368-19.219-30.700-19.513L-30.967-19.239Q-30.987-19.219-31.014-19.219L-31.062-19.219Q-31.086-19.219-31.114-19.246Q-31.141-19.273-31.141-19.294M-27.976-19.294L-27.976-20.357Q-27.976-20.381-27.949-20.408Q-27.921-20.435-27.897-20.435L-27.788-20.435Q-27.723-20.435-27.709-20.377Q-27.614-19.943-27.367-19.692Q-27.121-19.441-26.708-19.441Q-26.366-19.441-26.113-19.574Q-25.860-19.707-25.860-20.015Q-25.860-20.172-25.954-20.287Q-26.048-20.401-26.187-20.470Q-26.325-20.538-26.492-20.576L-27.074-20.675Q-27.429-20.743-27.702-20.964Q-27.976-21.184-27.976-21.526Q-27.976-21.775-27.865-21.950Q-27.754-22.124-27.567-22.223Q-27.381-22.322-27.166-22.365Q-26.951-22.408-26.708-22.408Q-26.294-22.408-26.014-22.226L-25.799-22.401Q-25.788-22.404-25.782-22.406Q-25.775-22.408-25.764-22.408L-25.713-22.408Q-25.686-22.408-25.662-22.384Q-25.638-22.360-25.638-22.332L-25.638-21.485Q-25.638-21.464-25.662-21.437Q-25.686-21.410-25.713-21.410L-25.826-21.410Q-25.853-21.410-25.879-21.435Q-25.905-21.461-25.905-21.485Q-25.905-21.721-26.011-21.885Q-26.117-22.049-26.299-22.131Q-26.482-22.213-26.715-22.213Q-27.043-22.213-27.299-22.110Q-27.555-22.008-27.555-21.731Q-27.555-21.536-27.373-21.427Q-27.190-21.317-26.961-21.276L-26.387-21.170Q-26.140-21.122-25.927-20.994Q-25.713-20.866-25.576-20.663Q-25.440-20.459-25.440-20.210Q-25.440-19.697-25.805-19.458Q-26.171-19.219-26.708-19.219Q-27.203-19.219-27.535-19.513L-27.802-19.239Q-27.822-19.219-27.849-19.219L-27.897-19.219Q-27.921-19.219-27.949-19.246Q-27.976-19.273-27.976-19.294\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M221.681-19.287h48.815\"\u002F>\u003Cpath stroke=\"none\" d=\"m272.496-19.287-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(268.952 -5.31)\">\u003Cpath d=\"M-40.214-17.744L-40.214-17.830Q-40.171-18.049-39.964-18.072L-39.542-18.072L-39.542-22.174L-39.964-22.174Q-40.171-22.197-40.214-22.416L-40.214-22.502Q-40.167-22.713-39.964-22.736L-39.147-22.736Q-38.952-22.717-38.901-22.502L-38.901-22.432Q-38.690-22.599-38.427-22.687Q-38.163-22.775-37.893-22.775Q-37.554-22.775-37.257-22.631Q-36.960-22.486-36.745-22.234Q-36.530-21.982-36.415-21.670Q-36.300-21.357-36.300-21.014Q-36.300-20.549-36.526-20.139Q-36.753-19.728-37.139-19.488Q-37.526-19.248-37.995-19.248Q-38.514-19.248-38.901-19.615L-38.901-18.072L-38.475-18.072Q-38.268-18.049-38.229-17.830L-38.229-17.744Q-38.268-17.533-38.475-17.510L-39.964-17.510Q-40.167-17.533-40.214-17.744M-38.038-19.807Q-37.729-19.807-37.479-19.976Q-37.229-20.146-37.085-20.428Q-36.940-20.709-36.940-21.014Q-36.940-21.303-37.065-21.582Q-37.190-21.861-37.423-22.039Q-37.655-22.217-37.956-22.217Q-38.276-22.217-38.538-22.031Q-38.800-21.846-38.901-21.545L-38.901-20.693Q-38.811-20.326-38.591-20.066Q-38.370-19.807-38.038-19.807M-35.968-19.525L-35.968-19.615Q-35.925-19.822-35.718-19.846L-35.296-19.846L-35.296-23.615L-35.718-23.615Q-35.925-23.639-35.968-23.853L-35.968-23.943Q-35.925-24.150-35.718-24.174L-34.901-24.174Q-34.706-24.150-34.655-23.943L-34.655-22.392Q-34.194-22.775-33.596-22.775Q-33.249-22.775-33.011-22.635Q-32.772-22.494-32.657-22.236Q-32.542-21.978-32.542-21.623L-32.542-19.846L-32.116-19.846Q-31.909-19.822-31.870-19.615L-31.870-19.525Q-31.909-19.310-32.116-19.287L-33.511-19.287Q-33.706-19.310-33.757-19.525L-33.757-19.615Q-33.706-19.826-33.511-19.846L-33.182-19.846L-33.182-21.592Q-33.182-21.900-33.272-22.058Q-33.362-22.217-33.655-22.217Q-33.925-22.217-34.153-22.086Q-34.382-21.955-34.518-21.726Q-34.655-21.498-34.655-21.232L-34.655-19.846L-34.229-19.846Q-34.022-19.822-33.983-19.615L-33.983-19.525Q-34.022-19.310-34.229-19.287L-35.718-19.287Q-35.925-19.310-35.968-19.525M-31.448-18.166Q-31.448-18.275-31.397-18.367Q-31.346-18.459-31.255-18.510Q-31.163-18.560-31.057-18.560Q-30.948-18.560-30.856-18.510Q-30.764-18.459-30.714-18.367Q-30.663-18.275-30.663-18.166L-30.807-18.166Q-30.807-18.029-30.784-18.029Q-30.526-18.029-30.339-18.221Q-30.151-18.412-30.065-18.678L-29.854-19.287L-30.991-22.174L-31.319-22.174Q-31.514-22.197-31.569-22.416L-31.569-22.502Q-31.511-22.713-31.319-22.736L-30.159-22.736Q-29.964-22.713-29.913-22.502L-29.913-22.416Q-29.964-22.197-30.159-22.174L-30.425-22.174Q-30.089-21.326-29.845-20.672Q-29.600-20.017-29.600-19.928L-29.593-19.928Q-29.593-19.986-29.501-20.279Q-29.409-20.572-29.216-21.156Q-29.022-21.740-28.882-22.174L-29.159-22.174Q-29.370-22.197-29.409-22.416L-29.409-22.502Q-29.358-22.717-29.159-22.736L-28.007-22.736Q-27.800-22.713-27.761-22.502L-27.761-22.416Q-27.800-22.197-28.007-22.174L-28.327-22.174L-29.503-18.678Q-29.671-18.178-29.997-17.824Q-30.323-17.471-30.784-17.471Q-31.057-17.471-31.253-17.682Q-31.448-17.892-31.448-18.166M-26.960-19.486L-26.960-20.400Q-26.932-20.607-26.721-20.631L-26.554-20.631Q-26.389-20.607-26.331-20.447Q-26.128-19.807-25.401-19.807Q-25.194-19.807-24.966-19.842Q-24.737-19.877-24.569-19.992Q-24.401-20.107-24.401-20.310Q-24.401-20.521-24.624-20.635Q-24.846-20.748-25.120-20.791L-25.819-20.904Q-26.960-21.115-26.960-21.838Q-26.960-22.127-26.815-22.316Q-26.671-22.506-26.430-22.613Q-26.190-22.721-25.934-22.760Q-25.679-22.799-25.401-22.799Q-25.151-22.799-24.958-22.769Q-24.764-22.740-24.600-22.662Q-24.522-22.779-24.393-22.799L-24.315-22.799Q-24.218-22.787-24.155-22.724Q-24.093-22.662-24.081-22.568L-24.081-21.861Q-24.093-21.767-24.155-21.701Q-24.218-21.635-24.315-21.623L-24.483-21.623Q-24.577-21.635-24.643-21.701Q-24.710-21.767-24.721-21.861Q-24.721-22.240-25.417-22.240Q-25.764-22.240-26.083-22.158Q-26.401-22.076-26.401-21.830Q-26.401-21.564-25.729-21.455L-25.026-21.334Q-24.542-21.252-24.192-21.004Q-23.843-20.756-23.843-20.310Q-23.843-19.920-24.079-19.678Q-24.315-19.435-24.665-19.342Q-25.014-19.248-25.401-19.248Q-25.979-19.248-26.378-19.502Q-26.448-19.377-26.497-19.320Q-26.546-19.264-26.651-19.248L-26.721-19.248Q-26.936-19.271-26.960-19.486\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(268.952 -5.31)\">\u003Cpath d=\"M-20.114-20.119Q-20.114-20.603-19.712-20.898Q-19.309-21.193-18.759-21.312Q-18.208-21.432-17.716-21.432L-17.716-21.721Q-17.716-21.947-17.831-22.154Q-17.946-22.361-18.143-22.480Q-18.341-22.599-18.571-22.599Q-18.997-22.599-19.282-22.494Q-19.212-22.467-19.165-22.412Q-19.118-22.357-19.093-22.287Q-19.067-22.217-19.067-22.142Q-19.067-22.037-19.118-21.945Q-19.169-21.853-19.261-21.803Q-19.352-21.752-19.458-21.752Q-19.563-21.752-19.655-21.803Q-19.747-21.853-19.798-21.945Q-19.848-22.037-19.848-22.142Q-19.848-22.560-19.460-22.707Q-19.071-22.853-18.571-22.853Q-18.239-22.853-17.886-22.723Q-17.532-22.592-17.304-22.338Q-17.075-22.084-17.075-21.736L-17.075-19.935Q-17.075-19.803-17.003-19.693Q-16.930-19.584-16.802-19.584Q-16.677-19.584-16.608-19.689Q-16.540-19.795-16.540-19.935L-16.540-20.447L-16.259-20.447L-16.259-19.935Q-16.259-19.732-16.376-19.574Q-16.493-19.416-16.675-19.332Q-16.856-19.248-17.059-19.248Q-17.290-19.248-17.442-19.420Q-17.595-19.592-17.626-19.822Q-17.786-19.541-18.095-19.375Q-18.403-19.209-18.755-19.209Q-19.266-19.209-19.690-19.432Q-20.114-19.654-20.114-20.119M-19.427-20.119Q-19.427-19.834-19.200-19.648Q-18.973-19.463-18.680-19.463Q-18.434-19.463-18.210-19.580Q-17.985-19.697-17.850-19.900Q-17.716-20.103-17.716-20.357L-17.716-21.189Q-17.981-21.189-18.266-21.135Q-18.552-21.080-18.823-20.951Q-19.095-20.822-19.261-20.615Q-19.427-20.408-19.427-20.119M-14.149-19.209Q-14.630-19.209-15.038-19.453Q-15.446-19.697-15.684-20.111Q-15.923-20.525-15.923-21.014Q-15.923-21.506-15.665-21.922Q-15.407-22.338-14.975-22.576Q-14.544-22.814-14.052-22.814Q-13.430-22.814-12.981-22.377L-12.981-24.006Q-12.981-24.221-13.044-24.316Q-13.106-24.412-13.223-24.433Q-13.341-24.455-13.587-24.455L-13.587-24.752L-12.364-24.838L-12.364-20.029Q-12.364-19.818-12.302-19.723Q-12.239-19.627-12.122-19.605Q-12.005-19.584-11.755-19.584L-11.755-19.287L-13.005-19.209L-13.005-19.693Q-13.470-19.209-14.149-19.209M-14.083-19.463Q-13.743-19.463-13.450-19.654Q-13.157-19.846-13.005-20.142L-13.005-21.974Q-13.153-22.248-13.415-22.404Q-13.677-22.560-13.989-22.560Q-14.614-22.560-14.897-22.113Q-15.180-21.666-15.180-21.006Q-15.180-20.361-14.929-19.912Q-14.677-19.463-14.083-19.463M-9.430-19.209Q-9.911-19.209-10.319-19.453Q-10.727-19.697-10.966-20.111Q-11.204-20.525-11.204-21.014Q-11.204-21.506-10.946-21.922Q-10.688-22.338-10.257-22.576Q-9.825-22.814-9.333-22.814Q-8.712-22.814-8.262-22.377L-8.262-24.006Q-8.262-24.221-8.325-24.316Q-8.387-24.412-8.505-24.433Q-8.622-24.455-8.868-24.455L-8.868-24.752L-7.645-24.838L-7.645-20.029Q-7.645-19.818-7.583-19.723Q-7.520-19.627-7.403-19.605Q-7.286-19.584-7.036-19.584L-7.036-19.287L-8.286-19.209L-8.286-19.693Q-8.751-19.209-9.430-19.209M-9.364-19.463Q-9.024-19.463-8.731-19.654Q-8.438-19.846-8.286-20.142L-8.286-21.974Q-8.434-22.248-8.696-22.404Q-8.958-22.560-9.270-22.560Q-9.895-22.560-10.179-22.113Q-10.462-21.666-10.462-21.006Q-10.462-20.361-10.210-19.912Q-9.958-19.463-9.364-19.463M-4.520-19.287L-6.501-19.287L-6.501-19.584Q-6.231-19.584-6.063-19.629Q-5.895-19.674-5.895-19.846L-5.895-21.982Q-5.895-22.197-5.958-22.293Q-6.020-22.389-6.137-22.410Q-6.255-22.432-6.501-22.432L-6.501-22.728L-5.333-22.814L-5.333-22.029Q-5.255-22.240-5.102-22.426Q-4.950-22.611-4.751-22.713Q-4.552-22.814-4.325-22.814Q-4.079-22.814-3.887-22.670Q-3.696-22.525-3.696-22.295Q-3.696-22.139-3.802-22.029Q-3.907-21.920-4.063-21.920Q-4.220-21.920-4.329-22.029Q-4.438-22.139-4.438-22.295Q-4.438-22.455-4.333-22.560Q-4.657-22.560-4.872-22.332Q-5.087-22.103-5.182-21.764Q-5.278-21.424-5.278-21.119L-5.278-19.846Q-5.278-19.678-5.052-19.631Q-4.825-19.584-4.520-19.584\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M82.063-33.713V-59.32H-40.284v23.607\"\u002F>\u003Cpath stroke=\"none\" d=\"m-40.284-33.713 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(24.141 -44.79)\">\u003Cpath d=\"M-38.288-19.287L-39.922-19.287L-39.922-19.567Q-39.693-19.567-39.544-19.601Q-39.395-19.636-39.395-19.776L-39.395-23.395Q-39.395-23.665-39.503-23.727Q-39.611-23.788-39.922-23.788L-39.922-24.069L-38.842-24.144L-38.842-21.758Q-38.736-21.943-38.558-22.085Q-38.380-22.226-38.172-22.300Q-37.963-22.373-37.738-22.373Q-37.232-22.373-36.948-22.150Q-36.664-21.926-36.664-21.430L-36.664-19.776Q-36.664-19.639-36.516-19.603Q-36.367-19.567-36.141-19.567L-36.141-19.287L-37.772-19.287L-37.772-19.567Q-37.543-19.567-37.394-19.601Q-37.245-19.636-37.245-19.776L-37.245-21.416Q-37.245-21.751-37.365-21.951Q-37.485-22.151-37.799-22.151Q-38.069-22.151-38.303-22.015Q-38.537-21.878-38.676-21.644Q-38.814-21.410-38.814-21.136L-38.814-19.776Q-38.814-19.639-38.664-19.603Q-38.513-19.567-38.288-19.567L-38.288-19.287M-33.937-19.287L-35.489-19.287L-35.489-19.567Q-35.263-19.567-35.114-19.601Q-34.966-19.636-34.966-19.776L-34.966-21.625Q-34.966-21.813-35.013-21.897Q-35.061-21.980-35.159-21.999Q-35.256-22.018-35.468-22.018L-35.468-22.298L-34.412-22.373L-34.412-19.776Q-34.412-19.636-34.280-19.601Q-34.149-19.567-33.937-19.567L-33.937-19.287M-35.208-23.594Q-35.208-23.765-35.085-23.884Q-34.962-24.004-34.791-24.004Q-34.624-24.004-34.501-23.884Q-34.378-23.765-34.378-23.594Q-34.378-23.419-34.501-23.296Q-34.624-23.173-34.791-23.173Q-34.962-23.173-35.085-23.296Q-35.208-23.419-35.208-23.594M-32.764-20.128L-32.764-22.025L-33.404-22.025L-33.404-22.247Q-33.086-22.247-32.869-22.457Q-32.652-22.667-32.551-22.977Q-32.450-23.286-32.450-23.594L-32.183-23.594L-32.183-22.305L-31.107-22.305L-31.107-22.025L-32.183-22.025L-32.183-20.141Q-32.183-19.865-32.079-19.666Q-31.975-19.468-31.715-19.468Q-31.558-19.468-31.452-19.572Q-31.346-19.677-31.296-19.830Q-31.247-19.984-31.247-20.141L-31.247-20.555L-30.980-20.555L-30.980-20.128Q-30.980-19.902-31.079-19.692Q-31.179-19.482-31.363-19.350Q-31.548-19.219-31.777-19.219Q-32.214-19.219-32.489-19.456Q-32.764-19.694-32.764-20.128M-29.770-19.707Q-29.770-19.875-29.647-19.998Q-29.524-20.121-29.350-20.121Q-29.182-20.121-29.059-19.998Q-28.936-19.875-28.936-19.707Q-28.936-19.533-29.059-19.410Q-29.182-19.287-29.350-19.287Q-29.524-19.287-29.647-19.410Q-29.770-19.533-29.770-19.707M-29.770-21.891Q-29.770-22.059-29.647-22.182Q-29.524-22.305-29.350-22.305Q-29.182-22.305-29.059-22.182Q-28.936-22.059-28.936-21.891Q-28.936-21.717-29.059-21.594Q-29.182-21.471-29.350-21.471Q-29.524-21.471-29.647-21.594Q-29.770-21.717-29.770-21.891\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.141 -44.79)\">\u003Cpath d=\"M-23.818-20.128L-23.818-22.025L-24.457-22.025L-24.457-22.247Q-24.139-22.247-23.922-22.457Q-23.705-22.667-23.605-22.977Q-23.504-23.286-23.504-23.594L-23.237-23.594L-23.237-22.305L-22.160-22.305L-22.160-22.025L-23.237-22.025L-23.237-20.141Q-23.237-19.865-23.133-19.666Q-23.029-19.468-22.769-19.468Q-22.612-19.468-22.506-19.572Q-22.400-19.677-22.350-19.830Q-22.301-19.984-22.301-20.141L-22.301-20.555L-22.034-20.555L-22.034-20.128Q-22.034-19.902-22.133-19.692Q-22.232-19.482-22.417-19.350Q-22.601-19.219-22.830-19.219Q-23.268-19.219-23.543-19.456Q-23.818-19.694-23.818-20.128M-19.542-19.287L-21.176-19.287L-21.176-19.567Q-20.947-19.567-20.798-19.601Q-20.650-19.636-20.650-19.776L-20.650-23.395Q-20.650-23.665-20.757-23.727Q-20.865-23.788-21.176-23.788L-21.176-24.069L-20.096-24.144L-20.096-21.758Q-19.990-21.943-19.812-22.085Q-19.635-22.226-19.426-22.300Q-19.218-22.373-18.992-22.373Q-18.486-22.373-18.202-22.150Q-17.919-21.926-17.919-21.430L-17.919-19.776Q-17.919-19.639-17.770-19.603Q-17.621-19.567-17.396-19.567L-17.396-19.287L-19.026-19.287L-19.026-19.567Q-18.797-19.567-18.649-19.601Q-18.500-19.636-18.500-19.776L-18.500-21.416Q-18.500-21.751-18.619-21.951Q-18.739-22.151-19.054-22.151Q-19.324-22.151-19.558-22.015Q-19.792-21.878-19.930-21.644Q-20.069-21.410-20.069-21.136L-20.069-19.776Q-20.069-19.639-19.918-19.603Q-19.768-19.567-19.542-19.567L-19.542-19.287M-16.849-20.822Q-16.849-21.143-16.724-21.432Q-16.599-21.721-16.374-21.944Q-16.148-22.168-15.853-22.288Q-15.557-22.408-15.239-22.408Q-14.911-22.408-14.649-22.308Q-14.388-22.209-14.212-22.027Q-14.036-21.844-13.942-21.586Q-13.848-21.328-13.848-20.996Q-13.848-20.904-13.930-20.883L-16.186-20.883L-16.186-20.822Q-16.186-20.234-15.902-19.851Q-15.618-19.468-15.051-19.468Q-14.730-19.468-14.461-19.661Q-14.193-19.854-14.104-20.169Q-14.097-20.210-14.022-20.224L-13.930-20.224Q-13.848-20.200-13.848-20.128Q-13.848-20.121-13.855-20.094Q-13.968-19.697-14.338-19.458Q-14.709-19.219-15.133-19.219Q-15.571-19.219-15.971-19.427Q-16.370-19.636-16.610-20.003Q-16.849-20.370-16.849-20.822M-16.179-21.092L-14.364-21.092Q-14.364-21.369-14.461-21.621Q-14.559-21.874-14.757-22.030Q-14.955-22.185-15.239-22.185Q-15.516-22.185-15.730-22.027Q-15.943-21.868-16.061-21.613Q-16.179-21.358-16.179-21.092\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.141 -44.79)\">\u003Cpath d=\"M-9.165-19.314L-10.146-21.813Q-10.207-21.956-10.325-21.991Q-10.443-22.025-10.659-22.025L-10.659-22.305L-9.179-22.305L-9.179-22.025Q-9.558-22.025-9.558-21.864Q-9.558-21.854-9.544-21.813L-8.830-19.981L-8.157-21.686Q-8.187-21.758-8.187-21.786Q-8.187-21.813-8.215-21.813Q-8.276-21.960-8.394-21.992Q-8.512-22.025-8.724-22.025L-8.724-22.305L-7.326-22.305L-7.326-22.025Q-7.702-22.025-7.702-21.864Q-7.702-21.833-7.695-21.813L-6.940-19.875L-6.253-21.625Q-6.232-21.676-6.232-21.731Q-6.232-21.871-6.345-21.948Q-6.458-22.025-6.598-22.025L-6.598-22.305L-5.378-22.305L-5.378-22.025Q-5.583-22.025-5.738-21.919Q-5.894-21.813-5.966-21.625L-6.871-19.314Q-6.906-19.219-7.018-19.219L-7.087-19.219Q-7.196-19.219-7.234-19.314L-8.016-21.317L-8.803-19.314Q-8.837-19.219-8.950-19.219L-9.018-19.219Q-9.127-19.219-9.165-19.314\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.141 -44.79)\">\u003Cpath d=\"M-5.101-20.770Q-5.101-21.112-4.966-21.411Q-4.831-21.710-4.591-21.934Q-4.352-22.158-4.034-22.283Q-3.716-22.408-3.385-22.408Q-2.940-22.408-2.541-22.192Q-2.141-21.977-1.906-21.599Q-1.672-21.222-1.672-20.770Q-1.672-20.429-1.814-20.145Q-1.956-19.861-2.200-19.654Q-2.445-19.448-2.754-19.333Q-3.063-19.219-3.385-19.219Q-3.815-19.219-4.217-19.420Q-4.619-19.622-4.860-19.974Q-5.101-20.326-5.101-20.770M-3.385-19.468Q-2.783-19.468-2.559-19.846Q-2.335-20.224-2.335-20.856Q-2.335-21.468-2.570-21.827Q-2.804-22.185-3.385-22.185Q-4.437-22.185-4.437-20.856Q-4.437-20.224-4.212-19.846Q-3.986-19.468-3.385-19.468M0.672-19.287L-1.064-19.287L-1.064-19.567Q-0.835-19.567-0.686-19.601Q-0.538-19.636-0.538-19.776L-0.538-21.625Q-0.538-21.895-0.645-21.956Q-0.753-22.018-1.064-22.018L-1.064-22.298L-0.035-22.373L-0.035-21.666Q0.095-21.974 0.337-22.173Q0.580-22.373 0.898-22.373Q1.117-22.373 1.288-22.249Q1.459-22.124 1.459-21.912Q1.459-21.775 1.359-21.676Q1.260-21.577 1.127-21.577Q0.990-21.577 0.891-21.676Q0.792-21.775 0.792-21.912Q0.792-22.052 0.891-22.151Q0.601-22.151 0.401-21.955Q0.201-21.758 0.108-21.464Q0.016-21.170 0.016-20.890L0.016-19.776Q0.016-19.567 0.672-19.567L0.672-19.287M2.043-20.798Q2.043-21.136 2.183-21.427Q2.323-21.717 2.568-21.931Q2.812-22.144 3.116-22.259Q3.420-22.373 3.745-22.373Q4.015-22.373 4.278-22.274Q4.542-22.175 4.733-21.997L4.733-23.395Q4.733-23.665 4.625-23.727Q4.518-23.788 4.207-23.788L4.207-24.069L5.283-24.144L5.283-19.960Q5.283-19.772 5.338-19.689Q5.393-19.605 5.493-19.586Q5.594-19.567 5.810-19.567L5.810-19.287L4.702-19.219L4.702-19.636Q4.285-19.219 3.660-19.219Q3.229-19.219 2.856-19.431Q2.484-19.642 2.263-20.003Q2.043-20.364 2.043-20.798M3.718-19.441Q3.926-19.441 4.113-19.513Q4.299-19.584 4.453-19.721Q4.606-19.858 4.702-20.036L4.702-21.645Q4.617-21.792 4.471-21.912Q4.326-22.032 4.157-22.091Q3.988-22.151 3.807-22.151Q3.246-22.151 2.978-21.762Q2.709-21.372 2.709-20.791Q2.709-20.220 2.944-19.830Q3.178-19.441 3.718-19.441\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.141 -44.79)\">\u003Cpath d=\"M10.912-19.287L9.176-19.287L9.176-19.567Q9.405-19.567 9.554-19.601Q9.702-19.636 9.702-19.776L9.702-21.625Q9.702-21.895 9.595-21.956Q9.487-22.018 9.176-22.018L9.176-22.298L10.205-22.373L10.205-21.666Q10.335-21.974 10.577-22.173Q10.820-22.373 11.138-22.373Q11.357-22.373 11.528-22.249Q11.699-22.124 11.699-21.912Q11.699-21.775 11.599-21.676Q11.500-21.577 11.367-21.577Q11.230-21.577 11.131-21.676Q11.032-21.775 11.032-21.912Q11.032-22.052 11.131-22.151Q10.841-22.151 10.641-21.955Q10.441-21.758 10.348-21.464Q10.256-21.170 10.256-20.890L10.256-19.776Q10.256-19.567 10.912-19.567L10.912-19.287M12.242-20.822Q12.242-21.143 12.367-21.432Q12.492-21.721 12.717-21.944Q12.943-22.168 13.238-22.288Q13.534-22.408 13.852-22.408Q14.180-22.408 14.442-22.308Q14.703-22.209 14.879-22.027Q15.055-21.844 15.149-21.586Q15.243-21.328 15.243-20.996Q15.243-20.904 15.161-20.883L12.905-20.883L12.905-20.822Q12.905-20.234 13.189-19.851Q13.473-19.468 14.040-19.468Q14.361-19.468 14.629-19.661Q14.898-19.854 14.987-20.169Q14.994-20.210 15.069-20.224L15.161-20.224Q15.243-20.200 15.243-20.128Q15.243-20.121 15.236-20.094Q15.123-19.697 14.753-19.458Q14.382-19.219 13.958-19.219Q13.520-19.219 13.120-19.427Q12.721-19.636 12.481-20.003Q12.242-20.370 12.242-20.822M12.912-21.092L14.727-21.092Q14.727-21.369 14.629-21.621Q14.532-21.874 14.334-22.030Q14.136-22.185 13.852-22.185Q13.575-22.185 13.361-22.027Q13.148-21.868 13.030-21.613Q12.912-21.358 12.912-21.092M16.357-20.128L16.357-22.025L15.718-22.025L15.718-22.247Q16.036-22.247 16.253-22.457Q16.470-22.667 16.571-22.977Q16.672-23.286 16.672-23.594L16.938-23.594L16.938-22.305L18.015-22.305L18.015-22.025L16.938-22.025L16.938-20.141Q16.938-19.865 17.043-19.666Q17.147-19.468 17.407-19.468Q17.564-19.468 17.670-19.572Q17.776-19.677 17.825-19.830Q17.875-19.984 17.875-20.141L17.875-20.555L18.141-20.555L18.141-20.128Q18.141-19.902 18.042-19.692Q17.943-19.482 17.759-19.350Q17.574-19.219 17.345-19.219Q16.908-19.219 16.632-19.456Q16.357-19.694 16.357-20.128M19.526-20.121L19.526-21.625Q19.526-21.895 19.418-21.956Q19.310-22.018 18.999-22.018L18.999-22.298L20.107-22.373L20.107-20.141L20.107-20.121Q20.107-19.841 20.158-19.697Q20.209-19.554 20.351-19.497Q20.493-19.441 20.780-19.441Q21.033-19.441 21.238-19.581Q21.443-19.721 21.559-19.947Q21.676-20.172 21.676-20.422L21.676-21.625Q21.676-21.895 21.568-21.956Q21.460-22.018 21.149-22.018L21.149-22.298L22.257-22.373L22.257-19.960Q22.257-19.769 22.310-19.687Q22.363-19.605 22.463-19.586Q22.564-19.567 22.780-19.567L22.780-19.287L21.703-19.219L21.703-19.783Q21.594-19.601 21.448-19.478Q21.303-19.355 21.117-19.287Q20.931-19.219 20.729-19.219Q19.526-19.219 19.526-20.121M25.118-19.287L23.381-19.287L23.381-19.567Q23.610-19.567 23.759-19.601Q23.908-19.636 23.908-19.776L23.908-21.625Q23.908-21.895 23.800-21.956Q23.692-22.018 23.381-22.018L23.381-22.298L24.410-22.373L24.410-21.666Q24.540-21.974 24.783-22.173Q25.025-22.373 25.343-22.373Q25.562-22.373 25.733-22.249Q25.904-22.124 25.904-21.912Q25.904-21.775 25.805-21.676Q25.705-21.577 25.572-21.577Q25.435-21.577 25.336-21.676Q25.237-21.775 25.237-21.912Q25.237-22.052 25.336-22.151Q25.046-22.151 24.846-21.955Q24.646-21.758 24.554-21.464Q24.461-21.170 24.461-20.890L24.461-19.776Q24.461-19.567 25.118-19.567L25.118-19.287M28.170-19.287L26.536-19.287L26.536-19.567Q26.765-19.567 26.914-19.601Q27.062-19.636 27.062-19.776L27.062-21.625Q27.062-21.895 26.955-21.956Q26.847-22.018 26.536-22.018L26.536-22.298L27.596-22.373L27.596-21.724Q27.766-22.032 28.071-22.203Q28.375-22.373 28.720-22.373Q29.226-22.373 29.510-22.150Q29.793-21.926 29.793-21.430L29.793-19.776Q29.793-19.639 29.942-19.603Q30.091-19.567 30.316-19.567L30.316-19.287L28.686-19.287L28.686-19.567Q28.915-19.567 29.064-19.601Q29.212-19.636 29.212-19.776L29.212-21.416Q29.212-21.751 29.093-21.951Q28.973-22.151 28.659-22.151Q28.389-22.151 28.154-22.015Q27.920-21.878 27.782-21.644Q27.643-21.410 27.643-21.136L27.643-19.776Q27.643-19.639 27.794-19.603Q27.944-19.567 28.170-19.567L28.170-19.287M30.904-19.294L30.904-20.357Q30.904-20.381 30.931-20.408Q30.959-20.435 30.983-20.435L31.092-20.435Q31.157-20.435 31.171-20.377Q31.266-19.943 31.513-19.692Q31.759-19.441 32.172-19.441Q32.514-19.441 32.767-19.574Q33.020-19.707 33.020-20.015Q33.020-20.172 32.926-20.287Q32.832-20.401 32.693-20.470Q32.555-20.538 32.388-20.576L31.806-20.675Q31.451-20.743 31.178-20.964Q30.904-21.184 30.904-21.526Q30.904-21.775 31.015-21.950Q31.126-22.124 31.313-22.223Q31.499-22.322 31.714-22.365Q31.930-22.408 32.172-22.408Q32.586-22.408 32.866-22.226L33.081-22.401Q33.092-22.404 33.098-22.406Q33.105-22.408 33.116-22.408L33.167-22.408Q33.194-22.408 33.218-22.384Q33.242-22.360 33.242-22.332L33.242-21.485Q33.242-21.464 33.218-21.437Q33.194-21.410 33.167-21.410L33.054-21.410Q33.027-21.410 33.001-21.435Q32.975-21.461 32.975-21.485Q32.975-21.721 32.869-21.885Q32.764-22.049 32.581-22.131Q32.398-22.213 32.165-22.213Q31.837-22.213 31.581-22.110Q31.325-22.008 31.325-21.731Q31.325-21.536 31.507-21.427Q31.690-21.317 31.919-21.276L32.494-21.170Q32.740-21.122 32.953-20.994Q33.167-20.866 33.304-20.663Q33.440-20.459 33.440-20.210Q33.440-19.697 33.075-19.458Q32.709-19.219 32.172-19.219Q31.677-19.219 31.345-19.513L31.078-19.239Q31.058-19.219 31.031-19.219L30.983-19.219Q30.959-19.219 30.931-19.246Q30.904-19.273 30.904-19.294\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M193.028-4.86v31.743\"\u002F>\u003Cpath stroke=\"none\" d=\"m193.028 28.883 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(236.845 33.729)\">\u003Cpath d=\"M-36.063-19.287L-38.801-19.287L-38.801-19.567Q-38.452-19.567-38.115-19.603Q-37.779-19.639-37.779-19.776L-37.779-23.577Q-37.779-23.720-37.867-23.754Q-37.956-23.788-38.141-23.788L-38.500-23.788Q-38.801-23.788-39.016-23.741Q-39.231-23.693-39.388-23.536Q-39.525-23.402-39.585-23.124Q-39.645-22.845-39.682-22.432L-39.949-22.432L-39.802-24.069L-35.068-24.069L-34.921-22.432L-35.188-22.432Q-35.225-22.845-35.282-23.122Q-35.338-23.399-35.482-23.536Q-35.642-23.696-35.854-23.742Q-36.066-23.788-36.370-23.788L-36.722-23.788Q-36.907-23.788-36.996-23.754Q-37.085-23.720-37.085-23.577L-37.085-19.776Q-37.085-19.639-36.748-19.603Q-36.411-19.567-36.063-19.567L-36.063-19.287M-30.232-19.287L-34.200-19.287L-34.200-19.567Q-33.479-19.567-33.479-19.776L-33.479-23.577Q-33.479-23.788-34.200-23.788L-34.200-24.069L-31.886-24.069L-31.886-23.788Q-32.204-23.788-32.496-23.753Q-32.788-23.717-32.788-23.577L-32.788-19.776Q-32.788-19.636-32.700-19.601Q-32.611-19.567-32.423-19.567L-31.801-19.567Q-31.387-19.567-31.108-19.670Q-30.830-19.772-30.664-19.974Q-30.498-20.176-30.416-20.463Q-30.334-20.750-30.290-21.157L-30.023-21.157L-30.232-19.287M-26.257-19.287L-29.230-19.287L-29.230-19.567Q-28.509-19.567-28.509-19.776L-28.509-23.577Q-28.509-23.788-29.230-23.788L-29.230-24.069L-26.472-24.069Q-26.205-24.069-25.899-23.994Q-25.594-23.918-25.334-23.771Q-25.074-23.624-24.912-23.395Q-24.749-23.166-24.749-22.872Q-24.749-22.442-25.136-22.160Q-25.522-21.878-26.004-21.786Q-25.696-21.786-25.347-21.621Q-24.999-21.457-24.770-21.179Q-24.541-20.900-24.541-20.582Q-24.541-20.176-24.804-19.882Q-25.067-19.588-25.465-19.437Q-25.864-19.287-26.257-19.287M-27.867-21.659L-27.867-19.776Q-27.867-19.636-27.778-19.601Q-27.689-19.567-27.501-19.567L-26.472-19.567Q-26.185-19.567-25.908-19.694Q-25.631-19.820-25.460-20.054Q-25.289-20.288-25.289-20.582Q-25.289-20.798-25.371-20.994Q-25.453-21.191-25.604-21.341Q-25.754-21.492-25.951-21.575Q-26.147-21.659-26.363-21.659L-27.867-21.659M-27.867-23.577L-27.867-21.885L-26.684-21.885Q-26.397-21.885-26.117-22.004Q-25.836-22.124-25.657-22.351Q-25.477-22.579-25.477-22.872Q-25.477-23.122-25.616-23.336Q-25.754-23.549-25.983-23.669Q-26.212-23.788-26.472-23.788L-27.501-23.788Q-27.689-23.788-27.778-23.754Q-27.867-23.720-27.867-23.577\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(236.845 33.729)\">\u003Cpath d=\"M-19.350-19.287L-20.984-19.287L-20.984-19.567Q-20.755-19.567-20.606-19.601Q-20.457-19.636-20.457-19.776L-20.457-21.625Q-20.457-21.895-20.565-21.956Q-20.673-22.018-20.984-22.018L-20.984-22.298L-19.924-22.373L-19.924-21.724Q-19.753-22.032-19.449-22.203Q-19.145-22.373-18.800-22.373Q-18.400-22.373-18.123-22.233Q-17.846-22.093-17.761-21.745Q-17.593-22.038-17.294-22.206Q-16.995-22.373-16.650-22.373Q-16.144-22.373-15.860-22.150Q-15.576-21.926-15.576-21.430L-15.576-19.776Q-15.576-19.639-15.428-19.603Q-15.279-19.567-15.054-19.567L-15.054-19.287L-16.684-19.287L-16.684-19.567Q-16.458-19.567-16.308-19.603Q-16.158-19.639-16.158-19.776L-16.158-21.416Q-16.158-21.751-16.277-21.951Q-16.397-22.151-16.711-22.151Q-16.981-22.151-17.215-22.015Q-17.450-21.878-17.588-21.644Q-17.726-21.410-17.726-21.136L-17.726-19.776Q-17.726-19.639-17.578-19.603Q-17.429-19.567-17.203-19.567L-17.203-19.287L-18.834-19.287L-18.834-19.567Q-18.605-19.567-18.456-19.601Q-18.307-19.636-18.307-19.776L-18.307-21.416Q-18.307-21.751-18.427-21.951Q-18.547-22.151-18.861-22.151Q-19.131-22.151-19.365-22.015Q-19.599-21.878-19.738-21.644Q-19.876-21.410-19.876-21.136L-19.876-19.776Q-19.876-19.639-19.726-19.603Q-19.575-19.567-19.350-19.567L-19.350-19.287M-12.849-19.287L-14.401-19.287L-14.401-19.567Q-14.175-19.567-14.026-19.601Q-13.878-19.636-13.878-19.776L-13.878-21.625Q-13.878-21.813-13.926-21.897Q-13.973-21.980-14.071-21.999Q-14.168-22.018-14.380-22.018L-14.380-22.298L-13.324-22.373L-13.324-19.776Q-13.324-19.636-13.192-19.601Q-13.061-19.567-12.849-19.567L-12.849-19.287M-14.120-23.594Q-14.120-23.765-13.997-23.884Q-13.874-24.004-13.703-24.004Q-13.536-24.004-13.413-23.884Q-13.290-23.765-13.290-23.594Q-13.290-23.419-13.413-23.296Q-13.536-23.173-13.703-23.173Q-13.874-23.173-13.997-23.296Q-14.120-23.419-14.120-23.594M-12.203-19.294L-12.203-20.357Q-12.203-20.381-12.176-20.408Q-12.148-20.435-12.124-20.435L-12.015-20.435Q-11.950-20.435-11.936-20.377Q-11.841-19.943-11.595-19.692Q-11.348-19.441-10.935-19.441Q-10.593-19.441-10.340-19.574Q-10.087-19.707-10.087-20.015Q-10.087-20.172-10.181-20.287Q-10.275-20.401-10.414-20.470Q-10.552-20.538-10.720-20.576L-11.301-20.675Q-11.656-20.743-11.929-20.964Q-12.203-21.184-12.203-21.526Q-12.203-21.775-12.092-21.950Q-11.981-22.124-11.794-22.223Q-11.608-22.322-11.393-22.365Q-11.178-22.408-10.935-22.408Q-10.521-22.408-10.241-22.226L-10.026-22.401Q-10.015-22.404-10.009-22.406Q-10.002-22.408-9.992-22.408L-9.940-22.408Q-9.913-22.408-9.889-22.384Q-9.865-22.360-9.865-22.332L-9.865-21.485Q-9.865-21.464-9.889-21.437Q-9.913-21.410-9.940-21.410L-10.053-21.410Q-10.080-21.410-10.106-21.435Q-10.132-21.461-10.132-21.485Q-10.132-21.721-10.238-21.885Q-10.344-22.049-10.526-22.131Q-10.709-22.213-10.942-22.213Q-11.270-22.213-11.526-22.110Q-11.783-22.008-11.783-21.731Q-11.783-21.536-11.600-21.427Q-11.417-21.317-11.188-21.276L-10.614-21.170Q-10.367-21.122-10.154-20.994Q-9.940-20.866-9.804-20.663Q-9.667-20.459-9.667-20.210Q-9.667-19.697-10.033-19.458Q-10.398-19.219-10.935-19.219Q-11.430-19.219-11.762-19.513L-12.029-19.239Q-12.049-19.219-12.076-19.219L-12.124-19.219Q-12.148-19.219-12.176-19.246Q-12.203-19.273-12.203-19.294M-9.038-19.294L-9.038-20.357Q-9.038-20.381-9.011-20.408Q-8.983-20.435-8.959-20.435L-8.850-20.435Q-8.785-20.435-8.771-20.377Q-8.676-19.943-8.429-19.692Q-8.183-19.441-7.770-19.441Q-7.428-19.441-7.175-19.574Q-6.922-19.707-6.922-20.015Q-6.922-20.172-7.016-20.287Q-7.110-20.401-7.249-20.470Q-7.387-20.538-7.554-20.576L-8.136-20.675Q-8.491-20.743-8.764-20.964Q-9.038-21.184-9.038-21.526Q-9.038-21.775-8.927-21.950Q-8.816-22.124-8.629-22.223Q-8.443-22.322-8.228-22.365Q-8.013-22.408-7.770-22.408Q-7.356-22.408-7.076-22.226L-6.861-22.401Q-6.850-22.404-6.844-22.406Q-6.837-22.408-6.826-22.408L-6.775-22.408Q-6.748-22.408-6.724-22.384Q-6.700-22.360-6.700-22.332L-6.700-21.485Q-6.700-21.464-6.724-21.437Q-6.748-21.410-6.775-21.410L-6.888-21.410Q-6.915-21.410-6.941-21.435Q-6.967-21.461-6.967-21.485Q-6.967-21.721-7.073-21.885Q-7.179-22.049-7.361-22.131Q-7.544-22.213-7.777-22.213Q-8.105-22.213-8.361-22.110Q-8.617-22.008-8.617-21.731Q-8.617-21.536-8.435-21.427Q-8.252-21.317-8.023-21.276L-7.449-21.170Q-7.202-21.122-6.989-20.994Q-6.775-20.866-6.638-20.663Q-6.502-20.459-6.502-20.210Q-6.502-19.697-6.867-19.458Q-7.233-19.219-7.770-19.219Q-8.265-19.219-8.597-19.513L-8.864-19.239Q-8.884-19.219-8.911-19.219L-8.959-19.219Q-8.983-19.219-9.011-19.246Q-9.038-19.273-9.038-19.294M-5.473-19.707Q-5.473-19.875-5.350-19.998Q-5.227-20.121-5.053-20.121Q-4.885-20.121-4.762-19.998Q-4.639-19.875-4.639-19.707Q-4.639-19.533-4.762-19.410Q-4.885-19.287-5.053-19.287Q-5.227-19.287-5.350-19.410Q-5.473-19.533-5.473-19.707M-5.473-21.891Q-5.473-22.059-5.350-22.182Q-5.227-22.305-5.053-22.305Q-4.885-22.305-4.762-22.182Q-4.639-22.059-4.639-21.891Q-4.639-21.717-4.762-21.594Q-4.885-21.471-5.053-21.471Q-5.227-21.471-5.350-21.594Q-5.473-21.717-5.473-21.891\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(236.845 33.729)\">\u003Cpath d=\"M1.345-19.314L0.364-21.813Q0.303-21.956 0.185-21.991Q0.067-22.025-0.149-22.025L-0.149-22.305L1.331-22.305L1.331-22.025Q0.952-22.025 0.952-21.864Q0.952-21.854 0.966-21.813L1.680-19.981L2.353-21.686Q2.323-21.758 2.323-21.786Q2.323-21.813 2.295-21.813Q2.234-21.960 2.116-21.992Q1.998-22.025 1.786-22.025L1.786-22.305L3.184-22.305L3.184-22.025Q2.808-22.025 2.808-21.864Q2.808-21.833 2.815-21.813L3.570-19.875L4.257-21.625Q4.278-21.676 4.278-21.731Q4.278-21.871 4.165-21.948Q4.052-22.025 3.912-22.025L3.912-22.305L5.132-22.305L5.132-22.025Q4.927-22.025 4.772-21.919Q4.616-21.813 4.544-21.625L3.639-19.314Q3.604-19.219 3.492-19.219L3.423-19.219Q3.314-19.219 3.276-19.314L2.494-21.317L1.707-19.314Q1.673-19.219 1.560-19.219L1.492-19.219Q1.383-19.219 1.345-19.314\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(236.845 33.729)\">\u003Cpath d=\"M5.509-20.015Q5.509-20.347 5.732-20.574Q5.956-20.801 6.300-20.929Q6.643-21.058 7.016-21.110Q7.388-21.163 7.693-21.163L7.693-21.416Q7.693-21.621 7.585-21.801Q7.477-21.980 7.296-22.083Q7.115-22.185 6.907-22.185Q6.500-22.185 6.264-22.093Q6.353-22.056 6.399-21.972Q6.445-21.888 6.445-21.786Q6.445-21.690 6.399-21.611Q6.353-21.533 6.272-21.488Q6.192-21.444 6.103-21.444Q5.953-21.444 5.852-21.541Q5.751-21.639 5.751-21.786Q5.751-22.408 6.907-22.408Q7.118-22.408 7.368-22.344Q7.617-22.281 7.819-22.162Q8.021-22.042 8.147-21.857Q8.274-21.673 8.274-21.430L8.274-19.854Q8.274-19.738 8.335-19.642Q8.397-19.547 8.510-19.547Q8.619-19.547 8.684-19.641Q8.749-19.735 8.749-19.854L8.749-20.302L9.015-20.302L9.015-19.854Q9.015-19.584 8.788-19.419Q8.561-19.253 8.281-19.253Q8.072-19.253 7.935-19.407Q7.799-19.560 7.775-19.776Q7.628-19.509 7.346-19.364Q7.064-19.219 6.739-19.219Q6.462-19.219 6.178-19.294Q5.895-19.369 5.702-19.548Q5.509-19.728 5.509-20.015M6.124-20.015Q6.124-19.841 6.225-19.711Q6.325-19.581 6.481-19.511Q6.636-19.441 6.801-19.441Q7.019-19.441 7.228-19.538Q7.436-19.636 7.564-19.817Q7.693-19.998 7.693-20.224L7.693-20.952Q7.368-20.952 7.002-20.861Q6.636-20.770 6.380-20.558Q6.124-20.347 6.124-20.015M11.100-19.287L9.497-19.287L9.497-19.567Q9.723-19.567 9.872-19.601Q10.020-19.636 10.020-19.776L10.020-23.395Q10.020-23.665 9.913-23.727Q9.805-23.788 9.497-23.788L9.497-24.069L10.574-24.144L10.574-19.776Q10.574-19.639 10.724-19.603Q10.875-19.567 11.100-19.567L11.100-19.287M13.291-19.287L11.709-19.287L11.709-19.567Q11.938-19.567 12.086-19.601Q12.235-19.636 12.235-19.776L12.235-23.395Q12.235-23.665 12.127-23.727Q12.020-23.788 11.709-23.788L11.709-24.069L12.789-24.144L12.789-20.856L13.773-21.625Q13.978-21.762 13.978-21.912Q13.978-21.956 13.937-21.991Q13.896-22.025 13.852-22.025L13.852-22.305L15.216-22.305L15.216-22.025Q14.727-22.025 14.207-21.625L13.650-21.191L14.628-19.967Q14.829-19.721 14.963-19.644Q15.096-19.567 15.383-19.567L15.383-19.287L13.951-19.287L13.951-19.567Q14.139-19.567 14.139-19.680Q14.139-19.776 13.985-19.967L13.250-20.876L12.768-20.497L12.768-19.776Q12.768-19.639 12.917-19.603Q13.066-19.567 13.291-19.567\" 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=\"M221.681 43.31h79.468V-2.86\"\u002F>\u003Cpath stroke=\"none\" d=\"m301.149-4.86-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(260.378 74.53)\">\u003Cpath d=\"M-40.214-17.744L-40.214-17.830Q-40.171-18.049-39.964-18.072L-39.542-18.072L-39.542-22.174L-39.964-22.174Q-40.171-22.197-40.214-22.416L-40.214-22.502Q-40.167-22.713-39.964-22.736L-39.147-22.736Q-38.952-22.717-38.901-22.502L-38.901-22.432Q-38.690-22.599-38.427-22.687Q-38.163-22.775-37.893-22.775Q-37.554-22.775-37.257-22.631Q-36.960-22.486-36.745-22.234Q-36.530-21.982-36.415-21.670Q-36.300-21.357-36.300-21.014Q-36.300-20.549-36.526-20.139Q-36.753-19.728-37.139-19.488Q-37.526-19.248-37.995-19.248Q-38.514-19.248-38.901-19.615L-38.901-18.072L-38.475-18.072Q-38.268-18.049-38.229-17.830L-38.229-17.744Q-38.268-17.533-38.475-17.510L-39.964-17.510Q-40.167-17.533-40.214-17.744M-38.038-19.807Q-37.729-19.807-37.479-19.976Q-37.229-20.146-37.085-20.428Q-36.940-20.709-36.940-21.014Q-36.940-21.303-37.065-21.582Q-37.190-21.861-37.423-22.039Q-37.655-22.217-37.956-22.217Q-38.276-22.217-38.538-22.031Q-38.800-21.846-38.901-21.545L-38.901-20.693Q-38.811-20.326-38.591-20.066Q-38.370-19.807-38.038-19.807M-35.968-19.525L-35.968-19.615Q-35.925-19.822-35.718-19.846L-35.296-19.846L-35.296-23.615L-35.718-23.615Q-35.925-23.639-35.968-23.853L-35.968-23.943Q-35.925-24.150-35.718-24.174L-34.901-24.174Q-34.706-24.150-34.655-23.943L-34.655-22.392Q-34.194-22.775-33.596-22.775Q-33.249-22.775-33.011-22.635Q-32.772-22.494-32.657-22.236Q-32.542-21.978-32.542-21.623L-32.542-19.846L-32.116-19.846Q-31.909-19.822-31.870-19.615L-31.870-19.525Q-31.909-19.310-32.116-19.287L-33.511-19.287Q-33.706-19.310-33.757-19.525L-33.757-19.615Q-33.706-19.826-33.511-19.846L-33.182-19.846L-33.182-21.592Q-33.182-21.900-33.272-22.058Q-33.362-22.217-33.655-22.217Q-33.925-22.217-34.153-22.086Q-34.382-21.955-34.518-21.726Q-34.655-21.498-34.655-21.232L-34.655-19.846L-34.229-19.846Q-34.022-19.822-33.983-19.615L-33.983-19.525Q-34.022-19.310-34.229-19.287L-35.718-19.287Q-35.925-19.310-35.968-19.525M-31.448-18.166Q-31.448-18.275-31.397-18.367Q-31.346-18.459-31.255-18.510Q-31.163-18.560-31.057-18.560Q-30.948-18.560-30.856-18.510Q-30.764-18.459-30.714-18.367Q-30.663-18.275-30.663-18.166L-30.807-18.166Q-30.807-18.029-30.784-18.029Q-30.526-18.029-30.339-18.221Q-30.151-18.412-30.065-18.678L-29.854-19.287L-30.991-22.174L-31.319-22.174Q-31.514-22.197-31.569-22.416L-31.569-22.502Q-31.511-22.713-31.319-22.736L-30.159-22.736Q-29.964-22.713-29.913-22.502L-29.913-22.416Q-29.964-22.197-30.159-22.174L-30.425-22.174Q-30.089-21.326-29.845-20.672Q-29.600-20.017-29.600-19.928L-29.593-19.928Q-29.593-19.986-29.501-20.279Q-29.409-20.572-29.216-21.156Q-29.022-21.740-28.882-22.174L-29.159-22.174Q-29.370-22.197-29.409-22.416L-29.409-22.502Q-29.358-22.717-29.159-22.736L-28.007-22.736Q-27.800-22.713-27.761-22.502L-27.761-22.416Q-27.800-22.197-28.007-22.174L-28.327-22.174L-29.503-18.678Q-29.671-18.178-29.997-17.824Q-30.323-17.471-30.784-17.471Q-31.057-17.471-31.253-17.682Q-31.448-17.892-31.448-18.166M-26.960-19.486L-26.960-20.400Q-26.932-20.607-26.721-20.631L-26.554-20.631Q-26.389-20.607-26.331-20.447Q-26.128-19.807-25.401-19.807Q-25.194-19.807-24.966-19.842Q-24.737-19.877-24.569-19.992Q-24.401-20.107-24.401-20.310Q-24.401-20.521-24.624-20.635Q-24.846-20.748-25.120-20.791L-25.819-20.904Q-26.960-21.115-26.960-21.838Q-26.960-22.127-26.815-22.316Q-26.671-22.506-26.430-22.613Q-26.190-22.721-25.934-22.760Q-25.679-22.799-25.401-22.799Q-25.151-22.799-24.958-22.769Q-24.764-22.740-24.600-22.662Q-24.522-22.779-24.393-22.799L-24.315-22.799Q-24.218-22.787-24.155-22.724Q-24.093-22.662-24.081-22.568L-24.081-21.861Q-24.093-21.767-24.155-21.701Q-24.218-21.635-24.315-21.623L-24.483-21.623Q-24.577-21.635-24.643-21.701Q-24.710-21.767-24.721-21.861Q-24.721-22.240-25.417-22.240Q-25.764-22.240-26.083-22.158Q-26.401-22.076-26.401-21.830Q-26.401-21.564-25.729-21.455L-25.026-21.334Q-24.542-21.252-24.192-21.004Q-23.843-20.756-23.843-20.310Q-23.843-19.920-24.079-19.678Q-24.315-19.435-24.665-19.342Q-25.014-19.248-25.401-19.248Q-25.979-19.248-26.378-19.502Q-26.448-19.377-26.497-19.320Q-26.546-19.264-26.651-19.248L-26.721-19.248Q-26.936-19.271-26.960-19.486\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(260.378 74.53)\">\u003Cpath d=\"M-20.114-20.119Q-20.114-20.603-19.712-20.898Q-19.309-21.193-18.759-21.312Q-18.208-21.432-17.716-21.432L-17.716-21.721Q-17.716-21.947-17.831-22.154Q-17.946-22.361-18.143-22.480Q-18.341-22.599-18.571-22.599Q-18.997-22.599-19.282-22.494Q-19.212-22.467-19.165-22.412Q-19.118-22.357-19.093-22.287Q-19.067-22.217-19.067-22.142Q-19.067-22.037-19.118-21.945Q-19.169-21.853-19.261-21.803Q-19.352-21.752-19.458-21.752Q-19.563-21.752-19.655-21.803Q-19.747-21.853-19.798-21.945Q-19.848-22.037-19.848-22.142Q-19.848-22.560-19.460-22.707Q-19.071-22.853-18.571-22.853Q-18.239-22.853-17.886-22.723Q-17.532-22.592-17.304-22.338Q-17.075-22.084-17.075-21.736L-17.075-19.935Q-17.075-19.803-17.003-19.693Q-16.930-19.584-16.802-19.584Q-16.677-19.584-16.608-19.689Q-16.540-19.795-16.540-19.935L-16.540-20.447L-16.259-20.447L-16.259-19.935Q-16.259-19.732-16.376-19.574Q-16.493-19.416-16.675-19.332Q-16.856-19.248-17.059-19.248Q-17.290-19.248-17.442-19.420Q-17.595-19.592-17.626-19.822Q-17.786-19.541-18.095-19.375Q-18.403-19.209-18.755-19.209Q-19.266-19.209-19.690-19.432Q-20.114-19.654-20.114-20.119M-19.427-20.119Q-19.427-19.834-19.200-19.648Q-18.973-19.463-18.680-19.463Q-18.434-19.463-18.210-19.580Q-17.985-19.697-17.850-19.900Q-17.716-20.103-17.716-20.357L-17.716-21.189Q-17.981-21.189-18.266-21.135Q-18.552-21.080-18.823-20.951Q-19.095-20.822-19.261-20.615Q-19.427-20.408-19.427-20.119M-14.149-19.209Q-14.630-19.209-15.038-19.453Q-15.446-19.697-15.684-20.111Q-15.923-20.525-15.923-21.014Q-15.923-21.506-15.665-21.922Q-15.407-22.338-14.975-22.576Q-14.544-22.814-14.052-22.814Q-13.430-22.814-12.981-22.377L-12.981-24.006Q-12.981-24.221-13.044-24.316Q-13.106-24.412-13.223-24.433Q-13.341-24.455-13.587-24.455L-13.587-24.752L-12.364-24.838L-12.364-20.029Q-12.364-19.818-12.302-19.723Q-12.239-19.627-12.122-19.605Q-12.005-19.584-11.755-19.584L-11.755-19.287L-13.005-19.209L-13.005-19.693Q-13.470-19.209-14.149-19.209M-14.083-19.463Q-13.743-19.463-13.450-19.654Q-13.157-19.846-13.005-20.142L-13.005-21.974Q-13.153-22.248-13.415-22.404Q-13.677-22.560-13.989-22.560Q-14.614-22.560-14.897-22.113Q-15.180-21.666-15.180-21.006Q-15.180-20.361-14.929-19.912Q-14.677-19.463-14.083-19.463M-9.430-19.209Q-9.911-19.209-10.319-19.453Q-10.727-19.697-10.966-20.111Q-11.204-20.525-11.204-21.014Q-11.204-21.506-10.946-21.922Q-10.688-22.338-10.257-22.576Q-9.825-22.814-9.333-22.814Q-8.712-22.814-8.262-22.377L-8.262-24.006Q-8.262-24.221-8.325-24.316Q-8.387-24.412-8.505-24.433Q-8.622-24.455-8.868-24.455L-8.868-24.752L-7.645-24.838L-7.645-20.029Q-7.645-19.818-7.583-19.723Q-7.520-19.627-7.403-19.605Q-7.286-19.584-7.036-19.584L-7.036-19.287L-8.286-19.209L-8.286-19.693Q-8.751-19.209-9.430-19.209M-9.364-19.463Q-9.024-19.463-8.731-19.654Q-8.438-19.846-8.286-20.142L-8.286-21.974Q-8.434-22.248-8.696-22.404Q-8.958-22.560-9.270-22.560Q-9.895-22.560-10.179-22.113Q-10.462-21.666-10.462-21.006Q-10.462-20.361-10.210-19.912Q-9.958-19.463-9.364-19.463M-4.520-19.287L-6.501-19.287L-6.501-19.584Q-6.231-19.584-6.063-19.629Q-5.895-19.674-5.895-19.846L-5.895-21.982Q-5.895-22.197-5.958-22.293Q-6.020-22.389-6.137-22.410Q-6.255-22.432-6.501-22.432L-6.501-22.728L-5.333-22.814L-5.333-22.029Q-5.255-22.240-5.102-22.426Q-4.950-22.611-4.751-22.713Q-4.552-22.814-4.325-22.814Q-4.079-22.814-3.887-22.670Q-3.696-22.525-3.696-22.295Q-3.696-22.139-3.802-22.029Q-3.907-21.920-4.063-21.920Q-4.220-21.920-4.329-22.029Q-4.438-22.139-4.438-22.295Q-4.438-22.455-4.333-22.560Q-4.657-22.560-4.872-22.332Q-5.087-22.103-5.182-21.764Q-5.278-21.424-5.278-21.119L-5.278-19.846Q-5.278-19.678-5.052-19.631Q-4.825-19.584-4.520-19.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(260.378 74.53)\">\u003Cpath d=\"M1.695-19.287L-0.290-19.287L-0.290-19.584Q-0.016-19.584 0.152-19.631Q0.320-19.678 0.320-19.846L0.320-22.439L-0.321-22.439L-0.321-22.736L0.320-22.736L0.320-23.670Q0.320-23.935 0.437-24.172Q0.554-24.408 0.747-24.572Q0.941-24.736 1.189-24.828Q1.437-24.920 1.703-24.920Q1.988-24.920 2.212-24.762Q2.437-24.603 2.437-24.326Q2.437-24.170 2.331-24.060Q2.226-23.951 2.062-23.951Q1.906-23.951 1.796-24.060Q1.687-24.170 1.687-24.326Q1.687-24.533 1.847-24.639Q1.749-24.662 1.656-24.662Q1.425-24.662 1.253-24.506Q1.081-24.349 0.995-24.113Q0.910-23.877 0.910-23.654L0.910-22.736L1.878-22.736L1.878-22.439L0.933-22.439L0.933-19.846Q0.933-19.678 1.160-19.631Q1.386-19.584 1.695-19.584L1.695-19.287M4.230-19.287L2.249-19.287L2.249-19.584Q2.519-19.584 2.687-19.629Q2.855-19.674 2.855-19.846L2.855-21.982Q2.855-22.197 2.792-22.293Q2.730-22.389 2.613-22.410Q2.495-22.432 2.249-22.432L2.249-22.728L3.417-22.814L3.417-22.029Q3.495-22.240 3.648-22.426Q3.800-22.611 3.999-22.713Q4.199-22.814 4.425-22.814Q4.671-22.814 4.863-22.670Q5.054-22.525 5.054-22.295Q5.054-22.139 4.949-22.029Q4.843-21.920 4.687-21.920Q4.531-21.920 4.421-22.029Q4.312-22.139 4.312-22.295Q4.312-22.455 4.417-22.560Q4.093-22.560 3.878-22.332Q3.663-22.103 3.568-21.764Q3.472-21.424 3.472-21.119L3.472-19.846Q3.472-19.678 3.699-19.631Q3.925-19.584 4.230-19.584L4.230-19.287M5.535-20.982Q5.535-21.486 5.790-21.918Q6.046-22.349 6.482-22.601Q6.917-22.853 7.417-22.853Q7.804-22.853 8.146-22.709Q8.488-22.564 8.749-22.303Q9.011-22.041 9.154-21.705Q9.296-21.369 9.296-20.982Q9.296-20.490 9.033-20.080Q8.769-19.670 8.339-19.439Q7.910-19.209 7.417-19.209Q6.925-19.209 6.492-19.441Q6.058-19.674 5.796-20.082Q5.535-20.490 5.535-20.982M7.417-19.486Q7.874-19.486 8.126-19.709Q8.378-19.932 8.466-20.283Q8.554-20.635 8.554-21.080Q8.554-21.510 8.460-21.848Q8.367-22.185 8.113-22.392Q7.859-22.599 7.417-22.599Q6.769-22.599 6.525-22.183Q6.281-21.767 6.281-21.080Q6.281-20.635 6.369-20.283Q6.456-19.932 6.708-19.709Q6.960-19.486 7.417-19.486M11.710-19.287L9.855-19.287L9.855-19.584Q10.128-19.584 10.296-19.631Q10.464-19.678 10.464-19.846L10.464-21.982Q10.464-22.197 10.402-22.293Q10.339-22.389 10.220-22.410Q10.101-22.432 9.855-22.432L9.855-22.728L11.046-22.814L11.046-22.080Q11.160-22.295 11.353-22.463Q11.546-22.631 11.785-22.723Q12.023-22.814 12.277-22.814Q13.238-22.814 13.413-22.103Q13.597-22.432 13.925-22.623Q14.253-22.814 14.632-22.814Q15.808-22.814 15.808-21.736L15.808-19.846Q15.808-19.678 15.976-19.631Q16.144-19.584 16.413-19.584L16.413-19.287L14.558-19.287L14.558-19.584Q14.831-19.584 14.999-19.629Q15.167-19.674 15.167-19.846L15.167-21.721Q15.167-22.107 15.042-22.334Q14.917-22.560 14.566-22.560Q14.261-22.560 14.005-22.398Q13.749-22.236 13.601-21.967Q13.453-21.697 13.453-21.400L13.453-19.846Q13.453-19.678 13.622-19.631Q13.792-19.584 14.062-19.584L14.062-19.287L12.206-19.287L12.206-19.584Q12.480-19.584 12.648-19.631Q12.816-19.678 12.816-19.846L12.816-21.721Q12.816-22.107 12.691-22.334Q12.566-22.560 12.214-22.560Q11.910-22.560 11.654-22.398Q11.398-22.236 11.249-21.967Q11.101-21.697 11.101-21.400L11.101-19.846Q11.101-19.678 11.271-19.631Q11.441-19.584 11.710-19.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(260.378 74.53)\">\u003Cpath d=\"M21.291-19.318L20.221-22.174Q20.154-22.353 20.024-22.396Q19.893-22.439 19.635-22.439L19.635-22.736L21.315-22.736L21.315-22.439Q20.865-22.439 20.865-22.240Q20.869-22.224 20.871-22.207Q20.873-22.189 20.873-22.174L21.666-20.080L22.377-21.990Q22.342-22.084 22.342-22.129Q22.342-22.174 22.307-22.174Q22.240-22.353 22.110-22.396Q21.979-22.439 21.725-22.439L21.725-22.736L23.315-22.736L23.315-22.439Q22.865-22.439 22.865-22.240Q22.869-22.221 22.871-22.203Q22.873-22.185 22.873-22.174L23.705-19.959L24.459-21.959Q24.483-22.017 24.483-22.088Q24.483-22.248 24.346-22.344Q24.209-22.439 24.041-22.439L24.041-22.736L25.428-22.736L25.428-22.439Q25.194-22.439 25.016-22.312Q24.838-22.185 24.756-21.959L23.772-19.318Q23.717-19.209 23.604-19.209L23.545-19.209Q23.432-19.209 23.389-19.318L22.529-21.592L21.674-19.318Q21.635-19.209 21.514-19.209L21.459-19.209Q21.346-19.209 21.291-19.318\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(260.378 74.53)\">\u003Cpath d=\"M25.706-20.119Q25.706-20.603 26.108-20.898Q26.511-21.193 27.061-21.312Q27.612-21.432 28.104-21.432L28.104-21.721Q28.104-21.947 27.989-22.154Q27.874-22.361 27.677-22.480Q27.479-22.599 27.249-22.599Q26.823-22.599 26.538-22.494Q26.608-22.467 26.655-22.412Q26.702-22.357 26.727-22.287Q26.753-22.217 26.753-22.142Q26.753-22.037 26.702-21.945Q26.651-21.853 26.559-21.803Q26.468-21.752 26.362-21.752Q26.257-21.752 26.165-21.803Q26.073-21.853 26.022-21.945Q25.972-22.037 25.972-22.142Q25.972-22.560 26.360-22.707Q26.749-22.853 27.249-22.853Q27.581-22.853 27.934-22.723Q28.288-22.592 28.516-22.338Q28.745-22.084 28.745-21.736L28.745-19.935Q28.745-19.803 28.817-19.693Q28.890-19.584 29.018-19.584Q29.143-19.584 29.212-19.689Q29.280-19.795 29.280-19.935L29.280-20.447L29.561-20.447L29.561-19.935Q29.561-19.732 29.444-19.574Q29.327-19.416 29.145-19.332Q28.964-19.248 28.761-19.248Q28.530-19.248 28.378-19.420Q28.225-19.592 28.194-19.822Q28.034-19.541 27.725-19.375Q27.417-19.209 27.065-19.209Q26.554-19.209 26.130-19.432Q25.706-19.654 25.706-20.119M26.393-20.119Q26.393-19.834 26.620-19.648Q26.847-19.463 27.140-19.463Q27.386-19.463 27.610-19.580Q27.835-19.697 27.970-19.900Q28.104-20.103 28.104-20.357L28.104-21.189Q27.839-21.189 27.554-21.135Q27.268-21.080 26.997-20.951Q26.725-20.822 26.559-20.615Q26.393-20.408 26.393-20.119M31.768-19.287L29.936-19.287L29.936-19.584Q30.210-19.584 30.378-19.631Q30.546-19.678 30.546-19.846L30.546-24.006Q30.546-24.221 30.483-24.316Q30.421-24.412 30.302-24.433Q30.183-24.455 29.936-24.455L29.936-24.752L31.159-24.838L31.159-19.846Q31.159-19.678 31.327-19.631Q31.495-19.584 31.768-19.584L31.768-19.287M34.038-19.287L32.241-19.287L32.241-19.584Q32.511-19.584 32.679-19.629Q32.847-19.674 32.847-19.846L32.847-24.006Q32.847-24.221 32.784-24.316Q32.722-24.412 32.604-24.433Q32.487-24.455 32.241-24.455L32.241-24.752L33.464-24.838L33.464-21.072L34.561-21.959Q34.768-22.139 34.768-22.287Q34.768-22.353 34.716-22.396Q34.663-22.439 34.593-22.439L34.593-22.736L36.128-22.736L36.128-22.439Q35.597-22.439 34.999-21.959L34.390-21.463L35.464-20.064Q35.600-19.889 35.708-19.781Q35.815-19.674 35.950-19.629Q36.085-19.584 36.311-19.584L36.311-19.287L34.686-19.287L34.686-19.584Q34.929-19.584 34.929-19.736Q34.929-19.814 34.886-19.885Q34.843-19.955 34.761-20.064L33.960-21.111L33.433-20.685L33.433-19.846Q33.433-19.678 33.600-19.631Q33.768-19.584 34.038-19.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-dasharray:3.0,3.0\">\u003Cpath fill=\"none\" d=\"M53.61 57.536h56.906V29.083H53.61Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(102.6 70.124)\">\u003Cpath d=\"M-38.163-27.236L-40.018-27.236L-40.018-27.529Q-39.749-27.529-39.581-27.574Q-39.413-27.619-39.413-27.795L-39.413-31.619Q-39.413-31.826-39.569-31.879Q-39.725-31.932-40.018-31.932L-40.018-32.228L-38.796-32.314L-38.796-31.849Q-38.565-32.072-38.251-32.193Q-37.936-32.314-37.596-32.314Q-37.124-32.314-36.720-32.068Q-36.315-31.822-36.083-31.406Q-35.850-30.990-35.850-30.514Q-35.850-30.139-35.999-29.810Q-36.147-29.482-36.417-29.230Q-36.686-28.978-37.030-28.844Q-37.374-28.709-37.733-28.709Q-38.022-28.709-38.294-28.830Q-38.565-28.951-38.772-29.162L-38.772-27.795Q-38.772-27.619-38.604-27.574Q-38.436-27.529-38.163-27.529L-38.163-27.236M-38.772-31.451L-38.772-29.611Q-38.620-29.322-38.358-29.142Q-38.096-28.963-37.788-28.963Q-37.503-28.963-37.280-29.101Q-37.057-29.240-36.905-29.471Q-36.753-29.701-36.675-29.973Q-36.596-30.244-36.596-30.514Q-36.596-30.846-36.721-31.203Q-36.846-31.560-37.095-31.797Q-37.343-32.033-37.690-32.033Q-38.014-32.033-38.309-31.877Q-38.604-31.721-38.772-31.451\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(102.6 70.124)\">\u003Cpath d=\"M-35.088-30.541Q-35.088-31.021-34.855-31.437Q-34.623-31.853-34.213-32.103Q-33.803-32.353-33.326-32.353Q-32.596-32.353-32.197-31.912Q-31.799-31.471-31.799-30.740Q-31.799-30.635-31.892-30.611L-34.342-30.611L-34.342-30.541Q-34.342-30.131-34.221-29.775Q-34.099-29.420-33.828-29.203Q-33.556-28.986-33.127-28.986Q-32.764-28.986-32.467-29.215Q-32.170-29.443-32.068-29.795Q-32.060-29.842-31.974-29.857L-31.892-29.857Q-31.799-29.830-31.799-29.748Q-31.799-29.740-31.806-29.709Q-31.869-29.482-32.008-29.299Q-32.146-29.115-32.338-28.982Q-32.529-28.849-32.748-28.779Q-32.967-28.709-33.205-28.709Q-33.576-28.709-33.914-28.846Q-34.252-28.982-34.519-29.234Q-34.787-29.486-34.937-29.826Q-35.088-30.166-35.088-30.541M-34.334-30.849L-32.373-30.849Q-32.373-31.154-32.474-31.445Q-32.576-31.736-32.793-31.918Q-33.010-32.099-33.326-32.099Q-33.627-32.099-33.857-31.912Q-34.088-31.724-34.211-31.433Q-34.334-31.142-34.334-30.849M-31.310-30.541Q-31.310-31.021-31.078-31.437Q-30.846-31.853-30.435-32.103Q-30.025-32.353-29.549-32.353Q-28.818-32.353-28.420-31.912Q-28.021-31.471-28.021-30.740Q-28.021-30.635-28.115-30.611L-30.564-30.611L-30.564-30.541Q-30.564-30.131-30.443-29.775Q-30.322-29.420-30.051-29.203Q-29.779-28.986-29.349-28.986Q-28.986-28.986-28.689-29.215Q-28.392-29.443-28.291-29.795Q-28.283-29.842-28.197-29.857L-28.115-29.857Q-28.021-29.830-28.021-29.748Q-28.021-29.740-28.029-29.709Q-28.092-29.482-28.230-29.299Q-28.369-29.115-28.560-28.982Q-28.752-28.849-28.971-28.779Q-29.189-28.709-29.428-28.709Q-29.799-28.709-30.137-28.846Q-30.474-28.982-30.742-29.234Q-31.010-29.486-31.160-29.826Q-31.310-30.166-31.310-30.541M-30.556-30.849L-28.596-30.849Q-28.596-31.154-28.697-31.445Q-28.799-31.736-29.015-31.918Q-29.232-32.099-29.549-32.099Q-29.849-32.099-30.080-31.912Q-30.310-31.724-30.433-31.433Q-30.556-31.142-30.556-30.849M-25.525-28.787L-27.506-28.787L-27.506-29.084Q-27.236-29.084-27.068-29.129Q-26.900-29.174-26.900-29.346L-26.900-31.482Q-26.900-31.697-26.963-31.793Q-27.025-31.889-27.142-31.910Q-27.260-31.932-27.506-31.932L-27.506-32.228L-26.338-32.314L-26.338-31.529Q-26.260-31.740-26.107-31.926Q-25.955-32.111-25.756-32.213Q-25.556-32.314-25.330-32.314Q-25.084-32.314-24.892-32.170Q-24.701-32.025-24.701-31.795Q-24.701-31.639-24.806-31.529Q-24.912-31.420-25.068-31.420Q-25.224-31.420-25.334-31.529Q-25.443-31.639-25.443-31.795Q-25.443-31.955-25.338-32.060Q-25.662-32.060-25.877-31.832Q-26.092-31.603-26.187-31.264Q-26.283-30.924-26.283-30.619L-26.283-29.346Q-26.283-29.178-26.056-29.131Q-25.830-29.084-25.525-29.084\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(102.6 70.124)\">\u003Cpath d=\"M-21.343-30.514Q-21.343-31.010-21.093-31.435Q-20.843-31.861-20.423-32.107Q-20.003-32.353-19.503-32.353Q-18.964-32.353-18.573-32.228Q-18.183-32.103-18.183-31.689Q-18.183-31.584-18.233-31.492Q-18.284-31.400-18.376-31.349Q-18.468-31.299-18.577-31.299Q-18.683-31.299-18.774-31.349Q-18.866-31.400-18.917-31.492Q-18.968-31.584-18.968-31.689Q-18.968-31.912-18.800-32.017Q-19.022-32.076-19.495-32.076Q-19.792-32.076-20.007-31.937Q-20.222-31.799-20.353-31.568Q-20.483-31.338-20.542-31.068Q-20.601-30.799-20.601-30.514Q-20.601-30.119-20.468-29.769Q-20.335-29.420-20.063-29.203Q-19.792-28.986-19.394-28.986Q-19.019-28.986-18.743-29.203Q-18.468-29.420-18.366-29.779Q-18.351-29.842-18.288-29.842L-18.183-29.842Q-18.147-29.842-18.122-29.814Q-18.097-29.787-18.097-29.748L-18.097-29.724Q-18.229-29.244-18.614-28.976Q-18.999-28.709-19.503-28.709Q-19.866-28.709-20.200-28.846Q-20.534-28.982-20.794-29.232Q-21.054-29.482-21.198-29.818Q-21.343-30.154-21.343-30.514M-17.608-30.482Q-17.608-30.986-17.353-31.418Q-17.097-31.849-16.661-32.101Q-16.226-32.353-15.726-32.353Q-15.339-32.353-14.997-32.209Q-14.655-32.064-14.394-31.803Q-14.132-31.541-13.989-31.205Q-13.847-30.869-13.847-30.482Q-13.847-29.990-14.110-29.580Q-14.374-29.170-14.804-28.939Q-15.233-28.709-15.726-28.709Q-16.218-28.709-16.651-28.941Q-17.085-29.174-17.347-29.582Q-17.608-29.990-17.608-30.482M-15.726-28.986Q-15.269-28.986-15.017-29.209Q-14.765-29.432-14.677-29.783Q-14.589-30.135-14.589-30.580Q-14.589-31.010-14.683-31.348Q-14.776-31.685-15.030-31.892Q-15.284-32.099-15.726-32.099Q-16.374-32.099-16.618-31.683Q-16.862-31.267-16.862-30.580Q-16.862-30.135-16.774-29.783Q-16.686-29.432-16.435-29.209Q-16.183-28.986-15.726-28.986M-11.354-28.787L-13.335-28.787L-13.335-29.084Q-13.065-29.084-12.897-29.129Q-12.729-29.174-12.729-29.346L-12.729-31.482Q-12.729-31.697-12.792-31.793Q-12.854-31.889-12.972-31.910Q-13.089-31.932-13.335-31.932L-13.335-32.228L-12.167-32.314L-12.167-31.529Q-12.089-31.740-11.936-31.926Q-11.784-32.111-11.585-32.213Q-11.386-32.314-11.159-32.314Q-10.913-32.314-10.722-32.170Q-10.530-32.025-10.530-31.795Q-10.530-31.639-10.636-31.529Q-10.741-31.420-10.897-31.420Q-11.054-31.420-11.163-31.529Q-11.272-31.639-11.272-31.795Q-11.272-31.955-11.167-32.060Q-11.491-32.060-11.706-31.832Q-11.921-31.603-12.017-31.264Q-12.112-30.924-12.112-30.619L-12.112-29.346Q-12.112-29.178-11.886-29.131Q-11.659-29.084-11.354-29.084L-11.354-28.787M-10.050-30.541Q-10.050-31.021-9.817-31.437Q-9.585-31.853-9.175-32.103Q-8.765-32.353-8.288-32.353Q-7.558-32.353-7.159-31.912Q-6.761-31.471-6.761-30.740Q-6.761-30.635-6.854-30.611L-9.304-30.611L-9.304-30.541Q-9.304-30.131-9.183-29.775Q-9.061-29.420-8.790-29.203Q-8.519-28.986-8.089-28.986Q-7.726-28.986-7.429-29.215Q-7.132-29.443-7.030-29.795Q-7.022-29.842-6.936-29.857L-6.854-29.857Q-6.761-29.830-6.761-29.748Q-6.761-29.740-6.769-29.709Q-6.831-29.482-6.970-29.299Q-7.108-29.115-7.300-28.982Q-7.491-28.849-7.710-28.779Q-7.929-28.709-8.167-28.709Q-8.538-28.709-8.876-28.846Q-9.214-28.982-9.481-29.234Q-9.749-29.486-9.899-29.826Q-10.050-30.166-10.050-30.541M-9.296-30.849L-7.335-30.849Q-7.335-31.154-7.436-31.445Q-7.538-31.736-7.755-31.918Q-7.972-32.099-8.288-32.099Q-8.589-32.099-8.819-31.912Q-9.050-31.724-9.173-31.433Q-9.296-31.142-9.296-30.849M-5.686-32.010Q-5.686-32.037-5.655-32.084Q-5.351-32.338-5.179-32.703Q-5.007-33.068-5.007-33.467L-5.007-33.541Q-5.140-33.420-5.327-33.420Q-5.519-33.420-5.655-33.553Q-5.792-33.685-5.792-33.885Q-5.792-34.080-5.655-34.209Q-5.519-34.338-5.327-34.338Q-5.120-34.338-4.991-34.201Q-4.862-34.064-4.806-33.863Q-4.749-33.662-4.749-33.467Q-4.749-33.010-4.944-32.596Q-5.140-32.182-5.479-31.892Q-5.507-31.865-5.542-31.865Q-5.593-31.865-5.640-31.912Q-5.686-31.959-5.686-32.010M-3.870-28.795L-3.870-30.017Q-3.870-30.045-3.839-30.076Q-3.808-30.107-3.784-30.107L-3.679-30.107Q-3.608-30.107-3.593-30.045Q-3.530-29.724-3.392-29.484Q-3.253-29.244-3.020-29.103Q-2.788-28.963-2.479-28.963Q-2.241-28.963-2.032-29.023Q-1.823-29.084-1.686-29.232Q-1.550-29.381-1.550-29.627Q-1.550-29.881-1.761-30.047Q-1.972-30.213-2.241-30.267L-2.862-30.381Q-3.269-30.459-3.569-30.715Q-3.870-30.971-3.870-31.346Q-3.870-31.713-3.669-31.935Q-3.468-32.158-3.144-32.256Q-2.819-32.353-2.479-32.353Q-2.015-32.353-1.718-32.146L-1.495-32.330Q-1.472-32.353-1.440-32.353L-1.390-32.353Q-1.358-32.353-1.331-32.326Q-1.304-32.299-1.304-32.267L-1.304-31.283Q-1.304-31.252-1.329-31.223Q-1.354-31.193-1.390-31.193L-1.495-31.193Q-1.530-31.193-1.558-31.221Q-1.585-31.248-1.585-31.283Q-1.585-31.682-1.837-31.902Q-2.089-32.123-2.487-32.123Q-2.843-32.123-3.126-32Q-3.409-31.877-3.409-31.572Q-3.409-31.353-3.208-31.221Q-3.007-31.088-2.761-31.045L-2.136-30.932Q-1.706-30.842-1.397-30.545Q-1.089-30.248-1.089-29.834Q-1.089-29.264-1.487-28.986Q-1.886-28.709-2.479-28.709Q-3.030-28.709-3.382-29.045L-3.679-28.732Q-3.702-28.709-3.737-28.709L-3.784-28.709Q-3.808-28.709-3.839-28.740Q-3.870-28.771-3.870-28.795\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(102.6 70.124)\">\u003Cpath d=\"M-30.604-21.014Q-30.604-21.494-30.360-21.908Q-30.116-22.322-29.700-22.560Q-29.284-22.799-28.804-22.799Q-28.249-22.799-27.870-22.689Q-27.491-22.580-27.491-22.174Q-27.491-22.006-27.604-21.883Q-27.718-21.760-27.890-21.760Q-28.061-21.760-28.181-21.875Q-28.300-21.990-28.300-22.158L-28.300-22.217Q-28.460-22.240-28.796-22.240Q-29.124-22.240-29.392-22.070Q-29.659-21.900-29.811-21.617Q-29.964-21.334-29.964-21.014Q-29.964-20.693-29.792-20.412Q-29.620-20.131-29.335-19.969Q-29.050-19.807-28.722-19.807Q-28.409-19.807-28.282-19.910Q-28.155-20.014-28.038-20.203Q-27.921-20.392-27.804-20.408L-27.636-20.408Q-27.530-20.396-27.466-20.328Q-27.401-20.260-27.401-20.158Q-27.401-20.111-27.421-20.072Q-27.530-19.779-27.733-19.599Q-27.936-19.420-28.212-19.334Q-28.487-19.248-28.804-19.248Q-29.288-19.248-29.704-19.486Q-30.120-19.724-30.362-20.127Q-30.604-20.529-30.604-21.014M-26.511-20.400Q-26.511-20.846-26.097-21.103Q-25.683-21.361-25.142-21.461Q-24.601-21.560-24.093-21.568Q-24.093-21.783-24.227-21.935Q-24.362-22.088-24.569-22.164Q-24.776-22.240-24.987-22.240Q-25.331-22.240-25.491-22.217L-25.491-22.158Q-25.491-21.990-25.610-21.875Q-25.729-21.760-25.893-21.760Q-26.069-21.760-26.184-21.883Q-26.300-22.006-26.300-22.174Q-26.300-22.580-25.919-22.689Q-25.538-22.799-24.979-22.799Q-24.710-22.799-24.442-22.721Q-24.175-22.642-23.950-22.492Q-23.726-22.342-23.589-22.121Q-23.452-21.900-23.452-21.623L-23.452-19.904Q-23.452-19.846-22.925-19.846Q-22.729-19.826-22.679-19.615L-22.679-19.525Q-22.729-19.310-22.925-19.287L-23.069-19.287Q-23.413-19.287-23.642-19.334Q-23.870-19.381-24.015-19.568Q-24.476-19.248-25.183-19.248Q-25.518-19.248-25.823-19.389Q-26.128-19.529-26.319-19.791Q-26.511-20.053-26.511-20.400M-25.870-20.392Q-25.870-20.119-25.628-19.963Q-25.386-19.807-25.101-19.807Q-24.882-19.807-24.649-19.865Q-24.417-19.924-24.255-20.062Q-24.093-20.201-24.093-20.424L-24.093-21.014Q-24.374-21.014-24.790-20.957Q-25.206-20.900-25.538-20.762Q-25.870-20.623-25.870-20.392M-22.112-21.014Q-22.112-21.494-21.868-21.908Q-21.624-22.322-21.208-22.560Q-20.792-22.799-20.311-22.799Q-19.757-22.799-19.378-22.689Q-18.999-22.580-18.999-22.174Q-18.999-22.006-19.112-21.883Q-19.226-21.760-19.397-21.760Q-19.569-21.760-19.688-21.875Q-19.808-21.990-19.808-22.158L-19.808-22.217Q-19.968-22.240-20.304-22.240Q-20.632-22.240-20.899-22.070Q-21.167-21.900-21.319-21.617Q-21.472-21.334-21.472-21.014Q-21.472-20.693-21.300-20.412Q-21.128-20.131-20.843-19.969Q-20.558-19.807-20.229-19.807Q-19.917-19.807-19.790-19.910Q-19.663-20.014-19.546-20.203Q-19.429-20.392-19.311-20.408L-19.143-20.408Q-19.038-20.396-18.974-20.328Q-18.909-20.260-18.909-20.158Q-18.909-20.111-18.929-20.072Q-19.038-19.779-19.241-19.599Q-19.444-19.420-19.720-19.334Q-19.995-19.248-20.311-19.248Q-20.796-19.248-21.212-19.486Q-21.628-19.724-21.870-20.127Q-22.112-20.529-22.112-21.014M-18.354-19.525L-18.354-19.615Q-18.311-19.822-18.104-19.846L-17.683-19.846L-17.683-23.615L-18.104-23.615Q-18.311-23.639-18.354-23.853L-18.354-23.943Q-18.311-24.150-18.104-24.174L-17.288-24.174Q-17.093-24.150-17.042-23.943L-17.042-22.392Q-16.581-22.775-15.983-22.775Q-15.636-22.775-15.397-22.635Q-15.159-22.494-15.044-22.236Q-14.929-21.978-14.929-21.623L-14.929-19.846L-14.503-19.846Q-14.296-19.822-14.257-19.615L-14.257-19.525Q-14.296-19.310-14.503-19.287L-15.897-19.287Q-16.093-19.310-16.143-19.525L-16.143-19.615Q-16.093-19.826-15.897-19.846L-15.569-19.846L-15.569-21.592Q-15.569-21.900-15.659-22.058Q-15.749-22.217-16.042-22.217Q-16.311-22.217-16.540-22.086Q-16.768-21.955-16.905-21.726Q-17.042-21.498-17.042-21.232L-17.042-19.846L-16.616-19.846Q-16.409-19.822-16.370-19.615L-16.370-19.525Q-16.409-19.310-16.616-19.287L-18.104-19.287Q-18.311-19.310-18.354-19.525M-10.667-20.775L-13.108-20.775Q-13.054-20.498-12.856-20.275Q-12.659-20.053-12.382-19.930Q-12.104-19.807-11.819-19.807Q-11.347-19.807-11.124-20.096Q-11.116-20.107-11.059-20.213Q-11.003-20.318-10.954-20.361Q-10.905-20.404-10.811-20.416L-10.667-20.416Q-10.476-20.396-10.417-20.182L-10.417-20.127Q-10.483-19.826-10.714-19.629Q-10.944-19.432-11.257-19.340Q-11.569-19.248-11.874-19.248Q-12.358-19.248-12.798-19.476Q-13.237-19.705-13.505-20.105Q-13.772-20.506-13.772-20.998L-13.772-21.057Q-13.772-21.525-13.526-21.928Q-13.280-22.330-12.872-22.564Q-12.464-22.799-11.995-22.799Q-11.491-22.799-11.138-22.576Q-10.784-22.353-10.601-21.965Q-10.417-21.576-10.417-21.072L-10.417-21.014Q-10.476-20.799-10.667-20.775M-13.101-21.326L-11.073-21.326Q-11.120-21.736-11.358-21.988Q-11.597-22.240-11.995-22.240Q-12.390-22.240-12.696-21.978Q-13.003-21.717-13.101-21.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-dasharray:3.0,3.0\">\u003Cpath fill=\"none\" d=\"M82.063-2.86v29.743\"\u002F>\u003Cpath stroke=\"none\" d=\"m82.063-4.86-1.6 3.2 1.6-1.2 1.6 1.2M82.063 28.883l1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(131.57 33.298)\">\u003Cpath d=\"M-40.003-21.014Q-40.003-21.510-39.753-21.935Q-39.503-22.361-39.083-22.607Q-38.663-22.853-38.163-22.853Q-37.624-22.853-37.233-22.728Q-36.843-22.603-36.843-22.189Q-36.843-22.084-36.893-21.992Q-36.944-21.900-37.036-21.849Q-37.128-21.799-37.237-21.799Q-37.343-21.799-37.434-21.849Q-37.526-21.900-37.577-21.992Q-37.628-22.084-37.628-22.189Q-37.628-22.412-37.460-22.517Q-37.682-22.576-38.155-22.576Q-38.452-22.576-38.667-22.437Q-38.882-22.299-39.013-22.068Q-39.143-21.838-39.202-21.568Q-39.261-21.299-39.261-21.014Q-39.261-20.619-39.128-20.269Q-38.995-19.920-38.723-19.703Q-38.452-19.486-38.054-19.486Q-37.679-19.486-37.403-19.703Q-37.128-19.920-37.026-20.279Q-37.011-20.342-36.948-20.342L-36.843-20.342Q-36.807-20.342-36.782-20.314Q-36.757-20.287-36.757-20.248L-36.757-20.224Q-36.889-19.744-37.274-19.476Q-37.659-19.209-38.163-19.209Q-38.526-19.209-38.860-19.346Q-39.194-19.482-39.454-19.732Q-39.714-19.982-39.858-20.318Q-40.003-20.654-40.003-21.014M-36.268-20.982Q-36.268-21.486-36.013-21.918Q-35.757-22.349-35.321-22.601Q-34.886-22.853-34.386-22.853Q-33.999-22.853-33.657-22.709Q-33.315-22.564-33.054-22.303Q-32.792-22.041-32.649-21.705Q-32.507-21.369-32.507-20.982Q-32.507-20.490-32.770-20.080Q-33.034-19.670-33.464-19.439Q-33.893-19.209-34.386-19.209Q-34.878-19.209-35.311-19.441Q-35.745-19.674-36.007-20.082Q-36.268-20.490-36.268-20.982M-34.386-19.486Q-33.929-19.486-33.677-19.709Q-33.425-19.932-33.337-20.283Q-33.249-20.635-33.249-21.080Q-33.249-21.510-33.343-21.848Q-33.436-22.185-33.690-22.392Q-33.944-22.599-34.386-22.599Q-35.034-22.599-35.278-22.183Q-35.522-21.767-35.522-21.080Q-35.522-20.635-35.434-20.283Q-35.346-19.932-35.095-19.709Q-34.843-19.486-34.386-19.486M-30.093-19.287L-31.948-19.287L-31.948-19.584Q-31.675-19.584-31.507-19.631Q-31.339-19.678-31.339-19.846L-31.339-24.006Q-31.339-24.221-31.401-24.316Q-31.464-24.412-31.583-24.433Q-31.702-24.455-31.948-24.455L-31.948-24.752L-30.725-24.838L-30.725-22.135Q-30.600-22.346-30.413-22.496Q-30.225-22.646-29.999-22.730Q-29.772-22.814-29.526-22.814Q-28.358-22.814-28.358-21.736L-28.358-19.846Q-28.358-19.678-28.188-19.631Q-28.018-19.584-27.749-19.584L-27.749-19.287L-29.604-19.287L-29.604-19.584Q-29.331-19.584-29.163-19.631Q-28.995-19.678-28.995-19.846L-28.995-21.721Q-28.995-22.103-29.116-22.332Q-29.237-22.560-29.589-22.560Q-29.901-22.560-30.155-22.398Q-30.409-22.236-30.555-21.967Q-30.702-21.697-30.702-21.400L-30.702-19.846Q-30.702-19.678-30.532-19.631Q-30.362-19.584-30.093-19.584L-30.093-19.287M-27.304-21.041Q-27.304-21.521-27.071-21.937Q-26.839-22.353-26.429-22.603Q-26.018-22.853-25.542-22.853Q-24.811-22.853-24.413-22.412Q-24.014-21.971-24.014-21.240Q-24.014-21.135-24.108-21.111L-26.557-21.111L-26.557-21.041Q-26.557-20.631-26.436-20.275Q-26.315-19.920-26.044-19.703Q-25.772-19.486-25.343-19.486Q-24.979-19.486-24.682-19.715Q-24.386-19.943-24.284-20.295Q-24.276-20.342-24.190-20.357L-24.108-20.357Q-24.014-20.330-24.014-20.248Q-24.014-20.240-24.022-20.209Q-24.085-19.982-24.223-19.799Q-24.362-19.615-24.554-19.482Q-24.745-19.349-24.964-19.279Q-25.182-19.209-25.421-19.209Q-25.792-19.209-26.130-19.346Q-26.468-19.482-26.735-19.734Q-27.003-19.986-27.153-20.326Q-27.304-20.666-27.304-21.041M-26.550-21.349L-24.589-21.349Q-24.589-21.654-24.690-21.945Q-24.792-22.236-25.009-22.418Q-25.225-22.599-25.542-22.599Q-25.843-22.599-26.073-22.412Q-26.304-22.224-26.427-21.933Q-26.550-21.642-26.550-21.349M-21.518-19.287L-23.499-19.287L-23.499-19.584Q-23.229-19.584-23.061-19.629Q-22.893-19.674-22.893-19.846L-22.893-21.982Q-22.893-22.197-22.956-22.293Q-23.018-22.389-23.136-22.410Q-23.253-22.432-23.499-22.432L-23.499-22.728L-22.331-22.814L-22.331-22.029Q-22.253-22.240-22.100-22.426Q-21.948-22.611-21.749-22.713Q-21.550-22.814-21.323-22.814Q-21.077-22.814-20.886-22.670Q-20.694-22.525-20.694-22.295Q-20.694-22.139-20.800-22.029Q-20.905-21.920-21.061-21.920Q-21.218-21.920-21.327-22.029Q-21.436-22.139-21.436-22.295Q-21.436-22.455-21.331-22.560Q-21.655-22.560-21.870-22.332Q-22.085-22.103-22.180-21.764Q-22.276-21.424-22.276-21.119L-22.276-19.846Q-22.276-19.678-22.050-19.631Q-21.823-19.584-21.518-19.584L-21.518-19.287M-20.214-21.041Q-20.214-21.521-19.981-21.937Q-19.749-22.353-19.339-22.603Q-18.929-22.853-18.452-22.853Q-17.721-22.853-17.323-22.412Q-16.925-21.971-16.925-21.240Q-16.925-21.135-17.018-21.111L-19.468-21.111L-19.468-21.041Q-19.468-20.631-19.346-20.275Q-19.225-19.920-18.954-19.703Q-18.682-19.486-18.253-19.486Q-17.889-19.486-17.593-19.715Q-17.296-19.943-17.194-20.295Q-17.186-20.342-17.100-20.357L-17.018-20.357Q-16.925-20.330-16.925-20.248Q-16.925-20.240-16.932-20.209Q-16.995-19.982-17.134-19.799Q-17.272-19.615-17.464-19.482Q-17.655-19.349-17.874-19.279Q-18.093-19.209-18.331-19.209Q-18.702-19.209-19.040-19.346Q-19.378-19.482-19.645-19.734Q-19.913-19.986-20.063-20.326Q-20.214-20.666-20.214-21.041M-19.460-21.349L-17.499-21.349Q-17.499-21.654-17.600-21.945Q-17.702-22.236-17.919-22.418Q-18.136-22.599-18.452-22.599Q-18.753-22.599-18.983-22.412Q-19.214-22.224-19.337-21.933Q-19.460-21.642-19.460-21.349M-14.507-19.287L-16.362-19.287L-16.362-19.584Q-16.089-19.584-15.921-19.631Q-15.753-19.678-15.753-19.846L-15.753-21.982Q-15.753-22.197-15.815-22.293Q-15.878-22.389-15.997-22.410Q-16.116-22.432-16.362-22.432L-16.362-22.728L-15.171-22.814L-15.171-22.080Q-15.057-22.295-14.864-22.463Q-14.671-22.631-14.432-22.723Q-14.194-22.814-13.940-22.814Q-12.772-22.814-12.772-21.736L-12.772-19.846Q-12.772-19.678-12.602-19.631Q-12.432-19.584-12.163-19.584L-12.163-19.287L-14.018-19.287L-14.018-19.584Q-13.745-19.584-13.577-19.631Q-13.409-19.678-13.409-19.846L-13.409-21.721Q-13.409-22.103-13.530-22.332Q-13.651-22.560-14.003-22.560Q-14.315-22.560-14.569-22.398Q-14.823-22.236-14.970-21.967Q-15.116-21.697-15.116-21.400L-15.116-19.846Q-15.116-19.678-14.946-19.631Q-14.776-19.584-14.507-19.584L-14.507-19.287M-11.675-21.014Q-11.675-21.510-11.425-21.935Q-11.175-22.361-10.755-22.607Q-10.335-22.853-9.835-22.853Q-9.296-22.853-8.905-22.728Q-8.514-22.603-8.514-22.189Q-8.514-22.084-8.565-21.992Q-8.616-21.900-8.708-21.849Q-8.800-21.799-8.909-21.799Q-9.014-21.799-9.106-21.849Q-9.198-21.900-9.249-21.992Q-9.300-22.084-9.300-22.189Q-9.300-22.412-9.132-22.517Q-9.354-22.576-9.827-22.576Q-10.124-22.576-10.339-22.437Q-10.554-22.299-10.684-22.068Q-10.815-21.838-10.874-21.568Q-10.932-21.299-10.932-21.014Q-10.932-20.619-10.800-20.269Q-10.667-19.920-10.395-19.703Q-10.124-19.486-9.725-19.486Q-9.350-19.486-9.075-19.703Q-8.800-19.920-8.698-20.279Q-8.682-20.342-8.620-20.342L-8.514-20.342Q-8.479-20.342-8.454-20.314Q-8.429-20.287-8.429-20.248L-8.429-20.224Q-8.561-19.744-8.946-19.476Q-9.331-19.209-9.835-19.209Q-10.198-19.209-10.532-19.346Q-10.866-19.482-11.126-19.732Q-11.386-19.982-11.530-20.318Q-11.675-20.654-11.675-21.014M-7.940-21.041Q-7.940-21.521-7.708-21.937Q-7.475-22.353-7.065-22.603Q-6.655-22.853-6.179-22.853Q-5.448-22.853-5.050-22.412Q-4.651-21.971-4.651-21.240Q-4.651-21.135-4.745-21.111L-7.194-21.111L-7.194-21.041Q-7.194-20.631-7.073-20.275Q-6.952-19.920-6.680-19.703Q-6.409-19.486-5.979-19.486Q-5.616-19.486-5.319-19.715Q-5.022-19.943-4.921-20.295Q-4.913-20.342-4.827-20.357L-4.745-20.357Q-4.651-20.330-4.651-20.248Q-4.651-20.240-4.659-20.209Q-4.721-19.982-4.860-19.799Q-4.999-19.615-5.190-19.482Q-5.382-19.349-5.600-19.279Q-5.819-19.209-6.057-19.209Q-6.429-19.209-6.766-19.346Q-7.104-19.482-7.372-19.734Q-7.639-19.986-7.790-20.326Q-7.940-20.666-7.940-21.041M-7.186-21.349L-5.225-21.349Q-5.225-21.654-5.327-21.945Q-5.429-22.236-5.645-22.418Q-5.862-22.599-6.179-22.599Q-6.479-22.599-6.710-22.412Q-6.940-22.224-7.063-21.933Q-7.186-21.642-7.186-21.349\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(131.57 33.298)\">\u003Cpath d=\"M1.063-17.295Q0.450-17.752 0.048-18.387Q-0.355-19.021-0.550-19.767Q-0.745-20.514-0.745-21.287Q-0.745-22.060-0.550-22.807Q-0.355-23.553 0.048-24.187Q0.450-24.822 1.063-25.279Q1.075-25.283 1.083-25.285Q1.091-25.287 1.102-25.287L1.180-25.287Q1.219-25.287 1.245-25.260Q1.270-25.232 1.270-25.189Q1.270-25.139 1.239-25.119Q0.731-24.666 0.409-24.043Q0.087-23.420-0.054-22.724Q-0.195-22.029-0.195-21.287Q-0.195-20.553-0.056-19.853Q0.083-19.154 0.407-18.529Q0.731-17.904 1.239-17.455Q1.270-17.435 1.270-17.385Q1.270-17.342 1.245-17.314Q1.219-17.287 1.180-17.287L1.102-17.287Q1.094-17.291 1.085-17.293Q1.075-17.295 1.063-17.295\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(131.57 33.298)\">\u003Cpath d=\"M1.696-19.525L1.696-19.615Q1.747-19.826 1.942-19.846L2.142-19.846L2.142-22.174L1.942-22.174Q1.735-22.197 1.696-22.416L1.696-22.502Q1.747-22.717 1.942-22.736L2.423-22.736Q2.614-22.713 2.673-22.502Q2.993-22.775 3.407-22.775Q3.599-22.775 3.767-22.666Q3.935-22.557 4.009-22.385Q4.185-22.576 4.407-22.676Q4.630-22.775 4.872-22.775Q5.290-22.775 5.444-22.433Q5.599-22.092 5.599-21.623L5.599-19.846L5.798-19.846Q6.009-19.822 6.048-19.615L6.048-19.525Q5.997-19.310 5.798-19.287L4.981-19.287Q4.786-19.310 4.735-19.525L4.735-19.615Q4.786-19.822 4.981-19.846L5.071-19.846L5.071-21.592Q5.071-22.217 4.821-22.217Q4.489-22.217 4.312-21.906Q4.134-21.596 4.134-21.232L4.134-19.846L4.337-19.846Q4.544-19.822 4.583-19.615L4.583-19.525Q4.532-19.310 4.337-19.287L3.521-19.287Q3.321-19.310 3.271-19.525L3.271-19.615Q3.321-19.822 3.521-19.846L3.606-19.846L3.606-21.592Q3.606-22.217 3.360-22.217Q3.028-22.217 2.851-21.904Q2.673-21.592 2.673-21.232L2.673-19.846L2.872-19.846Q3.079-19.822 3.118-19.615L3.118-19.525Q3.067-19.307 2.872-19.287L1.942-19.287Q1.735-19.310 1.696-19.525M8.118-19.248Q7.646-19.248 7.261-19.492Q6.876-19.736 6.653-20.146Q6.431-20.557 6.431-21.014Q6.431-21.357 6.556-21.680Q6.681-22.002 6.911-22.256Q7.142-22.510 7.448-22.654Q7.755-22.799 8.118-22.799Q8.481-22.799 8.794-22.652Q9.106-22.506 9.329-22.260Q9.552-22.014 9.679-21.693Q9.806-21.373 9.806-21.014Q9.806-20.557 9.581-20.144Q9.356-19.732 8.972-19.490Q8.587-19.248 8.118-19.248M8.118-19.807Q8.583-19.807 8.874-20.201Q9.165-20.596 9.165-21.080Q9.165-21.373 9.030-21.641Q8.896-21.908 8.655-22.074Q8.415-22.240 8.118-22.240Q7.813-22.240 7.575-22.074Q7.337-21.908 7.202-21.641Q7.067-21.373 7.067-21.080Q7.067-20.599 7.360-20.203Q7.653-19.807 8.118-19.807M12.106-19.248Q11.642-19.248 11.276-19.498Q10.911-19.748 10.706-20.152Q10.501-20.557 10.501-21.014Q10.501-21.357 10.626-21.678Q10.751-21.998 10.983-22.248Q11.216-22.498 11.521-22.637Q11.825-22.775 12.181-22.775Q12.692-22.775 13.099-22.455L13.099-23.615L12.677-23.615Q12.466-23.639 12.427-23.853L12.427-23.943Q12.466-24.150 12.677-24.174L13.489-24.174Q13.688-24.150 13.739-23.943L13.739-19.846L14.165-19.846Q14.372-19.822 14.411-19.615L14.411-19.525Q14.372-19.310 14.165-19.287L13.349-19.287Q13.149-19.310 13.099-19.525L13.099-19.654Q12.903-19.463 12.642-19.355Q12.380-19.248 12.106-19.248M12.146-19.807Q12.505-19.807 12.757-20.076Q13.009-20.346 13.099-20.721L13.099-21.553Q13.040-21.740 12.913-21.891Q12.786-22.041 12.608-22.129Q12.431-22.217 12.235-22.217Q11.927-22.217 11.677-22.047Q11.427-21.877 11.282-21.592Q11.138-21.307 11.138-21.006Q11.138-20.557 11.423-20.182Q11.708-19.807 12.146-19.807M15.231-20.142L15.231-22.174L14.810-22.174Q14.603-22.197 14.560-22.416L14.560-22.502Q14.606-22.713 14.810-22.736L15.626-22.736Q15.821-22.713 15.872-22.502L15.872-20.174Q15.872-19.939 16.042-19.873Q16.212-19.807 16.497-19.807Q16.704-19.807 16.899-19.883Q17.095-19.959 17.220-20.109Q17.345-20.260 17.345-20.471L17.345-22.174L16.923-22.174Q16.712-22.197 16.673-22.416L16.673-22.502Q16.712-22.713 16.923-22.736L17.735-22.736Q17.935-22.713 17.985-22.502L17.985-19.846L18.411-19.846Q18.618-19.822 18.657-19.615L18.657-19.525Q18.618-19.310 18.411-19.287L17.595-19.287Q17.396-19.310 17.345-19.510Q16.942-19.248 16.435-19.248Q16.200-19.248 15.985-19.289Q15.771-19.330 15.605-19.432Q15.438-19.533 15.335-19.711Q15.231-19.889 15.231-20.142M19.185-19.525L19.185-19.615Q19.235-19.822 19.431-19.846L20.536-19.846L20.536-23.615L19.431-23.615Q19.235-23.639 19.185-23.853L19.185-23.943Q19.235-24.150 19.431-24.174L20.927-24.174Q21.118-24.150 21.177-23.943L21.177-19.846L22.278-19.846Q22.478-19.822 22.528-19.615L22.528-19.525Q22.478-19.310 22.278-19.287L19.431-19.287Q19.235-19.310 19.185-19.525M26.493-20.775L24.052-20.775Q24.106-20.498 24.304-20.275Q24.501-20.053 24.778-19.930Q25.056-19.807 25.341-19.807Q25.813-19.807 26.036-20.096Q26.044-20.107 26.101-20.213Q26.157-20.318 26.206-20.361Q26.255-20.404 26.349-20.416L26.493-20.416Q26.685-20.396 26.743-20.182L26.743-20.127Q26.677-19.826 26.446-19.629Q26.216-19.432 25.903-19.340Q25.591-19.248 25.286-19.248Q24.802-19.248 24.362-19.476Q23.923-19.705 23.655-20.105Q23.388-20.506 23.388-20.998L23.388-21.057Q23.388-21.525 23.634-21.928Q23.880-22.330 24.288-22.564Q24.696-22.799 25.165-22.799Q25.669-22.799 26.022-22.576Q26.376-22.353 26.560-21.965Q26.743-21.576 26.743-21.072L26.743-21.014Q26.685-20.799 26.493-20.775M24.060-21.326L26.087-21.326Q26.040-21.736 25.802-21.988Q25.563-22.240 25.165-22.240Q24.771-22.240 24.464-21.978Q24.157-21.717 24.060-21.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(131.57 33.298)\">\u003Cpath d=\"M32.068-20.088Q32.068-20.264 32.184-20.387Q32.299-20.510 32.479-20.510Q32.647-20.510 32.762-20.394Q32.877-20.279 32.877-20.103Q32.877-19.982 32.814-19.881Q32.963-19.767 33.272-19.767Q33.576-19.767 33.830-19.918Q34.084-20.068 34.266-20.314Q34.447-20.560 34.555-20.853Q34.662-21.146 34.693-21.424Q34.455-21.224 34.147-21.119Q33.838-21.014 33.518-21.014Q33.072-21.014 32.699-21.230Q32.326-21.447 32.109-21.816Q31.893-22.185 31.893-22.631Q31.893-23.103 32.139-23.474Q32.385-23.846 32.791-24.051Q33.197-24.256 33.670-24.256Q34.154-24.256 34.486-24.027Q34.818-23.799 35.006-23.426Q35.193-23.053 35.272-22.623Q35.350-22.193 35.350-21.736Q35.350-21.127 35.096-20.539Q34.842-19.951 34.365-19.580Q33.889-19.209 33.272-19.209Q32.775-19.209 32.422-19.418Q32.068-19.627 32.068-20.088M33.572-21.576Q33.959-21.576 34.295-21.805Q34.631-22.033 34.631-22.400Q34.631-22.439 34.615-22.517Q34.600-22.596 34.600-22.631Q34.600-22.642 34.607-22.674Q34.615-22.705 34.615-22.713Q34.553-22.963 34.434-23.183Q34.314-23.404 34.121-23.549Q33.928-23.693 33.670-23.693Q33.197-23.693 32.865-23.392Q32.533-23.092 32.533-22.631Q32.533-22.349 32.670-22.103Q32.807-21.857 33.045-21.717Q33.283-21.576 33.572-21.576\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(131.57 33.298)\">\u003Cpath d=\"M36.393-17.287L36.311-17.287Q36.275-17.287 36.250-17.316Q36.225-17.346 36.225-17.385Q36.225-17.435 36.256-17.455Q36.643-17.791 36.926-18.240Q37.209-18.689 37.375-19.189Q37.541-19.689 37.615-20.207Q37.690-20.724 37.690-21.287Q37.690-21.857 37.615-22.373Q37.541-22.889 37.375-23.385Q37.209-23.881 36.930-24.328Q36.650-24.775 36.256-25.119Q36.225-25.139 36.225-25.189Q36.225-25.228 36.250-25.258Q36.275-25.287 36.311-25.287L36.393-25.287Q36.404-25.287 36.414-25.285Q36.424-25.283 36.432-25.279Q37.045-24.822 37.447-24.187Q37.850-23.553 38.045-22.807Q38.240-22.060 38.240-21.287Q38.240-20.514 38.045-19.767Q37.850-19.021 37.447-18.387Q37.045-17.752 36.432-17.295Q36.420-17.295 36.412-17.293Q36.404-17.291 36.393-17.287\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(192.402 101.752)\">\u003Cpath d=\"M-38.326-25.930L-39.956-25.930L-39.956-26.210Q-39.727-26.210-39.578-26.245Q-39.430-26.279-39.430-26.419L-39.430-29.765Q-39.430-29.936-39.566-29.977Q-39.703-30.018-39.956-30.018L-39.956-30.298L-38.876-30.373L-38.876-29.967Q-38.654-30.168-38.367-30.271Q-38.079-30.373-37.772-30.373Q-37.345-30.373-36.981-30.160Q-36.617-29.946-36.403-29.582Q-36.189-29.218-36.189-28.798Q-36.189-28.353-36.429-27.989Q-36.668-27.625-37.061-27.422Q-37.454-27.219-37.898-27.219Q-38.165-27.219-38.413-27.319Q-38.660-27.420-38.848-27.601L-38.848-26.419Q-38.848-26.282-38.700-26.246Q-38.551-26.210-38.326-26.210L-38.326-25.930M-38.848-29.618L-38.848-28.008Q-38.715-27.755-38.472-27.598Q-38.230-27.441-37.953-27.441Q-37.625-27.441-37.372-27.642Q-37.119-27.844-36.986-28.162Q-36.852-28.480-36.852-28.798Q-36.852-29.027-36.917-29.256Q-36.982-29.485-37.110-29.683Q-37.239-29.881-37.433-30.001Q-37.628-30.120-37.861-30.120Q-38.155-30.120-38.423-29.991Q-38.691-29.861-38.848-29.618M-35.495-28.015Q-35.495-28.347-35.272-28.574Q-35.048-28.801-34.704-28.929Q-34.361-29.058-33.988-29.110Q-33.616-29.163-33.311-29.163L-33.311-29.416Q-33.311-29.621-33.419-29.801Q-33.527-29.980-33.708-30.083Q-33.889-30.185-34.097-30.185Q-34.504-30.185-34.740-30.093Q-34.651-30.056-34.605-29.972Q-34.559-29.888-34.559-29.786Q-34.559-29.690-34.605-29.611Q-34.651-29.533-34.732-29.488Q-34.812-29.444-34.901-29.444Q-35.051-29.444-35.152-29.541Q-35.253-29.639-35.253-29.786Q-35.253-30.408-34.097-30.408Q-33.886-30.408-33.636-30.344Q-33.387-30.281-33.185-30.162Q-32.983-30.042-32.857-29.857Q-32.730-29.673-32.730-29.430L-32.730-27.854Q-32.730-27.738-32.669-27.642Q-32.607-27.547-32.494-27.547Q-32.385-27.547-32.320-27.641Q-32.255-27.735-32.255-27.854L-32.255-28.302L-31.989-28.302L-31.989-27.854Q-31.989-27.584-32.216-27.419Q-32.443-27.253-32.723-27.253Q-32.932-27.253-33.069-27.407Q-33.205-27.560-33.229-27.776Q-33.376-27.509-33.658-27.364Q-33.940-27.219-34.265-27.219Q-34.542-27.219-34.826-27.294Q-35.109-27.369-35.302-27.548Q-35.495-27.728-35.495-28.015M-34.880-28.015Q-34.880-27.841-34.779-27.711Q-34.679-27.581-34.523-27.511Q-34.367-27.441-34.203-27.441Q-33.985-27.441-33.776-27.538Q-33.568-27.636-33.440-27.817Q-33.311-27.998-33.311-28.224L-33.311-28.952Q-33.636-28.952-34.002-28.861Q-34.367-28.770-34.624-28.558Q-34.880-28.347-34.880-28.015M-31.613-26.754Q-31.613-27-31.416-27.184Q-31.220-27.369-30.963-27.448Q-31.100-27.560-31.172-27.721Q-31.243-27.882-31.243-28.063Q-31.243-28.384-31.032-28.630Q-31.367-28.928-31.367-29.338Q-31.367-29.799-30.977-30.086Q-30.587-30.373-30.109-30.373Q-29.637-30.373-29.302-30.127Q-29.128-30.281-28.918-30.363Q-28.707-30.445-28.478-30.445Q-28.314-30.445-28.193-30.338Q-28.072-30.230-28.072-30.066Q-28.072-29.970-28.143-29.898Q-28.215-29.827-28.307-29.827Q-28.407-29.827-28.477-29.900Q-28.547-29.974-28.547-30.073Q-28.547-30.127-28.533-30.158L-28.526-30.172Q-28.519-30.192-28.511-30.203Q-28.502-30.213-28.499-30.220Q-28.854-30.220-29.141-29.997Q-28.854-29.704-28.854-29.338Q-28.854-29.023-29.039-28.791Q-29.223-28.558-29.512-28.430Q-29.801-28.302-30.109-28.302Q-30.310-28.302-30.502-28.352Q-30.693-28.401-30.871-28.511Q-30.963-28.384-30.963-28.241Q-30.963-28.059-30.835-27.924Q-30.707-27.789-30.522-27.789L-29.890-27.789Q-29.442-27.789-29.073-27.718Q-28.704-27.646-28.444-27.417Q-28.184-27.188-28.184-26.754Q-28.184-26.433-28.480-26.231Q-28.776-26.029-29.179-25.940Q-29.582-25.851-29.897-25.851Q-30.215-25.851-30.618-25.940Q-31.021-26.029-31.317-26.231Q-31.613-26.433-31.613-26.754M-31.158-26.754Q-31.158-26.525-30.939-26.376Q-30.721-26.227-30.428-26.159Q-30.136-26.091-29.897-26.091Q-29.733-26.091-29.524-26.127Q-29.316-26.162-29.109-26.243Q-28.902-26.323-28.771-26.451Q-28.639-26.579-28.639-26.754Q-28.639-27.106-29.020-27.200Q-29.401-27.294-29.904-27.294L-30.522-27.294Q-30.762-27.294-30.960-27.143Q-31.158-26.993-31.158-26.754M-30.109-28.541Q-29.442-28.541-29.442-29.338Q-29.442-30.138-30.109-30.138Q-30.779-30.138-30.779-29.338Q-30.779-28.541-30.109-28.541M-27.631-28.822Q-27.631-29.143-27.506-29.432Q-27.381-29.721-27.156-29.944Q-26.930-30.168-26.634-30.288Q-26.339-30.408-26.021-30.408Q-25.693-30.408-25.431-30.308Q-25.170-30.209-24.994-30.027Q-24.818-29.844-24.724-29.586Q-24.630-29.328-24.630-28.996Q-24.630-28.904-24.712-28.883L-26.968-28.883L-26.968-28.822Q-26.968-28.234-26.684-27.851Q-26.400-27.468-25.833-27.468Q-25.512-27.468-25.243-27.661Q-24.975-27.854-24.886-28.169Q-24.879-28.210-24.804-28.224L-24.712-28.224Q-24.630-28.200-24.630-28.128Q-24.630-28.121-24.637-28.094Q-24.749-27.697-25.120-27.458Q-25.491-27.219-25.915-27.219Q-26.352-27.219-26.752-27.427Q-27.152-27.636-27.391-28.003Q-27.631-28.370-27.631-28.822M-26.961-29.092L-25.146-29.092Q-25.146-29.369-25.243-29.621Q-25.341-29.874-25.539-30.030Q-25.737-30.185-26.021-30.185Q-26.298-30.185-26.511-30.027Q-26.725-29.868-26.843-29.613Q-26.961-29.358-26.961-29.092\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(192.402 101.752)\">\u003Cpath d=\"M-21.272-28.015Q-21.272-28.347-21.049-28.574Q-20.825-28.801-20.481-28.929Q-20.138-29.058-19.765-29.110Q-19.393-29.163-19.088-29.163L-19.088-29.416Q-19.088-29.621-19.196-29.801Q-19.304-29.980-19.485-30.083Q-19.666-30.185-19.874-30.185Q-20.281-30.185-20.517-30.093Q-20.428-30.056-20.382-29.972Q-20.336-29.888-20.336-29.786Q-20.336-29.690-20.382-29.611Q-20.428-29.533-20.509-29.488Q-20.589-29.444-20.678-29.444Q-20.828-29.444-20.929-29.541Q-21.030-29.639-21.030-29.786Q-21.030-30.408-19.874-30.408Q-19.663-30.408-19.413-30.344Q-19.164-30.281-18.962-30.162Q-18.760-30.042-18.634-29.857Q-18.507-29.673-18.507-29.430L-18.507-27.854Q-18.507-27.738-18.446-27.642Q-18.384-27.547-18.271-27.547Q-18.162-27.547-18.097-27.641Q-18.032-27.735-18.032-27.854L-18.032-28.302L-17.766-28.302L-17.766-27.854Q-17.766-27.584-17.993-27.419Q-18.220-27.253-18.500-27.253Q-18.709-27.253-18.846-27.407Q-18.982-27.560-19.006-27.776Q-19.153-27.509-19.435-27.364Q-19.717-27.219-20.042-27.219Q-20.319-27.219-20.603-27.294Q-20.886-27.369-21.079-27.548Q-21.272-27.728-21.272-28.015M-20.657-28.015Q-20.657-27.841-20.556-27.711Q-20.456-27.581-20.300-27.511Q-20.145-27.441-19.980-27.441Q-19.762-27.441-19.553-27.538Q-19.345-27.636-19.217-27.817Q-19.088-27.998-19.088-28.224L-19.088-28.952Q-19.413-28.952-19.779-28.861Q-20.145-28.770-20.401-28.558Q-20.657-28.347-20.657-28.015M-16.542-27.287L-16.809-27.287L-16.809-31.395Q-16.809-31.665-16.916-31.727Q-17.024-31.788-17.335-31.788L-17.335-32.069L-16.255-32.144L-16.255-29.974Q-16.046-30.165-15.761-30.269Q-15.476-30.373-15.178-30.373Q-14.860-30.373-14.563-30.252Q-14.266-30.131-14.043-29.915Q-13.821-29.700-13.695-29.415Q-13.568-29.129-13.568-28.798Q-13.568-28.353-13.808-27.989Q-14.047-27.625-14.440-27.422Q-14.833-27.219-15.277-27.219Q-15.472-27.219-15.662-27.275Q-15.852-27.331-16.012-27.436Q-16.173-27.540-16.313-27.701L-16.542-27.287M-16.228-29.632L-16.228-28.015Q-16.091-27.755-15.850-27.598Q-15.609-27.441-15.332-27.441Q-15.038-27.441-14.826-27.548Q-14.614-27.656-14.481-27.848Q-14.348-28.039-14.290-28.278Q-14.231-28.517-14.231-28.798Q-14.231-29.157-14.325-29.461Q-14.419-29.765-14.647-29.958Q-14.874-30.151-15.240-30.151Q-15.541-30.151-15.807-30.015Q-16.074-29.878-16.228-29.632M-12.933-27.294L-12.933-28.357Q-12.933-28.381-12.905-28.408Q-12.878-28.435-12.854-28.435L-12.745-28.435Q-12.680-28.435-12.666-28.377Q-12.570-27.943-12.324-27.692Q-12.078-27.441-11.665-27.441Q-11.323-27.441-11.070-27.574Q-10.817-27.707-10.817-28.015Q-10.817-28.172-10.911-28.287Q-11.005-28.401-11.143-28.470Q-11.282-28.538-11.449-28.576L-12.030-28.675Q-12.386-28.743-12.659-28.964Q-12.933-29.184-12.933-29.526Q-12.933-29.775-12.822-29.950Q-12.710-30.124-12.524-30.223Q-12.338-30.322-12.123-30.365Q-11.907-30.408-11.665-30.408Q-11.251-30.408-10.971-30.226L-10.755-30.401Q-10.745-30.404-10.738-30.406Q-10.731-30.408-10.721-30.408L-10.670-30.408Q-10.643-30.408-10.619-30.384Q-10.595-30.360-10.595-30.332L-10.595-29.485Q-10.595-29.464-10.619-29.437Q-10.643-29.410-10.670-29.410L-10.783-29.410Q-10.810-29.410-10.836-29.435Q-10.861-29.461-10.861-29.485Q-10.861-29.721-10.967-29.885Q-11.073-30.049-11.256-30.131Q-11.439-30.213-11.671-30.213Q-11.999-30.213-12.256-30.110Q-12.512-30.008-12.512-29.731Q-12.512-29.536-12.329-29.427Q-12.146-29.317-11.917-29.276L-11.343-29.170Q-11.097-29.122-10.884-28.994Q-10.670-28.866-10.533-28.663Q-10.396-28.459-10.396-28.210Q-10.396-27.697-10.762-27.458Q-11.128-27.219-11.665-27.219Q-12.160-27.219-12.492-27.513L-12.758-27.239Q-12.779-27.219-12.806-27.219L-12.854-27.219Q-12.878-27.219-12.905-27.246Q-12.933-27.273-12.933-27.294M-9.809-28.822Q-9.809-29.143-9.684-29.432Q-9.559-29.721-9.333-29.944Q-9.108-30.168-8.812-30.288Q-8.517-30.408-8.199-30.408Q-7.871-30.408-7.609-30.308Q-7.348-30.209-7.172-30.027Q-6.996-29.844-6.902-29.586Q-6.808-29.328-6.808-28.996Q-6.808-28.904-6.890-28.883L-9.145-28.883L-9.145-28.822Q-9.145-28.234-8.862-27.851Q-8.578-27.468-8.011-27.468Q-7.689-27.468-7.421-27.661Q-7.153-27.854-7.064-28.169Q-7.057-28.210-6.982-28.224L-6.890-28.224Q-6.808-28.200-6.808-28.128Q-6.808-28.121-6.814-28.094Q-6.927-27.697-7.298-27.458Q-7.669-27.219-8.093-27.219Q-8.530-27.219-8.930-27.427Q-9.330-27.636-9.569-28.003Q-9.809-28.370-9.809-28.822M-9.139-29.092L-7.324-29.092Q-7.324-29.369-7.421-29.621Q-7.519-29.874-7.717-30.030Q-7.915-30.185-8.199-30.185Q-8.476-30.185-8.689-30.027Q-8.903-29.868-9.021-29.613Q-9.139-29.358-9.139-29.092M-4.538-27.287L-6.172-27.287L-6.172-27.567Q-5.943-27.567-5.794-27.601Q-5.645-27.636-5.645-27.776L-5.645-29.625Q-5.645-29.895-5.753-29.956Q-5.861-30.018-6.172-30.018L-6.172-30.298L-5.112-30.373L-5.112-29.724Q-4.941-30.032-4.637-30.203Q-4.333-30.373-3.988-30.373Q-3.482-30.373-3.198-30.150Q-2.915-29.926-2.915-29.430L-2.915-27.776Q-2.915-27.639-2.766-27.603Q-2.617-27.567-2.392-27.567L-2.392-27.287L-4.022-27.287L-4.022-27.567Q-3.793-27.567-3.644-27.601Q-3.496-27.636-3.496-27.776L-3.496-29.416Q-3.496-29.751-3.615-29.951Q-3.735-30.151-4.049-30.151Q-4.319-30.151-4.553-30.015Q-4.788-29.878-4.926-29.644Q-5.064-29.410-5.064-29.136L-5.064-27.776Q-5.064-27.639-4.914-27.603Q-4.764-27.567-4.538-27.567\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(192.402 101.752)\">\u003Cpath d=\"M-1.476-28.128L-1.476-30.025L-2.115-30.025L-2.115-30.247Q-1.797-30.247-1.580-30.457Q-1.363-30.667-1.263-30.977Q-1.162-31.286-1.162-31.594L-0.895-31.594L-0.895-30.305L0.182-30.305L0.182-30.025L-0.895-30.025L-0.895-28.141Q-0.895-27.865-0.791-27.666Q-0.687-27.468-0.427-27.468Q-0.270-27.468-0.164-27.572Q-0.058-27.677-0.008-27.830Q0.041-27.984 0.041-28.141L0.041-28.555L0.308-28.555L0.308-28.128Q0.308-27.902 0.209-27.692Q0.110-27.482-0.075-27.350Q-0.259-27.219-0.488-27.219Q-0.926-27.219-1.201-27.456Q-1.476-27.694-1.476-28.128M1.518-27.707Q1.518-27.875 1.641-27.998Q1.764-28.121 1.938-28.121Q2.106-28.121 2.229-27.998Q2.352-27.875 2.352-27.707Q2.352-27.533 2.229-27.410Q2.106-27.287 1.938-27.287Q1.764-27.287 1.641-27.410Q1.518-27.533 1.518-27.707M1.518-29.891Q1.518-30.059 1.641-30.182Q1.764-30.305 1.938-30.305Q2.106-30.305 2.229-30.182Q2.352-30.059 2.352-29.891Q2.352-29.717 2.229-29.594Q2.106-29.471 1.938-29.471Q1.764-29.471 1.641-29.594Q1.518-29.717 1.518-29.891\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(192.402 101.752)\">\u003Cpath d=\"M8.585-25.930L6.955-25.930L6.955-26.210Q7.184-26.210 7.333-26.245Q7.481-26.279 7.481-26.419L7.481-29.765Q7.481-29.936 7.345-29.977Q7.208-30.018 6.955-30.018L6.955-30.298L8.035-30.373L8.035-29.967Q8.257-30.168 8.544-30.271Q8.832-30.373 9.139-30.373Q9.566-30.373 9.930-30.160Q10.294-29.946 10.508-29.582Q10.722-29.218 10.722-28.798Q10.722-28.353 10.482-27.989Q10.243-27.625 9.850-27.422Q9.457-27.219 9.013-27.219Q8.746-27.219 8.498-27.319Q8.251-27.420 8.063-27.601L8.063-26.419Q8.063-26.282 8.211-26.246Q8.360-26.210 8.585-26.210L8.585-25.930M8.063-29.618L8.063-28.008Q8.196-27.755 8.439-27.598Q8.681-27.441 8.958-27.441Q9.286-27.441 9.539-27.642Q9.792-27.844 9.925-28.162Q10.059-28.480 10.059-28.798Q10.059-29.027 9.994-29.256Q9.929-29.485 9.801-29.683Q9.672-29.881 9.478-30.001Q9.283-30.120 9.050-30.120Q8.756-30.120 8.488-29.991Q8.220-29.861 8.063-29.618M11.416-28.015Q11.416-28.347 11.639-28.574Q11.863-28.801 12.207-28.929Q12.550-29.058 12.923-29.110Q13.295-29.163 13.600-29.163L13.600-29.416Q13.600-29.621 13.492-29.801Q13.384-29.980 13.203-30.083Q13.022-30.185 12.814-30.185Q12.407-30.185 12.171-30.093Q12.260-30.056 12.306-29.972Q12.352-29.888 12.352-29.786Q12.352-29.690 12.306-29.611Q12.260-29.533 12.179-29.488Q12.099-29.444 12.010-29.444Q11.860-29.444 11.759-29.541Q11.658-29.639 11.658-29.786Q11.658-30.408 12.814-30.408Q13.025-30.408 13.275-30.344Q13.524-30.281 13.726-30.162Q13.928-30.042 14.054-29.857Q14.181-29.673 14.181-29.430L14.181-27.854Q14.181-27.738 14.242-27.642Q14.304-27.547 14.417-27.547Q14.526-27.547 14.591-27.641Q14.656-27.735 14.656-27.854L14.656-28.302L14.922-28.302L14.922-27.854Q14.922-27.584 14.695-27.419Q14.468-27.253 14.188-27.253Q13.979-27.253 13.842-27.407Q13.706-27.560 13.682-27.776Q13.535-27.509 13.253-27.364Q12.971-27.219 12.646-27.219Q12.369-27.219 12.085-27.294Q11.802-27.369 11.609-27.548Q11.416-27.728 11.416-28.015M12.031-28.015Q12.031-27.841 12.132-27.711Q12.232-27.581 12.388-27.511Q12.544-27.441 12.708-27.441Q12.926-27.441 13.135-27.538Q13.343-27.636 13.471-27.817Q13.600-27.998 13.600-28.224L13.600-28.952Q13.275-28.952 12.909-28.861Q12.544-28.770 12.287-28.558Q12.031-28.347 12.031-28.015M15.298-26.754Q15.298-27 15.495-27.184Q15.691-27.369 15.948-27.448Q15.811-27.560 15.739-27.721Q15.668-27.882 15.668-28.063Q15.668-28.384 15.879-28.630Q15.544-28.928 15.544-29.338Q15.544-29.799 15.934-30.086Q16.324-30.373 16.802-30.373Q17.274-30.373 17.609-30.127Q17.783-30.281 17.993-30.363Q18.204-30.445 18.433-30.445Q18.597-30.445 18.718-30.338Q18.839-30.230 18.839-30.066Q18.839-29.970 18.768-29.898Q18.696-29.827 18.604-29.827Q18.504-29.827 18.434-29.900Q18.364-29.974 18.364-30.073Q18.364-30.127 18.378-30.158L18.385-30.172Q18.392-30.192 18.400-30.203Q18.409-30.213 18.412-30.220Q18.057-30.220 17.770-29.997Q18.057-29.704 18.057-29.338Q18.057-29.023 17.872-28.791Q17.688-28.558 17.399-28.430Q17.110-28.302 16.802-28.302Q16.601-28.302 16.409-28.352Q16.218-28.401 16.040-28.511Q15.948-28.384 15.948-28.241Q15.948-28.059 16.076-27.924Q16.204-27.789 16.389-27.789L17.021-27.789Q17.469-27.789 17.838-27.718Q18.207-27.646 18.467-27.417Q18.727-27.188 18.727-26.754Q18.727-26.433 18.431-26.231Q18.135-26.029 17.732-25.940Q17.329-25.851 17.014-25.851Q16.696-25.851 16.293-25.940Q15.890-26.029 15.594-26.231Q15.298-26.433 15.298-26.754M15.753-26.754Q15.753-26.525 15.972-26.376Q16.190-26.227 16.483-26.159Q16.775-26.091 17.014-26.091Q17.178-26.091 17.387-26.127Q17.595-26.162 17.802-26.243Q18.009-26.323 18.140-26.451Q18.272-26.579 18.272-26.754Q18.272-27.106 17.891-27.200Q17.510-27.294 17.007-27.294L16.389-27.294Q16.149-27.294 15.951-27.143Q15.753-26.993 15.753-26.754M16.802-28.541Q17.469-28.541 17.469-29.338Q17.469-30.138 16.802-30.138Q16.132-30.138 16.132-29.338Q16.132-28.541 16.802-28.541M19.280-28.822Q19.280-29.143 19.405-29.432Q19.530-29.721 19.755-29.944Q19.981-30.168 20.277-30.288Q20.572-30.408 20.890-30.408Q21.218-30.408 21.480-30.308Q21.741-30.209 21.917-30.027Q22.093-29.844 22.187-29.586Q22.281-29.328 22.281-28.996Q22.281-28.904 22.199-28.883L19.943-28.883L19.943-28.822Q19.943-28.234 20.227-27.851Q20.511-27.468 21.078-27.468Q21.399-27.468 21.668-27.661Q21.936-27.854 22.025-28.169Q22.032-28.210 22.107-28.224L22.199-28.224Q22.281-28.200 22.281-28.128Q22.281-28.121 22.274-28.094Q22.162-27.697 21.791-27.458Q21.420-27.219 20.996-27.219Q20.559-27.219 20.159-27.427Q19.759-27.636 19.520-28.003Q19.280-28.370 19.280-28.822M19.950-29.092L21.765-29.092Q21.765-29.369 21.668-29.621Q21.570-29.874 21.372-30.030Q21.174-30.185 20.890-30.185Q20.613-30.185 20.400-30.027Q20.186-29.868 20.068-29.613Q19.950-29.358 19.950-29.092\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(192.402 101.752)\">\u003Cpath d=\"M27.378-27.287L25.645-27.287L25.645-27.567Q25.871-27.567 26.020-27.601Q26.168-27.636 26.168-27.776L26.168-30.025L25.580-30.025L25.580-30.305L26.168-30.305L26.168-31.122Q26.168-31.440 26.346-31.688Q26.524-31.935 26.814-32.076Q27.105-32.216 27.416-32.216Q27.672-32.216 27.876-32.074Q28.079-31.932 28.079-31.689Q28.079-31.553 27.980-31.454Q27.881-31.354 27.744-31.354Q27.607-31.354 27.508-31.454Q27.409-31.553 27.409-31.689Q27.409-31.870 27.549-31.963Q27.471-31.990 27.371-31.990Q27.163-31.990 27.009-31.857Q26.855-31.724 26.775-31.520Q26.695-31.317 26.695-31.108L26.695-30.305L27.583-30.305L27.583-30.025L26.722-30.025L26.722-27.776Q26.722-27.567 27.378-27.567L27.378-27.287M28.117-28.015Q28.117-28.347 28.340-28.574Q28.564-28.801 28.908-28.929Q29.251-29.058 29.624-29.110Q29.996-29.163 30.301-29.163L30.301-29.416Q30.301-29.621 30.193-29.801Q30.085-29.980 29.904-30.083Q29.723-30.185 29.515-30.185Q29.108-30.185 28.872-30.093Q28.961-30.056 29.007-29.972Q29.053-29.888 29.053-29.786Q29.053-29.690 29.007-29.611Q28.961-29.533 28.881-29.488Q28.800-29.444 28.711-29.444Q28.561-29.444 28.460-29.541Q28.359-29.639 28.359-29.786Q28.359-30.408 29.515-30.408Q29.726-30.408 29.976-30.344Q30.225-30.281 30.427-30.162Q30.629-30.042 30.755-29.857Q30.882-29.673 30.882-29.430L30.882-27.854Q30.882-27.738 30.943-27.642Q31.005-27.547 31.118-27.547Q31.227-27.547 31.292-27.641Q31.357-27.735 31.357-27.854L31.357-28.302L31.623-28.302L31.623-27.854Q31.623-27.584 31.396-27.419Q31.169-27.253 30.889-27.253Q30.680-27.253 30.543-27.407Q30.407-27.560 30.383-27.776Q30.236-27.509 29.954-27.364Q29.672-27.219 29.347-27.219Q29.070-27.219 28.787-27.294Q28.503-27.369 28.310-27.548Q28.117-27.728 28.117-28.015M28.732-28.015Q28.732-27.841 28.833-27.711Q28.933-27.581 29.089-27.511Q29.245-27.441 29.409-27.441Q29.627-27.441 29.836-27.538Q30.044-27.636 30.172-27.817Q30.301-27.998 30.301-28.224L30.301-28.952Q29.976-28.952 29.610-28.861Q29.245-28.770 28.988-28.558Q28.732-28.347 28.732-28.015M32.615-28.121L32.615-29.625Q32.615-29.895 32.507-29.956Q32.399-30.018 32.088-30.018L32.088-30.298L33.196-30.373L33.196-28.141L33.196-28.121Q33.196-27.841 33.247-27.697Q33.298-27.554 33.440-27.497Q33.582-27.441 33.869-27.441Q34.122-27.441 34.327-27.581Q34.532-27.721 34.648-27.947Q34.765-28.172 34.765-28.422L34.765-29.625Q34.765-29.895 34.657-29.956Q34.549-30.018 34.238-30.018L34.238-30.298L35.346-30.373L35.346-27.960Q35.346-27.769 35.399-27.687Q35.452-27.605 35.552-27.586Q35.653-27.567 35.869-27.567L35.869-27.287L34.792-27.219L34.792-27.783Q34.683-27.601 34.537-27.478Q34.392-27.355 34.206-27.287Q34.019-27.219 33.818-27.219Q32.615-27.219 32.615-28.121M38.124-27.287L36.521-27.287L36.521-27.567Q36.747-27.567 36.896-27.601Q37.044-27.636 37.044-27.776L37.044-31.395Q37.044-31.665 36.937-31.727Q36.829-31.788 36.521-31.788L36.521-32.069L37.598-32.144L37.598-27.776Q37.598-27.639 37.748-27.603Q37.899-27.567 38.124-27.567L38.124-27.287M39.245-28.128L39.245-30.025L38.606-30.025L38.606-30.247Q38.924-30.247 39.141-30.457Q39.358-30.667 39.459-30.977Q39.560-31.286 39.560-31.594L39.827-31.594L39.827-30.305L40.903-30.305L40.903-30.025L39.827-30.025L39.827-28.141Q39.827-27.865 39.931-27.666Q40.035-27.468 40.295-27.468Q40.452-27.468 40.558-27.572Q40.664-27.677 40.714-27.830Q40.763-27.984 40.763-28.141L40.763-28.555L41.030-28.555L41.030-28.128Q41.030-27.902 40.931-27.692Q40.831-27.482 40.647-27.350Q40.462-27.219 40.233-27.219Q39.796-27.219 39.521-27.456Q39.245-27.694 39.245-28.128\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(192.402 101.752)\">\u003Cpath d=\"M-20.508-17.537Q-21.058-17.937-21.429-18.492Q-21.800-19.048-21.981-19.694Q-22.162-20.340-22.162-21.037Q-22.162-21.550-22.062-22.045Q-21.961-22.541-21.756-22.992Q-21.551-23.443-21.238-23.835Q-20.925-24.226-20.508-24.530Q-20.498-24.534-20.491-24.535Q-20.484-24.537-20.474-24.537L-20.406-24.537Q-20.371-24.537-20.349-24.513Q-20.327-24.489-20.327-24.452Q-20.327-24.407-20.354-24.390Q-20.703-24.089-20.956-23.705Q-21.209-23.320-21.361-22.879Q-21.513-22.438-21.585-21.982Q-21.657-21.526-21.657-21.037Q-21.657-20.036-21.347-19.149Q-21.038-18.262-20.354-17.677Q-20.327-17.660-20.327-17.616Q-20.327-17.578-20.349-17.554Q-20.371-17.530-20.406-17.530L-20.474-17.530Q-20.481-17.534-20.489-17.535Q-20.498-17.537-20.508-17.537\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(192.402 101.752)\">\u003Cpath d=\"M-19.875-19.495L-19.875-19.574Q-19.830-19.759-19.660-19.776L-19.485-19.776L-19.485-21.813L-19.660-21.813Q-19.841-21.833-19.875-22.025L-19.875-22.100Q-19.830-22.288-19.660-22.305L-19.239-22.305Q-19.072-22.285-19.020-22.100Q-18.740-22.339-18.378-22.339Q-18.210-22.339-18.063-22.244Q-17.916-22.148-17.851-21.997Q-17.698-22.165-17.503-22.252Q-17.308-22.339-17.096-22.339Q-16.730-22.339-16.595-22.040Q-16.460-21.741-16.460-21.331L-16.460-19.776L-16.286-19.776Q-16.101-19.755-16.067-19.574L-16.067-19.495Q-16.112-19.308-16.286-19.287L-17-19.287Q-17.171-19.308-17.216-19.495L-17.216-19.574Q-17.171-19.755-17-19.776L-16.922-19.776L-16.922-21.304Q-16.922-21.850-17.140-21.850Q-17.431-21.850-17.587-21.579Q-17.742-21.307-17.742-20.989L-17.742-19.776L-17.564-19.776Q-17.383-19.755-17.349-19.574L-17.349-19.495Q-17.393-19.308-17.564-19.287L-18.279-19.287Q-18.453-19.308-18.497-19.495L-18.497-19.574Q-18.453-19.755-18.279-19.776L-18.203-19.776L-18.203-21.304Q-18.203-21.850-18.419-21.850Q-18.709-21.850-18.865-21.577Q-19.020-21.304-19.020-20.989L-19.020-19.776L-18.846-19.776Q-18.665-19.755-18.631-19.574L-18.631-19.495Q-18.675-19.304-18.846-19.287L-19.660-19.287Q-19.841-19.308-19.875-19.495M-14.256-19.253Q-14.669-19.253-15.006-19.466Q-15.343-19.680-15.537-20.039Q-15.732-20.398-15.732-20.798Q-15.732-21.099-15.623-21.381Q-15.514-21.662-15.312-21.885Q-15.110-22.107-14.842-22.233Q-14.574-22.360-14.256-22.360Q-13.938-22.360-13.664-22.232Q-13.391-22.103-13.196-21.888Q-13.001-21.673-12.890-21.392Q-12.779-21.112-12.779-20.798Q-12.779-20.398-12.976-20.037Q-13.172-19.677-13.509-19.465Q-13.846-19.253-14.256-19.253M-14.256-19.742Q-13.849-19.742-13.594-20.087Q-13.340-20.432-13.340-20.856Q-13.340-21.112-13.458-21.346Q-13.576-21.580-13.786-21.726Q-13.996-21.871-14.256-21.871Q-14.522-21.871-14.731-21.726Q-14.939-21.580-15.057-21.346Q-15.175-21.112-15.175-20.856Q-15.175-20.435-14.919-20.089Q-14.662-19.742-14.256-19.742M-10.766-19.253Q-11.173-19.253-11.492-19.472Q-11.812-19.690-11.991-20.044Q-12.171-20.398-12.171-20.798Q-12.171-21.099-12.061-21.379Q-11.952-21.659-11.749-21.878Q-11.545-22.097-11.279-22.218Q-11.012-22.339-10.701-22.339Q-10.253-22.339-9.898-22.059L-9.898-23.074L-10.267-23.074Q-10.452-23.095-10.486-23.283L-10.486-23.361Q-10.452-23.542-10.267-23.563L-9.556-23.563Q-9.382-23.542-9.337-23.361L-9.337-19.776L-8.965-19.776Q-8.784-19.755-8.749-19.574L-8.749-19.495Q-8.784-19.308-8.965-19.287L-9.679-19.287Q-9.853-19.308-9.898-19.495L-9.898-19.608Q-10.069-19.441-10.298-19.347Q-10.527-19.253-10.766-19.253M-10.732-19.742Q-10.417-19.742-10.197-19.977Q-9.976-20.213-9.898-20.541L-9.898-21.269Q-9.949-21.433-10.060-21.565Q-10.171-21.697-10.327-21.774Q-10.482-21.850-10.653-21.850Q-10.923-21.850-11.142-21.702Q-11.361-21.553-11.487-21.304Q-11.614-21.054-11.614-20.791Q-11.614-20.398-11.364-20.070Q-11.115-19.742-10.732-19.742M-8.032-20.036L-8.032-21.813L-8.401-21.813Q-8.582-21.833-8.619-22.025L-8.619-22.100Q-8.578-22.285-8.401-22.305L-7.686-22.305Q-7.515-22.285-7.471-22.100L-7.471-20.063Q-7.471-19.858-7.322-19.800Q-7.174-19.742-6.924-19.742Q-6.743-19.742-6.572-19.808Q-6.401-19.875-6.292-20.006Q-6.182-20.138-6.182-20.323L-6.182-21.813L-6.552-21.813Q-6.736-21.833-6.770-22.025L-6.770-22.100Q-6.736-22.285-6.552-22.305L-5.841-22.305Q-5.666-22.285-5.622-22.100L-5.622-19.776L-5.249-19.776Q-5.068-19.755-5.034-19.574L-5.034-19.495Q-5.068-19.308-5.249-19.287L-5.964-19.287Q-6.138-19.308-6.182-19.482Q-6.535-19.253-6.979-19.253Q-7.184-19.253-7.372-19.289Q-7.560-19.325-7.705-19.413Q-7.850-19.502-7.941-19.658Q-8.032-19.813-8.032-20.036M-4.573-19.495L-4.573-19.574Q-4.528-19.755-4.357-19.776L-3.390-19.776L-3.390-23.074L-4.357-23.074Q-4.528-23.095-4.573-23.283L-4.573-23.361Q-4.528-23.542-4.357-23.563L-3.048-23.563Q-2.881-23.542-2.829-23.361L-2.829-19.776L-1.866-19.776Q-1.691-19.755-1.647-19.574L-1.647-19.495Q-1.691-19.308-1.866-19.287L-4.357-19.287Q-4.528-19.308-4.573-19.495M1.822-20.589L-0.314-20.589Q-0.266-20.347-0.093-20.152Q0.079-19.957 0.322-19.849Q0.565-19.742 0.814-19.742Q1.228-19.742 1.423-19.995Q1.429-20.005 1.479-20.097Q1.528-20.189 1.571-20.227Q1.614-20.265 1.696-20.275L1.822-20.275Q1.990-20.258 2.041-20.070L2.041-20.022Q1.983-19.759 1.781-19.586Q1.580-19.413 1.306-19.333Q1.033-19.253 0.766-19.253Q0.342-19.253-0.042-19.453Q-0.427-19.653-0.661-20.003Q-0.895-20.353-0.895-20.784L-0.895-20.835Q-0.895-21.245-0.680-21.598Q-0.464-21.950-0.107-22.155Q0.250-22.360 0.660-22.360Q1.101-22.360 1.411-22.165Q1.720-21.970 1.881-21.630Q2.041-21.290 2.041-20.849L2.041-20.798Q1.990-20.610 1.822-20.589M-0.307-21.071L1.467-21.071Q1.426-21.430 1.217-21.651Q1.009-21.871 0.660-21.871Q0.315-21.871 0.047-21.642Q-0.222-21.413-0.307-21.071M2.978-19.461L2.978-20.261Q3.002-20.442 3.186-20.463L3.333-20.463Q3.477-20.442 3.528-20.302Q3.706-19.742 4.341-19.742Q4.523-19.742 4.723-19.772Q4.923-19.803 5.069-19.904Q5.216-20.005 5.216-20.183Q5.216-20.367 5.022-20.466Q4.827-20.565 4.588-20.603L3.976-20.702Q2.978-20.887 2.978-21.519Q2.978-21.772 3.104-21.938Q3.231-22.103 3.441-22.197Q3.651-22.291 3.875-22.326Q4.099-22.360 4.341-22.360Q4.560-22.360 4.729-22.334Q4.899-22.308 5.042-22.240Q5.110-22.343 5.223-22.360L5.292-22.360Q5.377-22.349 5.432-22.295Q5.486-22.240 5.497-22.158L5.497-21.539Q5.486-21.457 5.432-21.399Q5.377-21.341 5.292-21.331L5.145-21.331Q5.063-21.341 5.005-21.399Q4.946-21.457 4.936-21.539Q4.936-21.871 4.328-21.871Q4.024-21.871 3.745-21.799Q3.466-21.727 3.466-21.512Q3.466-21.280 4.054-21.184L4.670-21.078Q5.093-21.006 5.399-20.789Q5.705-20.572 5.705-20.183Q5.705-19.841 5.498-19.629Q5.292-19.417 4.986-19.335Q4.680-19.253 4.341-19.253Q3.836-19.253 3.487-19.475Q3.425-19.366 3.383-19.316Q3.340-19.266 3.248-19.253L3.186-19.253Q2.998-19.273 2.978-19.461\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(192.402 101.752)\">\u003Cpath d=\"M11.093-19.475L11.093-19.526Q11.093-20.001 11.185-20.480Q11.278-20.958 11.457-21.416Q11.636-21.874 11.896-22.293Q12.156-22.712 12.487-23.074L10.792-23.074L10.792-22.954Q10.748-22.766 10.573-22.746L10.450-22.746Q10.276-22.766 10.232-22.954L10.232-23.474Q10.276-23.659 10.450-23.676L10.573-23.676Q10.693-23.665 10.758-23.563L13.110-23.563Q13.280-23.542 13.325-23.361L13.325-23.283Q13.315-23.204 13.277-23.160Q13.048-22.934 12.846-22.702Q12.645-22.469 12.503-22.266Q12.361-22.062 12.223-21.801Q12.084-21.539 11.968-21.232Q11.814-20.818 11.734-20.367Q11.653-19.916 11.653-19.475Q11.643-19.366 11.568-19.297Q11.493-19.229 11.387-19.219Q11.267-19.219 11.185-19.287Q11.103-19.355 11.093-19.475M16.698-21.157L14.299-21.157Q14.190-21.167 14.114-21.242Q14.039-21.317 14.039-21.430Q14.039-21.543 14.114-21.615Q14.190-21.686 14.299-21.697L16.698-21.697Q16.808-21.686 16.880-21.615Q16.951-21.543 16.951-21.430Q16.951-21.317 16.880-21.242Q16.808-21.167 16.698-21.157M17.662-20.524Q17.662-20.774 17.799-20.996Q17.936-21.218 18.154-21.370Q18.373-21.522 18.623-21.598Q18.414-21.662 18.216-21.787Q18.018-21.912 17.893-22.095Q17.768-22.278 17.768-22.493Q17.768-22.842 17.984-23.100Q18.199-23.358 18.534-23.496Q18.869-23.635 19.211-23.635Q19.552-23.635 19.887-23.496Q20.222-23.358 20.438-23.096Q20.653-22.835 20.653-22.493Q20.653-22.278 20.528-22.097Q20.403-21.915 20.205-21.789Q20.007-21.662 19.799-21.598Q20.195-21.478 20.475-21.193Q20.756-20.907 20.756-20.524Q20.756-20.141 20.530-19.841Q20.304-19.540 19.945-19.379Q19.587-19.219 19.211-19.219Q18.835-19.219 18.476-19.378Q18.117-19.537 17.890-19.837Q17.662-20.138 17.662-20.524M18.223-20.524Q18.223-20.285 18.368-20.097Q18.513-19.909 18.742-19.808Q18.971-19.707 19.211-19.707Q19.450-19.707 19.677-19.808Q19.904-19.909 20.050-20.099Q20.195-20.288 20.195-20.524Q20.195-20.767 20.050-20.957Q19.904-21.146 19.677-21.249Q19.450-21.351 19.211-21.351Q18.971-21.351 18.742-21.249Q18.513-21.146 18.368-20.958Q18.223-20.770 18.223-20.524M18.329-22.493Q18.329-22.285 18.466-22.138Q18.602-21.991 18.809-21.917Q19.016-21.844 19.211-21.844Q19.402-21.844 19.611-21.917Q19.819-21.991 19.956-22.139Q20.092-22.288 20.092-22.493Q20.092-22.698 19.956-22.847Q19.819-22.995 19.611-23.069Q19.402-23.142 19.211-23.142Q19.016-23.142 18.809-23.069Q18.602-22.995 18.466-22.849Q18.329-22.702 18.329-22.493\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(192.402 101.752)\">\u003Cpath d=\"M21.716-17.530L21.647-17.530Q21.613-17.530 21.591-17.556Q21.569-17.581 21.569-17.616Q21.569-17.660 21.600-17.677Q21.955-17.981 22.205-18.371Q22.454-18.761 22.606-19.193Q22.758-19.625 22.828-20.094Q22.898-20.562 22.898-21.037Q22.898-21.516 22.828-21.982Q22.758-22.449 22.604-22.884Q22.451-23.320 22.199-23.708Q21.948-24.096 21.600-24.390Q21.569-24.407 21.569-24.452Q21.569-24.486 21.591-24.511Q21.613-24.537 21.647-24.537L21.716-24.537Q21.726-24.537 21.735-24.535Q21.743-24.534 21.753-24.530Q22.297-24.130 22.669-23.577Q23.042-23.023 23.223-22.377Q23.404-21.731 23.404-21.037Q23.404-20.336 23.223-19.689Q23.042-19.041 22.668-18.487Q22.293-17.933 21.753-17.537Q21.743-17.537 21.735-17.535Q21.726-17.534 21.716-17.530\" 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 request path of one memory access. The datapath issues a virtual address; the cache answers a hit at once; on a miss the TLB, or failing that the page table, translates virtual to physical, and the request reaches DRAM. On a multicore, coherence may redirect the miss to a peer cache; if the page is absent, the access becomes a page fault instead.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:511.431px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 383.573 286.659\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-51.665-3.784V-72.07h233.313v68.286ZM181.648-72.07\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmbx7\" font-size=\"7\">\u003Cg transform=\"translate(-5.003 -202.725)\">\u003Cpath d=\"M-39.758 138.927Q-39.758 138.103-39.315 137.537Q-38.872 136.972-38.158 136.705Q-37.444 136.438-36.637 136.438Q-36.217 136.438-35.825 136.560Q-35.434 136.681-35.119 136.917L-34.593 136.469Q-34.579 136.462-34.571 136.459Q-34.562 136.455-34.547 136.449Q-34.532 136.442-34.521 136.438L-34.412 136.438Q-34.320 136.462-34.299 136.551L-34.299 138.281Q-34.320 138.373-34.412 138.393L-34.713 138.393Q-34.802 138.373-34.826 138.281Q-34.860 137.990-35.002 137.725Q-35.143 137.460-35.367 137.265Q-35.591 137.071-35.866 136.965Q-36.141 136.859-36.449 136.859Q-37.146 136.859-37.628 137.081Q-38.110 137.303-38.349 137.764Q-38.589 138.226-38.589 138.927Q-38.589 139.631-38.344 140.092Q-38.100 140.554-37.625 140.772Q-37.150 140.991-36.435 140.991Q-36.032 140.991-35.644 140.834Q-35.256 140.677-35.012 140.372Q-34.767 140.068-34.767 139.655Q-34.747 139.562-34.655 139.542L-34.412 139.542Q-34.299 139.573-34.299 139.682Q-34.299 140.113-34.509 140.437Q-34.720 140.762-35.072 140.982Q-35.424 141.203-35.832 141.307Q-36.241 141.411-36.637 141.411Q-37.444 141.411-38.160 141.145Q-38.876 140.878-39.317 140.314Q-39.758 139.750-39.758 138.927M-33.486 139.808Q-33.486 139.265-33.211 138.892Q-32.935 138.520-32.482 138.337Q-32.030 138.154-31.503 138.154Q-30.984 138.154-30.529 138.337Q-30.075 138.520-29.799 138.892Q-29.524 139.265-29.524 139.808Q-29.524 140.328-29.805 140.682Q-30.085 141.035-30.539 141.201Q-30.994 141.367-31.503 141.367Q-32.009 141.367-32.467 141.201Q-32.925 141.035-33.205 140.682Q-33.486 140.328-33.486 139.808M-31.503 140.984Q-31.076 140.984-30.862 140.830Q-30.649 140.677-30.587 140.417Q-30.526 140.157-30.526 139.709Q-30.526 139.285-30.592 139.036Q-30.659 138.786-30.871 138.646Q-31.083 138.506-31.503 138.506Q-31.920 138.506-32.136 138.648Q-32.351 138.790-32.418 139.038Q-32.484 139.285-32.484 139.709Q-32.484 140.157-32.423 140.417Q-32.361 140.677-32.146 140.830Q-31.930 140.984-31.503 140.984M-26.940 141.326L-28.865 141.326L-28.865 140.906L-28.396 140.906L-28.396 138.848Q-28.396 138.718-28.528 138.686Q-28.659 138.653-28.865 138.653L-28.865 138.233L-27.620 138.175L-27.620 138.896Q-27.521 138.680-27.379 138.522Q-27.238 138.363-27.050 138.269Q-26.862 138.175-26.633 138.175Q-26.424 138.175-26.229 138.245Q-26.034 138.315-25.903 138.458Q-25.771 138.602-25.771 138.814Q-25.771 138.951-25.836 139.062Q-25.901 139.173-26.017 139.238Q-26.134 139.303-26.263 139.303Q-26.469 139.303-26.610 139.164Q-26.752 139.026-26.752 138.814Q-26.752 138.646-26.667 138.527Q-27.087 138.527-27.308 138.957Q-27.528 139.388-27.528 139.856L-27.528 140.906L-26.940 140.906L-26.940 141.326M-25.218 139.750Q-25.218 139.357-25.059 139.051Q-24.900 138.745-24.631 138.547Q-24.363 138.349-24.023 138.252Q-23.683 138.154-23.307 138.154Q-22.528 138.154-22.085 138.542Q-21.642 138.930-21.642 139.702Q-21.642 139.839-21.783 139.870L-24.216 139.870Q-24.216 140.437-23.912 140.711Q-23.608 140.984-23.034 140.984Q-22.736 140.984-22.470 140.856Q-22.203 140.728-22.097 140.472Q-22.056 140.396-21.971 140.372L-21.783 140.372Q-21.642 140.403-21.642 140.530Q-21.642 140.564-21.649 140.584Q-21.731 140.796-21.895 140.950Q-22.059 141.104-22.271 141.194Q-22.483 141.285-22.711 141.326Q-22.938 141.367-23.180 141.367Q-23.710 141.367-24.173 141.194Q-24.637 141.022-24.927 140.654Q-25.218 140.287-25.218 139.750M-24.216 139.549L-22.360 139.549Q-22.360 139.080-22.603 138.793Q-22.846 138.506-23.307 138.506Q-23.765 138.506-23.991 138.793Q-24.216 139.080-24.216 139.549\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-5.003 -202.725)\">\u003Cpath d=\"M-16.044 141.411Q-16.759 141.411-17.177 141.121Q-17.596 140.830-17.762 140.326Q-17.928 139.822-17.928 139.108Q-17.928 138.581-17.840 138.154Q-17.753 137.727-17.545 137.409Q-17.336 137.091-16.967 136.913Q-16.598 136.736-16.044 136.736Q-14.985 136.736-14.575 137.365Q-14.164 137.993-14.164 139.108Q-14.164 139.822-14.330 140.326Q-14.496 140.830-14.911 141.121Q-15.327 141.411-16.044 141.411M-16.810 140.598Q-16.714 140.817-16.502 140.938Q-16.290 141.059-16.044 141.059Q-15.795 141.059-15.583 140.936Q-15.371 140.813-15.282 140.598Q-15.231 140.485-15.203 140.219Q-15.176 139.952-15.169 139.661Q-15.162 139.371-15.162 138.981Q-15.162 138.431-15.185 138.052Q-15.207 137.672-15.282 137.512Q-15.374 137.310-15.586 137.197Q-15.798 137.084-16.044 137.084Q-16.294 137.084-16.504 137.195Q-16.714 137.306-16.810 137.512Q-16.885 137.682-16.907 138.057Q-16.930 138.431-16.930 138.981Q-16.930 139.590-16.907 140.002Q-16.885 140.413-16.810 140.598M-13.091 140.738Q-13.091 140.502-12.919 140.330Q-12.746 140.157-12.503 140.157Q-12.353 140.157-12.216 140.236Q-12.079 140.314-12.001 140.451Q-11.922 140.588-11.922 140.738Q-11.922 140.981-12.095 141.153Q-12.267 141.326-12.503 141.326Q-12.743 141.326-12.917 141.152Q-13.091 140.977-13.091 140.738M-13.091 138.800Q-13.091 138.564-12.919 138.392Q-12.746 138.219-12.503 138.219Q-12.353 138.219-12.216 138.298Q-12.079 138.376-12.001 138.513Q-11.922 138.650-11.922 138.800Q-11.922 139.043-12.095 139.215Q-12.267 139.388-12.503 139.388Q-12.743 139.388-12.917 139.214Q-13.091 139.039-13.091 138.800\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-5.003 -202.725)\">\u003Cpath d=\"M-6.388 140.536L-6.388 138.639L-7.006 138.639L-7.006 138.287Q-6.746 138.287-6.540 138.158Q-6.333 138.028-6.205 137.826Q-6.076 137.624-6.008 137.377Q-5.940 137.129-5.940 136.883L-5.472 136.883L-5.472 138.219L-4.344 138.219L-4.344 138.639L-5.472 138.639L-5.472 140.506Q-5.472 140.984-5.072 140.984Q-4.887 140.984-4.778 140.839Q-4.668 140.694-4.668 140.506L-4.668 140.116L-4.197 140.116L-4.197 140.536Q-4.197 140.783-4.342 140.971Q-4.487 141.159-4.720 141.263Q-4.952 141.367-5.191 141.367Q-5.690 141.367-6.039 141.181Q-6.388 140.994-6.388 140.536M-1.377 141.326L-3.233 141.326L-3.233 140.906L-2.764 140.906L-2.764 137.139Q-2.764 137.009-2.896 136.977Q-3.028 136.944-3.233 136.944L-3.233 136.524L-1.896 136.469L-1.896 138.807Q-1.756 138.605-1.549 138.463Q-1.343 138.322-1.102 138.248Q-0.861 138.175-0.608 138.175Q-0.010 138.175 0.310 138.402Q0.630 138.629 0.630 139.203L0.630 140.906L1.101 140.906L1.101 141.326L-0.755 141.326L-0.755 140.906L-0.286 140.906L-0.286 139.234Q-0.286 139.009-0.309 138.868Q-0.331 138.728-0.427 138.628Q-0.522 138.527-0.721 138.527Q-1.165 138.527-1.507 138.816Q-1.848 139.104-1.848 139.542L-1.848 140.906L-1.377 140.906L-1.377 141.326M1.638 139.750Q1.638 139.357 1.797 139.051Q1.956 138.745 2.224 138.547Q2.492 138.349 2.832 138.252Q3.173 138.154 3.549 138.154Q4.328 138.154 4.770 138.542Q5.213 138.930 5.213 139.702Q5.213 139.839 5.073 139.870L2.639 139.870Q2.639 140.437 2.944 140.711Q3.248 140.984 3.822 140.984Q4.119 140.984 4.386 140.856Q4.653 140.728 4.758 140.472Q4.799 140.396 4.885 140.372L5.073 140.372Q5.213 140.403 5.213 140.530Q5.213 140.564 5.206 140.584Q5.124 140.796 4.960 140.950Q4.796 141.104 4.584 141.194Q4.372 141.285 4.145 141.326Q3.918 141.367 3.675 141.367Q3.145 141.367 2.682 141.194Q2.219 141.022 1.928 140.654Q1.638 140.287 1.638 139.750M2.639 139.549L4.495 139.549Q4.495 139.080 4.253 138.793Q4.010 138.506 3.549 138.506Q3.091 138.506 2.865 138.793Q2.639 139.080 2.639 139.549\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-5.003 -202.725)\">\u003Cpath d=\"M11.528 141.326L8.948 141.326L8.948 140.906L9.696 140.906L9.696 136.944L8.948 136.944L8.948 136.524L12.055 136.524Q12.561 136.524 13.041 136.659Q13.521 136.794 13.846 137.112Q14.171 137.430 14.171 137.932Q14.171 138.431 13.842 138.742Q13.514 139.053 13.027 139.181Q12.540 139.309 12.055 139.309L10.780 139.309L10.780 140.906L11.528 140.906L11.528 141.326M10.732 136.944L10.732 138.927L11.768 138.927Q12.113 138.927 12.349 138.882Q12.585 138.838 12.776 138.687Q12.930 138.568 12.966 138.388Q13.002 138.209 13.002 137.932Q13.002 137.659 12.964 137.477Q12.926 137.296 12.776 137.177Q12.595 137.026 12.362 136.985Q12.130 136.944 11.768 136.944L10.732 136.944M17.705 141.326L15.042 141.326L15.042 140.906L15.828 140.906L15.828 136.944L15.042 136.944L15.042 136.524L17.705 136.524L17.705 136.944L16.912 136.944L16.912 140.906L17.705 140.906L17.705 141.326M21.027 141.326L18.446 141.326L18.446 140.906L19.195 140.906L19.195 136.944L18.446 136.944L18.446 136.524L21.553 136.524Q22.059 136.524 22.539 136.659Q23.020 136.794 23.344 137.112Q23.669 137.430 23.669 137.932Q23.669 138.431 23.341 138.742Q23.013 139.053 22.526 139.181Q22.039 139.309 21.553 139.309L20.278 139.309L20.278 140.906L21.027 140.906L21.027 141.326M20.231 136.944L20.231 138.927L21.266 138.927Q21.611 138.927 21.847 138.882Q22.083 138.838 22.275 138.687Q22.428 138.568 22.464 138.388Q22.500 138.209 22.500 137.932Q22.500 137.659 22.463 137.477Q22.425 137.296 22.275 137.177Q22.093 137.026 21.861 136.985Q21.629 136.944 21.266 136.944L20.231 136.944M29.456 141.326L24.592 141.326L24.592 140.906L25.340 140.906L25.340 136.944L24.592 136.944L24.592 136.524L29.329 136.524L29.569 138.226L29.100 138.226Q29.046 137.805 28.919 137.549Q28.793 137.293 28.591 137.161Q28.389 137.030 28.118 136.987Q27.846 136.944 27.398 136.944L26.424 136.944L26.424 138.622L26.762 138.622Q27.101 138.622 27.284 138.569Q27.466 138.516 27.555 138.352Q27.644 138.188 27.644 137.853L28.112 137.853L28.112 139.815L27.644 139.815Q27.644 139.480 27.557 139.316Q27.470 139.152 27.285 139.097Q27.101 139.043 26.762 139.043L26.424 139.043L26.424 140.906L27.477 140.906Q28.116 140.906 28.473 140.789Q28.830 140.673 29.030 140.359Q29.230 140.044 29.343 139.415L29.815 139.415\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-5.003 -202.725)\">\u003Cpath d=\"M33.482 139.771Q33.482 139.255 33.750 138.892Q34.019 138.530 34.456 138.352Q34.894 138.175 35.406 138.175Q35.683 138.175 35.958 138.245Q36.234 138.315 36.466 138.462L36.466 137.139Q36.466 137.009 36.334 136.977Q36.203 136.944 35.994 136.944L35.994 136.524L37.334 136.469L37.334 140.711Q37.334 140.837 37.466 140.871Q37.597 140.906 37.802 140.906L37.802 141.326L36.415 141.367L36.415 141.039Q35.933 141.367 35.318 141.367Q34.812 141.367 34.396 141.186Q33.981 141.005 33.732 140.641Q33.482 140.277 33.482 139.771M35.417 141.018Q35.714 141.018 35.984 140.877Q36.254 140.735 36.415 140.499L36.415 138.927Q36.254 138.735 36.017 138.631Q35.779 138.527 35.512 138.527Q34.918 138.527 34.701 138.845Q34.484 139.162 34.484 139.778Q34.484 140.157 34.552 140.425Q34.620 140.694 34.827 140.856Q35.034 141.018 35.417 141.018M38.459 140.492Q38.459 140.068 38.908 139.832Q39.358 139.597 39.927 139.520Q40.496 139.443 40.971 139.443L40.971 139.234Q40.971 139.002 40.870 138.838Q40.769 138.674 40.592 138.590Q40.414 138.506 40.188 138.506Q39.850 138.506 39.641 138.540Q39.754 138.674 39.754 138.868Q39.754 139.074 39.611 139.221Q39.467 139.368 39.255 139.368Q39.040 139.368 38.896 139.221Q38.753 139.074 38.753 138.868Q38.753 138.547 38.987 138.390Q39.221 138.233 39.515 138.193Q39.809 138.154 40.188 138.154Q40.568 138.154 40.956 138.250Q41.343 138.346 41.615 138.581Q41.887 138.817 41.887 139.203L41.887 140.806Q41.918 140.906 42.406 140.906Q42.526 140.926 42.547 141.046L42.547 141.186Q42.526 141.305 42.406 141.326L41.911 141.326Q41.111 141.326 41.111 140.885Q40.930 141.131 40.609 141.249Q40.287 141.367 39.928 141.367Q39.368 141.367 38.913 141.170Q38.459 140.974 38.459 140.492M39.368 140.492Q39.368 140.742 39.585 140.880Q39.802 141.018 40.069 141.018Q40.400 141.018 40.685 140.873Q40.971 140.728 40.971 140.424L40.971 139.743Q40.697 139.743 40.316 139.810Q39.935 139.877 39.652 140.046Q39.368 140.215 39.368 140.492M43.394 140.536L43.394 138.639L42.776 138.639L42.776 138.287Q43.035 138.287 43.242 138.158Q43.449 138.028 43.577 137.826Q43.705 137.624 43.774 137.377Q43.842 137.129 43.842 136.883L44.310 136.883L44.310 138.219L45.438 138.219L45.438 138.639L44.310 138.639L44.310 140.506Q44.310 140.984 44.710 140.984Q44.895 140.984 45.004 140.839Q45.113 140.694 45.113 140.506L45.113 140.116L45.585 140.116L45.585 140.536Q45.585 140.783 45.440 140.971Q45.295 141.159 45.062 141.263Q44.830 141.367 44.591 141.367Q44.092 141.367 43.743 141.181Q43.394 140.994 43.394 140.536M46.395 140.492Q46.395 140.068 46.845 139.832Q47.294 139.597 47.863 139.520Q48.432 139.443 48.907 139.443L48.907 139.234Q48.907 139.002 48.807 138.838Q48.706 138.674 48.528 138.590Q48.350 138.506 48.125 138.506Q47.786 138.506 47.578 138.540Q47.691 138.674 47.691 138.868Q47.691 139.074 47.547 139.221Q47.404 139.368 47.192 139.368Q46.976 139.368 46.833 139.221Q46.689 139.074 46.689 138.868Q46.689 138.547 46.923 138.390Q47.157 138.233 47.451 138.193Q47.745 138.154 48.125 138.154Q48.504 138.154 48.892 138.250Q49.280 138.346 49.552 138.581Q49.823 138.817 49.823 139.203L49.823 140.806Q49.854 140.906 50.343 140.906Q50.463 140.926 50.483 141.046L50.483 141.186Q50.463 141.305 50.343 141.326L49.847 141.326Q49.048 141.326 49.048 140.885Q48.866 141.131 48.545 141.249Q48.224 141.367 47.865 141.367Q47.304 141.367 46.850 141.170Q46.395 140.974 46.395 140.492M47.304 140.492Q47.304 140.742 47.521 140.880Q47.738 141.018 48.005 141.018Q48.337 141.018 48.622 140.873Q48.907 140.728 48.907 140.424L48.907 139.743Q48.634 139.743 48.253 139.810Q47.872 139.877 47.588 140.046Q47.304 140.215 47.304 140.492M52.742 142.683L50.890 142.683L50.890 142.263L51.358 142.263L51.358 138.786Q51.358 138.653 50.890 138.653L50.890 138.233L52.226 138.175L52.226 138.486Q52.742 138.175 53.436 138.175Q53.816 138.175 54.132 138.281Q54.448 138.387 54.692 138.590Q54.937 138.793 55.072 139.091Q55.207 139.388 55.207 139.771Q55.207 140.174 55.051 140.475Q54.896 140.776 54.615 140.977Q54.335 141.179 53.993 141.273Q53.652 141.367 53.269 141.367Q52.712 141.367 52.274 141.073L52.274 142.263L52.742 142.263L52.742 142.683M52.274 138.968L52.274 140.536Q52.428 140.759 52.671 140.888Q52.913 141.018 53.176 141.018Q53.515 141.018 53.749 140.846Q53.983 140.673 54.094 140.388Q54.205 140.102 54.205 139.771Q54.205 139.456 54.110 139.183Q54.014 138.909 53.804 138.735Q53.593 138.561 53.276 138.561Q52.985 138.561 52.722 138.663Q52.459 138.766 52.274 138.968M55.822 140.492Q55.822 140.068 56.271 139.832Q56.721 139.597 57.290 139.520Q57.859 139.443 58.334 139.443L58.334 139.234Q58.334 139.002 58.233 138.838Q58.133 138.674 57.955 138.590Q57.777 138.506 57.551 138.506Q57.213 138.506 57.005 138.540Q57.117 138.674 57.117 138.868Q57.117 139.074 56.974 139.221Q56.830 139.368 56.618 139.368Q56.403 139.368 56.259 139.221Q56.116 139.074 56.116 138.868Q56.116 138.547 56.350 138.390Q56.584 138.233 56.878 138.193Q57.172 138.154 57.551 138.154Q57.931 138.154 58.319 138.250Q58.707 138.346 58.978 138.581Q59.250 138.817 59.250 139.203L59.250 140.806Q59.281 140.906 59.770 140.906Q59.889 140.926 59.910 141.046L59.910 141.186Q59.889 141.305 59.770 141.326L59.274 141.326Q58.474 141.326 58.474 140.885Q58.293 141.131 57.972 141.249Q57.651 141.367 57.292 141.367Q56.731 141.367 56.277 141.170Q55.822 140.974 55.822 140.492M56.731 140.492Q56.731 140.742 56.948 140.880Q57.165 141.018 57.432 141.018Q57.763 141.018 58.049 140.873Q58.334 140.728 58.334 140.424L58.334 139.743Q58.061 139.743 57.680 139.810Q57.299 139.877 57.015 140.046Q56.731 140.215 56.731 140.492M60.758 140.536L60.758 138.639L60.139 138.639L60.139 138.287Q60.399 138.287 60.605 138.158Q60.812 138.028 60.940 137.826Q61.069 137.624 61.137 137.377Q61.205 137.129 61.205 136.883L61.674 136.883L61.674 138.219L62.801 138.219L62.801 138.639L61.674 138.639L61.674 140.506Q61.674 140.984 62.073 140.984Q62.258 140.984 62.367 140.839Q62.477 140.694 62.477 140.506L62.477 140.116L62.948 140.116L62.948 140.536Q62.948 140.783 62.803 140.971Q62.658 141.159 62.425 141.263Q62.193 141.367 61.954 141.367Q61.455 141.367 61.106 141.181Q60.758 140.994 60.758 140.536M65.768 141.326L63.912 141.326L63.912 140.906L64.381 140.906L64.381 137.139Q64.381 137.009 64.249 136.977Q64.117 136.944 63.912 136.944L63.912 136.524L65.249 136.469L65.249 138.807Q65.389 138.605 65.596 138.463Q65.802 138.322 66.043 138.248Q66.284 138.175 66.537 138.175Q67.135 138.175 67.455 138.402Q67.775 138.629 67.775 139.203L67.775 140.906L68.246 140.906L68.246 141.326L66.390 141.326L66.390 140.906L66.859 140.906L66.859 139.234Q66.859 139.009 66.836 138.868Q66.814 138.728 66.718 138.628Q66.623 138.527 66.425 138.527Q65.980 138.527 65.638 138.816Q65.297 139.104 65.297 139.542L65.297 140.906L65.768 140.906\" 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=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(168.802 -202.697)\">\u003Cpath d=\"M-40.339 141.088L-40.339 140.998Q-40.288 140.787-40.093 140.767L-39.893 140.767L-39.893 138.439L-40.093 138.439Q-40.300 138.416-40.339 138.197L-40.339 138.111Q-40.288 137.896-40.093 137.877L-39.612 137.877Q-39.421 137.900-39.362 138.111Q-39.042 137.838-38.628 137.838Q-38.436 137.838-38.268 137.947Q-38.100 138.056-38.026 138.228Q-37.850 138.037-37.628 137.937Q-37.405 137.838-37.163 137.838Q-36.745 137.838-36.591 138.180Q-36.436 138.521-36.436 138.990L-36.436 140.767L-36.237 140.767Q-36.026 140.791-35.987 140.998L-35.987 141.088Q-36.038 141.303-36.237 141.326L-37.054 141.326Q-37.249 141.303-37.300 141.088L-37.300 140.998Q-37.249 140.791-37.054 140.767L-36.964 140.767L-36.964 139.021Q-36.964 138.396-37.214 138.396Q-37.546 138.396-37.723 138.707Q-37.901 139.017-37.901 139.381L-37.901 140.767L-37.698 140.767Q-37.491 140.791-37.452 140.998L-37.452 141.088Q-37.503 141.303-37.698 141.326L-38.514 141.326Q-38.714 141.303-38.764 141.088L-38.764 140.998Q-38.714 140.791-38.514 140.767L-38.429 140.767L-38.429 139.021Q-38.429 138.396-38.675 138.396Q-39.007 138.396-39.184 138.709Q-39.362 139.021-39.362 139.381L-39.362 140.767L-39.163 140.767Q-38.956 140.791-38.917 140.998L-38.917 141.088Q-38.968 141.306-39.163 141.326L-40.093 141.326Q-40.300 141.303-40.339 141.088M-33.917 141.365Q-34.389 141.365-34.774 141.121Q-35.159 140.877-35.382 140.467Q-35.604 140.056-35.604 139.599Q-35.604 139.256-35.479 138.933Q-35.354 138.611-35.124 138.357Q-34.893 138.103-34.587 137.959Q-34.280 137.814-33.917 137.814Q-33.554 137.814-33.241 137.961Q-32.929 138.107-32.706 138.353Q-32.483 138.599-32.356 138.920Q-32.229 139.240-32.229 139.599Q-32.229 140.056-32.454 140.469Q-32.679 140.881-33.063 141.123Q-33.448 141.365-33.917 141.365M-33.917 140.806Q-33.452 140.806-33.161 140.412Q-32.870 140.017-32.870 139.533Q-32.870 139.240-33.005 138.972Q-33.139 138.705-33.380 138.539Q-33.620 138.373-33.917 138.373Q-34.221 138.373-34.460 138.539Q-34.698 138.705-34.833 138.972Q-34.968 139.240-34.968 139.533Q-34.968 140.013-34.675 140.410Q-34.382 140.806-33.917 140.806M-29.929 141.365Q-30.393 141.365-30.759 141.115Q-31.124 140.865-31.329 140.461Q-31.534 140.056-31.534 139.599Q-31.534 139.256-31.409 138.935Q-31.284 138.615-31.052 138.365Q-30.819 138.115-30.514 137.976Q-30.210 137.838-29.854 137.838Q-29.343 137.838-28.936 138.158L-28.936 136.998L-29.358 136.998Q-29.569 136.974-29.608 136.760L-29.608 136.670Q-29.569 136.463-29.358 136.439L-28.546 136.439Q-28.346 136.463-28.296 136.670L-28.296 140.767L-27.870 140.767Q-27.663 140.791-27.624 140.998L-27.624 141.088Q-27.663 141.303-27.870 141.326L-28.686 141.326Q-28.886 141.303-28.936 141.088L-28.936 140.959Q-29.132 141.150-29.393 141.258Q-29.655 141.365-29.929 141.365M-29.889 140.806Q-29.530 140.806-29.278 140.537Q-29.026 140.267-28.936 139.892L-28.936 139.060Q-28.995 138.873-29.122 138.722Q-29.249 138.572-29.427 138.484Q-29.604 138.396-29.800 138.396Q-30.108 138.396-30.358 138.566Q-30.608 138.736-30.753 139.021Q-30.897 139.306-30.897 139.607Q-30.897 140.056-30.612 140.431Q-30.327 140.806-29.889 140.806M-26.804 140.471L-26.804 138.439L-27.225 138.439Q-27.432 138.416-27.475 138.197L-27.475 138.111Q-27.429 137.900-27.225 137.877L-26.409 137.877Q-26.214 137.900-26.163 138.111L-26.163 140.439Q-26.163 140.674-25.993 140.740Q-25.823 140.806-25.538 140.806Q-25.331 140.806-25.136 140.730Q-24.940 140.654-24.815 140.504Q-24.690 140.353-24.690 140.142L-24.690 138.439L-25.112 138.439Q-25.323 138.416-25.362 138.197L-25.362 138.111Q-25.323 137.900-25.112 137.877L-24.300 137.877Q-24.100 137.900-24.050 138.111L-24.050 140.767L-23.624 140.767Q-23.417 140.791-23.378 140.998L-23.378 141.088Q-23.417 141.303-23.624 141.326L-24.440 141.326Q-24.639 141.303-24.690 141.103Q-25.093 141.365-25.600 141.365Q-25.835 141.365-26.050 141.324Q-26.264 141.283-26.430 141.181Q-26.596 141.080-26.700 140.902Q-26.804 140.724-26.804 140.471M-22.850 141.088L-22.850 140.998Q-22.800 140.791-22.604 140.767L-21.499 140.767L-21.499 136.998L-22.604 136.998Q-22.800 136.974-22.850 136.760L-22.850 136.670Q-22.800 136.463-22.604 136.439L-21.108 136.439Q-20.917 136.463-20.858 136.670L-20.858 140.767L-19.757 140.767Q-19.557 140.791-19.507 140.998L-19.507 141.088Q-19.557 141.303-19.757 141.326L-22.604 141.326Q-22.800 141.303-22.850 141.088M-15.542 139.838L-17.983 139.838Q-17.929 140.115-17.731 140.338Q-17.534 140.560-17.257 140.683Q-16.979 140.806-16.694 140.806Q-16.221 140.806-15.999 140.517Q-15.991 140.506-15.934 140.400Q-15.878 140.295-15.829 140.252Q-15.780 140.209-15.686 140.197L-15.542 140.197Q-15.350 140.217-15.292 140.431L-15.292 140.486Q-15.358 140.787-15.589 140.984Q-15.819 141.181-16.132 141.273Q-16.444 141.365-16.749 141.365Q-17.233 141.365-17.673 141.137Q-18.112 140.908-18.380 140.508Q-18.647 140.107-18.647 139.615L-18.647 139.556Q-18.647 139.088-18.401 138.685Q-18.155 138.283-17.747 138.049Q-17.339 137.814-16.870 137.814Q-16.366 137.814-16.013 138.037Q-15.659 138.260-15.475 138.648Q-15.292 139.037-15.292 139.541L-15.292 139.599Q-15.350 139.814-15.542 139.838M-17.975 139.287L-15.948 139.287Q-15.995 138.877-16.233 138.625Q-16.471 138.373-16.870 138.373Q-17.264 138.373-17.571 138.635Q-17.878 138.896-17.975 139.287M-14.221 141.127L-14.221 140.213Q-14.194 140.006-13.983 139.982L-13.815 139.982Q-13.651 140.006-13.593 140.166Q-13.389 140.806-12.663 140.806Q-12.456 140.806-12.227 140.771Q-11.999 140.736-11.831 140.621Q-11.663 140.506-11.663 140.303Q-11.663 140.092-11.886 139.978Q-12.108 139.865-12.382 139.822L-13.081 139.709Q-14.221 139.498-14.221 138.775Q-14.221 138.486-14.077 138.297Q-13.932 138.107-13.692 138Q-13.452 137.892-13.196 137.853Q-12.940 137.814-12.663 137.814Q-12.413 137.814-12.220 137.844Q-12.026 137.873-11.862 137.951Q-11.784 137.834-11.655 137.814L-11.577 137.814Q-11.479 137.826-11.417 137.888Q-11.354 137.951-11.343 138.045L-11.343 138.752Q-11.354 138.846-11.417 138.912Q-11.479 138.978-11.577 138.990L-11.745 138.990Q-11.839 138.978-11.905 138.912Q-11.971 138.846-11.983 138.752Q-11.983 138.373-12.679 138.373Q-13.026 138.373-13.345 138.455Q-13.663 138.537-13.663 138.783Q-13.663 139.049-12.991 139.158L-12.288 139.279Q-11.804 139.361-11.454 139.609Q-11.104 139.857-11.104 140.303Q-11.104 140.693-11.341 140.935Q-11.577 141.178-11.927 141.271Q-12.276 141.365-12.663 141.365Q-13.241 141.365-13.639 141.111Q-13.710 141.236-13.759 141.293Q-13.807 141.349-13.913 141.365L-13.983 141.365Q-14.198 141.342-14.221 141.127\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(168.802 -202.697)\">\u003Cpath d=\"M-3.724 139.982L-5.795 139.982Q-5.990 139.959-6.045 139.740L-6.045 139.502Q-6.045 139.428-6.002 139.357L-4.154 136.486Q-4.068 136.357-3.916 136.357L-3.459 136.357Q-3.349 136.357-3.271 136.435Q-3.193 136.513-3.193 136.623L-3.193 139.424L-2.529 139.424Q-2.334 139.447-2.283 139.654L-2.283 139.740Q-2.334 139.959-2.529 139.982L-3.193 139.982L-3.193 140.767L-2.619 140.767Q-2.412 140.791-2.373 140.998L-2.373 141.088Q-2.412 141.303-2.619 141.326L-4.299 141.326Q-4.506 141.303-4.549 141.088L-4.549 140.998Q-4.506 140.791-4.299 140.767L-3.724 140.767L-3.724 139.982M-3.724 136.830L-5.396 139.424L-3.724 139.424L-3.724 136.830M1.459 139.189L-1.283 139.189Q-1.408 139.178-1.494 139.092Q-1.580 139.006-1.580 138.877Q-1.580 138.748-1.494 138.666Q-1.408 138.584-1.283 138.572L1.459 138.572Q1.584 138.584 1.666 138.666Q1.748 138.748 1.748 138.877Q1.748 139.006 1.666 139.092Q1.584 139.178 1.459 139.189M3.346 140.447Q3.463 140.650 3.697 140.748Q3.932 140.846 4.194 140.846Q4.490 140.846 4.764 140.717Q5.037 140.588 5.211 140.351Q5.385 140.115 5.385 139.814Q5.385 139.560 5.266 139.318Q5.147 139.076 4.932 138.930Q4.717 138.783 4.447 138.783Q3.842 138.783 3.506 139.103Q3.428 139.189 3.373 139.236Q3.319 139.283 3.233 139.295L3.131 139.295Q2.932 139.271 2.881 139.053L2.881 136.670Q2.932 136.463 3.131 136.439L5.490 136.439Q5.686 136.459 5.737 136.670L5.737 136.760Q5.686 136.974 5.490 136.998L3.522 136.998L3.522 138.424Q3.928 138.221 4.447 138.221Q4.877 138.221 5.242 138.437Q5.608 138.654 5.817 139.023Q6.026 139.392 6.026 139.814Q6.026 140.287 5.762 140.646Q5.498 141.006 5.074 141.205Q4.651 141.404 4.194 141.404Q3.940 141.404 3.662 141.330Q3.385 141.256 3.151 141.099Q2.916 140.943 2.776 140.709Q2.635 140.474 2.635 140.189Q2.635 140.021 2.750 139.898Q2.865 139.775 3.041 139.775Q3.123 139.775 3.194 139.805Q3.264 139.834 3.321 139.888Q3.377 139.943 3.408 140.019Q3.440 140.096 3.440 140.174Q3.440 140.334 3.346 140.447\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-36.016-16.587h25.608v-19.917h-25.608Z\"\u002F>\u003Cg transform=\"translate(14.947 -165.427)\">\u003Cpath d=\"M-40.077 141.088L-40.077 140.998Q-40.038 140.791-39.827 140.767L-39.491 140.767L-39.491 136.998L-39.827 136.998Q-40.038 136.974-40.077 136.760L-40.077 136.670Q-40.038 136.463-39.827 136.439L-36.573 136.439Q-36.374 136.463-36.323 136.670L-36.323 137.510Q-36.370 137.724-36.573 137.752L-36.718 137.752Q-36.913 137.724-36.964 137.510L-36.964 136.998L-38.850 136.998L-38.850 138.599L-37.843 138.599L-37.843 138.381Q-37.792 138.174-37.596 138.150L-37.452 138.150Q-37.257 138.170-37.206 138.381L-37.206 139.365Q-37.257 139.584-37.452 139.607L-37.596 139.607Q-37.792 139.588-37.843 139.365L-37.843 139.158L-38.850 139.158L-38.850 140.767L-38.362 140.767Q-38.167 140.791-38.116 140.998L-38.116 141.088Q-38.167 141.303-38.362 141.326L-39.827 141.326Q-40.038 141.303-40.077 141.088\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M9.508-16.587h25.608v-19.917H9.508Z\"\u002F>\u003Cg transform=\"translate(60.47 -165.427)\">\u003Cpath d=\"M-40.147 141.088L-40.147 140.998Q-40.108 140.791-39.901 140.767L-39.651 140.767L-39.651 136.998L-39.901 136.998Q-40.108 136.974-40.147 136.760L-40.147 136.670Q-40.108 136.463-39.901 136.439L-38.085 136.439Q-37.534 136.439-37.139 136.832Q-36.745 137.224-36.550 137.803Q-36.354 138.381-36.354 138.928Q-36.354 139.455-36.554 140.019Q-36.753 140.584-37.145 140.955Q-37.538 141.326-38.085 141.326L-39.901 141.326Q-40.108 141.303-40.147 141.088M-39.011 136.998L-39.011 140.767L-38.245 140.767Q-37.651 140.767-37.323 140.172Q-36.995 139.576-36.995 138.928Q-36.995 138.521-37.130 138.072Q-37.264 137.623-37.550 137.310Q-37.835 136.998-38.245 136.998\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M55.033-16.587H80.64v-19.917H55.033Z\"\u002F>\u003Cg transform=\"translate(105.995 -165.427)\">\u003Cpath d=\"M-40.100 141.088L-40.100 140.998Q-40.061 140.791-39.850 140.767L-39.542 140.767L-39.542 136.998L-39.850 136.998Q-40.061 136.974-40.100 136.760L-40.100 136.670Q-40.061 136.463-39.850 136.439L-36.643 136.439Q-36.448 136.463-36.397 136.670L-36.397 137.510Q-36.448 137.724-36.643 137.752L-36.788 137.752Q-36.983 137.724-37.038 137.510L-37.038 136.998L-38.901 136.998L-38.901 138.517L-37.925 138.517L-37.925 138.303Q-37.874 138.096-37.675 138.068L-37.530 138.068Q-37.335 138.096-37.284 138.303L-37.284 139.287Q-37.335 139.502-37.530 139.525L-37.675 139.525Q-37.874 139.502-37.925 139.287L-37.925 139.080L-38.901 139.080L-38.901 140.767L-36.858 140.767L-36.858 140.127Q-36.807 139.920-36.612 139.892L-36.468 139.892Q-36.272 139.920-36.221 140.127L-36.221 141.088Q-36.272 141.306-36.468 141.326L-39.850 141.326Q-40.061 141.303-40.100 141.088\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M100.557-16.587h25.607v-19.917h-25.607Z\"\u002F>\u003Cg transform=\"translate(151.52 -165.427)\">\u003Cpath d=\"M-40.171 141.088L-40.171 140.998Q-40.120 140.791-39.925 140.767L-39.749 140.767L-39.749 136.998L-39.925 136.998Q-40.120 136.974-40.171 136.760L-40.171 136.670Q-40.120 136.463-39.925 136.439L-39.237 136.439Q-39.108 136.439-39.009 136.515Q-38.909 136.592-38.870 136.701Q-38.839 136.806-38.616 137.496Q-38.393 138.185-38.278 138.582Q-38.163 138.978-38.163 139.053Q-38.155 138.974-38.100 138.777Q-38.046 138.580-37.932 138.209Q-37.819 137.838-37.673 137.375Q-37.526 136.912-37.460 136.701Q-37.421 136.592-37.317 136.515Q-37.214 136.439-37.093 136.439L-36.405 136.439Q-36.206 136.463-36.155 136.670L-36.155 136.760Q-36.206 136.974-36.405 136.998L-36.581 136.998L-36.581 140.767L-36.405 140.767Q-36.206 140.791-36.155 140.998L-36.155 141.088Q-36.206 141.303-36.405 141.326L-37.284 141.326Q-37.479 141.303-37.530 141.088L-37.530 140.998Q-37.479 140.791-37.284 140.767L-37.108 140.767L-37.108 137.080Q-37.108 137.138-37.192 137.437Q-37.276 137.736-37.380 138.068Q-37.483 138.400-37.614 138.808Q-37.745 139.217-37.811 139.431Q-37.850 139.545-37.950 139.619Q-38.050 139.693-38.163 139.693Q-38.276 139.693-38.376 139.619Q-38.475 139.545-38.514 139.431Q-38.581 139.217-38.716 138.799Q-38.850 138.381-38.987 137.937Q-39.124 137.494-39.169 137.330Q-39.214 137.166-39.221 137.080L-39.221 140.767L-39.046 140.767Q-38.846 140.791-38.796 140.998L-38.796 141.088Q-38.846 141.303-39.046 141.326L-39.925 141.326Q-40.120 141.303-40.171 141.088\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M146.082-16.587h25.607v-19.917h-25.607Z\"\u002F>\u003Cg transform=\"translate(197.044 -165.427)\">\u003Cpath d=\"M-39.315 141.142L-39.886 136.998L-39.940 136.998Q-40.136 136.974-40.186 136.760L-40.186 136.670Q-40.136 136.463-39.940 136.439L-39.085 136.439Q-38.874 136.463-38.835 136.670L-38.835 136.760Q-38.874 136.974-39.085 136.998L-39.354 136.998Q-39.315 137.283-39.179 138.316Q-39.042 139.349-38.979 139.894Q-38.917 140.439-38.909 140.685Q-38.909 140.392-38.823 139.947Q-38.737 139.502-38.550 138.654Q-38.518 138.533-38.429 138.461Q-38.339 138.388-38.221 138.388L-38.108 138.388Q-37.983 138.388-37.893 138.463Q-37.804 138.537-37.780 138.654Q-37.616 139.357-37.518 139.865Q-37.421 140.373-37.421 140.685Q-37.413 140.494-37.364 140.051Q-37.315 139.607-37.266 139.217Q-37.218 138.826-37.110 138.033Q-37.003 137.240-36.971 136.998L-37.245 136.998Q-37.452 136.974-37.491 136.760L-37.491 136.670Q-37.452 136.463-37.245 136.439L-36.389 136.439Q-36.190 136.463-36.139 136.670L-36.139 136.760Q-36.190 136.974-36.389 136.998L-36.444 136.998L-37.011 141.142Q-37.022 141.252-37.110 141.328Q-37.198 141.404-37.315 141.404L-37.421 141.404Q-37.534 141.404-37.630 141.330Q-37.725 141.256-37.749 141.142Q-37.846 140.721-37.942 140.271Q-38.038 139.822-38.096 139.504Q-38.155 139.185-38.163 139.029Q-38.163 139.306-38.581 141.142Q-38.604 141.256-38.698 141.330Q-38.792 141.404-38.909 141.404L-39.011 141.404Q-39.128 141.404-39.216 141.328Q-39.304 141.252-39.315 141.142\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-10.208-26.545H7.308\"\u002F>\u003Cpath stroke=\"none\" d=\"m9.308-26.545-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cpath fill=\"none\" d=\"M35.316-26.545h17.517\"\u002F>\u003Cpath stroke=\"none\" d=\"m54.833-26.545-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cpath fill=\"none\" d=\"M80.84-26.545h17.517\"\u002F>\u003Cpath stroke=\"none\" d=\"m100.357-26.545-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cpath fill=\"none\" d=\"M126.364-26.545h17.518\"\u002F>\u003Cpath stroke=\"none\" d=\"m145.882-26.545-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-47.397 38.896H.973V16.133h-48.37Z\"\u002F>\u003Cg transform=\"translate(5.742 -111.078)\">\u003Cpath d=\"M-38.186 141.326L-39.964 141.326L-39.964 141.029Q-39.690 141.029-39.522 140.982Q-39.354 140.935-39.354 140.767L-39.354 138.631Q-39.354 138.416-39.411 138.320Q-39.468 138.224-39.581 138.203Q-39.694 138.181-39.940 138.181L-39.940 137.885L-38.741 137.799L-38.741 140.767Q-38.741 140.935-38.595 140.982Q-38.448 141.029-38.186 141.029L-38.186 141.326M-39.628 136.404Q-39.628 136.213-39.493 136.082Q-39.358 135.951-39.163 135.951Q-39.042 135.951-38.938 136.013Q-38.835 136.076-38.772 136.180Q-38.710 136.283-38.710 136.404Q-38.710 136.599-38.841 136.734Q-38.971 136.869-39.163 136.869Q-39.362 136.869-39.495 136.736Q-39.628 136.603-39.628 136.404M-35.573 139.877L-37.827 139.877L-37.827 139.326L-35.573 139.326L-35.573 139.877M-30.507 141.326L-33.550 141.326L-33.550 141.029Q-32.788 141.029-32.604 140.990Q-32.561 140.978-32.513 140.945Q-32.464 140.912-32.438 140.869Q-32.413 140.826-32.413 140.767L-32.413 136.424Q-32.413 136.248-32.505 136.203Q-32.596 136.158-32.811 136.158L-33.206 136.158Q-33.901 136.158-34.190 136.447Q-34.339 136.596-34.401 136.916Q-34.464 137.236-34.507 137.709L-34.788 137.709L-34.628 135.861L-29.429 135.861L-29.268 137.709L-29.550 137.709Q-29.593 137.201-29.655 136.898Q-29.718 136.596-29.870 136.447Q-30.155 136.158-30.854 136.158L-31.245 136.158Q-31.460 136.158-31.552 136.201Q-31.643 136.244-31.643 136.424L-31.643 140.767Q-31.643 140.842-31.589 140.906Q-31.534 140.971-31.452 140.990Q-31.268 141.029-30.507 141.029L-30.507 141.326M-24.237 141.326L-28.620 141.326L-28.620 141.029Q-28.300 141.029-28.055 140.982Q-27.811 140.935-27.811 140.767L-27.811 136.424Q-27.811 136.252-28.055 136.205Q-28.300 136.158-28.620 136.158L-28.620 135.861L-26.034 135.861L-26.034 136.158Q-27.046 136.158-27.046 136.424L-27.046 140.767Q-27.046 140.939-26.954 140.984Q-26.862 141.029-26.643 141.029L-25.956 141.029Q-25.483 141.029-25.175 140.904Q-24.866 140.779-24.688 140.549Q-24.511 140.318-24.419 139.992Q-24.327 139.666-24.284 139.213L-24.003 139.213L-24.237 141.326M-20.003 141.326L-23.284 141.326L-23.284 141.029Q-22.960 141.029-22.718 140.982Q-22.475 140.935-22.475 140.767L-22.475 136.424Q-22.475 136.252-22.718 136.205Q-22.960 136.158-23.284 136.158L-23.284 135.861L-20.237 135.861Q-19.811 135.861-19.378 136.015Q-18.944 136.170-18.649 136.478Q-18.354 136.787-18.354 137.221Q-18.354 137.474-18.479 137.691Q-18.604 137.908-18.805 138.064Q-19.007 138.221-19.239 138.320Q-19.471 138.420-19.729 138.471Q-19.354 138.506-18.975 138.683Q-18.596 138.861-18.356 139.160Q-18.116 139.459-18.116 139.853Q-18.116 140.306-18.399 140.640Q-18.682 140.974-19.118 141.150Q-19.554 141.326-20.003 141.326M-21.764 138.615L-21.764 140.767Q-21.764 140.939-21.673 140.984Q-21.581 141.029-21.362 141.029L-20.237 141.029Q-19.999 141.029-19.764 140.941Q-19.530 140.853-19.345 140.693Q-19.159 140.533-19.057 140.320Q-18.956 140.107-18.956 139.853Q-18.956 139.533-19.108 139.248Q-19.261 138.963-19.530 138.789Q-19.800 138.615-20.116 138.615L-21.764 138.615M-21.764 136.424L-21.764 138.357L-20.475 138.357Q-20.233 138.357-19.995 138.275Q-19.757 138.193-19.573 138.047Q-19.389 137.900-19.276 137.683Q-19.163 137.467-19.163 137.221Q-19.163 137.010-19.249 136.808Q-19.335 136.607-19.481 136.465Q-19.628 136.322-19.823 136.240Q-20.018 136.158-20.237 136.158L-21.362 136.158Q-21.581 136.158-21.673 136.201Q-21.764 136.244-21.764 136.424\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-47.397 78.73H.973V55.966h-48.37Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-4.178 -71.533)\">\u003Cpath d=\"M-40.061 141.088L-40.061 140.998Q-40.003 140.791-39.811 140.767L-39.444 140.767L-39.444 136.998L-39.811 136.998Q-40.003 136.974-40.061 136.760L-40.061 136.670Q-40.003 136.463-39.811 136.439L-38.284 136.439Q-38.089 136.463-38.038 136.670L-38.038 136.760Q-38.089 136.974-38.284 136.998L-38.804 136.998L-38.804 140.767L-36.971 140.767L-36.971 140.127Q-36.921 139.920-36.725 139.892L-36.581 139.892Q-36.382 139.920-36.331 140.127L-36.331 141.088Q-36.382 141.303-36.581 141.326L-39.811 141.326Q-40.003 141.303-40.061 141.088M-35.182 141.088L-35.182 140.998Q-35.132 140.791-34.932 140.767L-34.116 140.767L-34.116 137.584Q-34.495 137.892-34.948 137.892Q-35.179 137.892-35.229 137.662L-35.229 137.572Q-35.179 137.357-34.983 137.334Q-34.655 137.334-34.401 137.096Q-34.147 136.857-34.007 136.510Q-33.936 136.381-33.780 136.357L-33.725 136.357Q-33.530 136.377-33.479 136.592L-33.479 140.767L-32.663 140.767Q-32.464 140.791-32.413 140.998L-32.413 141.088Q-32.464 141.303-32.663 141.326L-34.932 141.326Q-35.132 141.303-35.182 141.088\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-4.178 -71.533)\">\u003Cpath d=\"M-26.917 141.088L-26.917 140.998Q-26.866 140.791-26.671 140.767L-25.632 140.767L-25.632 138.439L-26.604 138.439Q-26.804 138.416-26.854 138.197L-26.854 138.111Q-26.804 137.900-26.604 137.877L-25.237 137.877Q-25.042 137.896-24.991 138.111L-24.991 140.767L-24.077 140.767Q-23.882 140.791-23.831 140.998L-23.831 141.088Q-23.882 141.303-24.077 141.326L-26.671 141.326Q-26.866 141.303-26.917 141.088M-25.886 136.900L-25.886 136.846Q-25.886 136.674-25.749 136.553Q-25.612 136.431-25.436 136.431Q-25.264 136.431-25.128 136.553Q-24.991 136.674-24.991 136.846L-24.991 136.900Q-24.991 137.076-25.128 137.197Q-25.264 137.318-25.436 137.318Q-25.612 137.318-25.749 137.197Q-25.886 137.076-25.886 136.900M-19.792 139.189L-22.534 139.189Q-22.659 139.178-22.745 139.092Q-22.831 139.006-22.831 138.877Q-22.831 138.748-22.745 138.666Q-22.659 138.584-22.534 138.572L-19.792 138.572Q-19.667 138.584-19.585 138.666Q-19.503 138.748-19.503 138.877Q-19.503 139.006-19.585 139.092Q-19.667 139.178-19.792 139.189M-18.483 139.599Q-18.483 139.119-18.239 138.705Q-17.995 138.291-17.579 138.053Q-17.163 137.814-16.682 137.814Q-16.128 137.814-15.749 137.924Q-15.370 138.033-15.370 138.439Q-15.370 138.607-15.483 138.730Q-15.596 138.853-15.768 138.853Q-15.940 138.853-16.059 138.738Q-16.179 138.623-16.179 138.455L-16.179 138.396Q-16.339 138.373-16.675 138.373Q-17.003 138.373-17.270 138.543Q-17.538 138.713-17.690 138.996Q-17.843 139.279-17.843 139.599Q-17.843 139.920-17.671 140.201Q-17.499 140.482-17.214 140.644Q-16.929 140.806-16.600 140.806Q-16.288 140.806-16.161 140.703Q-16.034 140.599-15.917 140.410Q-15.800 140.221-15.682 140.205L-15.514 140.205Q-15.409 140.217-15.345 140.285Q-15.280 140.353-15.280 140.455Q-15.280 140.502-15.300 140.541Q-15.409 140.834-15.612 141.013Q-15.815 141.193-16.091 141.279Q-16.366 141.365-16.682 141.365Q-17.167 141.365-17.583 141.127Q-17.999 140.888-18.241 140.486Q-18.483 140.084-18.483 139.599M-14.389 140.213Q-14.389 139.767-13.975 139.510Q-13.561 139.252-13.020 139.152Q-12.479 139.053-11.971 139.045Q-11.971 138.830-12.106 138.678Q-12.241 138.525-12.448 138.449Q-12.655 138.373-12.866 138.373Q-13.210 138.373-13.370 138.396L-13.370 138.455Q-13.370 138.623-13.489 138.738Q-13.608 138.853-13.772 138.853Q-13.948 138.853-14.063 138.730Q-14.179 138.607-14.179 138.439Q-14.179 138.033-13.798 137.924Q-13.417 137.814-12.858 137.814Q-12.589 137.814-12.321 137.892Q-12.054 137.971-11.829 138.121Q-11.604 138.271-11.468 138.492Q-11.331 138.713-11.331 138.990L-11.331 140.709Q-11.331 140.767-10.804 140.767Q-10.608 140.787-10.557 140.998L-10.557 141.088Q-10.608 141.303-10.804 141.326L-10.948 141.326Q-11.292 141.326-11.520 141.279Q-11.749 141.232-11.893 141.045Q-12.354 141.365-13.061 141.365Q-13.397 141.365-13.702 141.224Q-14.007 141.084-14.198 140.822Q-14.389 140.560-14.389 140.213M-13.749 140.221Q-13.749 140.494-13.507 140.650Q-13.264 140.806-12.979 140.806Q-12.761 140.806-12.528 140.748Q-12.296 140.689-12.134 140.551Q-11.971 140.412-11.971 140.189L-11.971 139.599Q-12.253 139.599-12.669 139.656Q-13.085 139.713-13.417 139.851Q-13.749 139.990-13.749 140.221M-9.991 139.599Q-9.991 139.119-9.747 138.705Q-9.503 138.291-9.087 138.053Q-8.671 137.814-8.190 137.814Q-7.636 137.814-7.257 137.924Q-6.878 138.033-6.878 138.439Q-6.878 138.607-6.991 138.730Q-7.104 138.853-7.276 138.853Q-7.448 138.853-7.567 138.738Q-7.686 138.623-7.686 138.455L-7.686 138.396Q-7.846 138.373-8.182 138.373Q-8.511 138.373-8.778 138.543Q-9.046 138.713-9.198 138.996Q-9.350 139.279-9.350 139.599Q-9.350 139.920-9.179 140.201Q-9.007 140.482-8.721 140.644Q-8.436 140.806-8.108 140.806Q-7.796 140.806-7.669 140.703Q-7.542 140.599-7.425 140.410Q-7.307 140.221-7.190 140.205L-7.022 140.205Q-6.917 140.217-6.852 140.285Q-6.788 140.353-6.788 140.455Q-6.788 140.502-6.807 140.541Q-6.917 140.834-7.120 141.013Q-7.323 141.193-7.598 141.279Q-7.874 141.365-8.190 141.365Q-8.675 141.365-9.091 141.127Q-9.507 140.888-9.749 140.486Q-9.991 140.084-9.991 139.599M-6.233 141.088L-6.233 140.998Q-6.190 140.791-5.983 140.767L-5.561 140.767L-5.561 136.998L-5.983 136.998Q-6.190 136.974-6.233 136.760L-6.233 136.670Q-6.190 136.463-5.983 136.439L-5.167 136.439Q-4.971 136.463-4.921 136.670L-4.921 138.221Q-4.460 137.838-3.862 137.838Q-3.514 137.838-3.276 137.978Q-3.038 138.119-2.923 138.377Q-2.807 138.635-2.807 138.990L-2.807 140.767L-2.382 140.767Q-2.175 140.791-2.136 140.998L-2.136 141.088Q-2.175 141.303-2.382 141.326L-3.776 141.326Q-3.971 141.303-4.022 141.088L-4.022 140.998Q-3.971 140.787-3.776 140.767L-3.448 140.767L-3.448 139.021Q-3.448 138.713-3.538 138.555Q-3.628 138.396-3.921 138.396Q-4.190 138.396-4.419 138.527Q-4.647 138.658-4.784 138.887Q-4.921 139.115-4.921 139.381L-4.921 140.767L-4.495 140.767Q-4.288 140.791-4.249 140.998L-4.249 141.088Q-4.288 141.303-4.495 141.326L-5.983 141.326Q-6.190 141.303-6.233 141.088M1.454 139.838L-0.987 139.838Q-0.932 140.115-0.735 140.338Q-0.538 140.560-0.261 140.683Q0.017 140.806 0.302 140.806Q0.775 140.806 0.997 140.517Q1.005 140.506 1.062 140.400Q1.118 140.295 1.167 140.252Q1.216 140.209 1.310 140.197L1.454 140.197Q1.646 140.217 1.704 140.431L1.704 140.486Q1.638 140.787 1.407 140.984Q1.177 141.181 0.864 141.273Q0.552 141.365 0.247 141.365Q-0.237 141.365-0.677 141.137Q-1.116 140.908-1.384 140.508Q-1.651 140.107-1.651 139.615L-1.651 139.556Q-1.651 139.088-1.405 138.685Q-1.159 138.283-0.751 138.049Q-0.343 137.814 0.126 137.814Q0.630 137.814 0.984 138.037Q1.337 138.260 1.521 138.648Q1.704 139.037 1.704 139.541L1.704 139.599Q1.646 139.814 1.454 139.838M-0.979 139.287L1.048 139.287Q1.001 138.877 0.763 138.625Q0.525 138.373 0.126 138.373Q-0.268 138.373-0.575 138.635Q-0.882 138.896-0.979 139.287\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M89.176 38.896h48.37V16.133h-48.37Z\"\u002F>\u003Cg transform=\"translate(141.135 -111.033)\">\u003Cpath d=\"M-38.229 141.404Q-38.710 141.404-39.118 141.160Q-39.526 140.916-39.764 140.502Q-40.003 140.088-40.003 139.599Q-40.003 139.107-39.745 138.691Q-39.487 138.275-39.055 138.037Q-38.624 137.799-38.132 137.799Q-37.511 137.799-37.061 138.236L-37.061 136.607Q-37.061 136.392-37.124 136.297Q-37.186 136.201-37.304 136.180Q-37.421 136.158-37.667 136.158L-37.667 135.861L-36.444 135.775L-36.444 140.584Q-36.444 140.795-36.382 140.890Q-36.319 140.986-36.202 141.008Q-36.085 141.029-35.835 141.029L-35.835 141.326L-37.085 141.404L-37.085 140.920Q-37.550 141.404-38.229 141.404M-38.163 141.150Q-37.823 141.150-37.530 140.959Q-37.237 140.767-37.085 140.471L-37.085 138.638Q-37.233 138.365-37.495 138.209Q-37.757 138.053-38.069 138.053Q-38.694 138.053-38.977 138.500Q-39.261 138.947-39.261 139.607Q-39.261 140.252-39.009 140.701Q-38.757 141.150-38.163 141.150M-33.214 139.877L-35.468 139.877L-35.468 139.326L-33.214 139.326L-33.214 139.877M-28.147 141.326L-31.190 141.326L-31.190 141.029Q-30.429 141.029-30.245 140.990Q-30.202 140.978-30.153 140.945Q-30.104 140.912-30.079 140.869Q-30.054 140.826-30.054 140.767L-30.054 136.424Q-30.054 136.248-30.145 136.203Q-30.237 136.158-30.452 136.158L-30.846 136.158Q-31.542 136.158-31.831 136.447Q-31.979 136.596-32.042 136.916Q-32.104 137.236-32.147 137.709L-32.429 137.709L-32.268 135.861L-27.069 135.861L-26.909 137.709L-27.190 137.709Q-27.233 137.201-27.296 136.898Q-27.358 136.596-27.511 136.447Q-27.796 136.158-28.495 136.158L-28.886 136.158Q-29.100 136.158-29.192 136.201Q-29.284 136.244-29.284 136.424L-29.284 140.767Q-29.284 140.842-29.229 140.906Q-29.175 140.971-29.093 140.990Q-28.909 141.029-28.147 141.029L-28.147 141.326M-21.878 141.326L-26.261 141.326L-26.261 141.029Q-25.940 141.029-25.696 140.982Q-25.452 140.935-25.452 140.767L-25.452 136.424Q-25.452 136.252-25.696 136.205Q-25.940 136.158-26.261 136.158L-26.261 135.861L-23.675 135.861L-23.675 136.158Q-24.686 136.158-24.686 136.424L-24.686 140.767Q-24.686 140.939-24.595 140.984Q-24.503 141.029-24.284 141.029L-23.596 141.029Q-23.124 141.029-22.815 140.904Q-22.507 140.779-22.329 140.549Q-22.151 140.318-22.059 139.992Q-21.968 139.666-21.925 139.213L-21.643 139.213L-21.878 141.326M-17.643 141.326L-20.925 141.326L-20.925 141.029Q-20.600 141.029-20.358 140.982Q-20.116 140.935-20.116 140.767L-20.116 136.424Q-20.116 136.252-20.358 136.205Q-20.600 136.158-20.925 136.158L-20.925 135.861L-17.878 135.861Q-17.452 135.861-17.018 136.015Q-16.585 136.170-16.290 136.478Q-15.995 136.787-15.995 137.221Q-15.995 137.474-16.120 137.691Q-16.245 137.908-16.446 138.064Q-16.647 138.221-16.880 138.320Q-17.112 138.420-17.370 138.471Q-16.995 138.506-16.616 138.683Q-16.237 138.861-15.997 139.160Q-15.757 139.459-15.757 139.853Q-15.757 140.306-16.040 140.640Q-16.323 140.974-16.759 141.150Q-17.194 141.326-17.643 141.326M-19.405 138.615L-19.405 140.767Q-19.405 140.939-19.313 140.984Q-19.221 141.029-19.003 141.029L-17.878 141.029Q-17.639 141.029-17.405 140.941Q-17.171 140.853-16.985 140.693Q-16.800 140.533-16.698 140.320Q-16.596 140.107-16.596 139.853Q-16.596 139.533-16.749 139.248Q-16.901 138.963-17.171 138.789Q-17.440 138.615-17.757 138.615L-19.405 138.615M-19.405 136.424L-19.405 138.357L-18.116 138.357Q-17.874 138.357-17.636 138.275Q-17.397 138.193-17.214 138.047Q-17.030 137.900-16.917 137.683Q-16.804 137.467-16.804 137.221Q-16.804 137.010-16.889 136.808Q-16.975 136.607-17.122 136.465Q-17.268 136.322-17.464 136.240Q-17.659 136.158-17.878 136.158L-19.003 136.158Q-19.221 136.158-19.313 136.201Q-19.405 136.244-19.405 136.424\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M89.176 78.73h48.37V55.966h-48.37Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(132.394 -71.533)\">\u003Cpath d=\"M-40.061 141.088L-40.061 140.998Q-40.003 140.791-39.811 140.767L-39.444 140.767L-39.444 136.998L-39.811 136.998Q-40.003 136.974-40.061 136.760L-40.061 136.670Q-40.003 136.463-39.811 136.439L-38.284 136.439Q-38.089 136.463-38.038 136.670L-38.038 136.760Q-38.089 136.974-38.284 136.998L-38.804 136.998L-38.804 140.767L-36.971 140.767L-36.971 140.127Q-36.921 139.920-36.725 139.892L-36.581 139.892Q-36.382 139.920-36.331 140.127L-36.331 141.088Q-36.382 141.303-36.581 141.326L-39.811 141.326Q-40.003 141.303-40.061 141.088M-35.182 141.088L-35.182 140.998Q-35.132 140.791-34.932 140.767L-34.116 140.767L-34.116 137.584Q-34.495 137.892-34.948 137.892Q-35.179 137.892-35.229 137.662L-35.229 137.572Q-35.179 137.357-34.983 137.334Q-34.655 137.334-34.401 137.096Q-34.147 136.857-34.007 136.510Q-33.936 136.381-33.780 136.357L-33.725 136.357Q-33.530 136.377-33.479 136.592L-33.479 140.767L-32.663 140.767Q-32.464 140.791-32.413 140.998L-32.413 141.088Q-32.464 141.303-32.663 141.326L-34.932 141.326Q-35.132 141.303-35.182 141.088\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(132.394 -71.533)\">\u003Cpath d=\"M-25.671 141.365Q-26.136 141.365-26.501 141.115Q-26.866 140.865-27.071 140.461Q-27.276 140.056-27.276 139.599Q-27.276 139.256-27.151 138.935Q-27.026 138.615-26.794 138.365Q-26.561 138.115-26.257 137.976Q-25.952 137.838-25.596 137.838Q-25.085 137.838-24.679 138.158L-24.679 136.998L-25.100 136.998Q-25.311 136.974-25.350 136.760L-25.350 136.670Q-25.311 136.463-25.100 136.439L-24.288 136.439Q-24.089 136.463-24.038 136.670L-24.038 140.767L-23.612 140.767Q-23.405 140.791-23.366 140.998L-23.366 141.088Q-23.405 141.303-23.612 141.326L-24.429 141.326Q-24.628 141.303-24.679 141.088L-24.679 140.959Q-24.874 141.150-25.136 141.258Q-25.397 141.365-25.671 141.365M-25.632 140.806Q-25.272 140.806-25.020 140.537Q-24.768 140.267-24.679 139.892L-24.679 139.060Q-24.737 138.873-24.864 138.722Q-24.991 138.572-25.169 138.484Q-25.346 138.396-25.542 138.396Q-25.850 138.396-26.100 138.566Q-26.350 138.736-26.495 139.021Q-26.639 139.306-26.639 139.607Q-26.639 140.056-26.354 140.431Q-26.069 140.806-25.632 140.806M-19.792 139.189L-22.534 139.189Q-22.659 139.178-22.745 139.092Q-22.831 139.006-22.831 138.877Q-22.831 138.748-22.745 138.666Q-22.659 138.584-22.534 138.572L-19.792 138.572Q-19.667 138.584-19.585 138.666Q-19.503 138.748-19.503 138.877Q-19.503 139.006-19.585 139.092Q-19.667 139.178-19.792 139.189M-18.483 139.599Q-18.483 139.119-18.239 138.705Q-17.995 138.291-17.579 138.053Q-17.163 137.814-16.682 137.814Q-16.128 137.814-15.749 137.924Q-15.370 138.033-15.370 138.439Q-15.370 138.607-15.483 138.730Q-15.596 138.853-15.768 138.853Q-15.940 138.853-16.059 138.738Q-16.179 138.623-16.179 138.455L-16.179 138.396Q-16.339 138.373-16.675 138.373Q-17.003 138.373-17.270 138.543Q-17.538 138.713-17.690 138.996Q-17.843 139.279-17.843 139.599Q-17.843 139.920-17.671 140.201Q-17.499 140.482-17.214 140.644Q-16.929 140.806-16.600 140.806Q-16.288 140.806-16.161 140.703Q-16.034 140.599-15.917 140.410Q-15.800 140.221-15.682 140.205L-15.514 140.205Q-15.409 140.217-15.345 140.285Q-15.280 140.353-15.280 140.455Q-15.280 140.502-15.300 140.541Q-15.409 140.834-15.612 141.013Q-15.815 141.193-16.091 141.279Q-16.366 141.365-16.682 141.365Q-17.167 141.365-17.583 141.127Q-17.999 140.888-18.241 140.486Q-18.483 140.084-18.483 139.599M-14.389 140.213Q-14.389 139.767-13.975 139.510Q-13.561 139.252-13.020 139.152Q-12.479 139.053-11.971 139.045Q-11.971 138.830-12.106 138.678Q-12.241 138.525-12.448 138.449Q-12.655 138.373-12.866 138.373Q-13.210 138.373-13.370 138.396L-13.370 138.455Q-13.370 138.623-13.489 138.738Q-13.608 138.853-13.772 138.853Q-13.948 138.853-14.063 138.730Q-14.179 138.607-14.179 138.439Q-14.179 138.033-13.798 137.924Q-13.417 137.814-12.858 137.814Q-12.589 137.814-12.321 137.892Q-12.054 137.971-11.829 138.121Q-11.604 138.271-11.468 138.492Q-11.331 138.713-11.331 138.990L-11.331 140.709Q-11.331 140.767-10.804 140.767Q-10.608 140.787-10.557 140.998L-10.557 141.088Q-10.608 141.303-10.804 141.326L-10.948 141.326Q-11.292 141.326-11.520 141.279Q-11.749 141.232-11.893 141.045Q-12.354 141.365-13.061 141.365Q-13.397 141.365-13.702 141.224Q-14.007 141.084-14.198 140.822Q-14.389 140.560-14.389 140.213M-13.749 140.221Q-13.749 140.494-13.507 140.650Q-13.264 140.806-12.979 140.806Q-12.761 140.806-12.528 140.748Q-12.296 140.689-12.134 140.551Q-11.971 140.412-11.971 140.189L-11.971 139.599Q-12.253 139.599-12.669 139.656Q-13.085 139.713-13.417 139.851Q-13.749 139.990-13.749 140.221M-9.991 139.599Q-9.991 139.119-9.747 138.705Q-9.503 138.291-9.087 138.053Q-8.671 137.814-8.190 137.814Q-7.636 137.814-7.257 137.924Q-6.878 138.033-6.878 138.439Q-6.878 138.607-6.991 138.730Q-7.104 138.853-7.276 138.853Q-7.448 138.853-7.567 138.738Q-7.686 138.623-7.686 138.455L-7.686 138.396Q-7.846 138.373-8.182 138.373Q-8.511 138.373-8.778 138.543Q-9.046 138.713-9.198 138.996Q-9.350 139.279-9.350 139.599Q-9.350 139.920-9.179 140.201Q-9.007 140.482-8.721 140.644Q-8.436 140.806-8.108 140.806Q-7.796 140.806-7.669 140.703Q-7.542 140.599-7.425 140.410Q-7.307 140.221-7.190 140.205L-7.022 140.205Q-6.917 140.217-6.852 140.285Q-6.788 140.353-6.788 140.455Q-6.788 140.502-6.807 140.541Q-6.917 140.834-7.120 141.013Q-7.323 141.193-7.598 141.279Q-7.874 141.365-8.190 141.365Q-8.675 141.365-9.091 141.127Q-9.507 140.888-9.749 140.486Q-9.991 140.084-9.991 139.599M-6.233 141.088L-6.233 140.998Q-6.190 140.791-5.983 140.767L-5.561 140.767L-5.561 136.998L-5.983 136.998Q-6.190 136.974-6.233 136.760L-6.233 136.670Q-6.190 136.463-5.983 136.439L-5.167 136.439Q-4.971 136.463-4.921 136.670L-4.921 138.221Q-4.460 137.838-3.862 137.838Q-3.514 137.838-3.276 137.978Q-3.038 138.119-2.923 138.377Q-2.807 138.635-2.807 138.990L-2.807 140.767L-2.382 140.767Q-2.175 140.791-2.136 140.998L-2.136 141.088Q-2.175 141.303-2.382 141.326L-3.776 141.326Q-3.971 141.303-4.022 141.088L-4.022 140.998Q-3.971 140.787-3.776 140.767L-3.448 140.767L-3.448 139.021Q-3.448 138.713-3.538 138.555Q-3.628 138.396-3.921 138.396Q-4.190 138.396-4.419 138.527Q-4.647 138.658-4.784 138.887Q-4.921 139.115-4.921 139.381L-4.921 140.767L-4.495 140.767Q-4.288 140.791-4.249 140.998L-4.249 141.088Q-4.288 141.303-4.495 141.326L-5.983 141.326Q-6.190 141.303-6.233 141.088M1.454 139.838L-0.987 139.838Q-0.932 140.115-0.735 140.338Q-0.538 140.560-0.261 140.683Q0.017 140.806 0.302 140.806Q0.775 140.806 0.997 140.517Q1.005 140.506 1.062 140.400Q1.118 140.295 1.167 140.252Q1.216 140.209 1.310 140.197L1.454 140.197Q1.646 140.217 1.704 140.431L1.704 140.486Q1.638 140.787 1.407 140.984Q1.177 141.181 0.864 141.273Q0.552 141.365 0.247 141.365Q-0.237 141.365-0.677 141.137Q-1.116 140.908-1.384 140.508Q-1.651 140.107-1.651 139.615L-1.651 139.556Q-1.651 139.088-1.405 138.685Q-1.159 138.283-0.751 138.049Q-0.343 137.814 0.126 137.814Q0.630 137.814 0.984 138.037Q1.337 138.260 1.521 138.648Q1.704 139.037 1.704 139.541L1.704 139.599Q1.646 139.814 1.454 139.838M-0.979 139.287L1.048 139.287Q1.001 138.877 0.763 138.625Q0.525 138.373 0.126 138.373Q-0.268 138.373-0.575 138.635Q-0.882 138.896-0.979 139.287\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-23.212-16.387v30.32\"\u002F>\u003Cpath stroke=\"none\" d=\"m-23.212 15.934 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(25.726 -133.574)\">\u003Cpath d=\"M-38.380 141.299L-39.508 138.800Q-39.580 138.653-39.710 138.621Q-39.840 138.588-40.069 138.588L-40.069 138.308L-38.555 138.308L-38.555 138.588Q-38.907 138.588-38.907 138.735Q-38.907 138.780-38.896 138.800L-38.032 140.718L-37.252 138.988Q-37.218 138.920-37.218 138.841Q-37.218 138.728-37.302 138.658Q-37.386 138.588-37.505 138.588L-37.505 138.308L-36.309 138.308L-36.309 138.588Q-36.528 138.588-36.699 138.691Q-36.869 138.793-36.958 138.988L-37.994 141.299Q-38.042 141.394-38.148 141.394L-38.226 141.394Q-38.332 141.394-38.380 141.299M-34.152 141.326L-35.704 141.326L-35.704 141.046Q-35.478 141.046-35.330 141.012Q-35.181 140.977-35.181 140.837L-35.181 138.988Q-35.181 138.800-35.229 138.716Q-35.277 138.633-35.374 138.614Q-35.471 138.595-35.683 138.595L-35.683 138.315L-34.627 138.240L-34.627 140.837Q-34.627 140.977-34.496 141.012Q-34.364 141.046-34.152 141.046L-34.152 141.326M-35.424 137.019Q-35.424 136.848-35.301 136.729Q-35.178 136.609-35.007 136.609Q-34.839 136.609-34.716 136.729Q-34.593 136.848-34.593 137.019Q-34.593 137.194-34.716 137.317Q-34.839 137.440-35.007 137.440Q-35.178 137.440-35.301 137.317Q-35.424 137.194-35.424 137.019M-31.756 141.326L-33.492 141.326L-33.492 141.046Q-33.263 141.046-33.115 141.012Q-32.966 140.977-32.966 140.837L-32.966 138.988Q-32.966 138.718-33.074 138.657Q-33.181 138.595-33.492 138.595L-33.492 138.315L-32.464 138.240L-32.464 138.947Q-32.334 138.639-32.091 138.440Q-31.848 138.240-31.531 138.240Q-31.312 138.240-31.141 138.364Q-30.970 138.489-30.970 138.701Q-30.970 138.838-31.069 138.937Q-31.168 139.036-31.302 139.036Q-31.438 139.036-31.537 138.937Q-31.637 138.838-31.637 138.701Q-31.637 138.561-31.537 138.462Q-31.828 138.462-32.028 138.658Q-32.228 138.855-32.320 139.149Q-32.412 139.443-32.412 139.723L-32.412 140.837Q-32.412 141.046-31.756 141.046L-31.756 141.326M-29.859 140.485L-29.859 138.588L-30.498 138.588L-30.498 138.366Q-30.180 138.366-29.963 138.156Q-29.746 137.946-29.646 137.636Q-29.545 137.327-29.545 137.019L-29.278 137.019L-29.278 138.308L-28.201 138.308L-28.201 138.588L-29.278 138.588L-29.278 140.472Q-29.278 140.748-29.174 140.947Q-29.070 141.145-28.810 141.145Q-28.653 141.145-28.547 141.041Q-28.441 140.936-28.391 140.783Q-28.342 140.629-28.342 140.472L-28.342 140.058L-28.075 140.058L-28.075 140.485Q-28.075 140.711-28.174 140.921Q-28.273 141.131-28.458 141.263Q-28.642 141.394-28.871 141.394Q-29.309 141.394-29.584 141.157Q-29.859 140.919-29.859 140.485M-26.691 140.492L-26.691 138.988Q-26.691 138.718-26.798 138.657Q-26.906 138.595-27.217 138.595L-27.217 138.315L-26.110 138.240L-26.110 140.472L-26.110 140.492Q-26.110 140.772-26.058 140.916Q-26.007 141.059-25.865 141.116Q-25.723 141.172-25.436 141.172Q-25.183 141.172-24.978 141.032Q-24.773 140.892-24.657 140.666Q-24.541 140.441-24.541 140.191L-24.541 138.988Q-24.541 138.718-24.649 138.657Q-24.756 138.595-25.067 138.595L-25.067 138.315L-23.960 138.240L-23.960 140.653Q-23.960 140.844-23.907 140.926Q-23.854 141.008-23.753 141.027Q-23.652 141.046-23.437 141.046L-23.437 141.326L-24.513 141.394L-24.513 140.830Q-24.623 141.012-24.768 141.135Q-24.913 141.258-25.100 141.326Q-25.286 141.394-25.488 141.394Q-26.691 141.394-26.691 140.492M-22.791 140.598Q-22.791 140.266-22.567 140.039Q-22.343 139.812-22 139.684Q-21.656 139.555-21.284 139.503Q-20.911 139.450-20.607 139.450L-20.607 139.197Q-20.607 138.992-20.714 138.812Q-20.822 138.633-21.003 138.530Q-21.184 138.428-21.393 138.428Q-21.800 138.428-22.035 138.520Q-21.947 138.557-21.900 138.641Q-21.854 138.725-21.854 138.827Q-21.854 138.923-21.900 139.002Q-21.947 139.080-22.027 139.125Q-22.107 139.169-22.196 139.169Q-22.346 139.169-22.447 139.072Q-22.548 138.974-22.548 138.827Q-22.548 138.205-21.393 138.205Q-21.181 138.205-20.931 138.269Q-20.682 138.332-20.480 138.451Q-20.279 138.571-20.152 138.756Q-20.026 138.940-20.026 139.183L-20.026 140.759Q-20.026 140.875-19.964 140.971Q-19.903 141.066-19.790 141.066Q-19.680 141.066-19.616 140.972Q-19.551 140.878-19.551 140.759L-19.551 140.311L-19.284 140.311L-19.284 140.759Q-19.284 141.029-19.511 141.194Q-19.739 141.360-20.019 141.360Q-20.227 141.360-20.364 141.206Q-20.501 141.053-20.525 140.837Q-20.672 141.104-20.954 141.249Q-21.236 141.394-21.560 141.394Q-21.837 141.394-22.121 141.319Q-22.405 141.244-22.598 141.065Q-22.791 140.885-22.791 140.598M-22.176 140.598Q-22.176 140.772-22.075 140.902Q-21.974 141.032-21.818 141.102Q-21.663 141.172-21.499 141.172Q-21.280 141.172-21.072 141.075Q-20.863 140.977-20.735 140.796Q-20.607 140.615-20.607 140.389L-20.607 139.661Q-20.931 139.661-21.297 139.752Q-21.663 139.843-21.919 140.055Q-22.176 140.266-22.176 140.598M-17.199 141.326L-18.802 141.326L-18.802 141.046Q-18.576 141.046-18.428 141.012Q-18.279 140.977-18.279 140.837L-18.279 137.218Q-18.279 136.948-18.387 136.886Q-18.494 136.825-18.802 136.825L-18.802 136.544L-17.725 136.469L-17.725 140.837Q-17.725 140.974-17.575 141.010Q-17.425 141.046-17.199 141.046\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(25.726 -133.574)\">\u003Cpath d=\"M-13.834 140.598Q-13.834 140.266-13.611 140.039Q-13.387 139.812-13.043 139.684Q-12.700 139.555-12.327 139.503Q-11.955 139.450-11.650 139.450L-11.650 139.197Q-11.650 138.992-11.758 138.812Q-11.866 138.633-12.047 138.530Q-12.228 138.428-12.436 138.428Q-12.843 138.428-13.079 138.520Q-12.990 138.557-12.944 138.641Q-12.898 138.725-12.898 138.827Q-12.898 138.923-12.944 139.002Q-12.990 139.080-13.071 139.125Q-13.151 139.169-13.240 139.169Q-13.390 139.169-13.491 139.072Q-13.592 138.974-13.592 138.827Q-13.592 138.205-12.436 138.205Q-12.225 138.205-11.975 138.269Q-11.726 138.332-11.524 138.451Q-11.322 138.571-11.196 138.756Q-11.069 138.940-11.069 139.183L-11.069 140.759Q-11.069 140.875-11.008 140.971Q-10.946 141.066-10.833 141.066Q-10.724 141.066-10.659 140.972Q-10.594 140.878-10.594 140.759L-10.594 140.311L-10.328 140.311L-10.328 140.759Q-10.328 141.029-10.555 141.194Q-10.782 141.360-11.062 141.360Q-11.271 141.360-11.408 141.206Q-11.544 141.053-11.568 140.837Q-11.715 141.104-11.997 141.249Q-12.279 141.394-12.604 141.394Q-12.881 141.394-13.165 141.319Q-13.448 141.244-13.641 141.065Q-13.834 140.885-13.834 140.598M-13.219 140.598Q-13.219 140.772-13.118 140.902Q-13.018 141.032-12.862 141.102Q-12.707 141.172-12.542 141.172Q-12.324 141.172-12.115 141.075Q-11.907 140.977-11.779 140.796Q-11.650 140.615-11.650 140.389L-11.650 139.661Q-11.975 139.661-12.341 139.752Q-12.707 139.843-12.963 140.055Q-13.219 140.266-13.219 140.598M-9.911 139.815Q-9.911 139.477-9.770 139.186Q-9.630 138.896-9.386 138.682Q-9.142 138.469-8.837 138.354Q-8.533 138.240-8.208 138.240Q-7.938 138.240-7.675 138.339Q-7.412 138.438-7.221 138.616L-7.221 137.218Q-7.221 136.948-7.328 136.886Q-7.436 136.825-7.747 136.825L-7.747 136.544L-6.670 136.469L-6.670 140.653Q-6.670 140.841-6.616 140.924Q-6.561 141.008-6.460 141.027Q-6.359 141.046-6.144 141.046L-6.144 141.326L-7.251 141.394L-7.251 140.977Q-7.668 141.394-8.294 141.394Q-8.725 141.394-9.097 141.182Q-9.470 140.971-9.690 140.610Q-9.911 140.249-9.911 139.815M-8.236 141.172Q-8.027 141.172-7.841 141.100Q-7.655 141.029-7.501 140.892Q-7.347 140.755-7.251 140.577L-7.251 138.968Q-7.337 138.821-7.482 138.701Q-7.627 138.581-7.797 138.522Q-7.966 138.462-8.147 138.462Q-8.707 138.462-8.976 138.851Q-9.244 139.241-9.244 139.822Q-9.244 140.393-9.010 140.783Q-8.776 141.172-8.236 141.172M-5.495 139.815Q-5.495 139.477-5.354 139.186Q-5.214 138.896-4.970 138.682Q-4.726 138.469-4.421 138.354Q-4.117 138.240-3.792 138.240Q-3.522 138.240-3.259 138.339Q-2.996 138.438-2.805 138.616L-2.805 137.218Q-2.805 136.948-2.912 136.886Q-3.020 136.825-3.331 136.825L-3.331 136.544L-2.254 136.469L-2.254 140.653Q-2.254 140.841-2.200 140.924Q-2.145 141.008-2.044 141.027Q-1.943 141.046-1.728 141.046L-1.728 141.326L-2.835 141.394L-2.835 140.977Q-3.252 141.394-3.878 141.394Q-4.309 141.394-4.681 141.182Q-5.054 140.971-5.274 140.610Q-5.495 140.249-5.495 139.815M-3.820 141.172Q-3.611 141.172-3.425 141.100Q-3.239 141.029-3.085 140.892Q-2.931 140.755-2.835 140.577L-2.835 138.968Q-2.921 138.821-3.066 138.701Q-3.211 138.581-3.381 138.522Q-3.550 138.462-3.731 138.462Q-4.291 138.462-4.560 138.851Q-4.828 139.241-4.828 139.822Q-4.828 140.393-4.594 140.783Q-4.360 141.172-3.820 141.172M0.671 141.326L-1.065 141.326L-1.065 141.046Q-0.836 141.046-0.687 141.012Q-0.539 140.977-0.539 140.837L-0.539 138.988Q-0.539 138.718-0.646 138.657Q-0.754 138.595-1.065 138.595L-1.065 138.315L-0.036 138.240L-0.036 138.947Q0.094 138.639 0.336 138.440Q0.579 138.240 0.897 138.240Q1.116 138.240 1.287 138.364Q1.458 138.489 1.458 138.701Q1.458 138.838 1.358 138.937Q1.259 139.036 1.126 139.036Q0.989 139.036 0.890 138.937Q0.791 138.838 0.791 138.701Q0.791 138.561 0.890 138.462Q0.600 138.462 0.400 138.658Q0.200 138.855 0.107 139.149Q0.015 139.443 0.015 139.723L0.015 140.837Q0.015 141.046 0.671 141.046\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-23.212 39.096v14.671\"\u002F>\u003Cpath stroke=\"none\" d=\"m-23.212 55.767 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(25.726 -92.241)\">\u003Cpath d=\"M-40.222 142.676L-40.222 142.601Q-40.185 142.409-40.004 142.389L-39.635 142.389L-39.635 138.800L-40.004 138.800Q-40.185 138.780-40.222 138.588L-40.222 138.513Q-40.181 138.328-40.004 138.308L-39.289 138.308Q-39.118 138.325-39.074 138.513L-39.074 138.575Q-38.889 138.428-38.659 138.351Q-38.428 138.274-38.192 138.274Q-37.895 138.274-37.635 138.400Q-37.375 138.527-37.187 138.747Q-36.999 138.968-36.899 139.241Q-36.798 139.514-36.798 139.815Q-36.798 140.222-36.996 140.581Q-37.194 140.940-37.533 141.150Q-37.871 141.360-38.281 141.360Q-38.736 141.360-39.074 141.039L-39.074 142.389L-38.701 142.389Q-38.520 142.409-38.486 142.601L-38.486 142.676Q-38.520 142.861-38.701 142.881L-40.004 142.881Q-40.181 142.861-40.222 142.676M-38.319 140.871Q-38.049 140.871-37.830 140.723Q-37.611 140.574-37.485 140.328Q-37.358 140.082-37.358 139.815Q-37.358 139.562-37.468 139.318Q-37.577 139.074-37.780 138.918Q-37.984 138.763-38.247 138.763Q-38.527 138.763-38.756 138.925Q-38.985 139.087-39.074 139.350L-39.074 140.096Q-38.995 140.417-38.802 140.644Q-38.609 140.871-38.319 140.871M-36.507 141.118L-36.507 141.039Q-36.470 140.858-36.288 140.837L-35.919 140.837L-35.919 137.539L-36.288 137.539Q-36.470 137.518-36.507 137.330L-36.507 137.252Q-36.470 137.071-36.288 137.050L-35.574 137.050Q-35.403 137.071-35.359 137.252L-35.359 138.609Q-34.955 138.274-34.432 138.274Q-34.128 138.274-33.920 138.397Q-33.711 138.520-33.610 138.745Q-33.510 138.971-33.510 139.282L-33.510 140.837L-33.137 140.837Q-32.956 140.858-32.922 141.039L-32.922 141.118Q-32.956 141.305-33.137 141.326L-34.357 141.326Q-34.528 141.305-34.573 141.118L-34.573 141.039Q-34.528 140.854-34.357 140.837L-34.070 140.837L-34.070 139.309Q-34.070 139.039-34.149 138.901Q-34.227 138.763-34.484 138.763Q-34.720 138.763-34.919 138.877Q-35.119 138.992-35.239 139.191Q-35.359 139.391-35.359 139.624L-35.359 140.837L-34.986 140.837Q-34.805 140.858-34.771 141.039L-34.771 141.118Q-34.805 141.305-34.986 141.326L-36.288 141.326Q-36.470 141.305-36.507 141.118M-32.553 142.307Q-32.553 142.211-32.508 142.131Q-32.464 142.051-32.383 142.006Q-32.303 141.962-32.211 141.962Q-32.115 141.962-32.035 142.006Q-31.954 142.051-31.910 142.131Q-31.866 142.211-31.866 142.307L-31.992 142.307Q-31.992 142.427-31.971 142.427Q-31.746 142.427-31.582 142.259Q-31.418 142.092-31.343 141.859L-31.158 141.326L-32.153 138.800L-32.440 138.800Q-32.611 138.780-32.659 138.588L-32.659 138.513Q-32.607 138.328-32.440 138.308L-31.425 138.308Q-31.254 138.328-31.209 138.513L-31.209 138.588Q-31.254 138.780-31.425 138.800L-31.657 138.800Q-31.363 139.542-31.149 140.114Q-30.936 140.687-30.936 140.765L-30.929 140.765Q-30.929 140.714-30.849 140.458Q-30.768 140.201-30.599 139.691Q-30.430 139.180-30.307 138.800L-30.550 138.800Q-30.734 138.780-30.768 138.588L-30.768 138.513Q-30.724 138.325-30.550 138.308L-29.541 138.308Q-29.360 138.328-29.326 138.513L-29.326 138.588Q-29.360 138.780-29.541 138.800L-29.822 138.800L-30.850 141.859Q-30.997 142.297-31.283 142.606Q-31.568 142.915-31.971 142.915Q-32.211 142.915-32.382 142.731Q-32.553 142.546-32.553 142.307M-28.625 141.152L-28.625 140.352Q-28.601 140.171-28.417 140.150L-28.270 140.150Q-28.126 140.171-28.075 140.311Q-27.897 140.871-27.262 140.871Q-27.080 140.871-26.880 140.841Q-26.680 140.810-26.534 140.709Q-26.387 140.608-26.387 140.430Q-26.387 140.246-26.581 140.147Q-26.776 140.048-27.015 140.010L-27.627 139.911Q-28.625 139.726-28.625 139.094Q-28.625 138.841-28.499 138.675Q-28.372 138.510-28.162 138.416Q-27.952 138.322-27.728 138.287Q-27.504 138.253-27.262 138.253Q-27.043 138.253-26.874 138.279Q-26.704 138.305-26.561 138.373Q-26.492 138.270-26.380 138.253L-26.311 138.253Q-26.226 138.263-26.171 138.318Q-26.117 138.373-26.106 138.455L-26.106 139.074Q-26.117 139.156-26.171 139.214Q-26.226 139.272-26.311 139.282L-26.458 139.282Q-26.540 139.272-26.598 139.214Q-26.657 139.156-26.667 139.074Q-26.667 138.742-27.275 138.742Q-27.579 138.742-27.858 138.814Q-28.137 138.886-28.137 139.101Q-28.137 139.333-27.549 139.429L-26.933 139.535Q-26.510 139.607-26.204 139.824Q-25.898 140.041-25.898 140.430Q-25.898 140.772-26.105 140.984Q-26.311 141.196-26.617 141.278Q-26.923 141.360-27.262 141.360Q-27.767 141.360-28.116 141.138Q-28.178 141.247-28.220 141.297Q-28.263 141.347-28.355 141.360L-28.417 141.360Q-28.605 141.340-28.625 141.152\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(25.726 -92.241)\">\u003Cpath d=\"M-22.341 140.598Q-22.341 140.266-22.118 140.039Q-21.894 139.812-21.550 139.684Q-21.207 139.555-20.834 139.503Q-20.462 139.450-20.157 139.450L-20.157 139.197Q-20.157 138.992-20.265 138.812Q-20.373 138.633-20.554 138.530Q-20.735 138.428-20.943 138.428Q-21.350 138.428-21.586 138.520Q-21.497 138.557-21.451 138.641Q-21.405 138.725-21.405 138.827Q-21.405 138.923-21.451 139.002Q-21.497 139.080-21.578 139.125Q-21.658 139.169-21.747 139.169Q-21.897 139.169-21.998 139.072Q-22.099 138.974-22.099 138.827Q-22.099 138.205-20.943 138.205Q-20.732 138.205-20.482 138.269Q-20.233 138.332-20.031 138.451Q-19.829 138.571-19.703 138.756Q-19.576 138.940-19.576 139.183L-19.576 140.759Q-19.576 140.875-19.515 140.971Q-19.453 141.066-19.340 141.066Q-19.231 141.066-19.166 140.972Q-19.101 140.878-19.101 140.759L-19.101 140.311L-18.835 140.311L-18.835 140.759Q-18.835 141.029-19.062 141.194Q-19.289 141.360-19.569 141.360Q-19.778 141.360-19.915 141.206Q-20.051 141.053-20.075 140.837Q-20.222 141.104-20.504 141.249Q-20.786 141.394-21.111 141.394Q-21.388 141.394-21.672 141.319Q-21.955 141.244-22.148 141.065Q-22.341 140.885-22.341 140.598M-21.726 140.598Q-21.726 140.772-21.625 140.902Q-21.525 141.032-21.369 141.102Q-21.214 141.172-21.049 141.172Q-20.831 141.172-20.622 141.075Q-20.414 140.977-20.286 140.796Q-20.157 140.615-20.157 140.389L-20.157 139.661Q-20.482 139.661-20.848 139.752Q-21.214 139.843-21.470 140.055Q-21.726 140.266-21.726 140.598M-18.418 139.815Q-18.418 139.477-18.277 139.186Q-18.137 138.896-17.893 138.682Q-17.649 138.469-17.344 138.354Q-17.040 138.240-16.715 138.240Q-16.445 138.240-16.182 138.339Q-15.919 138.438-15.728 138.616L-15.728 137.218Q-15.728 136.948-15.835 136.886Q-15.943 136.825-16.254 136.825L-16.254 136.544L-15.177 136.469L-15.177 140.653Q-15.177 140.841-15.123 140.924Q-15.068 141.008-14.967 141.027Q-14.866 141.046-14.651 141.046L-14.651 141.326L-15.758 141.394L-15.758 140.977Q-16.175 141.394-16.801 141.394Q-17.232 141.394-17.604 141.182Q-17.977 140.971-18.197 140.610Q-18.418 140.249-18.418 139.815M-16.743 141.172Q-16.534 141.172-16.348 141.100Q-16.162 141.029-16.008 140.892Q-15.854 140.755-15.758 140.577L-15.758 138.968Q-15.844 138.821-15.989 138.701Q-16.134 138.581-16.304 138.522Q-16.473 138.462-16.654 138.462Q-17.214 138.462-17.483 138.851Q-17.751 139.241-17.751 139.822Q-17.751 140.393-17.517 140.783Q-17.283 141.172-16.743 141.172M-14.002 139.815Q-14.002 139.477-13.861 139.186Q-13.721 138.896-13.477 138.682Q-13.233 138.469-12.928 138.354Q-12.624 138.240-12.299 138.240Q-12.029 138.240-11.766 138.339Q-11.503 138.438-11.312 138.616L-11.312 137.218Q-11.312 136.948-11.419 136.886Q-11.527 136.825-11.838 136.825L-11.838 136.544L-10.761 136.469L-10.761 140.653Q-10.761 140.841-10.707 140.924Q-10.652 141.008-10.551 141.027Q-10.450 141.046-10.235 141.046L-10.235 141.326L-11.342 141.394L-11.342 140.977Q-11.759 141.394-12.385 141.394Q-12.816 141.394-13.188 141.182Q-13.561 140.971-13.781 140.610Q-14.002 140.249-14.002 139.815M-12.327 141.172Q-12.118 141.172-11.932 141.100Q-11.746 141.029-11.592 140.892Q-11.438 140.755-11.342 140.577L-11.342 138.968Q-11.428 138.821-11.573 138.701Q-11.718 138.581-11.888 138.522Q-12.057 138.462-12.238 138.462Q-12.798 138.462-13.067 138.851Q-13.335 139.241-13.335 139.822Q-13.335 140.393-13.101 140.783Q-12.867 141.172-12.327 141.172M-7.836 141.326L-9.572 141.326L-9.572 141.046Q-9.343 141.046-9.194 141.012Q-9.046 140.977-9.046 140.837L-9.046 138.988Q-9.046 138.718-9.153 138.657Q-9.261 138.595-9.572 138.595L-9.572 138.315L-8.543 138.240L-8.543 138.947Q-8.413 138.639-8.171 138.440Q-7.928 138.240-7.610 138.240Q-7.391 138.240-7.220 138.364Q-7.049 138.489-7.049 138.701Q-7.049 138.838-7.149 138.937Q-7.248 139.036-7.381 139.036Q-7.518 139.036-7.617 138.937Q-7.716 138.838-7.716 138.701Q-7.716 138.561-7.617 138.462Q-7.907 138.462-8.107 138.658Q-8.307 138.855-8.400 139.149Q-8.492 139.443-8.492 139.723L-8.492 140.837Q-8.492 141.046-7.836 141.046\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M113.36-16.387v30.32\"\u002F>\u003Cpath stroke=\"none\" d=\"m113.36 15.934 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(162.3 -133.574)\">\u003Cpath d=\"M-38.380 141.299L-39.508 138.800Q-39.580 138.653-39.710 138.621Q-39.840 138.588-40.069 138.588L-40.069 138.308L-38.555 138.308L-38.555 138.588Q-38.907 138.588-38.907 138.735Q-38.907 138.780-38.896 138.800L-38.032 140.718L-37.252 138.988Q-37.218 138.920-37.218 138.841Q-37.218 138.728-37.302 138.658Q-37.386 138.588-37.505 138.588L-37.505 138.308L-36.309 138.308L-36.309 138.588Q-36.528 138.588-36.699 138.691Q-36.869 138.793-36.958 138.988L-37.994 141.299Q-38.042 141.394-38.148 141.394L-38.226 141.394Q-38.332 141.394-38.380 141.299M-34.152 141.326L-35.704 141.326L-35.704 141.046Q-35.478 141.046-35.330 141.012Q-35.181 140.977-35.181 140.837L-35.181 138.988Q-35.181 138.800-35.229 138.716Q-35.277 138.633-35.374 138.614Q-35.471 138.595-35.683 138.595L-35.683 138.315L-34.627 138.240L-34.627 140.837Q-34.627 140.977-34.496 141.012Q-34.364 141.046-34.152 141.046L-34.152 141.326M-35.424 137.019Q-35.424 136.848-35.301 136.729Q-35.178 136.609-35.007 136.609Q-34.839 136.609-34.716 136.729Q-34.593 136.848-34.593 137.019Q-34.593 137.194-34.716 137.317Q-34.839 137.440-35.007 137.440Q-35.178 137.440-35.301 137.317Q-35.424 137.194-35.424 137.019M-31.756 141.326L-33.492 141.326L-33.492 141.046Q-33.263 141.046-33.115 141.012Q-32.966 140.977-32.966 140.837L-32.966 138.988Q-32.966 138.718-33.074 138.657Q-33.181 138.595-33.492 138.595L-33.492 138.315L-32.464 138.240L-32.464 138.947Q-32.334 138.639-32.091 138.440Q-31.848 138.240-31.531 138.240Q-31.312 138.240-31.141 138.364Q-30.970 138.489-30.970 138.701Q-30.970 138.838-31.069 138.937Q-31.168 139.036-31.302 139.036Q-31.438 139.036-31.537 138.937Q-31.637 138.838-31.637 138.701Q-31.637 138.561-31.537 138.462Q-31.828 138.462-32.028 138.658Q-32.228 138.855-32.320 139.149Q-32.412 139.443-32.412 139.723L-32.412 140.837Q-32.412 141.046-31.756 141.046L-31.756 141.326M-29.859 140.485L-29.859 138.588L-30.498 138.588L-30.498 138.366Q-30.180 138.366-29.963 138.156Q-29.746 137.946-29.646 137.636Q-29.545 137.327-29.545 137.019L-29.278 137.019L-29.278 138.308L-28.201 138.308L-28.201 138.588L-29.278 138.588L-29.278 140.472Q-29.278 140.748-29.174 140.947Q-29.070 141.145-28.810 141.145Q-28.653 141.145-28.547 141.041Q-28.441 140.936-28.391 140.783Q-28.342 140.629-28.342 140.472L-28.342 140.058L-28.075 140.058L-28.075 140.485Q-28.075 140.711-28.174 140.921Q-28.273 141.131-28.458 141.263Q-28.642 141.394-28.871 141.394Q-29.309 141.394-29.584 141.157Q-29.859 140.919-29.859 140.485M-26.691 140.492L-26.691 138.988Q-26.691 138.718-26.798 138.657Q-26.906 138.595-27.217 138.595L-27.217 138.315L-26.110 138.240L-26.110 140.472L-26.110 140.492Q-26.110 140.772-26.058 140.916Q-26.007 141.059-25.865 141.116Q-25.723 141.172-25.436 141.172Q-25.183 141.172-24.978 141.032Q-24.773 140.892-24.657 140.666Q-24.541 140.441-24.541 140.191L-24.541 138.988Q-24.541 138.718-24.649 138.657Q-24.756 138.595-25.067 138.595L-25.067 138.315L-23.960 138.240L-23.960 140.653Q-23.960 140.844-23.907 140.926Q-23.854 141.008-23.753 141.027Q-23.652 141.046-23.437 141.046L-23.437 141.326L-24.513 141.394L-24.513 140.830Q-24.623 141.012-24.768 141.135Q-24.913 141.258-25.100 141.326Q-25.286 141.394-25.488 141.394Q-26.691 141.394-26.691 140.492M-22.791 140.598Q-22.791 140.266-22.567 140.039Q-22.343 139.812-22 139.684Q-21.656 139.555-21.284 139.503Q-20.911 139.450-20.607 139.450L-20.607 139.197Q-20.607 138.992-20.714 138.812Q-20.822 138.633-21.003 138.530Q-21.184 138.428-21.393 138.428Q-21.800 138.428-22.035 138.520Q-21.947 138.557-21.900 138.641Q-21.854 138.725-21.854 138.827Q-21.854 138.923-21.900 139.002Q-21.947 139.080-22.027 139.125Q-22.107 139.169-22.196 139.169Q-22.346 139.169-22.447 139.072Q-22.548 138.974-22.548 138.827Q-22.548 138.205-21.393 138.205Q-21.181 138.205-20.931 138.269Q-20.682 138.332-20.480 138.451Q-20.279 138.571-20.152 138.756Q-20.026 138.940-20.026 139.183L-20.026 140.759Q-20.026 140.875-19.964 140.971Q-19.903 141.066-19.790 141.066Q-19.680 141.066-19.616 140.972Q-19.551 140.878-19.551 140.759L-19.551 140.311L-19.284 140.311L-19.284 140.759Q-19.284 141.029-19.511 141.194Q-19.739 141.360-20.019 141.360Q-20.227 141.360-20.364 141.206Q-20.501 141.053-20.525 140.837Q-20.672 141.104-20.954 141.249Q-21.236 141.394-21.560 141.394Q-21.837 141.394-22.121 141.319Q-22.405 141.244-22.598 141.065Q-22.791 140.885-22.791 140.598M-22.176 140.598Q-22.176 140.772-22.075 140.902Q-21.974 141.032-21.818 141.102Q-21.663 141.172-21.499 141.172Q-21.280 141.172-21.072 141.075Q-20.863 140.977-20.735 140.796Q-20.607 140.615-20.607 140.389L-20.607 139.661Q-20.931 139.661-21.297 139.752Q-21.663 139.843-21.919 140.055Q-22.176 140.266-22.176 140.598M-17.199 141.326L-18.802 141.326L-18.802 141.046Q-18.576 141.046-18.428 141.012Q-18.279 140.977-18.279 140.837L-18.279 137.218Q-18.279 136.948-18.387 136.886Q-18.494 136.825-18.802 136.825L-18.802 136.544L-17.725 136.469L-17.725 140.837Q-17.725 140.974-17.575 141.010Q-17.425 141.046-17.199 141.046\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(162.3 -133.574)\">\u003Cpath d=\"M-13.834 140.598Q-13.834 140.266-13.611 140.039Q-13.387 139.812-13.043 139.684Q-12.700 139.555-12.327 139.503Q-11.955 139.450-11.650 139.450L-11.650 139.197Q-11.650 138.992-11.758 138.812Q-11.866 138.633-12.047 138.530Q-12.228 138.428-12.436 138.428Q-12.843 138.428-13.079 138.520Q-12.990 138.557-12.944 138.641Q-12.898 138.725-12.898 138.827Q-12.898 138.923-12.944 139.002Q-12.990 139.080-13.071 139.125Q-13.151 139.169-13.240 139.169Q-13.390 139.169-13.491 139.072Q-13.592 138.974-13.592 138.827Q-13.592 138.205-12.436 138.205Q-12.225 138.205-11.975 138.269Q-11.726 138.332-11.524 138.451Q-11.322 138.571-11.196 138.756Q-11.069 138.940-11.069 139.183L-11.069 140.759Q-11.069 140.875-11.008 140.971Q-10.946 141.066-10.833 141.066Q-10.724 141.066-10.659 140.972Q-10.594 140.878-10.594 140.759L-10.594 140.311L-10.328 140.311L-10.328 140.759Q-10.328 141.029-10.555 141.194Q-10.782 141.360-11.062 141.360Q-11.271 141.360-11.408 141.206Q-11.544 141.053-11.568 140.837Q-11.715 141.104-11.997 141.249Q-12.279 141.394-12.604 141.394Q-12.881 141.394-13.165 141.319Q-13.448 141.244-13.641 141.065Q-13.834 140.885-13.834 140.598M-13.219 140.598Q-13.219 140.772-13.118 140.902Q-13.018 141.032-12.862 141.102Q-12.707 141.172-12.542 141.172Q-12.324 141.172-12.115 141.075Q-11.907 140.977-11.779 140.796Q-11.650 140.615-11.650 140.389L-11.650 139.661Q-11.975 139.661-12.341 139.752Q-12.707 139.843-12.963 140.055Q-13.219 140.266-13.219 140.598M-9.911 139.815Q-9.911 139.477-9.770 139.186Q-9.630 138.896-9.386 138.682Q-9.142 138.469-8.837 138.354Q-8.533 138.240-8.208 138.240Q-7.938 138.240-7.675 138.339Q-7.412 138.438-7.221 138.616L-7.221 137.218Q-7.221 136.948-7.328 136.886Q-7.436 136.825-7.747 136.825L-7.747 136.544L-6.670 136.469L-6.670 140.653Q-6.670 140.841-6.616 140.924Q-6.561 141.008-6.460 141.027Q-6.359 141.046-6.144 141.046L-6.144 141.326L-7.251 141.394L-7.251 140.977Q-7.668 141.394-8.294 141.394Q-8.725 141.394-9.097 141.182Q-9.470 140.971-9.690 140.610Q-9.911 140.249-9.911 139.815M-8.236 141.172Q-8.027 141.172-7.841 141.100Q-7.655 141.029-7.501 140.892Q-7.347 140.755-7.251 140.577L-7.251 138.968Q-7.337 138.821-7.482 138.701Q-7.627 138.581-7.797 138.522Q-7.966 138.462-8.147 138.462Q-8.707 138.462-8.976 138.851Q-9.244 139.241-9.244 139.822Q-9.244 140.393-9.010 140.783Q-8.776 141.172-8.236 141.172M-5.495 139.815Q-5.495 139.477-5.354 139.186Q-5.214 138.896-4.970 138.682Q-4.726 138.469-4.421 138.354Q-4.117 138.240-3.792 138.240Q-3.522 138.240-3.259 138.339Q-2.996 138.438-2.805 138.616L-2.805 137.218Q-2.805 136.948-2.912 136.886Q-3.020 136.825-3.331 136.825L-3.331 136.544L-2.254 136.469L-2.254 140.653Q-2.254 140.841-2.200 140.924Q-2.145 141.008-2.044 141.027Q-1.943 141.046-1.728 141.046L-1.728 141.326L-2.835 141.394L-2.835 140.977Q-3.252 141.394-3.878 141.394Q-4.309 141.394-4.681 141.182Q-5.054 140.971-5.274 140.610Q-5.495 140.249-5.495 139.815M-3.820 141.172Q-3.611 141.172-3.425 141.100Q-3.239 141.029-3.085 140.892Q-2.931 140.755-2.835 140.577L-2.835 138.968Q-2.921 138.821-3.066 138.701Q-3.211 138.581-3.381 138.522Q-3.550 138.462-3.731 138.462Q-4.291 138.462-4.560 138.851Q-4.828 139.241-4.828 139.822Q-4.828 140.393-4.594 140.783Q-4.360 141.172-3.820 141.172M0.671 141.326L-1.065 141.326L-1.065 141.046Q-0.836 141.046-0.687 141.012Q-0.539 140.977-0.539 140.837L-0.539 138.988Q-0.539 138.718-0.646 138.657Q-0.754 138.595-1.065 138.595L-1.065 138.315L-0.036 138.240L-0.036 138.947Q0.094 138.639 0.336 138.440Q0.579 138.240 0.897 138.240Q1.116 138.240 1.287 138.364Q1.458 138.489 1.458 138.701Q1.458 138.838 1.358 138.937Q1.259 139.036 1.126 139.036Q0.989 139.036 0.890 138.937Q0.791 138.838 0.791 138.701Q0.791 138.561 0.890 138.462Q0.600 138.462 0.400 138.658Q0.200 138.855 0.107 139.149Q0.015 139.443 0.015 139.723L0.015 140.837Q0.015 141.046 0.671 141.046\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M113.36 39.096v14.671\"\u002F>\u003Cpath stroke=\"none\" d=\"m113.36 55.767 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(162.3 -92.241)\">\u003Cpath d=\"M-40.222 142.676L-40.222 142.601Q-40.185 142.409-40.004 142.389L-39.635 142.389L-39.635 138.800L-40.004 138.800Q-40.185 138.780-40.222 138.588L-40.222 138.513Q-40.181 138.328-40.004 138.308L-39.289 138.308Q-39.118 138.325-39.074 138.513L-39.074 138.575Q-38.889 138.428-38.659 138.351Q-38.428 138.274-38.192 138.274Q-37.895 138.274-37.635 138.400Q-37.375 138.527-37.187 138.747Q-36.999 138.968-36.899 139.241Q-36.798 139.514-36.798 139.815Q-36.798 140.222-36.996 140.581Q-37.194 140.940-37.533 141.150Q-37.871 141.360-38.281 141.360Q-38.736 141.360-39.074 141.039L-39.074 142.389L-38.701 142.389Q-38.520 142.409-38.486 142.601L-38.486 142.676Q-38.520 142.861-38.701 142.881L-40.004 142.881Q-40.181 142.861-40.222 142.676M-38.319 140.871Q-38.049 140.871-37.830 140.723Q-37.611 140.574-37.485 140.328Q-37.358 140.082-37.358 139.815Q-37.358 139.562-37.468 139.318Q-37.577 139.074-37.780 138.918Q-37.984 138.763-38.247 138.763Q-38.527 138.763-38.756 138.925Q-38.985 139.087-39.074 139.350L-39.074 140.096Q-38.995 140.417-38.802 140.644Q-38.609 140.871-38.319 140.871M-36.507 141.118L-36.507 141.039Q-36.470 140.858-36.288 140.837L-35.919 140.837L-35.919 137.539L-36.288 137.539Q-36.470 137.518-36.507 137.330L-36.507 137.252Q-36.470 137.071-36.288 137.050L-35.574 137.050Q-35.403 137.071-35.359 137.252L-35.359 138.609Q-34.955 138.274-34.432 138.274Q-34.128 138.274-33.920 138.397Q-33.711 138.520-33.610 138.745Q-33.510 138.971-33.510 139.282L-33.510 140.837L-33.137 140.837Q-32.956 140.858-32.922 141.039L-32.922 141.118Q-32.956 141.305-33.137 141.326L-34.357 141.326Q-34.528 141.305-34.573 141.118L-34.573 141.039Q-34.528 140.854-34.357 140.837L-34.070 140.837L-34.070 139.309Q-34.070 139.039-34.149 138.901Q-34.227 138.763-34.484 138.763Q-34.720 138.763-34.919 138.877Q-35.119 138.992-35.239 139.191Q-35.359 139.391-35.359 139.624L-35.359 140.837L-34.986 140.837Q-34.805 140.858-34.771 141.039L-34.771 141.118Q-34.805 141.305-34.986 141.326L-36.288 141.326Q-36.470 141.305-36.507 141.118M-32.553 142.307Q-32.553 142.211-32.508 142.131Q-32.464 142.051-32.383 142.006Q-32.303 141.962-32.211 141.962Q-32.115 141.962-32.035 142.006Q-31.954 142.051-31.910 142.131Q-31.866 142.211-31.866 142.307L-31.992 142.307Q-31.992 142.427-31.971 142.427Q-31.746 142.427-31.582 142.259Q-31.418 142.092-31.343 141.859L-31.158 141.326L-32.153 138.800L-32.440 138.800Q-32.611 138.780-32.659 138.588L-32.659 138.513Q-32.607 138.328-32.440 138.308L-31.425 138.308Q-31.254 138.328-31.209 138.513L-31.209 138.588Q-31.254 138.780-31.425 138.800L-31.657 138.800Q-31.363 139.542-31.149 140.114Q-30.936 140.687-30.936 140.765L-30.929 140.765Q-30.929 140.714-30.849 140.458Q-30.768 140.201-30.599 139.691Q-30.430 139.180-30.307 138.800L-30.550 138.800Q-30.734 138.780-30.768 138.588L-30.768 138.513Q-30.724 138.325-30.550 138.308L-29.541 138.308Q-29.360 138.328-29.326 138.513L-29.326 138.588Q-29.360 138.780-29.541 138.800L-29.822 138.800L-30.850 141.859Q-30.997 142.297-31.283 142.606Q-31.568 142.915-31.971 142.915Q-32.211 142.915-32.382 142.731Q-32.553 142.546-32.553 142.307M-28.625 141.152L-28.625 140.352Q-28.601 140.171-28.417 140.150L-28.270 140.150Q-28.126 140.171-28.075 140.311Q-27.897 140.871-27.262 140.871Q-27.080 140.871-26.880 140.841Q-26.680 140.810-26.534 140.709Q-26.387 140.608-26.387 140.430Q-26.387 140.246-26.581 140.147Q-26.776 140.048-27.015 140.010L-27.627 139.911Q-28.625 139.726-28.625 139.094Q-28.625 138.841-28.499 138.675Q-28.372 138.510-28.162 138.416Q-27.952 138.322-27.728 138.287Q-27.504 138.253-27.262 138.253Q-27.043 138.253-26.874 138.279Q-26.704 138.305-26.561 138.373Q-26.492 138.270-26.380 138.253L-26.311 138.253Q-26.226 138.263-26.171 138.318Q-26.117 138.373-26.106 138.455L-26.106 139.074Q-26.117 139.156-26.171 139.214Q-26.226 139.272-26.311 139.282L-26.458 139.282Q-26.540 139.272-26.598 139.214Q-26.657 139.156-26.667 139.074Q-26.667 138.742-27.275 138.742Q-27.579 138.742-27.858 138.814Q-28.137 138.886-28.137 139.101Q-28.137 139.333-27.549 139.429L-26.933 139.535Q-26.510 139.607-26.204 139.824Q-25.898 140.041-25.898 140.430Q-25.898 140.772-26.105 140.984Q-26.311 141.196-26.617 141.278Q-26.923 141.360-27.262 141.360Q-27.767 141.360-28.116 141.138Q-28.178 141.247-28.220 141.297Q-28.263 141.347-28.355 141.360L-28.417 141.360Q-28.605 141.340-28.625 141.152\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(162.3 -92.241)\">\u003Cpath d=\"M-22.341 140.598Q-22.341 140.266-22.118 140.039Q-21.894 139.812-21.550 139.684Q-21.207 139.555-20.834 139.503Q-20.462 139.450-20.157 139.450L-20.157 139.197Q-20.157 138.992-20.265 138.812Q-20.373 138.633-20.554 138.530Q-20.735 138.428-20.943 138.428Q-21.350 138.428-21.586 138.520Q-21.497 138.557-21.451 138.641Q-21.405 138.725-21.405 138.827Q-21.405 138.923-21.451 139.002Q-21.497 139.080-21.578 139.125Q-21.658 139.169-21.747 139.169Q-21.897 139.169-21.998 139.072Q-22.099 138.974-22.099 138.827Q-22.099 138.205-20.943 138.205Q-20.732 138.205-20.482 138.269Q-20.233 138.332-20.031 138.451Q-19.829 138.571-19.703 138.756Q-19.576 138.940-19.576 139.183L-19.576 140.759Q-19.576 140.875-19.515 140.971Q-19.453 141.066-19.340 141.066Q-19.231 141.066-19.166 140.972Q-19.101 140.878-19.101 140.759L-19.101 140.311L-18.835 140.311L-18.835 140.759Q-18.835 141.029-19.062 141.194Q-19.289 141.360-19.569 141.360Q-19.778 141.360-19.915 141.206Q-20.051 141.053-20.075 140.837Q-20.222 141.104-20.504 141.249Q-20.786 141.394-21.111 141.394Q-21.388 141.394-21.672 141.319Q-21.955 141.244-22.148 141.065Q-22.341 140.885-22.341 140.598M-21.726 140.598Q-21.726 140.772-21.625 140.902Q-21.525 141.032-21.369 141.102Q-21.214 141.172-21.049 141.172Q-20.831 141.172-20.622 141.075Q-20.414 140.977-20.286 140.796Q-20.157 140.615-20.157 140.389L-20.157 139.661Q-20.482 139.661-20.848 139.752Q-21.214 139.843-21.470 140.055Q-21.726 140.266-21.726 140.598M-18.418 139.815Q-18.418 139.477-18.277 139.186Q-18.137 138.896-17.893 138.682Q-17.649 138.469-17.344 138.354Q-17.040 138.240-16.715 138.240Q-16.445 138.240-16.182 138.339Q-15.919 138.438-15.728 138.616L-15.728 137.218Q-15.728 136.948-15.835 136.886Q-15.943 136.825-16.254 136.825L-16.254 136.544L-15.177 136.469L-15.177 140.653Q-15.177 140.841-15.123 140.924Q-15.068 141.008-14.967 141.027Q-14.866 141.046-14.651 141.046L-14.651 141.326L-15.758 141.394L-15.758 140.977Q-16.175 141.394-16.801 141.394Q-17.232 141.394-17.604 141.182Q-17.977 140.971-18.197 140.610Q-18.418 140.249-18.418 139.815M-16.743 141.172Q-16.534 141.172-16.348 141.100Q-16.162 141.029-16.008 140.892Q-15.854 140.755-15.758 140.577L-15.758 138.968Q-15.844 138.821-15.989 138.701Q-16.134 138.581-16.304 138.522Q-16.473 138.462-16.654 138.462Q-17.214 138.462-17.483 138.851Q-17.751 139.241-17.751 139.822Q-17.751 140.393-17.517 140.783Q-17.283 141.172-16.743 141.172M-14.002 139.815Q-14.002 139.477-13.861 139.186Q-13.721 138.896-13.477 138.682Q-13.233 138.469-12.928 138.354Q-12.624 138.240-12.299 138.240Q-12.029 138.240-11.766 138.339Q-11.503 138.438-11.312 138.616L-11.312 137.218Q-11.312 136.948-11.419 136.886Q-11.527 136.825-11.838 136.825L-11.838 136.544L-10.761 136.469L-10.761 140.653Q-10.761 140.841-10.707 140.924Q-10.652 141.008-10.551 141.027Q-10.450 141.046-10.235 141.046L-10.235 141.326L-11.342 141.394L-11.342 140.977Q-11.759 141.394-12.385 141.394Q-12.816 141.394-13.188 141.182Q-13.561 140.971-13.781 140.610Q-14.002 140.249-14.002 139.815M-12.327 141.172Q-12.118 141.172-11.932 141.100Q-11.746 141.029-11.592 140.892Q-11.438 140.755-11.342 140.577L-11.342 138.968Q-11.428 138.821-11.573 138.701Q-11.718 138.581-11.888 138.522Q-12.057 138.462-12.238 138.462Q-12.798 138.462-13.067 138.851Q-13.335 139.241-13.335 139.822Q-13.335 140.393-13.101 140.783Q-12.867 141.172-12.327 141.172M-7.836 141.326L-9.572 141.326L-9.572 141.046Q-9.343 141.046-9.194 141.012Q-9.046 140.977-9.046 140.837L-9.046 138.988Q-9.046 138.718-9.153 138.657Q-9.261 138.595-9.572 138.595L-9.572 138.315L-8.543 138.240L-8.543 138.947Q-8.413 138.639-8.171 138.440Q-7.928 138.240-7.610 138.240Q-7.391 138.240-7.220 138.364Q-7.049 138.489-7.049 138.701Q-7.049 138.838-7.149 138.937Q-7.248 139.036-7.381 139.036Q-7.518 139.036-7.617 138.937Q-7.716 138.838-7.716 138.701Q-7.716 138.561-7.617 138.462Q-7.907 138.462-8.107 138.658Q-8.307 138.855-8.400 139.149Q-8.492 139.443-8.492 139.723L-8.492 140.837Q-8.492 141.046-7.836 141.046\" 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=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(188.476 -111.367)\">\u003Cpath d=\"M-40.339 141.088L-40.339 140.998Q-40.288 140.787-40.093 140.767L-39.893 140.767L-39.893 138.439L-40.093 138.439Q-40.300 138.416-40.339 138.197L-40.339 138.111Q-40.288 137.896-40.093 137.877L-39.612 137.877Q-39.421 137.900-39.362 138.111Q-39.042 137.838-38.628 137.838Q-38.436 137.838-38.268 137.947Q-38.100 138.056-38.026 138.228Q-37.850 138.037-37.628 137.937Q-37.405 137.838-37.163 137.838Q-36.745 137.838-36.591 138.180Q-36.436 138.521-36.436 138.990L-36.436 140.767L-36.237 140.767Q-36.026 140.791-35.987 140.998L-35.987 141.088Q-36.038 141.303-36.237 141.326L-37.054 141.326Q-37.249 141.303-37.300 141.088L-37.300 140.998Q-37.249 140.791-37.054 140.767L-36.964 140.767L-36.964 139.021Q-36.964 138.396-37.214 138.396Q-37.546 138.396-37.723 138.707Q-37.901 139.017-37.901 139.381L-37.901 140.767L-37.698 140.767Q-37.491 140.791-37.452 140.998L-37.452 141.088Q-37.503 141.303-37.698 141.326L-38.514 141.326Q-38.714 141.303-38.764 141.088L-38.764 140.998Q-38.714 140.791-38.514 140.767L-38.429 140.767L-38.429 139.021Q-38.429 138.396-38.675 138.396Q-39.007 138.396-39.184 138.709Q-39.362 139.021-39.362 139.381L-39.362 140.767L-39.163 140.767Q-38.956 140.791-38.917 140.998L-38.917 141.088Q-38.968 141.306-39.163 141.326L-40.093 141.326Q-40.300 141.303-40.339 141.088M-33.917 141.365Q-34.389 141.365-34.774 141.121Q-35.159 140.877-35.382 140.467Q-35.604 140.056-35.604 139.599Q-35.604 139.256-35.479 138.933Q-35.354 138.611-35.124 138.357Q-34.893 138.103-34.587 137.959Q-34.280 137.814-33.917 137.814Q-33.554 137.814-33.241 137.961Q-32.929 138.107-32.706 138.353Q-32.483 138.599-32.356 138.920Q-32.229 139.240-32.229 139.599Q-32.229 140.056-32.454 140.469Q-32.679 140.881-33.063 141.123Q-33.448 141.365-33.917 141.365M-33.917 140.806Q-33.452 140.806-33.161 140.412Q-32.870 140.017-32.870 139.533Q-32.870 139.240-33.005 138.972Q-33.139 138.705-33.380 138.539Q-33.620 138.373-33.917 138.373Q-34.221 138.373-34.460 138.539Q-34.698 138.705-34.833 138.972Q-34.968 139.240-34.968 139.533Q-34.968 140.013-34.675 140.410Q-34.382 140.806-33.917 140.806M-29.929 141.365Q-30.393 141.365-30.759 141.115Q-31.124 140.865-31.329 140.461Q-31.534 140.056-31.534 139.599Q-31.534 139.256-31.409 138.935Q-31.284 138.615-31.052 138.365Q-30.819 138.115-30.514 137.976Q-30.210 137.838-29.854 137.838Q-29.343 137.838-28.936 138.158L-28.936 136.998L-29.358 136.998Q-29.569 136.974-29.608 136.760L-29.608 136.670Q-29.569 136.463-29.358 136.439L-28.546 136.439Q-28.346 136.463-28.296 136.670L-28.296 140.767L-27.870 140.767Q-27.663 140.791-27.624 140.998L-27.624 141.088Q-27.663 141.303-27.870 141.326L-28.686 141.326Q-28.886 141.303-28.936 141.088L-28.936 140.959Q-29.132 141.150-29.393 141.258Q-29.655 141.365-29.929 141.365M-29.889 140.806Q-29.530 140.806-29.278 140.537Q-29.026 140.267-28.936 139.892L-28.936 139.060Q-28.995 138.873-29.122 138.722Q-29.249 138.572-29.427 138.484Q-29.604 138.396-29.800 138.396Q-30.108 138.396-30.358 138.566Q-30.608 138.736-30.753 139.021Q-30.897 139.306-30.897 139.607Q-30.897 140.056-30.612 140.431Q-30.327 140.806-29.889 140.806M-26.804 140.471L-26.804 138.439L-27.225 138.439Q-27.432 138.416-27.475 138.197L-27.475 138.111Q-27.429 137.900-27.225 137.877L-26.409 137.877Q-26.214 137.900-26.163 138.111L-26.163 140.439Q-26.163 140.674-25.993 140.740Q-25.823 140.806-25.538 140.806Q-25.331 140.806-25.136 140.730Q-24.940 140.654-24.815 140.504Q-24.690 140.353-24.690 140.142L-24.690 138.439L-25.112 138.439Q-25.323 138.416-25.362 138.197L-25.362 138.111Q-25.323 137.900-25.112 137.877L-24.300 137.877Q-24.100 137.900-24.050 138.111L-24.050 140.767L-23.624 140.767Q-23.417 140.791-23.378 140.998L-23.378 141.088Q-23.417 141.303-23.624 141.326L-24.440 141.326Q-24.639 141.303-24.690 141.103Q-25.093 141.365-25.600 141.365Q-25.835 141.365-26.050 141.324Q-26.264 141.283-26.430 141.181Q-26.596 141.080-26.700 140.902Q-26.804 140.724-26.804 140.471M-22.850 141.088L-22.850 140.998Q-22.800 140.791-22.604 140.767L-21.499 140.767L-21.499 136.998L-22.604 136.998Q-22.800 136.974-22.850 136.760L-22.850 136.670Q-22.800 136.463-22.604 136.439L-21.108 136.439Q-20.917 136.463-20.858 136.670L-20.858 140.767L-19.757 140.767Q-19.557 140.791-19.507 140.998L-19.507 141.088Q-19.557 141.303-19.757 141.326L-22.604 141.326Q-22.800 141.303-22.850 141.088M-15.542 139.838L-17.983 139.838Q-17.929 140.115-17.731 140.338Q-17.534 140.560-17.257 140.683Q-16.979 140.806-16.694 140.806Q-16.221 140.806-15.999 140.517Q-15.991 140.506-15.934 140.400Q-15.878 140.295-15.829 140.252Q-15.780 140.209-15.686 140.197L-15.542 140.197Q-15.350 140.217-15.292 140.431L-15.292 140.486Q-15.358 140.787-15.589 140.984Q-15.819 141.181-16.132 141.273Q-16.444 141.365-16.749 141.365Q-17.233 141.365-17.673 141.137Q-18.112 140.908-18.380 140.508Q-18.647 140.107-18.647 139.615L-18.647 139.556Q-18.647 139.088-18.401 138.685Q-18.155 138.283-17.747 138.049Q-17.339 137.814-16.870 137.814Q-16.366 137.814-16.013 138.037Q-15.659 138.260-15.475 138.648Q-15.292 139.037-15.292 139.541L-15.292 139.599Q-15.350 139.814-15.542 139.838M-17.975 139.287L-15.948 139.287Q-15.995 138.877-16.233 138.625Q-16.471 138.373-16.870 138.373Q-17.264 138.373-17.571 138.635Q-17.878 138.896-17.975 139.287\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(188.476 -111.367)\">\u003Cpath d=\"M-9.197 141.111L-9.197 141.053Q-9.197 140.510-9.092 139.963Q-8.986 139.416-8.781 138.892Q-8.576 138.369-8.279 137.890Q-7.982 137.412-7.603 136.998L-9.541 136.998L-9.541 137.135Q-9.592 137.349-9.791 137.373L-9.931 137.373Q-10.131 137.349-10.181 137.135L-10.181 136.541Q-10.131 136.330-9.931 136.310L-9.791 136.310Q-9.654 136.322-9.580 136.439L-6.892 136.439Q-6.697 136.463-6.646 136.670L-6.646 136.760Q-6.658 136.849-6.701 136.900Q-6.963 137.158-7.193 137.424Q-7.424 137.689-7.586 137.922Q-7.748 138.154-7.906 138.453Q-8.064 138.752-8.197 139.103Q-8.373 139.576-8.465 140.092Q-8.556 140.607-8.556 141.111Q-8.568 141.236-8.654 141.314Q-8.740 141.392-8.861 141.404Q-8.998 141.404-9.092 141.326Q-9.185 141.248-9.197 141.111\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(188.476 -71.533)\">\u003Cpath d=\"M-40.339 141.088L-40.339 140.998Q-40.288 140.787-40.093 140.767L-39.893 140.767L-39.893 138.439L-40.093 138.439Q-40.300 138.416-40.339 138.197L-40.339 138.111Q-40.288 137.896-40.093 137.877L-39.612 137.877Q-39.421 137.900-39.362 138.111Q-39.042 137.838-38.628 137.838Q-38.436 137.838-38.268 137.947Q-38.100 138.056-38.026 138.228Q-37.850 138.037-37.628 137.937Q-37.405 137.838-37.163 137.838Q-36.745 137.838-36.591 138.180Q-36.436 138.521-36.436 138.990L-36.436 140.767L-36.237 140.767Q-36.026 140.791-35.987 140.998L-35.987 141.088Q-36.038 141.303-36.237 141.326L-37.054 141.326Q-37.249 141.303-37.300 141.088L-37.300 140.998Q-37.249 140.791-37.054 140.767L-36.964 140.767L-36.964 139.021Q-36.964 138.396-37.214 138.396Q-37.546 138.396-37.723 138.707Q-37.901 139.017-37.901 139.381L-37.901 140.767L-37.698 140.767Q-37.491 140.791-37.452 140.998L-37.452 141.088Q-37.503 141.303-37.698 141.326L-38.514 141.326Q-38.714 141.303-38.764 141.088L-38.764 140.998Q-38.714 140.791-38.514 140.767L-38.429 140.767L-38.429 139.021Q-38.429 138.396-38.675 138.396Q-39.007 138.396-39.184 138.709Q-39.362 139.021-39.362 139.381L-39.362 140.767L-39.163 140.767Q-38.956 140.791-38.917 140.998L-38.917 141.088Q-38.968 141.306-39.163 141.326L-40.093 141.326Q-40.300 141.303-40.339 141.088M-33.917 141.365Q-34.389 141.365-34.774 141.121Q-35.159 140.877-35.382 140.467Q-35.604 140.056-35.604 139.599Q-35.604 139.256-35.479 138.933Q-35.354 138.611-35.124 138.357Q-34.893 138.103-34.587 137.959Q-34.280 137.814-33.917 137.814Q-33.554 137.814-33.241 137.961Q-32.929 138.107-32.706 138.353Q-32.483 138.599-32.356 138.920Q-32.229 139.240-32.229 139.599Q-32.229 140.056-32.454 140.469Q-32.679 140.881-33.063 141.123Q-33.448 141.365-33.917 141.365M-33.917 140.806Q-33.452 140.806-33.161 140.412Q-32.870 140.017-32.870 139.533Q-32.870 139.240-33.005 138.972Q-33.139 138.705-33.380 138.539Q-33.620 138.373-33.917 138.373Q-34.221 138.373-34.460 138.539Q-34.698 138.705-34.833 138.972Q-34.968 139.240-34.968 139.533Q-34.968 140.013-34.675 140.410Q-34.382 140.806-33.917 140.806M-29.929 141.365Q-30.393 141.365-30.759 141.115Q-31.124 140.865-31.329 140.461Q-31.534 140.056-31.534 139.599Q-31.534 139.256-31.409 138.935Q-31.284 138.615-31.052 138.365Q-30.819 138.115-30.514 137.976Q-30.210 137.838-29.854 137.838Q-29.343 137.838-28.936 138.158L-28.936 136.998L-29.358 136.998Q-29.569 136.974-29.608 136.760L-29.608 136.670Q-29.569 136.463-29.358 136.439L-28.546 136.439Q-28.346 136.463-28.296 136.670L-28.296 140.767L-27.870 140.767Q-27.663 140.791-27.624 140.998L-27.624 141.088Q-27.663 141.303-27.870 141.326L-28.686 141.326Q-28.886 141.303-28.936 141.088L-28.936 140.959Q-29.132 141.150-29.393 141.258Q-29.655 141.365-29.929 141.365M-29.889 140.806Q-29.530 140.806-29.278 140.537Q-29.026 140.267-28.936 139.892L-28.936 139.060Q-28.995 138.873-29.122 138.722Q-29.249 138.572-29.427 138.484Q-29.604 138.396-29.800 138.396Q-30.108 138.396-30.358 138.566Q-30.608 138.736-30.753 139.021Q-30.897 139.306-30.897 139.607Q-30.897 140.056-30.612 140.431Q-30.327 140.806-29.889 140.806M-26.804 140.471L-26.804 138.439L-27.225 138.439Q-27.432 138.416-27.475 138.197L-27.475 138.111Q-27.429 137.900-27.225 137.877L-26.409 137.877Q-26.214 137.900-26.163 138.111L-26.163 140.439Q-26.163 140.674-25.993 140.740Q-25.823 140.806-25.538 140.806Q-25.331 140.806-25.136 140.730Q-24.940 140.654-24.815 140.504Q-24.690 140.353-24.690 140.142L-24.690 138.439L-25.112 138.439Q-25.323 138.416-25.362 138.197L-25.362 138.111Q-25.323 137.900-25.112 137.877L-24.300 137.877Q-24.100 137.900-24.050 138.111L-24.050 140.767L-23.624 140.767Q-23.417 140.791-23.378 140.998L-23.378 141.088Q-23.417 141.303-23.624 141.326L-24.440 141.326Q-24.639 141.303-24.690 141.103Q-25.093 141.365-25.600 141.365Q-25.835 141.365-26.050 141.324Q-26.264 141.283-26.430 141.181Q-26.596 141.080-26.700 140.902Q-26.804 140.724-26.804 140.471M-22.850 141.088L-22.850 140.998Q-22.800 140.791-22.604 140.767L-21.499 140.767L-21.499 136.998L-22.604 136.998Q-22.800 136.974-22.850 136.760L-22.850 136.670Q-22.800 136.463-22.604 136.439L-21.108 136.439Q-20.917 136.463-20.858 136.670L-20.858 140.767L-19.757 140.767Q-19.557 140.791-19.507 140.998L-19.507 141.088Q-19.557 141.303-19.757 141.326L-22.604 141.326Q-22.800 141.303-22.850 141.088M-15.542 139.838L-17.983 139.838Q-17.929 140.115-17.731 140.338Q-17.534 140.560-17.257 140.683Q-16.979 140.806-16.694 140.806Q-16.221 140.806-15.999 140.517Q-15.991 140.506-15.934 140.400Q-15.878 140.295-15.829 140.252Q-15.780 140.209-15.686 140.197L-15.542 140.197Q-15.350 140.217-15.292 140.431L-15.292 140.486Q-15.358 140.787-15.589 140.984Q-15.819 141.181-16.132 141.273Q-16.444 141.365-16.749 141.365Q-17.233 141.365-17.673 141.137Q-18.112 140.908-18.380 140.508Q-18.647 140.107-18.647 139.615L-18.647 139.556Q-18.647 139.088-18.401 138.685Q-18.155 138.283-17.747 138.049Q-17.339 137.814-16.870 137.814Q-16.366 137.814-16.013 138.037Q-15.659 138.260-15.475 138.648Q-15.292 139.037-15.292 139.541L-15.292 139.599Q-15.350 139.814-15.542 139.838M-17.975 139.287L-15.948 139.287Q-15.995 138.877-16.233 138.625Q-16.471 138.373-16.870 138.373Q-17.264 138.373-17.571 138.635Q-17.878 138.896-17.975 139.287\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(188.476 -71.533)\">\u003Cpath d=\"M-8.412 141.404Q-9.053 141.404-9.439 141.027Q-9.826 140.650-9.984 140.078Q-10.142 139.506-10.142 138.877Q-10.142 138.412-9.982 137.957Q-9.822 137.502-9.533 137.142Q-9.244 136.783-8.836 136.570Q-8.428 136.357-7.939 136.357Q-7.666 136.357-7.416 136.455Q-7.166 136.553-7.013 136.748Q-6.861 136.943-6.861 137.236Q-6.861 137.412-6.974 137.533Q-7.088 137.654-7.260 137.654Q-7.435 137.654-7.553 137.541Q-7.670 137.428-7.670 137.256Q-7.670 137.135-7.595 137.013Q-7.705 136.920-7.939 136.920Q-8.357 136.920-8.693 137.160Q-9.029 137.400-9.234 137.787Q-9.439 138.174-9.486 138.572Q-9.248 138.373-8.939 138.265Q-8.631 138.158-8.310 138.158Q-7.970 138.158-7.672 138.283Q-7.373 138.408-7.154 138.627Q-6.935 138.846-6.810 139.144Q-6.685 139.443-6.685 139.783Q-6.685 140.131-6.824 140.431Q-6.963 140.732-7.203 140.949Q-7.443 141.166-7.758 141.285Q-8.072 141.404-8.412 141.404M-9.396 139.861Q-9.334 140.123-9.205 140.347Q-9.076 140.572-8.877 140.709Q-8.678 140.846-8.412 140.846Q-7.959 140.846-7.642 140.539Q-7.326 140.232-7.326 139.783Q-7.326 139.502-7.461 139.256Q-7.595 139.010-7.832 138.867Q-8.068 138.724-8.365 138.724Q-8.756 138.724-9.088 138.951Q-9.420 139.178-9.420 139.549Q-9.420 139.588-9.404 139.666Q-9.388 139.744-9.388 139.783Q-9.388 139.810-9.390 139.826Q-9.392 139.842-9.396 139.861\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-51.665 118.563h193.479V95.801H-51.665Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(51.358 -31.699)\">\u003Cpath d=\"M-39.542 140.471L-39.542 138.439L-39.964 138.439Q-40.171 138.416-40.214 138.197L-40.214 138.111Q-40.167 137.900-39.964 137.877L-39.147 137.877Q-38.952 137.900-38.901 138.111L-38.901 140.439Q-38.901 140.674-38.731 140.740Q-38.561 140.806-38.276 140.806Q-38.069 140.806-37.874 140.730Q-37.679 140.654-37.554 140.504Q-37.429 140.353-37.429 140.142L-37.429 138.439L-37.850 138.439Q-38.061 138.416-38.100 138.197L-38.100 138.111Q-38.061 137.900-37.850 137.877L-37.038 137.877Q-36.839 137.900-36.788 138.111L-36.788 140.767L-36.362 140.767Q-36.155 140.791-36.116 140.998L-36.116 141.088Q-36.155 141.303-36.362 141.326L-37.179 141.326Q-37.378 141.303-37.429 141.103Q-37.831 141.365-38.339 141.365Q-38.573 141.365-38.788 141.324Q-39.003 141.283-39.169 141.181Q-39.335 141.080-39.438 140.902Q-39.542 140.724-39.542 140.471M-35.968 141.088L-35.968 140.998Q-35.925 140.791-35.718 140.767L-35.296 140.767L-35.296 138.439L-35.718 138.439Q-35.925 138.416-35.968 138.197L-35.968 138.111Q-35.921 137.900-35.718 137.877L-34.901 137.877Q-34.706 137.900-34.655 138.111L-34.655 138.197L-34.663 138.221Q-34.436 138.041-34.163 137.939Q-33.889 137.838-33.596 137.838Q-33.249 137.838-33.011 137.978Q-32.772 138.119-32.657 138.377Q-32.542 138.635-32.542 138.990L-32.542 140.767L-32.116 140.767Q-31.909 140.791-31.870 140.998L-31.870 141.088Q-31.909 141.303-32.116 141.326L-33.511 141.326Q-33.706 141.303-33.757 141.088L-33.757 140.998Q-33.706 140.787-33.511 140.767L-33.182 140.767L-33.182 139.021Q-33.182 138.713-33.272 138.555Q-33.362 138.396-33.655 138.396Q-33.925 138.396-34.153 138.527Q-34.382 138.658-34.518 138.887Q-34.655 139.115-34.655 139.381L-34.655 140.767L-34.229 140.767Q-34.022 140.791-33.983 140.998L-33.983 141.088Q-34.022 141.303-34.229 141.326L-35.718 141.326Q-35.925 141.303-35.968 141.088M-31.175 141.088L-31.175 140.998Q-31.124 140.791-30.929 140.767L-29.889 140.767L-29.889 138.439L-30.862 138.439Q-31.061 138.416-31.112 138.197L-31.112 138.111Q-31.061 137.900-30.862 137.877L-29.495 137.877Q-29.300 137.896-29.249 138.111L-29.249 140.767L-28.335 140.767Q-28.139 140.791-28.089 140.998L-28.089 141.088Q-28.139 141.303-28.335 141.326L-30.929 141.326Q-31.124 141.303-31.175 141.088M-30.143 136.900L-30.143 136.846Q-30.143 136.674-30.007 136.553Q-29.870 136.431-29.694 136.431Q-29.522 136.431-29.386 136.553Q-29.249 136.674-29.249 136.846L-29.249 136.900Q-29.249 137.076-29.386 137.197Q-29.522 137.318-29.694 137.318Q-29.870 137.318-30.007 137.197Q-30.143 137.076-30.143 136.900M-27.225 141.088L-27.225 140.998Q-27.175 140.791-26.979 140.767L-26.096 140.767L-26.096 138.439L-26.952 138.439Q-27.151 138.416-27.202 138.197L-27.202 138.111Q-27.151 137.900-26.952 137.877L-26.096 137.877L-26.096 137.424Q-26.096 136.959-25.690 136.678Q-25.284 136.396-24.804 136.396Q-24.491 136.396-24.247 136.517Q-24.003 136.638-24.003 136.920Q-24.003 137.084-24.112 137.201Q-24.221 137.318-24.386 137.318Q-24.534 137.318-24.655 137.213Q-24.776 137.107-24.776 136.959L-24.858 136.959Q-25.011 136.959-25.147 137.019Q-25.284 137.080-25.370 137.195Q-25.456 137.310-25.456 137.455L-25.456 137.877L-24.425 137.877Q-24.229 137.896-24.179 138.111L-24.179 138.197Q-24.229 138.416-24.425 138.439L-25.456 138.439L-25.456 140.767L-24.577 140.767Q-24.382 140.791-24.331 140.998L-24.331 141.088Q-24.382 141.303-24.577 141.326L-26.979 141.326Q-27.175 141.303-27.225 141.088M-22.682 141.088L-22.682 140.998Q-22.632 140.791-22.436 140.767L-21.397 140.767L-21.397 138.439L-22.370 138.439Q-22.569 138.416-22.620 138.197L-22.620 138.111Q-22.569 137.900-22.370 137.877L-21.003 137.877Q-20.807 137.896-20.757 138.111L-20.757 140.767L-19.843 140.767Q-19.647 140.791-19.596 140.998L-19.596 141.088Q-19.647 141.303-19.843 141.326L-22.436 141.326Q-22.632 141.303-22.682 141.088M-21.651 136.900L-21.651 136.846Q-21.651 136.674-21.514 136.553Q-21.378 136.431-21.202 136.431Q-21.030 136.431-20.893 136.553Q-20.757 136.674-20.757 136.846L-20.757 136.900Q-20.757 137.076-20.893 137.197Q-21.030 137.318-21.202 137.318Q-21.378 137.318-21.514 137.197Q-21.651 137.076-21.651 136.900M-15.542 139.838L-17.983 139.838Q-17.929 140.115-17.731 140.338Q-17.534 140.560-17.257 140.683Q-16.979 140.806-16.694 140.806Q-16.221 140.806-15.999 140.517Q-15.991 140.506-15.934 140.400Q-15.878 140.295-15.829 140.252Q-15.780 140.209-15.686 140.197L-15.542 140.197Q-15.350 140.217-15.292 140.431L-15.292 140.486Q-15.358 140.787-15.589 140.984Q-15.819 141.181-16.132 141.273Q-16.444 141.365-16.749 141.365Q-17.233 141.365-17.673 141.137Q-18.112 140.908-18.380 140.508Q-18.647 140.107-18.647 139.615L-18.647 139.556Q-18.647 139.088-18.401 138.685Q-18.155 138.283-17.747 138.049Q-17.339 137.814-16.870 137.814Q-16.366 137.814-16.013 138.037Q-15.659 138.260-15.475 138.648Q-15.292 139.037-15.292 139.541L-15.292 139.599Q-15.350 139.814-15.542 139.838M-17.975 139.287L-15.948 139.287Q-15.995 138.877-16.233 138.625Q-16.471 138.373-16.870 138.373Q-17.264 138.373-17.571 138.635Q-17.878 138.896-17.975 139.287M-12.944 141.365Q-13.409 141.365-13.774 141.115Q-14.139 140.865-14.345 140.461Q-14.550 140.056-14.550 139.599Q-14.550 139.256-14.425 138.935Q-14.300 138.615-14.067 138.365Q-13.835 138.115-13.530 137.976Q-13.225 137.838-12.870 137.838Q-12.358 137.838-11.952 138.158L-11.952 136.998L-12.374 136.998Q-12.585 136.974-12.624 136.760L-12.624 136.670Q-12.585 136.463-12.374 136.439L-11.561 136.439Q-11.362 136.463-11.311 136.670L-11.311 140.767L-10.886 140.767Q-10.679 140.791-10.639 140.998L-10.639 141.088Q-10.679 141.303-10.886 141.326L-11.702 141.326Q-11.901 141.303-11.952 141.088L-11.952 140.959Q-12.147 141.150-12.409 141.258Q-12.671 141.365-12.944 141.365M-12.905 140.806Q-12.546 140.806-12.294 140.537Q-12.042 140.267-11.952 139.892L-11.952 139.060Q-12.011 138.873-12.138 138.722Q-12.264 138.572-12.442 138.484Q-12.620 138.396-12.815 138.396Q-13.124 138.396-13.374 138.566Q-13.624 138.736-13.768 139.021Q-13.913 139.306-13.913 139.607Q-13.913 140.056-13.628 140.431Q-13.343 140.806-12.905 140.806\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.358 -31.699)\">\u003Cpath d=\"M-6.060 141.088L-6.060 140.998Q-6.002 140.791-5.810 140.767L-5.443 140.767L-5.443 136.998L-5.810 136.998Q-6.002 136.974-6.060 136.760L-6.060 136.670Q-6.002 136.463-5.810 136.439L-4.283 136.439Q-4.088 136.463-4.037 136.670L-4.037 136.760Q-4.088 136.974-4.283 136.998L-4.803 136.998L-4.803 140.767L-2.971 140.767L-2.971 140.127Q-2.920 139.920-2.724 139.892L-2.580 139.892Q-2.381 139.920-2.330 140.127L-2.330 141.088Q-2.381 141.303-2.580 141.326L-5.810 141.326Q-6.002 141.303-6.060 141.088M-1.611 141.088L-1.611 141.013Q-1.580 140.846-1.478 140.799L-0.189 139.732Q0.143 139.455 0.324 139.303Q0.506 139.150 0.701 138.930Q0.897 138.709 1.018 138.459Q1.139 138.209 1.139 137.943Q1.139 137.619 0.963 137.385Q0.787 137.150 0.508 137.035Q0.229 136.920-0.092 136.920Q-0.349 136.920-0.578 137.043Q-0.806 137.166-0.908 137.381Q-0.806 137.513-0.806 137.662Q-0.806 137.822-0.926 137.945Q-1.045 138.068-1.205 138.068Q-1.381 138.068-1.496 137.943Q-1.611 137.818-1.611 137.646Q-1.611 137.353-1.476 137.111Q-1.342 136.869-1.103 136.697Q-0.865 136.525-0.597 136.441Q-0.330 136.357-0.037 136.357Q0.444 136.357 0.860 136.547Q1.276 136.736 1.528 137.097Q1.779 137.459 1.779 137.943Q1.779 138.287 1.647 138.590Q1.514 138.892 1.289 139.152Q1.065 139.412 0.756 139.674Q0.447 139.935 0.237 140.111L-0.572 140.767L1.139 140.767L1.139 140.623Q1.190 140.412 1.389 140.388L1.529 140.388Q1.729 140.408 1.779 140.623L1.779 141.088Q1.729 141.303 1.529 141.326L-1.365 141.326Q-1.560 141.306-1.611 141.088\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.358 -31.699)\">\u003Cpath d=\"M7.026 139.599Q7.026 139.119 7.270 138.705Q7.514 138.291 7.930 138.053Q8.346 137.814 8.826 137.814Q9.381 137.814 9.760 137.924Q10.139 138.033 10.139 138.439Q10.139 138.607 10.026 138.730Q9.912 138.853 9.740 138.853Q9.569 138.853 9.449 138.738Q9.330 138.623 9.330 138.455L9.330 138.396Q9.170 138.373 8.834 138.373Q8.506 138.373 8.238 138.543Q7.971 138.713 7.819 138.996Q7.666 139.279 7.666 139.599Q7.666 139.920 7.838 140.201Q8.010 140.482 8.295 140.644Q8.580 140.806 8.908 140.806Q9.221 140.806 9.348 140.703Q9.475 140.599 9.592 140.410Q9.709 140.221 9.826 140.205L9.994 140.205Q10.100 140.217 10.164 140.285Q10.229 140.353 10.229 140.455Q10.229 140.502 10.209 140.541Q10.100 140.834 9.897 141.013Q9.694 141.193 9.418 141.279Q9.143 141.365 8.826 141.365Q8.342 141.365 7.926 141.127Q7.510 140.888 7.268 140.486Q7.026 140.084 7.026 139.599M11.119 140.213Q11.119 139.767 11.533 139.510Q11.947 139.252 12.488 139.152Q13.029 139.053 13.537 139.045Q13.537 138.830 13.403 138.678Q13.268 138.525 13.061 138.449Q12.854 138.373 12.643 138.373Q12.299 138.373 12.139 138.396L12.139 138.455Q12.139 138.623 12.020 138.738Q11.901 138.853 11.737 138.853Q11.561 138.853 11.446 138.730Q11.330 138.607 11.330 138.439Q11.330 138.033 11.711 137.924Q12.092 137.814 12.651 137.814Q12.920 137.814 13.188 137.892Q13.455 137.971 13.680 138.121Q13.904 138.271 14.041 138.492Q14.178 138.713 14.178 138.990L14.178 140.709Q14.178 140.767 14.705 140.767Q14.901 140.787 14.951 140.998L14.951 141.088Q14.901 141.303 14.705 141.326L14.561 141.326Q14.217 141.326 13.988 141.279Q13.760 141.232 13.615 141.045Q13.154 141.365 12.447 141.365Q12.112 141.365 11.807 141.224Q11.502 141.084 11.311 140.822Q11.119 140.560 11.119 140.213M11.760 140.221Q11.760 140.494 12.002 140.650Q12.244 140.806 12.529 140.806Q12.748 140.806 12.981 140.748Q13.213 140.689 13.375 140.551Q13.537 140.412 13.537 140.189L13.537 139.599Q13.256 139.599 12.840 139.656Q12.424 139.713 12.092 139.851Q11.760 139.990 11.760 140.221M15.518 139.599Q15.518 139.119 15.762 138.705Q16.006 138.291 16.422 138.053Q16.838 137.814 17.319 137.814Q17.873 137.814 18.252 137.924Q18.631 138.033 18.631 138.439Q18.631 138.607 18.518 138.730Q18.404 138.853 18.233 138.853Q18.061 138.853 17.942 138.738Q17.822 138.623 17.822 138.455L17.822 138.396Q17.662 138.373 17.326 138.373Q16.998 138.373 16.731 138.543Q16.463 138.713 16.311 138.996Q16.158 139.279 16.158 139.599Q16.158 139.920 16.330 140.201Q16.502 140.482 16.787 140.644Q17.072 140.806 17.401 140.806Q17.713 140.806 17.840 140.703Q17.967 140.599 18.084 140.410Q18.201 140.221 18.319 140.205L18.487 140.205Q18.592 140.217 18.656 140.285Q18.721 140.353 18.721 140.455Q18.721 140.502 18.701 140.541Q18.592 140.834 18.389 141.013Q18.186 141.193 17.910 141.279Q17.635 141.365 17.319 141.365Q16.834 141.365 16.418 141.127Q16.002 140.888 15.760 140.486Q15.518 140.084 15.518 139.599M19.276 141.088L19.276 140.998Q19.319 140.791 19.526 140.767L19.947 140.767L19.947 136.998L19.526 136.998Q19.319 136.974 19.276 136.760L19.276 136.670Q19.319 136.463 19.526 136.439L20.342 136.439Q20.537 136.463 20.588 136.670L20.588 138.221Q21.049 137.838 21.647 137.838Q21.994 137.838 22.233 137.978Q22.471 138.119 22.586 138.377Q22.701 138.635 22.701 138.990L22.701 140.767L23.127 140.767Q23.334 140.791 23.373 140.998L23.373 141.088Q23.334 141.303 23.127 141.326L21.733 141.326Q21.537 141.303 21.487 141.088L21.487 140.998Q21.537 140.787 21.733 140.767L22.061 140.767L22.061 139.021Q22.061 138.713 21.971 138.555Q21.881 138.396 21.588 138.396Q21.319 138.396 21.090 138.527Q20.862 138.658 20.725 138.887Q20.588 139.115 20.588 139.381L20.588 140.767L21.014 140.767Q21.221 140.791 21.260 140.998L21.260 141.088Q21.221 141.303 21.014 141.326L19.526 141.326Q19.319 141.303 19.276 141.088M26.963 139.838L24.522 139.838Q24.576 140.115 24.774 140.338Q24.971 140.560 25.248 140.683Q25.526 140.806 25.811 140.806Q26.283 140.806 26.506 140.517Q26.514 140.506 26.571 140.400Q26.627 140.295 26.676 140.252Q26.725 140.209 26.819 140.197L26.963 140.197Q27.154 140.217 27.213 140.431L27.213 140.486Q27.147 140.787 26.916 140.984Q26.686 141.181 26.373 141.273Q26.061 141.365 25.756 141.365Q25.272 141.365 24.832 141.137Q24.393 140.908 24.125 140.508Q23.858 140.107 23.858 139.615L23.858 139.556Q23.858 139.088 24.104 138.685Q24.350 138.283 24.758 138.049Q25.166 137.814 25.635 137.814Q26.139 137.814 26.492 138.037Q26.846 138.260 27.029 138.648Q27.213 139.037 27.213 139.541L27.213 139.599Q27.154 139.814 26.963 139.838M24.529 139.287L26.557 139.287Q26.510 138.877 26.272 138.625Q26.033 138.373 25.635 138.373Q25.240 138.373 24.934 138.635Q24.627 138.896 24.529 139.287\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-23.212 78.93V93.8\"\u002F>\u003Cpath stroke=\"none\" d=\"m-23.212 95.801 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M113.36 78.93V93.8\"\u002F>\u003Cpath stroke=\"none\" d=\"m113.36 95.801 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath fill=\"var(--tk-soft-accent)\" d=\"M-68.737 158.397h341.433v-22.762H-68.737Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(84.09 7.69)\">\u003Cpath d=\"M-40.003 141.318L-40.003 140.096Q-40.003 140.068-39.971 140.037Q-39.940 140.006-39.917 140.006L-39.811 140.006Q-39.741 140.006-39.725 140.068Q-39.663 140.388-39.524 140.629Q-39.386 140.869-39.153 141.010Q-38.921 141.150-38.612 141.150Q-38.374 141.150-38.165 141.090Q-37.956 141.029-37.819 140.881Q-37.682 140.732-37.682 140.486Q-37.682 140.232-37.893 140.066Q-38.104 139.900-38.374 139.846L-38.995 139.732Q-39.401 139.654-39.702 139.398Q-40.003 139.142-40.003 138.767Q-40.003 138.400-39.802 138.178Q-39.600 137.955-39.276 137.857Q-38.952 137.760-38.612 137.760Q-38.147 137.760-37.850 137.967L-37.628 137.783Q-37.604 137.760-37.573 137.760L-37.522 137.760Q-37.491 137.760-37.464 137.787Q-37.436 137.814-37.436 137.846L-37.436 138.830Q-37.436 138.861-37.462 138.890Q-37.487 138.920-37.522 138.920L-37.628 138.920Q-37.663 138.920-37.690 138.892Q-37.718 138.865-37.718 138.830Q-37.718 138.431-37.970 138.211Q-38.221 137.990-38.620 137.990Q-38.975 137.990-39.259 138.113Q-39.542 138.236-39.542 138.541Q-39.542 138.760-39.341 138.892Q-39.139 139.025-38.893 139.068L-38.268 139.181Q-37.839 139.271-37.530 139.568Q-37.221 139.865-37.221 140.279Q-37.221 140.849-37.620 141.127Q-38.018 141.404-38.612 141.404Q-39.163 141.404-39.514 141.068L-39.811 141.381Q-39.835 141.404-39.870 141.404L-39.917 141.404Q-39.940 141.404-39.971 141.373Q-40.003 141.342-40.003 141.318M-34.764 141.326L-36.620 141.326L-36.620 141.029Q-36.346 141.029-36.179 140.982Q-36.011 140.935-36.011 140.767L-36.011 136.607Q-36.011 136.392-36.073 136.297Q-36.136 136.201-36.255 136.180Q-36.374 136.158-36.620 136.158L-36.620 135.861L-35.397 135.775L-35.397 138.478Q-35.272 138.267-35.085 138.117Q-34.897 137.967-34.671 137.883Q-34.444 137.799-34.198 137.799Q-33.030 137.799-33.030 138.877L-33.030 140.767Q-33.030 140.935-32.860 140.982Q-32.690 141.029-32.421 141.029L-32.421 141.326L-34.276 141.326L-34.276 141.029Q-34.003 141.029-33.835 140.982Q-33.667 140.935-33.667 140.767L-33.667 138.892Q-33.667 138.510-33.788 138.281Q-33.909 138.053-34.261 138.053Q-34.573 138.053-34.827 138.215Q-35.081 138.377-35.227 138.646Q-35.374 138.916-35.374 139.213L-35.374 140.767Q-35.374 140.935-35.204 140.982Q-35.034 141.029-34.764 141.029L-34.764 141.326M-31.878 140.494Q-31.878 140.010-31.475 139.715Q-31.073 139.420-30.522 139.301Q-29.971 139.181-29.479 139.181L-29.479 138.892Q-29.479 138.666-29.595 138.459Q-29.710 138.252-29.907 138.133Q-30.104 138.013-30.335 138.013Q-30.761 138.013-31.046 138.119Q-30.975 138.146-30.929 138.201Q-30.882 138.256-30.856 138.326Q-30.831 138.396-30.831 138.471Q-30.831 138.576-30.882 138.668Q-30.932 138.760-31.024 138.810Q-31.116 138.861-31.221 138.861Q-31.327 138.861-31.419 138.810Q-31.511 138.760-31.561 138.668Q-31.612 138.576-31.612 138.471Q-31.612 138.053-31.223 137.906Q-30.835 137.760-30.335 137.760Q-30.003 137.760-29.649 137.890Q-29.296 138.021-29.067 138.275Q-28.839 138.529-28.839 138.877L-28.839 140.678Q-28.839 140.810-28.766 140.920Q-28.694 141.029-28.565 141.029Q-28.440 141.029-28.372 140.924Q-28.304 140.818-28.304 140.678L-28.304 140.166L-28.022 140.166L-28.022 140.678Q-28.022 140.881-28.139 141.039Q-28.257 141.197-28.438 141.281Q-28.620 141.365-28.823 141.365Q-29.054 141.365-29.206 141.193Q-29.358 141.021-29.389 140.791Q-29.550 141.072-29.858 141.238Q-30.167 141.404-30.518 141.404Q-31.030 141.404-31.454 141.181Q-31.878 140.959-31.878 140.494M-31.190 140.494Q-31.190 140.779-30.964 140.965Q-30.737 141.150-30.444 141.150Q-30.198 141.150-29.973 141.033Q-29.749 140.916-29.614 140.713Q-29.479 140.510-29.479 140.256L-29.479 139.424Q-29.745 139.424-30.030 139.478Q-30.315 139.533-30.587 139.662Q-30.858 139.791-31.024 139.998Q-31.190 140.205-31.190 140.494M-25.721 141.326L-27.702 141.326L-27.702 141.029Q-27.432 141.029-27.264 140.984Q-27.096 140.939-27.096 140.767L-27.096 138.631Q-27.096 138.416-27.159 138.320Q-27.221 138.224-27.339 138.203Q-27.456 138.181-27.702 138.181L-27.702 137.885L-26.534 137.799L-26.534 138.584Q-26.456 138.373-26.304 138.187Q-26.151 138.002-25.952 137.900Q-25.753 137.799-25.526 137.799Q-25.280 137.799-25.089 137.943Q-24.897 138.088-24.897 138.318Q-24.897 138.474-25.003 138.584Q-25.108 138.693-25.264 138.693Q-25.421 138.693-25.530 138.584Q-25.639 138.474-25.639 138.318Q-25.639 138.158-25.534 138.053Q-25.858 138.053-26.073 138.281Q-26.288 138.510-26.384 138.849Q-26.479 139.189-26.479 139.494L-26.479 140.767Q-26.479 140.935-26.253 140.982Q-26.026 141.029-25.721 141.029L-25.721 141.326M-24.417 139.572Q-24.417 139.092-24.184 138.676Q-23.952 138.260-23.542 138.010Q-23.132 137.760-22.655 137.760Q-21.925 137.760-21.526 138.201Q-21.128 138.642-21.128 139.373Q-21.128 139.478-21.221 139.502L-23.671 139.502L-23.671 139.572Q-23.671 139.982-23.550 140.338Q-23.429 140.693-23.157 140.910Q-22.886 141.127-22.456 141.127Q-22.093 141.127-21.796 140.898Q-21.499 140.670-21.397 140.318Q-21.389 140.271-21.304 140.256L-21.221 140.256Q-21.128 140.283-21.128 140.365Q-21.128 140.373-21.136 140.404Q-21.198 140.631-21.337 140.814Q-21.475 140.998-21.667 141.131Q-21.858 141.263-22.077 141.334Q-22.296 141.404-22.534 141.404Q-22.905 141.404-23.243 141.267Q-23.581 141.131-23.848 140.879Q-24.116 140.627-24.266 140.287Q-24.417 139.947-24.417 139.572M-23.663 139.263L-21.702 139.263Q-21.702 138.959-21.804 138.668Q-21.905 138.377-22.122 138.195Q-22.339 138.013-22.655 138.013Q-22.956 138.013-23.186 138.201Q-23.417 138.388-23.540 138.680Q-23.663 138.971-23.663 139.263M-18.823 141.404Q-19.304 141.404-19.712 141.160Q-20.120 140.916-20.358 140.502Q-20.596 140.088-20.596 139.599Q-20.596 139.107-20.339 138.691Q-20.081 138.275-19.649 138.037Q-19.218 137.799-18.725 137.799Q-18.104 137.799-17.655 138.236L-17.655 136.607Q-17.655 136.392-17.718 136.297Q-17.780 136.201-17.897 136.180Q-18.014 136.158-18.261 136.158L-18.261 135.861L-17.038 135.775L-17.038 140.584Q-17.038 140.795-16.975 140.890Q-16.913 140.986-16.796 141.008Q-16.679 141.029-16.429 141.029L-16.429 141.326L-17.679 141.404L-17.679 140.920Q-18.143 141.404-18.823 141.404M-18.757 141.150Q-18.417 141.150-18.124 140.959Q-17.831 140.767-17.679 140.471L-17.679 138.638Q-17.827 138.365-18.089 138.209Q-18.350 138.053-18.663 138.053Q-19.288 138.053-19.571 138.500Q-19.854 138.947-19.854 139.607Q-19.854 140.252-19.602 140.701Q-19.350 141.150-18.757 141.150\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(84.09 7.69)\">\u003Cpath d=\"M-13.090 141.088L-13.090 140.998Q-13.032 140.791-12.840 140.767L-12.473 140.767L-12.473 136.998L-12.840 136.998Q-13.032 136.974-13.090 136.760L-13.090 136.670Q-13.032 136.463-12.840 136.439L-11.313 136.439Q-11.118 136.463-11.067 136.670L-11.067 136.760Q-11.118 136.974-11.313 136.998L-11.833 136.998L-11.833 140.767L-10.001 140.767L-10.001 140.127Q-9.950 139.920-9.754 139.892L-9.610 139.892Q-9.411 139.920-9.360 140.127L-9.360 141.088Q-9.411 141.303-9.610 141.326L-12.840 141.326Q-13.032 141.303-13.090 141.088M-8.715 140.279Q-8.715 140.103-8.598 139.982Q-8.481 139.861-8.305 139.861Q-8.223 139.861-8.147 139.892Q-8.071 139.924-8.020 139.974Q-7.969 140.025-7.938 140.105Q-7.907 140.185-7.907 140.263Q-7.907 140.396-7.989 140.510Q-7.719 140.846-6.930 140.846Q-6.504 140.846-6.163 140.580Q-5.821 140.314-5.821 139.900Q-5.821 139.627-5.987 139.408Q-6.153 139.189-6.413 139.078Q-6.672 138.967-6.946 138.967L-7.411 138.967Q-7.622 138.943-7.653 138.724L-7.653 138.638Q-7.622 138.435-7.411 138.404L-6.883 138.365Q-6.668 138.365-6.477 138.242Q-6.286 138.119-6.172 137.916Q-6.059 137.713-6.059 137.502Q-6.059 137.228-6.342 137.074Q-6.626 136.920-6.930 136.920Q-7.493 136.920-7.731 137.111Q-7.668 137.224-7.668 137.334Q-7.668 137.506-7.782 137.619Q-7.895 137.732-8.067 137.732Q-8.243 137.732-8.358 137.609Q-8.473 137.486-8.473 137.318Q-8.473 136.791-8.001 136.574Q-7.528 136.357-6.930 136.357Q-6.590 136.357-6.235 136.488Q-5.879 136.619-5.649 136.877Q-5.418 137.135-5.418 137.502Q-5.418 137.846-5.586 138.150Q-5.754 138.455-6.051 138.654Q-5.680 138.834-5.430 139.170Q-5.180 139.506-5.180 139.900Q-5.180 140.346-5.434 140.687Q-5.688 141.029-6.090 141.217Q-6.493 141.404-6.930 141.404Q-7.215 141.404-7.520 141.349Q-7.825 141.295-8.100 141.168Q-8.376 141.041-8.545 140.818Q-8.715 140.596-8.715 140.279\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(84.09 7.69)\">\u003Cpath d=\"M1.142 139.510L-1.331 139.510Q-1.409 139.498-1.458 139.449Q-1.506 139.400-1.506 139.326Q-1.506 139.252-1.458 139.203Q-1.409 139.154-1.331 139.142L1.142 139.142L1.142 136.662Q1.169 136.494 1.326 136.494Q1.400 136.494 1.449 136.543Q1.498 136.592 1.509 136.662L1.509 139.142L3.982 139.142Q4.150 139.174 4.150 139.326Q4.150 139.478 3.982 139.510L1.509 139.510L1.509 141.990Q1.498 142.060 1.449 142.109Q1.400 142.158 1.326 142.158Q1.169 142.158 1.142 141.990\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(84.09 7.69)\">\u003Cpath d=\"M9.711 141.326L7.731 141.326L7.731 141.029Q8 141.029 8.168 140.984Q8.336 140.939 8.336 140.767L8.336 138.631Q8.336 138.416 8.274 138.320Q8.211 138.224 8.094 138.203Q7.977 138.181 7.731 138.181L7.731 137.885L8.899 137.799L8.899 138.584Q8.977 138.373 9.129 138.187Q9.281 138.002 9.481 137.900Q9.680 137.799 9.906 137.799Q10.152 137.799 10.344 137.943Q10.535 138.088 10.535 138.318Q10.535 138.474 10.430 138.584Q10.324 138.693 10.168 138.693Q10.012 138.693 9.902 138.584Q9.793 138.474 9.793 138.318Q9.793 138.158 9.899 138.053Q9.574 138.053 9.360 138.281Q9.145 138.510 9.049 138.849Q8.953 139.189 8.953 139.494L8.953 140.767Q8.953 140.935 9.180 140.982Q9.406 141.029 9.711 141.029L9.711 141.326M12.875 141.326L11.098 141.326L11.098 141.029Q11.371 141.029 11.539 140.982Q11.707 140.935 11.707 140.767L11.707 138.631Q11.707 138.416 11.651 138.320Q11.594 138.224 11.481 138.203Q11.367 138.181 11.121 138.181L11.121 137.885L12.320 137.799L12.320 140.767Q12.320 140.935 12.467 140.982Q12.613 141.029 12.875 141.029L12.875 141.326M11.434 136.404Q11.434 136.213 11.569 136.082Q11.703 135.951 11.899 135.951Q12.020 135.951 12.123 136.013Q12.227 136.076 12.289 136.180Q12.352 136.283 12.352 136.404Q12.352 136.599 12.221 136.734Q12.090 136.869 11.899 136.869Q11.699 136.869 11.567 136.736Q11.434 136.603 11.434 136.404M15.305 141.326L13.449 141.326L13.449 141.029Q13.723 141.029 13.891 140.982Q14.059 140.935 14.059 140.767L14.059 138.631Q14.059 138.416 13.996 138.320Q13.934 138.224 13.815 138.203Q13.695 138.181 13.449 138.181L13.449 137.885L14.641 137.799L14.641 138.533Q14.754 138.318 14.947 138.150Q15.141 137.982 15.379 137.890Q15.617 137.799 15.871 137.799Q17.039 137.799 17.039 138.877L17.039 140.767Q17.039 140.935 17.209 140.982Q17.379 141.029 17.649 141.029L17.649 141.326L15.793 141.326L15.793 141.029Q16.067 141.029 16.235 140.982Q16.402 140.935 16.402 140.767L16.402 138.892Q16.402 138.510 16.281 138.281Q16.160 138.053 15.809 138.053Q15.496 138.053 15.242 138.215Q14.988 138.377 14.842 138.646Q14.695 138.916 14.695 139.213L14.695 140.767Q14.695 140.935 14.865 140.982Q15.035 141.029 15.305 141.029L15.305 141.326M18.094 141.935Q18.094 141.654 18.305 141.443Q18.516 141.232 18.801 141.142Q18.645 141.017 18.567 140.828Q18.488 140.638 18.488 140.439Q18.488 140.084 18.719 139.791Q18.352 139.451 18.352 138.982Q18.352 138.631 18.555 138.361Q18.758 138.092 19.078 137.945Q19.399 137.799 19.742 137.799Q20.262 137.799 20.633 138.080Q20.996 137.709 21.543 137.709Q21.723 137.709 21.850 137.836Q21.977 137.963 21.977 138.142Q21.977 138.248 21.899 138.326Q21.820 138.404 21.711 138.404Q21.602 138.404 21.526 138.328Q21.449 138.252 21.449 138.142Q21.449 138.041 21.488 137.990Q21.496 137.982 21.500 137.976Q21.504 137.971 21.504 137.967Q21.129 137.967 20.809 138.221Q21.129 138.560 21.129 138.982Q21.129 139.252 21.012 139.469Q20.895 139.685 20.690 139.844Q20.485 140.002 20.242 140.084Q20 140.166 19.742 140.166Q19.524 140.166 19.311 140.107Q19.098 140.049 18.902 139.928Q18.809 140.068 18.809 140.248Q18.809 140.455 18.945 140.607Q19.082 140.760 19.289 140.760L19.985 140.760Q20.473 140.760 20.885 140.844Q21.297 140.928 21.576 141.185Q21.856 141.443 21.856 141.935Q21.856 142.299 21.535 142.531Q21.215 142.763 20.774 142.865Q20.332 142.967 19.977 142.967Q19.621 142.967 19.178 142.865Q18.735 142.763 18.414 142.531Q18.094 142.299 18.094 141.935M18.598 141.935Q18.598 142.131 18.742 142.279Q18.887 142.428 19.100 142.517Q19.313 142.607 19.553 142.654Q19.793 142.701 19.977 142.701Q20.219 142.701 20.549 142.623Q20.879 142.545 21.115 142.371Q21.352 142.197 21.352 141.935Q21.352 141.529 20.942 141.420Q20.531 141.310 19.969 141.310L19.289 141.310Q19.020 141.310 18.809 141.488Q18.598 141.666 18.598 141.935M19.742 139.900Q20.465 139.900 20.465 138.982Q20.465 138.060 19.742 138.060Q19.016 138.060 19.016 138.982Q19.016 139.900 19.742 139.900\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(84.09 7.69)\">\u003Cpath d=\"M25.680 141.088L25.680 140.998Q25.731 140.791 25.926 140.767L26.965 140.767L26.965 138.439L25.993 138.439Q25.793 138.416 25.743 138.197L25.743 138.111Q25.793 137.900 25.993 137.877L27.360 137.877Q27.555 137.896 27.606 138.111L27.606 140.767L28.520 140.767Q28.715 140.791 28.766 140.998L28.766 141.088Q28.715 141.303 28.520 141.326L25.926 141.326Q25.731 141.303 25.680 141.088M26.711 136.900L26.711 136.846Q26.711 136.674 26.848 136.553Q26.985 136.431 27.161 136.431Q27.333 136.431 27.469 136.553Q27.606 136.674 27.606 136.846L27.606 136.900Q27.606 137.076 27.469 137.197Q27.333 137.318 27.161 137.318Q26.985 137.318 26.848 137.197Q26.711 137.076 26.711 136.900M29.379 141.088L29.379 140.998Q29.422 140.791 29.629 140.767L30.051 140.767L30.051 138.439L29.629 138.439Q29.422 138.416 29.379 138.197L29.379 138.111Q29.426 137.900 29.629 137.877L30.446 137.877Q30.641 137.900 30.692 138.111L30.692 138.197L30.684 138.221Q30.911 138.041 31.184 137.939Q31.458 137.838 31.750 137.838Q32.098 137.838 32.336 137.978Q32.575 138.119 32.690 138.377Q32.805 138.635 32.805 138.990L32.805 140.767L33.231 140.767Q33.438 140.791 33.477 140.998L33.477 141.088Q33.438 141.303 33.231 141.326L31.836 141.326Q31.641 141.303 31.590 141.088L31.590 140.998Q31.641 140.787 31.836 140.767L32.165 140.767L32.165 139.021Q32.165 138.713 32.075 138.555Q31.985 138.396 31.692 138.396Q31.422 138.396 31.194 138.527Q30.965 138.658 30.829 138.887Q30.692 139.115 30.692 139.381L30.692 140.767L31.118 140.767Q31.325 140.791 31.364 140.998L31.364 141.088Q31.325 141.303 31.118 141.326L29.629 141.326Q29.422 141.303 29.379 141.088M34.754 140.221L34.754 138.439L34.004 138.439Q33.805 138.416 33.754 138.197L33.754 138.111Q33.805 137.900 34.004 137.877L34.754 137.877L34.754 137.127Q34.805 136.920 35.004 136.892L35.149 136.892Q35.344 136.920 35.395 137.127L35.395 137.877L36.754 137.877Q36.946 137.896 37.004 138.111L37.004 138.197Q36.950 138.416 36.754 138.439L35.395 138.439L35.395 140.189Q35.395 140.806 35.969 140.806Q36.219 140.806 36.383 140.621Q36.547 140.435 36.547 140.189Q36.547 140.096 36.620 140.025Q36.692 139.955 36.793 139.943L36.938 139.943Q37.137 139.967 37.188 140.174L37.188 140.221Q37.188 140.545 37.004 140.808Q36.821 141.072 36.528 141.219Q36.235 141.365 35.915 141.365Q35.403 141.365 35.079 141.055Q34.754 140.744 34.754 140.221M41.313 139.838L38.872 139.838Q38.926 140.115 39.124 140.338Q39.321 140.560 39.598 140.683Q39.876 140.806 40.161 140.806Q40.633 140.806 40.856 140.517Q40.864 140.506 40.920 140.400Q40.977 140.295 41.026 140.252Q41.075 140.209 41.168 140.197L41.313 140.197Q41.504 140.217 41.563 140.431L41.563 140.486Q41.497 140.787 41.266 140.984Q41.036 141.181 40.723 141.273Q40.411 141.365 40.106 141.365Q39.622 141.365 39.182 141.137Q38.743 140.908 38.475 140.508Q38.208 140.107 38.208 139.615L38.208 139.556Q38.208 139.088 38.454 138.685Q38.700 138.283 39.108 138.049Q39.516 137.814 39.985 137.814Q40.489 137.814 40.842 138.037Q41.196 138.260 41.379 138.648Q41.563 139.037 41.563 139.541L41.563 139.599Q41.504 139.814 41.313 139.838M38.879 139.287L40.907 139.287Q40.860 138.877 40.622 138.625Q40.383 138.373 39.985 138.373Q39.590 138.373 39.284 138.635Q38.977 138.896 38.879 139.287M42.270 141.088L42.270 140.998Q42.329 140.791 42.520 140.767L43.231 140.767L43.231 138.439L42.520 138.439Q42.325 138.416 42.270 138.197L42.270 138.111Q42.329 137.900 42.520 137.877L43.622 137.877Q43.821 137.896 43.872 138.111L43.872 138.439Q44.133 138.154 44.489 137.996Q44.844 137.838 45.231 137.838Q45.524 137.838 45.758 137.972Q45.993 138.107 45.993 138.373Q45.993 138.541 45.883 138.658Q45.774 138.775 45.606 138.775Q45.454 138.775 45.338 138.664Q45.223 138.553 45.223 138.396Q44.848 138.396 44.534 138.597Q44.219 138.799 44.045 139.133Q43.872 139.467 43.872 139.846L43.872 140.767L44.817 140.767Q45.024 140.791 45.063 140.998L45.063 141.088Q45.024 141.303 44.817 141.326L42.520 141.326Q42.329 141.303 42.270 141.088M46.852 139.599Q46.852 139.119 47.096 138.705Q47.340 138.291 47.756 138.053Q48.172 137.814 48.653 137.814Q49.208 137.814 49.586 137.924Q49.965 138.033 49.965 138.439Q49.965 138.607 49.852 138.730Q49.739 138.853 49.567 138.853Q49.395 138.853 49.276 138.738Q49.157 138.623 49.157 138.455L49.157 138.396Q48.997 138.373 48.661 138.373Q48.333 138.373 48.065 138.543Q47.797 138.713 47.645 138.996Q47.493 139.279 47.493 139.599Q47.493 139.920 47.665 140.201Q47.836 140.482 48.122 140.644Q48.407 140.806 48.735 140.806Q49.047 140.806 49.174 140.703Q49.301 140.599 49.418 140.410Q49.536 140.221 49.653 140.205L49.821 140.205Q49.926 140.217 49.991 140.285Q50.055 140.353 50.055 140.455Q50.055 140.502 50.036 140.541Q49.926 140.834 49.723 141.013Q49.520 141.193 49.245 141.279Q48.969 141.365 48.653 141.365Q48.168 141.365 47.752 141.127Q47.336 140.888 47.094 140.486Q46.852 140.084 46.852 139.599M52.661 141.365Q52.188 141.365 51.803 141.121Q51.418 140.877 51.196 140.467Q50.973 140.056 50.973 139.599Q50.973 139.256 51.098 138.933Q51.223 138.611 51.454 138.357Q51.684 138.103 51.991 137.959Q52.297 137.814 52.661 137.814Q53.024 137.814 53.336 137.961Q53.649 138.107 53.872 138.353Q54.094 138.599 54.221 138.920Q54.348 139.240 54.348 139.599Q54.348 140.056 54.124 140.469Q53.899 140.881 53.514 141.123Q53.129 141.365 52.661 141.365M52.661 140.806Q53.126 140.806 53.417 140.412Q53.708 140.017 53.708 139.533Q53.708 139.240 53.573 138.972Q53.438 138.705 53.198 138.539Q52.958 138.373 52.661 138.373Q52.356 138.373 52.118 138.539Q51.879 138.705 51.745 138.972Q51.610 139.240 51.610 139.533Q51.610 140.013 51.903 140.410Q52.196 140.806 52.661 140.806M54.856 141.088L54.856 140.998Q54.899 140.791 55.106 140.767L55.528 140.767L55.528 138.439L55.106 138.439Q54.899 138.416 54.856 138.197L54.856 138.111Q54.903 137.900 55.106 137.877L55.922 137.877Q56.118 137.900 56.168 138.111L56.168 138.197L56.161 138.221Q56.387 138.041 56.661 137.939Q56.934 137.838 57.227 137.838Q57.575 137.838 57.813 137.978Q58.051 138.119 58.167 138.377Q58.282 138.635 58.282 138.990L58.282 140.767L58.708 140.767Q58.915 140.791 58.954 140.998L58.954 141.088Q58.915 141.303 58.708 141.326L57.313 141.326Q57.118 141.303 57.067 141.088L57.067 140.998Q57.118 140.787 57.313 140.767L57.641 140.767L57.641 139.021Q57.641 138.713 57.551 138.555Q57.461 138.396 57.168 138.396Q56.899 138.396 56.670 138.527Q56.442 138.658 56.305 138.887Q56.168 139.115 56.168 139.381L56.168 140.767L56.594 140.767Q56.801 140.791 56.840 140.998L56.840 141.088Q56.801 141.303 56.594 141.326L55.106 141.326Q54.899 141.303 54.856 141.088M59.102 141.088L59.102 140.998Q59.145 140.791 59.352 140.767L59.774 140.767L59.774 138.439L59.352 138.439Q59.145 138.416 59.102 138.197L59.102 138.111Q59.149 137.900 59.352 137.877L60.168 137.877Q60.364 137.900 60.415 138.111L60.415 138.197L60.407 138.221Q60.633 138.041 60.907 137.939Q61.180 137.838 61.473 137.838Q61.821 137.838 62.059 137.978Q62.297 138.119 62.413 138.377Q62.528 138.635 62.528 138.990L62.528 140.767L62.954 140.767Q63.161 140.791 63.200 140.998L63.200 141.088Q63.161 141.303 62.954 141.326L61.559 141.326Q61.364 141.303 61.313 141.088L61.313 140.998Q61.364 140.787 61.559 140.767L61.887 140.767L61.887 139.021Q61.887 138.713 61.797 138.555Q61.708 138.396 61.415 138.396Q61.145 138.396 60.917 138.527Q60.688 138.658 60.551 138.887Q60.415 139.115 60.415 139.381L60.415 140.767L60.840 140.767Q61.047 140.791 61.086 140.998L61.086 141.088Q61.047 141.303 60.840 141.326L59.352 141.326Q59.145 141.303 59.102 141.088M66.790 139.838L64.348 139.838Q64.403 140.115 64.600 140.338Q64.797 140.560 65.075 140.683Q65.352 140.806 65.637 140.806Q66.110 140.806 66.333 140.517Q66.340 140.506 66.397 140.400Q66.454 140.295 66.502 140.252Q66.551 140.209 66.645 140.197L66.790 140.197Q66.981 140.217 67.040 140.431L67.040 140.486Q66.973 140.787 66.743 140.984Q66.512 141.181 66.200 141.273Q65.887 141.365 65.583 141.365Q65.098 141.365 64.659 141.137Q64.219 140.908 63.952 140.508Q63.684 140.107 63.684 139.615L63.684 139.556Q63.684 139.088 63.930 138.685Q64.176 138.283 64.584 138.049Q64.993 137.814 65.461 137.814Q65.965 137.814 66.319 138.037Q66.672 138.260 66.856 138.648Q67.040 139.037 67.040 139.541L67.040 139.599Q66.981 139.814 66.790 139.838M64.356 139.287L66.383 139.287Q66.336 138.877 66.098 138.625Q65.860 138.373 65.461 138.373Q65.067 138.373 64.760 138.635Q64.454 138.896 64.356 139.287M68.083 139.599Q68.083 139.119 68.327 138.705Q68.571 138.291 68.987 138.053Q69.403 137.814 69.883 137.814Q70.438 137.814 70.817 137.924Q71.196 138.033 71.196 138.439Q71.196 138.607 71.083 138.730Q70.969 138.853 70.797 138.853Q70.626 138.853 70.506 138.738Q70.387 138.623 70.387 138.455L70.387 138.396Q70.227 138.373 69.891 138.373Q69.563 138.373 69.295 138.543Q69.028 138.713 68.876 138.996Q68.723 139.279 68.723 139.599Q68.723 139.920 68.895 140.201Q69.067 140.482 69.352 140.644Q69.637 140.806 69.965 140.806Q70.278 140.806 70.405 140.703Q70.532 140.599 70.649 140.410Q70.766 140.221 70.883 140.205L71.051 140.205Q71.157 140.217 71.221 140.285Q71.286 140.353 71.286 140.455Q71.286 140.502 71.266 140.541Q71.157 140.834 70.954 141.013Q70.751 141.193 70.475 141.279Q70.200 141.365 69.883 141.365Q69.399 141.365 68.983 141.127Q68.567 140.888 68.325 140.486Q68.083 140.084 68.083 139.599M72.969 140.221L72.969 138.439L72.219 138.439Q72.020 138.416 71.969 138.197L71.969 138.111Q72.020 137.900 72.219 137.877L72.969 137.877L72.969 137.127Q73.020 136.920 73.219 136.892L73.364 136.892Q73.559 136.920 73.610 137.127L73.610 137.877L74.969 137.877Q75.161 137.896 75.219 138.111L75.219 138.197Q75.165 138.416 74.969 138.439L73.610 138.439L73.610 140.189Q73.610 140.806 74.184 140.806Q74.434 140.806 74.598 140.621Q74.762 140.435 74.762 140.189Q74.762 140.096 74.834 140.025Q74.907 139.955 75.008 139.943L75.153 139.943Q75.352 139.967 75.403 140.174L75.403 140.221Q75.403 140.545 75.219 140.808Q75.036 141.072 74.743 141.219Q74.450 141.365 74.129 141.365Q73.618 141.365 73.293 141.055Q72.969 140.744 72.969 140.221\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M45.074 118.563v15.072\"\u002F>\u003Cpath stroke=\"none\" d=\"m45.074 135.635 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(275.447 24.638)\">\u003Cpath d=\"M-40.339 141.088L-40.339 140.998Q-40.288 140.787-40.093 140.767L-39.893 140.767L-39.893 138.439L-40.093 138.439Q-40.300 138.416-40.339 138.197L-40.339 138.111Q-40.288 137.896-40.093 137.877L-39.612 137.877Q-39.421 137.900-39.362 138.111Q-39.042 137.838-38.628 137.838Q-38.436 137.838-38.268 137.947Q-38.100 138.056-38.026 138.228Q-37.850 138.037-37.628 137.937Q-37.405 137.838-37.163 137.838Q-36.745 137.838-36.591 138.180Q-36.436 138.521-36.436 138.990L-36.436 140.767L-36.237 140.767Q-36.026 140.791-35.987 140.998L-35.987 141.088Q-36.038 141.303-36.237 141.326L-37.054 141.326Q-37.249 141.303-37.300 141.088L-37.300 140.998Q-37.249 140.791-37.054 140.767L-36.964 140.767L-36.964 139.021Q-36.964 138.396-37.214 138.396Q-37.546 138.396-37.723 138.707Q-37.901 139.017-37.901 139.381L-37.901 140.767L-37.698 140.767Q-37.491 140.791-37.452 140.998L-37.452 141.088Q-37.503 141.303-37.698 141.326L-38.514 141.326Q-38.714 141.303-38.764 141.088L-38.764 140.998Q-38.714 140.791-38.514 140.767L-38.429 140.767L-38.429 139.021Q-38.429 138.396-38.675 138.396Q-39.007 138.396-39.184 138.709Q-39.362 139.021-39.362 139.381L-39.362 140.767L-39.163 140.767Q-38.956 140.791-38.917 140.998L-38.917 141.088Q-38.968 141.306-39.163 141.326L-40.093 141.326Q-40.300 141.303-40.339 141.088M-33.917 141.365Q-34.389 141.365-34.774 141.121Q-35.159 140.877-35.382 140.467Q-35.604 140.056-35.604 139.599Q-35.604 139.256-35.479 138.933Q-35.354 138.611-35.124 138.357Q-34.893 138.103-34.587 137.959Q-34.280 137.814-33.917 137.814Q-33.554 137.814-33.241 137.961Q-32.929 138.107-32.706 138.353Q-32.483 138.599-32.356 138.920Q-32.229 139.240-32.229 139.599Q-32.229 140.056-32.454 140.469Q-32.679 140.881-33.063 141.123Q-33.448 141.365-33.917 141.365M-33.917 140.806Q-33.452 140.806-33.161 140.412Q-32.870 140.017-32.870 139.533Q-32.870 139.240-33.005 138.972Q-33.139 138.705-33.380 138.539Q-33.620 138.373-33.917 138.373Q-34.221 138.373-34.460 138.539Q-34.698 138.705-34.833 138.972Q-34.968 139.240-34.968 139.533Q-34.968 140.013-34.675 140.410Q-34.382 140.806-33.917 140.806M-29.929 141.365Q-30.393 141.365-30.759 141.115Q-31.124 140.865-31.329 140.461Q-31.534 140.056-31.534 139.599Q-31.534 139.256-31.409 138.935Q-31.284 138.615-31.052 138.365Q-30.819 138.115-30.514 137.976Q-30.210 137.838-29.854 137.838Q-29.343 137.838-28.936 138.158L-28.936 136.998L-29.358 136.998Q-29.569 136.974-29.608 136.760L-29.608 136.670Q-29.569 136.463-29.358 136.439L-28.546 136.439Q-28.346 136.463-28.296 136.670L-28.296 140.767L-27.870 140.767Q-27.663 140.791-27.624 140.998L-27.624 141.088Q-27.663 141.303-27.870 141.326L-28.686 141.326Q-28.886 141.303-28.936 141.088L-28.936 140.959Q-29.132 141.150-29.393 141.258Q-29.655 141.365-29.929 141.365M-29.889 140.806Q-29.530 140.806-29.278 140.537Q-29.026 140.267-28.936 139.892L-28.936 139.060Q-28.995 138.873-29.122 138.722Q-29.249 138.572-29.427 138.484Q-29.604 138.396-29.800 138.396Q-30.108 138.396-30.358 138.566Q-30.608 138.736-30.753 139.021Q-30.897 139.306-30.897 139.607Q-30.897 140.056-30.612 140.431Q-30.327 140.806-29.889 140.806M-26.804 140.471L-26.804 138.439L-27.225 138.439Q-27.432 138.416-27.475 138.197L-27.475 138.111Q-27.429 137.900-27.225 137.877L-26.409 137.877Q-26.214 137.900-26.163 138.111L-26.163 140.439Q-26.163 140.674-25.993 140.740Q-25.823 140.806-25.538 140.806Q-25.331 140.806-25.136 140.730Q-24.940 140.654-24.815 140.504Q-24.690 140.353-24.690 140.142L-24.690 138.439L-25.112 138.439Q-25.323 138.416-25.362 138.197L-25.362 138.111Q-25.323 137.900-25.112 137.877L-24.300 137.877Q-24.100 137.900-24.050 138.111L-24.050 140.767L-23.624 140.767Q-23.417 140.791-23.378 140.998L-23.378 141.088Q-23.417 141.303-23.624 141.326L-24.440 141.326Q-24.639 141.303-24.690 141.103Q-25.093 141.365-25.600 141.365Q-25.835 141.365-26.050 141.324Q-26.264 141.283-26.430 141.181Q-26.596 141.080-26.700 140.902Q-26.804 140.724-26.804 140.471M-22.850 141.088L-22.850 140.998Q-22.800 140.791-22.604 140.767L-21.499 140.767L-21.499 136.998L-22.604 136.998Q-22.800 136.974-22.850 136.760L-22.850 136.670Q-22.800 136.463-22.604 136.439L-21.108 136.439Q-20.917 136.463-20.858 136.670L-20.858 140.767L-19.757 140.767Q-19.557 140.791-19.507 140.998L-19.507 141.088Q-19.557 141.303-19.757 141.326L-22.604 141.326Q-22.800 141.303-22.850 141.088M-15.542 139.838L-17.983 139.838Q-17.929 140.115-17.731 140.338Q-17.534 140.560-17.257 140.683Q-16.979 140.806-16.694 140.806Q-16.221 140.806-15.999 140.517Q-15.991 140.506-15.934 140.400Q-15.878 140.295-15.829 140.252Q-15.780 140.209-15.686 140.197L-15.542 140.197Q-15.350 140.217-15.292 140.431L-15.292 140.486Q-15.358 140.787-15.589 140.984Q-15.819 141.181-16.132 141.273Q-16.444 141.365-16.749 141.365Q-17.233 141.365-17.673 141.137Q-18.112 140.908-18.380 140.508Q-18.647 140.107-18.647 139.615L-18.647 139.556Q-18.647 139.088-18.401 138.685Q-18.155 138.283-17.747 138.049Q-17.339 137.814-16.870 137.814Q-16.366 137.814-16.013 138.037Q-15.659 138.260-15.475 138.648Q-15.292 139.037-15.292 139.541L-15.292 139.599Q-15.350 139.814-15.542 139.838M-17.975 139.287L-15.948 139.287Q-15.995 138.877-16.233 138.625Q-16.471 138.373-16.870 138.373Q-17.264 138.373-17.571 138.635Q-17.878 138.896-17.975 139.287\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(275.447 24.638)\">\u003Cpath d=\"M-9.967 140.525Q-9.967 140.349-9.851 140.226Q-9.736 140.103-9.556 140.103Q-9.388 140.103-9.273 140.219Q-9.158 140.334-9.158 140.510Q-9.158 140.631-9.220 140.732Q-9.072 140.846-8.763 140.846Q-8.459 140.846-8.205 140.695Q-7.951 140.545-7.769 140.299Q-7.588 140.053-7.480 139.760Q-7.373 139.467-7.342 139.189Q-7.580 139.388-7.888 139.494Q-8.197 139.599-8.517 139.599Q-8.963 139.599-9.336 139.383Q-9.709 139.166-9.926 138.797Q-10.142 138.428-10.142 137.982Q-10.142 137.510-9.896 137.138Q-9.650 136.767-9.244 136.562Q-8.838 136.357-8.365 136.357Q-7.881 136.357-7.549 136.586Q-7.217 136.814-7.029 137.187Q-6.842 137.560-6.763 137.990Q-6.685 138.420-6.685 138.877Q-6.685 139.486-6.939 140.074Q-7.193 140.662-7.670 141.033Q-8.146 141.404-8.763 141.404Q-9.260 141.404-9.613 141.195Q-9.967 140.986-9.967 140.525M-8.463 139.037Q-8.076 139.037-7.740 138.808Q-7.404 138.580-7.404 138.213Q-7.404 138.174-7.420 138.096Q-7.435 138.017-7.435 137.982Q-7.435 137.971-7.428 137.939Q-7.420 137.908-7.420 137.900Q-7.482 137.650-7.601 137.430Q-7.720 137.209-7.914 137.064Q-8.107 136.920-8.365 136.920Q-8.838 136.920-9.170 137.221Q-9.502 137.521-9.502 137.982Q-9.502 138.263-9.365 138.510Q-9.228 138.756-8.990 138.896Q-8.752 139.037-8.463 139.037\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-54.51 208.19h96.739v-25.608h-96.74Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(.132 61.171)\">\u003Cpath d=\"M-38.116 131.826L-39.971 131.826L-39.971 131.529Q-39.698 131.529-39.530 131.482Q-39.362 131.435-39.362 131.267L-39.362 129.131Q-39.362 128.916-39.425 128.820Q-39.487 128.724-39.606 128.703Q-39.725 128.681-39.971 128.681L-39.971 128.385L-38.780 128.299L-38.780 129.033Q-38.667 128.818-38.473 128.650Q-38.280 128.482-38.042 128.390Q-37.804 128.299-37.550 128.299Q-36.589 128.299-36.413 129.010Q-36.229 128.681-35.901 128.490Q-35.573 128.299-35.194 128.299Q-34.018 128.299-34.018 129.377L-34.018 131.267Q-34.018 131.435-33.850 131.482Q-33.682 131.529-33.413 131.529L-33.413 131.826L-35.268 131.826L-35.268 131.529Q-34.995 131.529-34.827 131.484Q-34.659 131.439-34.659 131.267L-34.659 129.392Q-34.659 129.006-34.784 128.779Q-34.909 128.553-35.261 128.553Q-35.565 128.553-35.821 128.715Q-36.077 128.877-36.225 129.146Q-36.374 129.416-36.374 129.713L-36.374 131.267Q-36.374 131.435-36.204 131.482Q-36.034 131.529-35.764 131.529L-35.764 131.826L-37.620 131.826L-37.620 131.529Q-37.346 131.529-37.179 131.482Q-37.011 131.435-37.011 131.267L-37.011 129.392Q-37.011 129.006-37.136 128.779Q-37.261 128.553-37.612 128.553Q-37.917 128.553-38.173 128.715Q-38.429 128.877-38.577 129.146Q-38.725 129.416-38.725 129.713L-38.725 131.267Q-38.725 131.435-38.555 131.482Q-38.386 131.529-38.116 131.529L-38.116 131.826M-32.968 130.072Q-32.968 129.592-32.735 129.176Q-32.503 128.760-32.093 128.510Q-31.682 128.260-31.206 128.260Q-30.475 128.260-30.077 128.701Q-29.679 129.142-29.679 129.873Q-29.679 129.978-29.772 130.002L-32.221 130.002L-32.221 130.072Q-32.221 130.482-32.100 130.838Q-31.979 131.193-31.708 131.410Q-31.436 131.627-31.007 131.627Q-30.643 131.627-30.346 131.398Q-30.050 131.170-29.948 130.818Q-29.940 130.771-29.854 130.756L-29.772 130.756Q-29.679 130.783-29.679 130.865Q-29.679 130.873-29.686 130.904Q-29.749 131.131-29.888 131.314Q-30.026 131.498-30.218 131.631Q-30.409 131.763-30.628 131.834Q-30.846 131.904-31.085 131.904Q-31.456 131.904-31.794 131.767Q-32.132 131.631-32.399 131.379Q-32.667 131.127-32.817 130.787Q-32.968 130.447-32.968 130.072M-32.214 129.763L-30.253 129.763Q-30.253 129.459-30.354 129.168Q-30.456 128.877-30.673 128.695Q-30.889 128.513-31.206 128.513Q-31.507 128.513-31.737 128.701Q-31.968 128.888-32.091 129.180Q-32.214 129.471-32.214 129.763M-27.261 131.826L-29.116 131.826L-29.116 131.529Q-28.843 131.529-28.675 131.482Q-28.507 131.435-28.507 131.267L-28.507 129.131Q-28.507 128.916-28.569 128.820Q-28.632 128.724-28.751 128.703Q-28.870 128.681-29.116 128.681L-29.116 128.385L-27.925 128.299L-27.925 129.033Q-27.811 128.818-27.618 128.650Q-27.425 128.482-27.186 128.390Q-26.948 128.299-26.694 128.299Q-25.733 128.299-25.557 129.010Q-25.374 128.681-25.046 128.490Q-24.718 128.299-24.339 128.299Q-23.163 128.299-23.163 129.377L-23.163 131.267Q-23.163 131.435-22.995 131.482Q-22.827 131.529-22.557 131.529L-22.557 131.826L-24.413 131.826L-24.413 131.529Q-24.139 131.529-23.971 131.484Q-23.804 131.439-23.804 131.267L-23.804 129.392Q-23.804 129.006-23.929 128.779Q-24.054 128.553-24.405 128.553Q-24.710 128.553-24.966 128.715Q-25.221 128.877-25.370 129.146Q-25.518 129.416-25.518 129.713L-25.518 131.267Q-25.518 131.435-25.348 131.482Q-25.179 131.529-24.909 131.529L-24.909 131.826L-26.764 131.826L-26.764 131.529Q-26.491 131.529-26.323 131.482Q-26.155 131.435-26.155 131.267L-26.155 129.392Q-26.155 129.006-26.280 128.779Q-26.405 128.553-26.757 128.553Q-27.061 128.553-27.317 128.715Q-27.573 128.877-27.721 129.146Q-27.870 129.416-27.870 129.713L-27.870 131.267Q-27.870 131.435-27.700 131.482Q-27.530 131.529-27.261 131.529L-27.261 131.826M-22.112 130.131Q-22.112 129.627-21.856 129.195Q-21.600 128.763-21.165 128.512Q-20.729 128.260-20.229 128.260Q-19.843 128.260-19.501 128.404Q-19.159 128.549-18.897 128.810Q-18.636 129.072-18.493 129.408Q-18.350 129.744-18.350 130.131Q-18.350 130.623-18.614 131.033Q-18.878 131.443-19.307 131.674Q-19.737 131.904-20.229 131.904Q-20.721 131.904-21.155 131.672Q-21.589 131.439-21.850 131.031Q-22.112 130.623-22.112 130.131M-20.229 131.627Q-19.772 131.627-19.520 131.404Q-19.268 131.181-19.180 130.830Q-19.093 130.478-19.093 130.033Q-19.093 129.603-19.186 129.265Q-19.280 128.928-19.534 128.721Q-19.788 128.513-20.229 128.513Q-20.878 128.513-21.122 128.930Q-21.366 129.346-21.366 130.033Q-21.366 130.478-21.278 130.830Q-21.190 131.181-20.938 131.404Q-20.686 131.627-20.229 131.627M-15.858 131.826L-17.839 131.826L-17.839 131.529Q-17.569 131.529-17.401 131.484Q-17.233 131.439-17.233 131.267L-17.233 129.131Q-17.233 128.916-17.296 128.820Q-17.358 128.724-17.475 128.703Q-17.593 128.681-17.839 128.681L-17.839 128.385L-16.671 128.299L-16.671 129.084Q-16.593 128.873-16.440 128.687Q-16.288 128.502-16.089 128.400Q-15.889 128.299-15.663 128.299Q-15.417 128.299-15.225 128.443Q-15.034 128.588-15.034 128.818Q-15.034 128.974-15.139 129.084Q-15.245 129.193-15.401 129.193Q-15.557 129.193-15.667 129.084Q-15.776 128.974-15.776 128.818Q-15.776 128.658-15.671 128.553Q-15.995 128.553-16.210 128.781Q-16.425 129.010-16.520 129.349Q-16.616 129.689-16.616 129.994L-16.616 131.267Q-16.616 131.435-16.389 131.482Q-16.163 131.529-15.858 131.529L-15.858 131.826M-14.136 133.123Q-14.022 133.201-13.846 133.201Q-13.557 133.201-13.337 132.988Q-13.116 132.775-12.991 132.474L-12.702 131.826L-13.975 128.939Q-14.057 128.763-14.202 128.719Q-14.346 128.674-14.616 128.674L-14.616 128.377L-12.897 128.377L-12.897 128.674Q-13.319 128.674-13.319 128.857Q-13.319 128.869-13.304 128.939L-12.366 131.064L-11.534 129.154Q-11.495 129.064-11.495 128.986Q-11.495 128.846-11.596 128.760Q-11.698 128.674-11.839 128.674L-11.839 128.377L-10.487 128.377L-10.487 128.674Q-10.741 128.674-10.934 128.799Q-11.128 128.924-11.233 129.154L-12.679 132.474Q-12.792 132.728-12.958 132.951Q-13.124 133.174-13.352 133.316Q-13.581 133.459-13.846 133.459Q-14.143 133.459-14.384 133.267Q-14.624 133.076-14.624 132.787Q-14.624 132.631-14.518 132.529Q-14.413 132.428-14.264 132.428Q-14.159 132.428-14.079 132.474Q-13.999 132.521-13.952 132.599Q-13.905 132.678-13.905 132.787Q-13.905 132.908-13.966 132.996Q-14.026 133.084-14.136 133.123\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(.132 61.171)\">\u003Cpath d=\"M-7.176 130.099Q-7.176 129.603-6.926 129.178Q-6.676 128.752-6.256 128.506Q-5.836 128.260-5.336 128.260Q-4.797 128.260-4.406 128.385Q-4.016 128.510-4.016 128.924Q-4.016 129.029-4.066 129.121Q-4.117 129.213-4.209 129.263Q-4.301 129.314-4.410 129.314Q-4.516 129.314-4.607 129.263Q-4.699 129.213-4.750 129.121Q-4.801 129.029-4.801 128.924Q-4.801 128.701-4.633 128.596Q-4.855 128.537-5.328 128.537Q-5.625 128.537-5.840 128.676Q-6.055 128.814-6.186 129.045Q-6.316 129.275-6.375 129.545Q-6.434 129.814-6.434 130.099Q-6.434 130.494-6.301 130.844Q-6.168 131.193-5.896 131.410Q-5.625 131.627-5.227 131.627Q-4.852 131.627-4.576 131.410Q-4.301 131.193-4.199 130.834Q-4.184 130.771-4.121 130.771L-4.016 130.771Q-3.980 130.771-3.955 130.799Q-3.930 130.826-3.930 130.865L-3.930 130.888Q-4.062 131.369-4.447 131.637Q-4.832 131.904-5.336 131.904Q-5.699 131.904-6.033 131.767Q-6.367 131.631-6.627 131.381Q-6.887 131.131-7.031 130.795Q-7.176 130.459-7.176 130.099M-3.441 130.131Q-3.441 129.627-3.186 129.195Q-2.930 128.763-2.494 128.512Q-2.059 128.260-1.559 128.260Q-1.172 128.260-0.830 128.404Q-0.488 128.549-0.227 128.810Q0.035 129.072 0.178 129.408Q0.320 129.744 0.320 130.131Q0.320 130.623 0.057 131.033Q-0.207 131.443-0.637 131.674Q-1.066 131.904-1.559 131.904Q-2.051 131.904-2.484 131.672Q-2.918 131.439-3.180 131.031Q-3.441 130.623-3.441 130.131M-1.559 131.627Q-1.102 131.627-0.850 131.404Q-0.598 131.181-0.510 130.830Q-0.422 130.478-0.422 130.033Q-0.422 129.603-0.516 129.265Q-0.609 128.928-0.863 128.721Q-1.117 128.513-1.559 128.513Q-2.207 128.513-2.451 128.930Q-2.695 129.346-2.695 130.033Q-2.695 130.478-2.607 130.830Q-2.519 131.181-2.268 131.404Q-2.016 131.627-1.559 131.627M2.734 131.826L0.879 131.826L0.879 131.529Q1.152 131.529 1.320 131.482Q1.488 131.435 1.488 131.267L1.488 129.131Q1.488 128.916 1.426 128.820Q1.363 128.724 1.244 128.703Q1.125 128.681 0.879 128.681L0.879 128.385L2.070 128.299L2.070 129.033Q2.184 128.818 2.377 128.650Q2.570 128.482 2.809 128.390Q3.047 128.299 3.301 128.299Q4.469 128.299 4.469 129.377L4.469 131.267Q4.469 131.435 4.639 131.482Q4.809 131.529 5.078 131.529L5.078 131.826L3.223 131.826L3.223 131.529Q3.496 131.529 3.664 131.482Q3.832 131.435 3.832 131.267L3.832 129.392Q3.832 129.010 3.711 128.781Q3.590 128.553 3.238 128.553Q2.926 128.553 2.672 128.715Q2.418 128.877 2.272 129.146Q2.125 129.416 2.125 129.713L2.125 131.267Q2.125 131.435 2.295 131.482Q2.465 131.529 2.734 131.529\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(.132 61.171)\">\u003Cpath d=\"M5.920 130.865L5.920 128.674L5.217 128.674L5.217 128.420Q5.573 128.420 5.815 128.187Q6.057 127.955 6.168 127.607Q6.280 127.260 6.280 126.904L6.561 126.904L6.561 128.377L7.737 128.377L7.737 128.674L6.561 128.674L6.561 130.849Q6.561 131.170 6.680 131.398Q6.799 131.627 7.080 131.627Q7.260 131.627 7.377 131.504Q7.495 131.381 7.547 131.201Q7.600 131.021 7.600 130.849L7.600 130.377L7.881 130.377L7.881 130.865Q7.881 131.119 7.776 131.359Q7.670 131.599 7.473 131.752Q7.276 131.904 7.018 131.904Q6.702 131.904 6.450 131.781Q6.198 131.658 6.059 131.424Q5.920 131.189 5.920 130.865M10.608 131.826L8.627 131.826L8.627 131.529Q8.897 131.529 9.065 131.484Q9.233 131.439 9.233 131.267L9.233 129.131Q9.233 128.916 9.170 128.820Q9.108 128.724 8.991 128.703Q8.873 128.681 8.627 128.681L8.627 128.385L9.795 128.299L9.795 129.084Q9.873 128.873 10.026 128.687Q10.178 128.502 10.377 128.400Q10.577 128.299 10.803 128.299Q11.049 128.299 11.241 128.443Q11.432 128.588 11.432 128.818Q11.432 128.974 11.327 129.084Q11.221 129.193 11.065 129.193Q10.909 129.193 10.799 129.084Q10.690 128.974 10.690 128.818Q10.690 128.658 10.795 128.553Q10.471 128.553 10.256 128.781Q10.041 129.010 9.946 129.349Q9.850 129.689 9.850 129.994L9.850 131.267Q9.850 131.435 10.077 131.482Q10.303 131.529 10.608 131.529L10.608 131.826M11.912 130.131Q11.912 129.627 12.168 129.195Q12.424 128.763 12.860 128.512Q13.295 128.260 13.795 128.260Q14.182 128.260 14.524 128.404Q14.866 128.549 15.127 128.810Q15.389 129.072 15.532 129.408Q15.674 129.744 15.674 130.131Q15.674 130.623 15.411 131.033Q15.147 131.443 14.717 131.674Q14.287 131.904 13.795 131.904Q13.303 131.904 12.870 131.672Q12.436 131.439 12.174 131.031Q11.912 130.623 11.912 130.131M13.795 131.627Q14.252 131.627 14.504 131.404Q14.756 131.181 14.844 130.830Q14.932 130.478 14.932 130.033Q14.932 129.603 14.838 129.265Q14.745 128.928 14.491 128.721Q14.237 128.513 13.795 128.513Q13.147 128.513 12.903 128.930Q12.659 129.346 12.659 130.033Q12.659 130.478 12.746 130.830Q12.834 131.181 13.086 131.404Q13.338 131.627 13.795 131.627M18.073 131.826L16.241 131.826L16.241 131.529Q16.514 131.529 16.682 131.482Q16.850 131.435 16.850 131.267L16.850 127.107Q16.850 126.892 16.787 126.797Q16.725 126.701 16.606 126.680Q16.487 126.658 16.241 126.658L16.241 126.361L17.463 126.275L17.463 131.267Q17.463 131.435 17.631 131.482Q17.799 131.529 18.073 131.529L18.073 131.826M20.432 131.826L18.600 131.826L18.600 131.529Q18.873 131.529 19.041 131.482Q19.209 131.435 19.209 131.267L19.209 127.107Q19.209 126.892 19.147 126.797Q19.084 126.701 18.965 126.680Q18.846 126.658 18.600 126.658L18.600 126.361L19.823 126.275L19.823 131.267Q19.823 131.435 19.991 131.482Q20.159 131.529 20.432 131.529L20.432 131.826M20.877 130.072Q20.877 129.592 21.110 129.176Q21.342 128.760 21.752 128.510Q22.162 128.260 22.639 128.260Q23.370 128.260 23.768 128.701Q24.166 129.142 24.166 129.873Q24.166 129.978 24.073 130.002L21.623 130.002L21.623 130.072Q21.623 130.482 21.745 130.838Q21.866 131.193 22.137 131.410Q22.409 131.627 22.838 131.627Q23.202 131.627 23.498 131.398Q23.795 131.170 23.897 130.818Q23.905 130.771 23.991 130.756L24.073 130.756Q24.166 130.783 24.166 130.865Q24.166 130.873 24.159 130.904Q24.096 131.131 23.957 131.314Q23.819 131.498 23.627 131.631Q23.436 131.763 23.217 131.834Q22.998 131.904 22.760 131.904Q22.389 131.904 22.051 131.767Q21.713 131.631 21.446 131.379Q21.178 131.127 21.028 130.787Q20.877 130.447 20.877 130.072M21.631 129.763L23.592 129.763Q23.592 129.459 23.491 129.168Q23.389 128.877 23.172 128.695Q22.955 128.513 22.639 128.513Q22.338 128.513 22.108 128.701Q21.877 128.888 21.754 129.180Q21.631 129.471 21.631 129.763M26.662 131.826L24.682 131.826L24.682 131.529Q24.952 131.529 25.120 131.484Q25.287 131.439 25.287 131.267L25.287 129.131Q25.287 128.916 25.225 128.820Q25.162 128.724 25.045 128.703Q24.928 128.681 24.682 128.681L24.682 128.385L25.850 128.299L25.850 129.084Q25.928 128.873 26.080 128.687Q26.233 128.502 26.432 128.400Q26.631 128.299 26.858 128.299Q27.104 128.299 27.295 128.443Q27.487 128.588 27.487 128.818Q27.487 128.974 27.381 129.084Q27.276 129.193 27.120 129.193Q26.963 129.193 26.854 129.084Q26.745 128.974 26.745 128.818Q26.745 128.658 26.850 128.553Q26.526 128.553 26.311 128.781Q26.096 129.010 26 129.349Q25.905 129.689 25.905 129.994L25.905 131.267Q25.905 131.435 26.131 131.482Q26.358 131.529 26.662 131.529\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(.132 61.171)\">\u003Cpath d=\"M-21.320 139.510L-23.793 139.510Q-23.871 139.498-23.920 139.449Q-23.968 139.400-23.968 139.326Q-23.968 139.252-23.920 139.203Q-23.871 139.154-23.793 139.142L-21.320 139.142L-21.320 136.662Q-21.293 136.494-21.136 136.494Q-21.062 136.494-21.013 136.543Q-20.964 136.592-20.953 136.662L-20.953 139.142L-18.480 139.142Q-18.312 139.174-18.312 139.326Q-18.312 139.478-18.480 139.510L-20.953 139.510L-20.953 141.990Q-20.964 142.060-21.013 142.109Q-21.062 142.158-21.136 142.158Q-21.293 142.158-21.320 141.990\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(.132 61.171)\">\u003Cpath d=\"M-11.583 141.326L-14.645 141.326L-14.645 141.029Q-14.321 141.029-14.079 140.982Q-13.837 140.935-13.837 140.767L-13.837 136.424Q-13.837 136.252-14.079 136.205Q-14.321 136.158-14.645 136.158L-14.645 135.861L-11.583 135.861Q-11.032 135.861-10.554 136.088Q-10.075 136.314-9.722 136.709Q-9.368 137.103-9.179 137.603Q-8.989 138.103-8.989 138.646Q-8.989 139.353-9.333 139.971Q-9.677 140.588-10.272 140.957Q-10.868 141.326-11.583 141.326M-13.095 136.424L-13.095 140.767Q-13.095 140.939-13.003 140.984Q-12.911 141.029-12.692 141.029L-11.798 141.029Q-11.352 141.029-10.960 140.859Q-10.567 140.689-10.296 140.365Q-10.024 140.041-9.927 139.621Q-9.829 139.201-9.829 138.646Q-9.829 138.291-9.866 137.978Q-9.903 137.666-10.009 137.371Q-10.114 137.076-10.294 136.853Q-10.477 136.619-10.716 136.469Q-10.954 136.318-11.235 136.238Q-11.517 136.158-11.798 136.158L-12.692 136.158Q-12.911 136.158-13.003 136.201Q-13.095 136.244-13.095 136.424M-5.798 141.326L-8.157 141.326L-8.157 141.029Q-7.833 141.029-7.591 140.982Q-7.349 140.935-7.349 140.767L-7.349 136.424Q-7.349 136.252-7.591 136.205Q-7.833 136.158-8.157 136.158L-8.157 135.861L-5.563 135.861Q-5.231 135.861-4.845 135.947Q-4.458 136.033-4.110 136.207Q-3.763 136.381-3.544 136.662Q-3.325 136.943-3.325 137.310Q-3.325 137.635-3.526 137.900Q-3.727 138.166-4.034 138.342Q-4.341 138.517-4.669 138.607Q-4.302 138.728-4.042 138.998Q-3.782 139.267-3.731 139.631L-3.638 140.326Q-3.567 140.775-3.470 141.006Q-3.372 141.236-3.075 141.236Q-2.829 141.236-2.696 141.019Q-2.563 140.803-2.563 140.541Q-2.544 140.467-2.462 140.447L-2.380 140.447Q-2.286 140.471-2.286 140.564Q-2.286 140.795-2.384 141.010Q-2.481 141.224-2.659 141.359Q-2.837 141.494-3.067 141.494Q-3.665 141.494-4.083 141.207Q-4.501 140.920-4.501 140.349L-4.501 139.654Q-4.501 139.373-4.653 139.158Q-4.806 138.943-5.056 138.830Q-5.306 138.717-5.579 138.717L-6.606 138.717L-6.606 140.767Q-6.606 140.931-6.362 140.980Q-6.118 141.029-5.798 141.029L-5.798 141.326M-6.606 136.424L-6.606 138.463L-5.677 138.463Q-5.356 138.463-5.089 138.410Q-4.821 138.357-4.622 138.230Q-4.423 138.103-4.306 137.871Q-4.188 137.638-4.188 137.310Q-4.188 136.658-4.585 136.408Q-4.981 136.158-5.677 136.158L-6.204 136.158Q-6.423 136.158-6.515 136.201Q-6.606 136.244-6.606 136.424M-0.224 141.326L-1.974 141.326L-1.974 141.029Q-1.274 141.029-1.087 140.549L0.714 135.724Q0.769 135.615 0.882 135.615L0.952 135.615Q1.066 135.615 1.120 135.724L3.011 140.767Q3.089 140.935 3.292 140.982Q3.495 141.029 3.808 141.029L3.808 141.326L1.585 141.326L1.585 141.029Q2.226 141.029 2.226 140.814Q2.226 140.795 2.224 140.785Q2.222 140.775 2.218 140.767L1.753 139.533L-0.392 139.533L-0.774 140.549Q-0.778 140.564-0.784 140.594Q-0.790 140.623-0.790 140.646Q-0.790 140.787-0.700 140.871Q-0.610 140.955-0.477 140.992Q-0.345 141.029-0.224 141.029L-0.224 141.326M0.683 136.670L-0.286 139.236L1.640 139.236L0.683 136.670M6.394 141.326L4.472 141.326L4.472 141.029Q5.280 141.029 5.280 140.549L5.280 136.424Q5.280 136.252 5.038 136.205Q4.796 136.158 4.472 136.158L4.472 135.861L5.968 135.861Q6.077 135.861 6.136 135.974L7.983 140.517L9.823 135.974Q9.886 135.861 9.991 135.861L11.495 135.861L11.495 136.158Q11.175 136.158 10.933 136.205Q10.691 136.252 10.691 136.424L10.691 140.767Q10.691 140.935 10.933 140.982Q11.175 141.029 11.495 141.029L11.495 141.326L9.194 141.326L9.194 141.029Q9.999 141.029 9.999 140.767L9.999 136.174L7.952 141.213Q7.917 141.326 7.784 141.326Q7.644 141.326 7.608 141.213L5.585 136.236L5.585 140.549Q5.585 141.029 6.394 141.029\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M107.67 208.19h96.74v-25.608h-96.74Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(155.7 56.06)\">\u003Cpath d=\"M-37.522 141.326L-39.987 141.326L-39.987 141.029Q-39.655 141.029-39.397 140.982Q-39.139 140.935-39.139 140.767L-39.139 136.424Q-39.139 136.158-39.987 136.158L-39.987 135.861L-37.522 135.861L-37.522 136.158Q-38.374 136.158-38.374 136.424L-38.374 140.767Q-38.374 141.029-37.522 141.029L-37.522 141.326M-36.757 143.142Q-36.757 143.123-36.741 143.068L-33.815 135.431Q-33.749 135.326-33.643 135.326Q-33.565 135.326-33.513 135.379Q-33.460 135.431-33.460 135.510Q-33.460 135.529-33.475 135.584L-36.405 143.221Q-36.468 143.326-36.573 143.326Q-36.647 143.326-36.702 143.271Q-36.757 143.217-36.757 143.142M-29.679 141.494Q-30.261 141.494-30.778 141.267Q-31.296 141.041-31.684 140.642Q-32.073 140.244-32.292 139.719Q-32.511 139.193-32.511 138.623Q-32.511 137.853-32.136 137.176Q-31.761 136.498-31.110 136.096Q-30.460 135.693-29.679 135.693Q-28.905 135.693-28.255 136.096Q-27.604 136.498-27.229 137.176Q-26.854 137.853-26.854 138.623Q-26.854 139.193-27.075 139.724Q-27.296 140.256-27.680 140.648Q-28.065 141.041-28.583 141.267Q-29.100 141.494-29.679 141.494M-31.120 140.424Q-30.956 140.654-30.725 140.830Q-30.495 141.006-30.227 141.101Q-29.960 141.197-29.679 141.197Q-29.261 141.197-28.880 140.986Q-28.499 140.775-28.249 140.424Q-27.718 139.705-27.718 138.486Q-27.718 137.857-27.932 137.279Q-28.147 136.701-28.589 136.338Q-29.030 135.974-29.679 135.974Q-30.331 135.974-30.774 136.338Q-31.218 136.701-31.432 137.279Q-31.647 137.857-31.647 138.486Q-31.647 139.705-31.120 140.424M-25.655 140.861Q-25.655 140.678-25.518 140.541Q-25.382 140.404-25.190 140.404Q-24.999 140.404-24.866 140.537Q-24.733 140.670-24.733 140.861Q-24.733 141.060-24.866 141.193Q-24.999 141.326-25.190 141.326Q-25.382 141.326-25.518 141.189Q-25.655 141.053-25.655 140.861M-25.655 138.334Q-25.655 138.150-25.518 138.013Q-25.382 137.877-25.190 137.877Q-24.999 137.877-24.866 138.010Q-24.733 138.142-24.733 138.334Q-24.733 138.533-24.866 138.666Q-24.999 138.799-25.190 138.799Q-25.382 138.799-25.518 138.662Q-25.655 138.525-25.655 138.334\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(155.7 56.06)\">\u003Cpath d=\"M-19.112 141.404Q-19.593 141.404-20.001 141.160Q-20.409 140.916-20.647 140.502Q-20.886 140.088-20.886 139.599Q-20.886 139.107-20.628 138.691Q-20.370 138.275-19.938 138.037Q-19.507 137.799-19.015 137.799Q-18.394 137.799-17.944 138.236L-17.944 136.607Q-17.944 136.392-18.007 136.297Q-18.069 136.201-18.187 136.180Q-18.304 136.158-18.550 136.158L-18.550 135.861L-17.327 135.775L-17.327 140.584Q-17.327 140.795-17.265 140.890Q-17.202 140.986-17.085 141.008Q-16.968 141.029-16.718 141.029L-16.718 141.326L-17.968 141.404L-17.968 140.920Q-18.433 141.404-19.112 141.404M-19.046 141.150Q-18.706 141.150-18.413 140.959Q-18.120 140.767-17.968 140.471L-17.968 138.638Q-18.116 138.365-18.378 138.209Q-18.640 138.053-18.952 138.053Q-19.577 138.053-19.860 138.500Q-20.144 138.947-20.144 139.607Q-20.144 140.252-19.892 140.701Q-19.640 141.150-19.046 141.150M-14.351 141.326L-16.128 141.326L-16.128 141.029Q-15.855 141.029-15.687 140.982Q-15.519 140.935-15.519 140.767L-15.519 138.631Q-15.519 138.416-15.575 138.320Q-15.632 138.224-15.745 138.203Q-15.858 138.181-16.105 138.181L-16.105 137.885L-14.905 137.799L-14.905 140.767Q-14.905 140.935-14.759 140.982Q-14.612 141.029-14.351 141.029L-14.351 141.326M-15.792 136.404Q-15.792 136.213-15.657 136.082Q-15.522 135.951-15.327 135.951Q-15.206 135.951-15.103 136.013Q-14.999 136.076-14.937 136.180Q-14.874 136.283-14.874 136.404Q-14.874 136.599-15.005 136.734Q-15.136 136.869-15.327 136.869Q-15.526 136.869-15.659 136.736Q-15.792 136.603-15.792 136.404M-13.808 141.318L-13.808 140.096Q-13.808 140.068-13.776 140.037Q-13.745 140.006-13.722 140.006L-13.616 140.006Q-13.546 140.006-13.530 140.068Q-13.468 140.388-13.329 140.629Q-13.190 140.869-12.958 141.010Q-12.726 141.150-12.417 141.150Q-12.179 141.150-11.970 141.090Q-11.761 141.029-11.624 140.881Q-11.487 140.732-11.487 140.486Q-11.487 140.232-11.698 140.066Q-11.909 139.900-12.179 139.846L-12.800 139.732Q-13.206 139.654-13.507 139.398Q-13.808 139.142-13.808 138.767Q-13.808 138.400-13.606 138.178Q-13.405 137.955-13.081 137.857Q-12.757 137.760-12.417 137.760Q-11.952 137.760-11.655 137.967L-11.433 137.783Q-11.409 137.760-11.378 137.760L-11.327 137.760Q-11.296 137.760-11.269 137.787Q-11.241 137.814-11.241 137.846L-11.241 138.830Q-11.241 138.861-11.267 138.890Q-11.292 138.920-11.327 138.920L-11.433 138.920Q-11.468 138.920-11.495 138.892Q-11.522 138.865-11.522 138.830Q-11.522 138.431-11.774 138.211Q-12.026 137.990-12.425 137.990Q-12.780 137.990-13.063 138.113Q-13.347 138.236-13.347 138.541Q-13.347 138.760-13.146 138.892Q-12.944 139.025-12.698 139.068L-12.073 139.181Q-11.644 139.271-11.335 139.568Q-11.026 139.865-11.026 140.279Q-11.026 140.849-11.425 141.127Q-11.823 141.404-12.417 141.404Q-12.968 141.404-13.319 141.068L-13.616 141.381Q-13.640 141.404-13.675 141.404L-13.722 141.404Q-13.745 141.404-13.776 141.373Q-13.808 141.342-13.808 141.318M-8.675 141.326L-10.472 141.326L-10.472 141.029Q-10.202 141.029-10.034 140.984Q-9.866 140.939-9.866 140.767L-9.866 136.607Q-9.866 136.392-9.929 136.297Q-9.991 136.201-10.108 136.180Q-10.226 136.158-10.472 136.158L-10.472 135.861L-9.249 135.775L-9.249 139.541L-8.151 138.654Q-7.944 138.474-7.944 138.326Q-7.944 138.260-7.997 138.217Q-8.050 138.174-8.120 138.174L-8.120 137.877L-6.585 137.877L-6.585 138.174Q-7.116 138.174-7.714 138.654L-8.323 139.150L-7.249 140.549Q-7.112 140.724-7.005 140.832Q-6.897 140.939-6.763 140.984Q-6.628 141.029-6.401 141.029L-6.401 141.326L-8.026 141.326L-8.026 141.029Q-7.784 141.029-7.784 140.877Q-7.784 140.799-7.827 140.728Q-7.870 140.658-7.952 140.549L-8.753 139.502L-9.280 139.928L-9.280 140.767Q-9.280 140.935-9.112 140.982Q-8.944 141.029-8.675 141.029L-8.675 141.326M-5.433 142.732Q-5.433 142.709-5.401 142.662Q-5.108 142.400-4.942 142.033Q-4.776 141.666-4.776 141.279L-4.776 141.221Q-4.905 141.326-5.073 141.326Q-5.265 141.326-5.401 141.193Q-5.538 141.060-5.538 140.861Q-5.538 140.670-5.401 140.537Q-5.265 140.404-5.073 140.404Q-4.772 140.404-4.647 140.674Q-4.522 140.943-4.522 141.279Q-4.522 141.728-4.704 142.142Q-4.886 142.556-5.226 142.853Q-5.249 142.877-5.288 142.877Q-5.335 142.877-5.384 142.832Q-5.433 142.787-5.433 142.732\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(155.7 56.06)\">\u003Cpath d=\"M1.208 141.326L-0.714 141.326L-0.714 141.029Q0.095 141.029 0.095 140.549L0.095 136.205Q-0.163 136.158-0.714 136.158L-0.714 135.861L0.782 135.861Q0.841 135.881 0.852 135.892L3.860 140.080L3.860 136.638Q3.860 136.158 3.055 136.158L3.055 135.861L4.973 135.861L4.973 136.158Q4.165 136.158 4.165 136.638L4.165 141.221Q4.145 141.306 4.071 141.326L3.966 141.326Q3.911 141.314 3.895 141.287L0.399 136.431L0.399 140.549Q0.399 141.029 1.208 141.029L1.208 141.326M8.071 141.326L5.606 141.326L5.606 141.029Q5.938 141.029 6.196 140.982Q6.454 140.935 6.454 140.767L6.454 136.424Q6.454 136.158 5.606 136.158L5.606 135.861L8.071 135.861L8.071 136.158Q7.220 136.158 7.220 136.424L7.220 140.767Q7.220 141.029 8.071 141.029L8.071 141.326M8.837 138.592Q8.837 137.998 9.069 137.467Q9.302 136.935 9.718 136.535Q10.134 136.135 10.667 135.914Q11.200 135.693 11.805 135.693Q12.243 135.693 12.641 135.875Q13.040 136.056 13.348 136.388L13.821 135.724Q13.852 135.693 13.884 135.693L13.930 135.693Q13.958 135.693 13.989 135.724Q14.020 135.756 14.020 135.783L14.020 137.920Q14.020 137.943 13.989 137.974Q13.958 138.006 13.930 138.006L13.813 138.006Q13.786 138.006 13.755 137.974Q13.723 137.943 13.723 137.920Q13.723 137.654 13.581 137.301Q13.438 136.947 13.259 136.709Q13.005 136.377 12.655 136.183Q12.305 135.990 11.899 135.990Q11.395 135.990 10.942 136.209Q10.489 136.428 10.196 136.822Q9.700 137.490 9.700 138.592Q9.700 139.123 9.837 139.590Q9.973 140.056 10.249 140.422Q10.524 140.787 10.944 140.992Q11.364 141.197 11.907 141.197Q12.395 141.197 12.819 140.953Q13.243 140.709 13.491 140.289Q13.739 139.869 13.739 139.373Q13.739 139.338 13.768 139.312Q13.798 139.287 13.829 139.287L13.930 139.287Q13.973 139.287 13.997 139.316Q14.020 139.346 14.020 139.388Q14.020 139.826 13.845 140.215Q13.669 140.603 13.358 140.887Q13.048 141.170 12.637 141.332Q12.227 141.494 11.805 141.494Q11.216 141.494 10.675 141.273Q10.134 141.053 9.718 140.648Q9.302 140.244 9.069 139.715Q8.837 139.185 8.837 138.592M15.325 142.732Q15.325 142.709 15.356 142.662Q15.649 142.400 15.815 142.033Q15.981 141.666 15.981 141.279L15.981 141.221Q15.852 141.326 15.684 141.326Q15.493 141.326 15.356 141.193Q15.220 141.060 15.220 140.861Q15.220 140.670 15.356 140.537Q15.493 140.404 15.684 140.404Q15.985 140.404 16.110 140.674Q16.235 140.943 16.235 141.279Q16.235 141.728 16.054 142.142Q15.872 142.556 15.532 142.853Q15.509 142.877 15.470 142.877Q15.423 142.877 15.374 142.832Q15.325 142.787 15.325 142.732\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(155.7 56.06)\">\u003Cpath d=\"M20.910 140.221L20.910 138.439L20.160 138.439Q19.961 138.416 19.910 138.197L19.910 138.111Q19.961 137.900 20.160 137.877L20.910 137.877L20.910 137.127Q20.961 136.920 21.160 136.892L21.305 136.892Q21.500 136.920 21.551 137.127L21.551 137.877L22.910 137.877Q23.102 137.896 23.160 138.111L23.160 138.197Q23.106 138.416 22.910 138.439L21.551 138.439L21.551 140.189Q21.551 140.806 22.125 140.806Q22.375 140.806 22.539 140.621Q22.703 140.435 22.703 140.189Q22.703 140.096 22.775 140.025Q22.848 139.955 22.949 139.943L23.094 139.943Q23.293 139.967 23.344 140.174L23.344 140.221Q23.344 140.545 23.160 140.808Q22.977 141.072 22.684 141.219Q22.391 141.365 22.070 141.365Q21.559 141.365 21.234 141.055Q20.910 140.744 20.910 140.221M24.574 141.088L24.574 140.998Q24.625 140.791 24.820 140.767L25.859 140.767L25.859 138.439L24.887 138.439Q24.688 138.416 24.637 138.197L24.637 138.111Q24.688 137.900 24.887 137.877L26.254 137.877Q26.449 137.896 26.500 138.111L26.500 140.767L27.414 140.767Q27.609 140.791 27.660 140.998L27.660 141.088Q27.609 141.303 27.414 141.326L24.820 141.326Q24.625 141.303 24.574 141.088M25.606 136.900L25.606 136.846Q25.606 136.674 25.742 136.553Q25.879 136.431 26.055 136.431Q26.227 136.431 26.363 136.553Q26.500 136.674 26.500 136.846L26.500 136.900Q26.500 137.076 26.363 137.197Q26.227 137.318 26.055 137.318Q25.879 137.318 25.742 137.197Q25.606 137.076 25.606 136.900M28.148 141.088L28.148 140.998Q28.199 140.787 28.395 140.767L28.594 140.767L28.594 138.439L28.395 138.439Q28.188 138.416 28.148 138.197L28.148 138.111Q28.199 137.896 28.395 137.877L28.875 137.877Q29.066 137.900 29.125 138.111Q29.445 137.838 29.859 137.838Q30.051 137.838 30.219 137.947Q30.387 138.056 30.461 138.228Q30.637 138.037 30.859 137.937Q31.082 137.838 31.324 137.838Q31.742 137.838 31.897 138.180Q32.051 138.521 32.051 138.990L32.051 140.767L32.250 140.767Q32.461 140.791 32.500 140.998L32.500 141.088Q32.449 141.303 32.250 141.326L31.434 141.326Q31.238 141.303 31.188 141.088L31.188 140.998Q31.238 140.791 31.434 140.767L31.523 140.767L31.523 139.021Q31.523 138.396 31.273 138.396Q30.941 138.396 30.764 138.707Q30.586 139.017 30.586 139.381L30.586 140.767L30.789 140.767Q30.996 140.791 31.035 140.998L31.035 141.088Q30.984 141.303 30.789 141.326L29.973 141.326Q29.773 141.303 29.723 141.088L29.723 140.998Q29.773 140.791 29.973 140.767L30.059 140.767L30.059 139.021Q30.059 138.396 29.813 138.396Q29.481 138.396 29.303 138.709Q29.125 139.021 29.125 139.381L29.125 140.767L29.324 140.767Q29.531 140.791 29.570 140.998L29.570 141.088Q29.520 141.306 29.324 141.326L28.395 141.326Q28.188 141.303 28.148 141.088M35.961 139.838L33.520 139.838Q33.574 140.115 33.772 140.338Q33.969 140.560 34.246 140.683Q34.523 140.806 34.809 140.806Q35.281 140.806 35.504 140.517Q35.512 140.506 35.568 140.400Q35.625 140.295 35.674 140.252Q35.723 140.209 35.816 140.197L35.961 140.197Q36.152 140.217 36.211 140.431L36.211 140.486Q36.145 140.787 35.914 140.984Q35.684 141.181 35.371 141.273Q35.059 141.365 34.754 141.365Q34.270 141.365 33.830 141.137Q33.391 140.908 33.123 140.508Q32.856 140.107 32.856 139.615L32.856 139.556Q32.856 139.088 33.102 138.685Q33.348 138.283 33.756 138.049Q34.164 137.814 34.633 137.814Q35.137 137.814 35.490 138.037Q35.844 138.260 36.027 138.648Q36.211 139.037 36.211 139.541L36.211 139.599Q36.152 139.814 35.961 139.838M33.527 139.287L35.555 139.287Q35.508 138.877 35.270 138.625Q35.031 138.373 34.633 138.373Q34.238 138.373 33.932 138.635Q33.625 138.896 33.527 139.287M36.918 141.088L36.918 140.998Q36.977 140.791 37.168 140.767L37.879 140.767L37.879 138.439L37.168 138.439Q36.973 138.416 36.918 138.197L36.918 138.111Q36.977 137.900 37.168 137.877L38.270 137.877Q38.469 137.896 38.520 138.111L38.520 138.439Q38.781 138.154 39.137 137.996Q39.492 137.838 39.879 137.838Q40.172 137.838 40.406 137.972Q40.641 138.107 40.641 138.373Q40.641 138.541 40.531 138.658Q40.422 138.775 40.254 138.775Q40.102 138.775 39.986 138.664Q39.871 138.553 39.871 138.396Q39.496 138.396 39.182 138.597Q38.867 138.799 38.693 139.133Q38.520 139.467 38.520 139.846L38.520 140.767L39.465 140.767Q39.672 140.791 39.711 140.998L39.711 141.088Q39.672 141.303 39.465 141.326L37.168 141.326Q36.977 141.303 36.918 141.088\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-6.14 158.397v21.985\"\u002F>\u003Cpath stroke=\"none\" d=\"m-6.14 182.382 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M156.04 158.397v21.985\"\u002F>\u003Cpath stroke=\"none\" d=\"m156.04 182.382 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg transform=\"translate(204.125 32.267)\">\u003Cpath d=\"M-37.119 141.326L-39.891 141.326L-39.891 141.046Q-39.170 141.046-39.170 140.837L-39.170 137.036Q-39.170 136.825-39.891 136.825L-39.891 136.544L-37.119 136.544Q-36.634 136.544-36.198 136.739Q-35.762 136.934-35.439 137.276Q-35.116 137.618-34.938 138.058Q-34.761 138.499-34.761 138.981Q-34.761 139.467-34.945 139.890Q-35.130 140.314-35.453 140.636Q-35.776 140.957-36.208 141.141Q-36.640 141.326-37.119 141.326M-38.507 137.036L-38.507 140.837Q-38.507 140.977-38.418 141.012Q-38.329 141.046-38.141 141.046L-37.317 141.046Q-36.692 141.046-36.288 140.784Q-35.885 140.523-35.697 140.056Q-35.509 139.590-35.509 138.981Q-35.509 138.503-35.601 138.110Q-35.694 137.717-35.943 137.419Q-36.182 137.132-36.546 136.978Q-36.910 136.825-37.317 136.825L-38.141 136.825Q-38.329 136.825-38.418 136.859Q-38.507 136.893-38.507 137.036M-32.108 141.326L-33.845 141.326L-33.845 141.046Q-33.123 141.046-33.123 140.646L-33.123 137.036Q-33.123 136.825-33.845 136.825L-33.845 136.544L-32.488 136.544Q-32.392 136.544-32.341 136.643L-30.666 140.618L-28.994 136.643Q-28.947 136.544-28.847 136.544L-27.497 136.544L-27.497 136.825Q-28.219 136.825-28.219 137.036L-28.219 140.837Q-28.219 141.046-27.497 141.046L-27.497 141.326L-29.555 141.326L-29.555 141.046Q-28.834 141.046-28.834 140.837L-28.834 136.825L-30.686 141.227Q-30.734 141.326-30.844 141.326Q-30.956 141.326-31.004 141.227L-32.829 136.896L-32.829 140.646Q-32.829 141.046-32.108 141.046L-32.108 141.326M-25.173 141.326L-26.763 141.326L-26.763 141.046Q-26.120 141.046-25.963 140.646L-24.319 136.431Q-24.284 136.336-24.172 136.336L-24.090 136.336Q-23.980 136.336-23.939 136.431L-22.220 140.837Q-22.152 140.977-21.962 141.012Q-21.772 141.046-21.499 141.046L-21.499 141.326L-23.498 141.326L-23.498 141.046Q-22.934 141.046-22.934 140.871Q-22.934 140.854-22.936 140.847Q-22.938 140.841-22.941 140.837L-23.362 139.771L-25.320 139.771L-25.662 140.646Q-25.676 140.646-25.676 140.724Q-25.676 140.885-25.513 140.965Q-25.351 141.046-25.173 141.046L-25.173 141.326M-24.339 137.252L-25.207 139.491L-23.464 139.491\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(90.314 56.504)\">\u003Cpath d=\"M-40.339 141.088L-40.339 140.998Q-40.288 140.787-40.093 140.767L-39.893 140.767L-39.893 138.439L-40.093 138.439Q-40.300 138.416-40.339 138.197L-40.339 138.111Q-40.288 137.896-40.093 137.877L-39.612 137.877Q-39.421 137.900-39.362 138.111Q-39.042 137.838-38.628 137.838Q-38.436 137.838-38.268 137.947Q-38.100 138.056-38.026 138.228Q-37.850 138.037-37.628 137.937Q-37.405 137.838-37.163 137.838Q-36.745 137.838-36.591 138.180Q-36.436 138.521-36.436 138.990L-36.436 140.767L-36.237 140.767Q-36.026 140.791-35.987 140.998L-35.987 141.088Q-36.038 141.303-36.237 141.326L-37.054 141.326Q-37.249 141.303-37.300 141.088L-37.300 140.998Q-37.249 140.791-37.054 140.767L-36.964 140.767L-36.964 139.021Q-36.964 138.396-37.214 138.396Q-37.546 138.396-37.723 138.707Q-37.901 139.017-37.901 139.381L-37.901 140.767L-37.698 140.767Q-37.491 140.791-37.452 140.998L-37.452 141.088Q-37.503 141.303-37.698 141.326L-38.514 141.326Q-38.714 141.303-38.764 141.088L-38.764 140.998Q-38.714 140.791-38.514 140.767L-38.429 140.767L-38.429 139.021Q-38.429 138.396-38.675 138.396Q-39.007 138.396-39.184 138.709Q-39.362 139.021-39.362 139.381L-39.362 140.767L-39.163 140.767Q-38.956 140.791-38.917 140.998L-38.917 141.088Q-38.968 141.306-39.163 141.326L-40.093 141.326Q-40.300 141.303-40.339 141.088M-33.917 141.365Q-34.389 141.365-34.774 141.121Q-35.159 140.877-35.382 140.467Q-35.604 140.056-35.604 139.599Q-35.604 139.256-35.479 138.933Q-35.354 138.611-35.124 138.357Q-34.893 138.103-34.587 137.959Q-34.280 137.814-33.917 137.814Q-33.554 137.814-33.241 137.961Q-32.929 138.107-32.706 138.353Q-32.483 138.599-32.356 138.920Q-32.229 139.240-32.229 139.599Q-32.229 140.056-32.454 140.469Q-32.679 140.881-33.063 141.123Q-33.448 141.365-33.917 141.365M-33.917 140.806Q-33.452 140.806-33.161 140.412Q-32.870 140.017-32.870 139.533Q-32.870 139.240-33.005 138.972Q-33.139 138.705-33.380 138.539Q-33.620 138.373-33.917 138.373Q-34.221 138.373-34.460 138.539Q-34.698 138.705-34.833 138.972Q-34.968 139.240-34.968 139.533Q-34.968 140.013-34.675 140.410Q-34.382 140.806-33.917 140.806M-29.929 141.365Q-30.393 141.365-30.759 141.115Q-31.124 140.865-31.329 140.461Q-31.534 140.056-31.534 139.599Q-31.534 139.256-31.409 138.935Q-31.284 138.615-31.052 138.365Q-30.819 138.115-30.514 137.976Q-30.210 137.838-29.854 137.838Q-29.343 137.838-28.936 138.158L-28.936 136.998L-29.358 136.998Q-29.569 136.974-29.608 136.760L-29.608 136.670Q-29.569 136.463-29.358 136.439L-28.546 136.439Q-28.346 136.463-28.296 136.670L-28.296 140.767L-27.870 140.767Q-27.663 140.791-27.624 140.998L-27.624 141.088Q-27.663 141.303-27.870 141.326L-28.686 141.326Q-28.886 141.303-28.936 141.088L-28.936 140.959Q-29.132 141.150-29.393 141.258Q-29.655 141.365-29.929 141.365M-29.889 140.806Q-29.530 140.806-29.278 140.537Q-29.026 140.267-28.936 139.892L-28.936 139.060Q-28.995 138.873-29.122 138.722Q-29.249 138.572-29.427 138.484Q-29.604 138.396-29.800 138.396Q-30.108 138.396-30.358 138.566Q-30.608 138.736-30.753 139.021Q-30.897 139.306-30.897 139.607Q-30.897 140.056-30.612 140.431Q-30.327 140.806-29.889 140.806M-26.804 140.471L-26.804 138.439L-27.225 138.439Q-27.432 138.416-27.475 138.197L-27.475 138.111Q-27.429 137.900-27.225 137.877L-26.409 137.877Q-26.214 137.900-26.163 138.111L-26.163 140.439Q-26.163 140.674-25.993 140.740Q-25.823 140.806-25.538 140.806Q-25.331 140.806-25.136 140.730Q-24.940 140.654-24.815 140.504Q-24.690 140.353-24.690 140.142L-24.690 138.439L-25.112 138.439Q-25.323 138.416-25.362 138.197L-25.362 138.111Q-25.323 137.900-25.112 137.877L-24.300 137.877Q-24.100 137.900-24.050 138.111L-24.050 140.767L-23.624 140.767Q-23.417 140.791-23.378 140.998L-23.378 141.088Q-23.417 141.303-23.624 141.326L-24.440 141.326Q-24.639 141.303-24.690 141.103Q-25.093 141.365-25.600 141.365Q-25.835 141.365-26.050 141.324Q-26.264 141.283-26.430 141.181Q-26.596 141.080-26.700 140.902Q-26.804 140.724-26.804 140.471M-22.850 141.088L-22.850 140.998Q-22.800 140.791-22.604 140.767L-21.499 140.767L-21.499 136.998L-22.604 136.998Q-22.800 136.974-22.850 136.760L-22.850 136.670Q-22.800 136.463-22.604 136.439L-21.108 136.439Q-20.917 136.463-20.858 136.670L-20.858 140.767L-19.757 140.767Q-19.557 140.791-19.507 140.998L-19.507 141.088Q-19.557 141.303-19.757 141.326L-22.604 141.326Q-22.800 141.303-22.850 141.088M-15.542 139.838L-17.983 139.838Q-17.929 140.115-17.731 140.338Q-17.534 140.560-17.257 140.683Q-16.979 140.806-16.694 140.806Q-16.221 140.806-15.999 140.517Q-15.991 140.506-15.934 140.400Q-15.878 140.295-15.829 140.252Q-15.780 140.209-15.686 140.197L-15.542 140.197Q-15.350 140.217-15.292 140.431L-15.292 140.486Q-15.358 140.787-15.589 140.984Q-15.819 141.181-16.132 141.273Q-16.444 141.365-16.749 141.365Q-17.233 141.365-17.673 141.137Q-18.112 140.908-18.380 140.508Q-18.647 140.107-18.647 139.615L-18.647 139.556Q-18.647 139.088-18.401 138.685Q-18.155 138.283-17.747 138.049Q-17.339 137.814-16.870 137.814Q-16.366 137.814-16.013 138.037Q-15.659 138.260-15.475 138.648Q-15.292 139.037-15.292 139.541L-15.292 139.599Q-15.350 139.814-15.542 139.838M-17.975 139.287L-15.948 139.287Q-15.995 138.877-16.233 138.625Q-16.471 138.373-16.870 138.373Q-17.264 138.373-17.571 138.635Q-17.878 138.896-17.975 139.287M-14.221 141.127L-14.221 140.213Q-14.194 140.006-13.983 139.982L-13.815 139.982Q-13.651 140.006-13.593 140.166Q-13.389 140.806-12.663 140.806Q-12.456 140.806-12.227 140.771Q-11.999 140.736-11.831 140.621Q-11.663 140.506-11.663 140.303Q-11.663 140.092-11.886 139.978Q-12.108 139.865-12.382 139.822L-13.081 139.709Q-14.221 139.498-14.221 138.775Q-14.221 138.486-14.077 138.297Q-13.932 138.107-13.692 138Q-13.452 137.892-13.196 137.853Q-12.940 137.814-12.663 137.814Q-12.413 137.814-12.220 137.844Q-12.026 137.873-11.862 137.951Q-11.784 137.834-11.655 137.814L-11.577 137.814Q-11.479 137.826-11.417 137.888Q-11.354 137.951-11.343 138.045L-11.343 138.752Q-11.354 138.846-11.417 138.912Q-11.479 138.978-11.577 138.990L-11.745 138.990Q-11.839 138.978-11.905 138.912Q-11.971 138.846-11.983 138.752Q-11.983 138.373-12.679 138.373Q-13.026 138.373-13.345 138.455Q-13.663 138.537-13.663 138.783Q-13.663 139.049-12.991 139.158L-12.288 139.279Q-11.804 139.361-11.454 139.609Q-11.104 139.857-11.104 140.303Q-11.104 140.693-11.341 140.935Q-11.577 141.178-11.927 141.271Q-12.276 141.365-12.663 141.365Q-13.241 141.365-13.639 141.111Q-13.710 141.236-13.759 141.293Q-13.807 141.349-13.913 141.365L-13.983 141.365Q-14.198 141.342-14.221 141.127\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(90.314 56.504)\">\u003Cpath d=\"M-4.162 141.404Q-4.803 141.404-5.189 141.027Q-5.576 140.650-5.734 140.078Q-5.892 139.506-5.892 138.877Q-5.892 138.412-5.732 137.957Q-5.572 137.502-5.283 137.142Q-4.994 136.783-4.586 136.570Q-4.178 136.357-3.689 136.357Q-3.416 136.357-3.166 136.455Q-2.916 136.553-2.763 136.748Q-2.611 136.943-2.611 137.236Q-2.611 137.412-2.724 137.533Q-2.838 137.654-3.010 137.654Q-3.185 137.654-3.303 137.541Q-3.420 137.428-3.420 137.256Q-3.420 137.135-3.346 137.013Q-3.455 136.920-3.689 136.920Q-4.107 136.920-4.443 137.160Q-4.779 137.400-4.984 137.787Q-5.189 138.174-5.236 138.572Q-4.998 138.373-4.689 138.265Q-4.381 138.158-4.060 138.158Q-3.721 138.158-3.422 138.283Q-3.123 138.408-2.904 138.627Q-2.685 138.846-2.560 139.144Q-2.435 139.443-2.435 139.783Q-2.435 140.131-2.574 140.431Q-2.713 140.732-2.953 140.949Q-3.193 141.166-3.508 141.285Q-3.822 141.404-4.162 141.404M-5.146 139.861Q-5.084 140.123-4.955 140.347Q-4.826 140.572-4.627 140.709Q-4.428 140.846-4.162 140.846Q-3.709 140.846-3.392 140.539Q-3.076 140.232-3.076 139.783Q-3.076 139.502-3.211 139.256Q-3.346 139.010-3.582 138.867Q-3.818 138.724-4.115 138.724Q-4.506 138.724-4.838 138.951Q-5.170 139.178-5.170 139.549Q-5.170 139.588-5.154 139.666Q-5.138 139.744-5.138 139.783Q-5.138 139.810-5.140 139.826Q-5.142 139.842-5.146 139.861M1.459 139.189L-1.283 139.189Q-1.408 139.178-1.494 139.092Q-1.580 139.006-1.580 138.877Q-1.580 138.748-1.494 138.666Q-1.408 138.584-1.283 138.572L1.459 138.572Q1.584 138.584 1.666 138.666Q1.748 138.748 1.748 138.877Q1.748 139.006 1.666 139.092Q1.584 139.178 1.459 139.189M3.545 141.111L3.545 141.053Q3.545 140.510 3.651 139.963Q3.756 139.416 3.961 138.892Q4.166 138.369 4.463 137.890Q4.760 137.412 5.139 136.998L3.201 136.998L3.201 137.135Q3.151 137.349 2.951 137.373L2.811 137.373Q2.612 137.349 2.561 137.135L2.561 136.541Q2.612 136.330 2.811 136.310L2.951 136.310Q3.088 136.322 3.162 136.439L5.850 136.439Q6.045 136.463 6.096 136.670L6.096 136.760Q6.084 136.849 6.041 136.900Q5.779 137.158 5.549 137.424Q5.319 137.689 5.156 137.922Q4.994 138.154 4.836 138.453Q4.678 138.752 4.545 139.103Q4.369 139.576 4.278 140.092Q4.186 140.607 4.186 141.111Q4.174 141.236 4.088 141.314Q4.002 141.392 3.881 141.404Q3.744 141.404 3.651 141.326Q3.557 141.248 3.545 141.111\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-dasharray:3.0,3.0\">\u003Cpath fill=\"none\" d=\"M204.61 195.386h85.158V-26.545h-106.12\"\u002F>\u003Cpath stroke=\"none\" d=\"m181.648-26.545 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"rotate(90 178.831 258.91)\">\u003Cpath d=\"M-39.667 141.088L-39.667 140.998Q-39.616 140.791-39.421 140.767L-38.382 140.767L-38.382 138.439L-39.354 138.439Q-39.554 138.416-39.604 138.197L-39.604 138.111Q-39.554 137.900-39.354 137.877L-37.987 137.877Q-37.792 137.896-37.741 138.111L-37.741 140.767L-36.827 140.767Q-36.632 140.791-36.581 140.998L-36.581 141.088Q-36.632 141.303-36.827 141.326L-39.421 141.326Q-39.616 141.303-39.667 141.088M-38.636 136.900L-38.636 136.846Q-38.636 136.674-38.499 136.553Q-38.362 136.431-38.186 136.431Q-38.014 136.431-37.878 136.553Q-37.741 136.674-37.741 136.846L-37.741 136.900Q-37.741 137.076-37.878 137.197Q-38.014 137.318-38.186 137.318Q-38.362 137.318-38.499 137.197Q-38.636 137.076-38.636 136.900M-35.968 141.088L-35.968 140.998Q-35.925 140.791-35.718 140.767L-35.296 140.767L-35.296 138.439L-35.718 138.439Q-35.925 138.416-35.968 138.197L-35.968 138.111Q-35.921 137.900-35.718 137.877L-34.901 137.877Q-34.706 137.900-34.655 138.111L-34.655 138.197L-34.663 138.221Q-34.436 138.041-34.163 137.939Q-33.889 137.838-33.596 137.838Q-33.249 137.838-33.011 137.978Q-32.772 138.119-32.657 138.377Q-32.542 138.635-32.542 138.990L-32.542 140.767L-32.116 140.767Q-31.909 140.791-31.870 140.998L-31.870 141.088Q-31.909 141.303-32.116 141.326L-33.511 141.326Q-33.706 141.303-33.757 141.088L-33.757 140.998Q-33.706 140.787-33.511 140.767L-33.182 140.767L-33.182 139.021Q-33.182 138.713-33.272 138.555Q-33.362 138.396-33.655 138.396Q-33.925 138.396-34.153 138.527Q-34.382 138.658-34.518 138.887Q-34.655 139.115-34.655 139.381L-34.655 140.767L-34.229 140.767Q-34.022 140.791-33.983 140.998L-33.983 141.088Q-34.022 141.303-34.229 141.326L-35.718 141.326Q-35.925 141.303-35.968 141.088M-30.593 140.221L-30.593 138.439L-31.343 138.439Q-31.542 138.416-31.593 138.197L-31.593 138.111Q-31.542 137.900-31.343 137.877L-30.593 137.877L-30.593 137.127Q-30.542 136.920-30.343 136.892L-30.198 136.892Q-30.003 136.920-29.952 137.127L-29.952 137.877L-28.593 137.877Q-28.401 137.896-28.343 138.111L-28.343 138.197Q-28.397 138.416-28.593 138.439L-29.952 138.439L-29.952 140.189Q-29.952 140.806-29.378 140.806Q-29.128 140.806-28.964 140.621Q-28.800 140.435-28.800 140.189Q-28.800 140.096-28.727 140.025Q-28.655 139.955-28.554 139.943L-28.409 139.943Q-28.210 139.967-28.159 140.174L-28.159 140.221Q-28.159 140.545-28.343 140.808Q-28.526 141.072-28.819 141.219Q-29.112 141.365-29.432 141.365Q-29.944 141.365-30.268 141.055Q-30.593 140.744-30.593 140.221M-24.034 139.838L-26.475 139.838Q-26.421 140.115-26.223 140.338Q-26.026 140.560-25.749 140.683Q-25.471 140.806-25.186 140.806Q-24.714 140.806-24.491 140.517Q-24.483 140.506-24.427 140.400Q-24.370 140.295-24.321 140.252Q-24.272 140.209-24.179 140.197L-24.034 140.197Q-23.843 140.217-23.784 140.431L-23.784 140.486Q-23.850 140.787-24.081 140.984Q-24.311 141.181-24.624 141.273Q-24.936 141.365-25.241 141.365Q-25.725 141.365-26.165 141.137Q-26.604 140.908-26.872 140.508Q-27.139 140.107-27.139 139.615L-27.139 139.556Q-27.139 139.088-26.893 138.685Q-26.647 138.283-26.239 138.049Q-25.831 137.814-25.362 137.814Q-24.858 137.814-24.505 138.037Q-24.151 138.260-23.968 138.648Q-23.784 139.037-23.784 139.541L-23.784 139.599Q-23.843 139.814-24.034 139.838M-26.468 139.287L-24.440 139.287Q-24.487 138.877-24.725 138.625Q-24.964 138.373-25.362 138.373Q-25.757 138.373-26.063 138.635Q-26.370 138.896-26.468 139.287M-23.077 141.088L-23.077 140.998Q-23.018 140.791-22.827 140.767L-22.116 140.767L-22.116 138.439L-22.827 138.439Q-23.022 138.416-23.077 138.197L-23.077 138.111Q-23.018 137.900-22.827 137.877L-21.725 137.877Q-21.526 137.896-21.475 138.111L-21.475 138.439Q-21.214 138.154-20.858 137.996Q-20.503 137.838-20.116 137.838Q-19.823 137.838-19.589 137.972Q-19.354 138.107-19.354 138.373Q-19.354 138.541-19.464 138.658Q-19.573 138.775-19.741 138.775Q-19.893 138.775-20.009 138.664Q-20.124 138.553-20.124 138.396Q-20.499 138.396-20.813 138.597Q-21.128 138.799-21.302 139.133Q-21.475 139.467-21.475 139.846L-21.475 140.767L-20.530 140.767Q-20.323 140.791-20.284 140.998L-20.284 141.088Q-20.323 141.303-20.530 141.326L-22.827 141.326Q-23.018 141.303-23.077 141.088M-18.831 141.088L-18.831 140.998Q-18.772 140.791-18.581 140.767L-17.870 140.767L-17.870 138.439L-18.581 138.439Q-18.776 138.416-18.831 138.197L-18.831 138.111Q-18.772 137.900-18.581 137.877L-17.479 137.877Q-17.280 137.896-17.229 138.111L-17.229 138.439Q-16.968 138.154-16.612 137.996Q-16.257 137.838-15.870 137.838Q-15.577 137.838-15.343 137.972Q-15.108 138.107-15.108 138.373Q-15.108 138.541-15.218 138.658Q-15.327 138.775-15.495 138.775Q-15.647 138.775-15.763 138.664Q-15.878 138.553-15.878 138.396Q-16.253 138.396-16.567 138.597Q-16.882 138.799-17.055 139.133Q-17.229 139.467-17.229 139.846L-17.229 140.767L-16.284 140.767Q-16.077 140.791-16.038 140.998L-16.038 141.088Q-16.077 141.303-16.284 141.326L-18.581 141.326Q-18.772 141.303-18.831 141.088M-14.065 140.471L-14.065 138.439L-14.487 138.439Q-14.694 138.416-14.737 138.197L-14.737 138.111Q-14.690 137.900-14.487 137.877L-13.671 137.877Q-13.475 137.900-13.425 138.111L-13.425 140.439Q-13.425 140.674-13.255 140.740Q-13.085 140.806-12.800 140.806Q-12.593 140.806-12.397 140.730Q-12.202 140.654-12.077 140.504Q-11.952 140.353-11.952 140.142L-11.952 138.439L-12.374 138.439Q-12.585 138.416-12.624 138.197L-12.624 138.111Q-12.585 137.900-12.374 137.877L-11.561 137.877Q-11.362 137.900-11.311 138.111L-11.311 140.767L-10.886 140.767Q-10.679 140.791-10.639 140.998L-10.639 141.088Q-10.679 141.303-10.886 141.326L-11.702 141.326Q-11.901 141.303-11.952 141.103Q-12.354 141.365-12.862 141.365Q-13.096 141.365-13.311 141.324Q-13.526 141.283-13.692 141.181Q-13.858 141.080-13.962 140.902Q-14.065 140.724-14.065 140.471M-10.491 142.869L-10.491 142.783Q-10.448 142.564-10.241 142.541L-9.819 142.541L-9.819 138.439L-10.241 138.439Q-10.448 138.416-10.491 138.197L-10.491 138.111Q-10.444 137.900-10.241 137.877L-9.425 137.877Q-9.229 137.896-9.179 138.111L-9.179 138.181Q-8.968 138.013-8.704 137.926Q-8.440 137.838-8.171 137.838Q-7.831 137.838-7.534 137.982Q-7.237 138.127-7.022 138.379Q-6.807 138.631-6.692 138.943Q-6.577 139.256-6.577 139.599Q-6.577 140.064-6.804 140.474Q-7.030 140.885-7.417 141.125Q-7.804 141.365-8.272 141.365Q-8.792 141.365-9.179 140.998L-9.179 142.541L-8.753 142.541Q-8.546 142.564-8.507 142.783L-8.507 142.869Q-8.546 143.080-8.753 143.103L-10.241 143.103Q-10.444 143.080-10.491 142.869M-8.315 140.806Q-8.007 140.806-7.757 140.637Q-7.507 140.467-7.362 140.185Q-7.218 139.904-7.218 139.599Q-7.218 139.310-7.343 139.031Q-7.468 138.752-7.700 138.574Q-7.932 138.396-8.233 138.396Q-8.554 138.396-8.815 138.582Q-9.077 138.767-9.179 139.068L-9.179 139.920Q-9.089 140.287-8.868 140.547Q-8.647 140.806-8.315 140.806M-5.116 140.221L-5.116 138.439L-5.866 138.439Q-6.065 138.416-6.116 138.197L-6.116 138.111Q-6.065 137.900-5.866 137.877L-5.116 137.877L-5.116 137.127Q-5.065 136.920-4.866 136.892L-4.721 136.892Q-4.526 136.920-4.475 137.127L-4.475 137.877L-3.116 137.877Q-2.925 137.896-2.866 138.111L-2.866 138.197Q-2.921 138.416-3.116 138.439L-4.475 138.439L-4.475 140.189Q-4.475 140.806-3.901 140.806Q-3.651 140.806-3.487 140.621Q-3.323 140.435-3.323 140.189Q-3.323 140.096-3.251 140.025Q-3.179 139.955-3.077 139.943L-2.932 139.943Q-2.733 139.967-2.682 140.174L-2.682 140.221Q-2.682 140.545-2.866 140.808Q-3.050 141.072-3.343 141.219Q-3.636 141.365-3.956 141.365Q-4.468 141.365-4.792 141.055Q-5.116 140.744-5.116 140.221M-1.483 141.127L-1.483 140.213Q-1.456 140.006-1.245 139.982L-1.077 139.982Q-0.913 140.006-0.854 140.166Q-0.651 140.806 0.075 140.806Q0.282 140.806 0.511 140.771Q0.739 140.736 0.907 140.621Q1.075 140.506 1.075 140.303Q1.075 140.092 0.853 139.978Q0.630 139.865 0.357 139.822L-0.343 139.709Q-1.483 139.498-1.483 138.775Q-1.483 138.486-1.339 138.297Q-1.194 138.107-0.954 138Q-0.714 137.892-0.458 137.853Q-0.202 137.814 0.075 137.814Q0.325 137.814 0.519 137.844Q0.712 137.873 0.876 137.951Q0.954 137.834 1.083 137.814L1.161 137.814Q1.259 137.826 1.321 137.888Q1.384 137.951 1.396 138.045L1.396 138.752Q1.384 138.846 1.321 138.912Q1.259 138.978 1.161 138.990L0.993 138.990Q0.900 138.978 0.833 138.912Q0.767 138.846 0.755 138.752Q0.755 138.373 0.060 138.373Q-0.288 138.373-0.606 138.455Q-0.925 138.537-0.925 138.783Q-0.925 139.049-0.253 139.158L0.450 139.279Q0.935 139.361 1.284 139.609Q1.634 139.857 1.634 140.303Q1.634 140.693 1.398 140.935Q1.161 141.178 0.812 141.271Q0.462 141.365 0.075 141.365Q-0.503 141.365-0.901 141.111Q-0.971 141.236-1.020 141.293Q-1.069 141.349-1.175 141.365L-1.245 141.365Q-1.460 141.342-1.483 141.127\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(90 178.831 258.91)\">\u003Cpath d=\"M9.580 141.967Q9.049 141.658 8.649 141.170Q8.248 140.681 8.037 140.088Q7.826 139.494 7.826 138.877Q7.826 138.260 8.035 137.672Q8.244 137.084 8.641 136.603Q9.037 136.123 9.572 135.799Q9.643 135.775 9.674 135.775L9.764 135.775Q9.862 135.787 9.928 135.853Q9.994 135.920 9.994 136.021Q9.994 136.166 9.893 136.228Q9.444 136.517 9.117 136.933Q8.791 137.349 8.629 137.842Q8.467 138.334 8.467 138.877Q8.467 139.283 8.563 139.670Q8.658 140.056 8.836 140.392Q9.014 140.728 9.274 141.012Q9.533 141.295 9.881 141.525Q9.994 141.603 9.994 141.740Q9.994 141.838 9.928 141.908Q9.862 141.978 9.764 141.990L9.674 141.990Q9.615 141.990 9.580 141.967M10.658 141.088L10.658 140.998Q10.709 140.787 10.904 140.767L11.104 140.767L11.104 138.439L10.904 138.439Q10.697 138.416 10.658 138.197L10.658 138.111Q10.709 137.896 10.904 137.877L11.385 137.877Q11.576 137.900 11.635 138.111Q11.955 137.838 12.369 137.838Q12.561 137.838 12.729 137.947Q12.897 138.056 12.971 138.228Q13.147 138.037 13.369 137.937Q13.592 137.838 13.834 137.838Q14.252 137.838 14.406 138.180Q14.561 138.521 14.561 138.990L14.561 140.767L14.760 140.767Q14.971 140.791 15.010 140.998L15.010 141.088Q14.959 141.303 14.760 141.326L13.944 141.326Q13.748 141.303 13.697 141.088L13.697 140.998Q13.748 140.791 13.944 140.767L14.033 140.767L14.033 139.021Q14.033 138.396 13.783 138.396Q13.451 138.396 13.274 138.707Q13.096 139.017 13.096 139.381L13.096 140.767L13.299 140.767Q13.506 140.791 13.545 140.998L13.545 141.088Q13.494 141.303 13.299 141.326L12.483 141.326Q12.283 141.303 12.233 141.088L12.233 140.998Q12.283 140.791 12.483 140.767L12.569 140.767L12.569 139.021Q12.569 138.396 12.322 138.396Q11.990 138.396 11.813 138.709Q11.635 139.021 11.635 139.381L11.635 140.767L11.834 140.767Q12.041 140.791 12.080 140.998L12.080 141.088Q12.029 141.306 11.834 141.326L10.904 141.326Q10.697 141.303 10.658 141.088M17.080 141.365Q16.608 141.365 16.223 141.121Q15.838 140.877 15.615 140.467Q15.393 140.056 15.393 139.599Q15.393 139.256 15.518 138.933Q15.643 138.611 15.873 138.357Q16.104 138.103 16.410 137.959Q16.717 137.814 17.080 137.814Q17.444 137.814 17.756 137.961Q18.069 138.107 18.291 138.353Q18.514 138.599 18.641 138.920Q18.768 139.240 18.768 139.599Q18.768 140.056 18.543 140.469Q18.319 140.881 17.934 141.123Q17.549 141.365 17.080 141.365M17.080 140.806Q17.545 140.806 17.836 140.412Q18.127 140.017 18.127 139.533Q18.127 139.240 17.992 138.972Q17.858 138.705 17.617 138.539Q17.377 138.373 17.080 138.373Q16.776 138.373 16.537 138.539Q16.299 138.705 16.164 138.972Q16.029 139.240 16.029 139.533Q16.029 140.013 16.322 140.410Q16.615 140.806 17.080 140.806M21.069 141.365Q20.604 141.365 20.238 141.115Q19.873 140.865 19.668 140.461Q19.463 140.056 19.463 139.599Q19.463 139.256 19.588 138.935Q19.713 138.615 19.946 138.365Q20.178 138.115 20.483 137.976Q20.787 137.838 21.143 137.838Q21.654 137.838 22.061 138.158L22.061 136.998L21.639 136.998Q21.428 136.974 21.389 136.760L21.389 136.670Q21.428 136.463 21.639 136.439L22.451 136.439Q22.651 136.463 22.701 136.670L22.701 140.767L23.127 140.767Q23.334 140.791 23.373 140.998L23.373 141.088Q23.334 141.303 23.127 141.326L22.311 141.326Q22.112 141.303 22.061 141.088L22.061 140.959Q21.865 141.150 21.604 141.258Q21.342 141.365 21.069 141.365M21.108 140.806Q21.467 140.806 21.719 140.537Q21.971 140.267 22.061 139.892L22.061 139.060Q22.002 138.873 21.875 138.722Q21.748 138.572 21.571 138.484Q21.393 138.396 21.197 138.396Q20.889 138.396 20.639 138.566Q20.389 138.736 20.244 139.021Q20.100 139.306 20.100 139.607Q20.100 140.056 20.385 140.431Q20.670 140.806 21.108 140.806M24.194 140.471L24.194 138.439L23.772 138.439Q23.565 138.416 23.522 138.197L23.522 138.111Q23.569 137.900 23.772 137.877L24.588 137.877Q24.783 137.900 24.834 138.111L24.834 140.439Q24.834 140.674 25.004 140.740Q25.174 140.806 25.459 140.806Q25.666 140.806 25.862 140.730Q26.057 140.654 26.182 140.504Q26.307 140.353 26.307 140.142L26.307 138.439L25.885 138.439Q25.674 138.416 25.635 138.197L25.635 138.111Q25.674 137.900 25.885 137.877L26.697 137.877Q26.897 137.900 26.947 138.111L26.947 140.767L27.373 140.767Q27.580 140.791 27.619 140.998L27.619 141.088Q27.580 141.303 27.373 141.326L26.557 141.326Q26.358 141.303 26.307 141.103Q25.904 141.365 25.397 141.365Q25.162 141.365 24.947 141.324Q24.733 141.283 24.567 141.181Q24.401 141.080 24.297 140.902Q24.194 140.724 24.194 140.471M28.147 141.088L28.147 140.998Q28.197 140.791 28.393 140.767L29.498 140.767L29.498 136.998L28.393 136.998Q28.197 136.974 28.147 136.760L28.147 136.670Q28.197 136.463 28.393 136.439L29.889 136.439Q30.080 136.463 30.139 136.670L30.139 140.767L31.240 140.767Q31.440 140.791 31.490 140.998L31.490 141.088Q31.440 141.303 31.240 141.326L28.393 141.326Q28.197 141.303 28.147 141.088M35.455 139.838L33.014 139.838Q33.069 140.115 33.266 140.338Q33.463 140.560 33.740 140.683Q34.018 140.806 34.303 140.806Q34.776 140.806 34.998 140.517Q35.006 140.506 35.063 140.400Q35.119 140.295 35.168 140.252Q35.217 140.209 35.311 140.197L35.455 140.197Q35.647 140.217 35.705 140.431L35.705 140.486Q35.639 140.787 35.408 140.984Q35.178 141.181 34.865 141.273Q34.553 141.365 34.248 141.365Q33.764 141.365 33.324 141.137Q32.885 140.908 32.617 140.508Q32.350 140.107 32.350 139.615L32.350 139.556Q32.350 139.088 32.596 138.685Q32.842 138.283 33.250 138.049Q33.658 137.814 34.127 137.814Q34.631 137.814 34.985 138.037Q35.338 138.260 35.522 138.648Q35.705 139.037 35.705 139.541L35.705 139.599Q35.647 139.814 35.455 139.838M33.022 139.287L35.049 139.287Q35.002 138.877 34.764 138.625Q34.526 138.373 34.127 138.373Q33.733 138.373 33.426 138.635Q33.119 138.896 33.022 139.287\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(90 178.831 258.91)\">\u003Cpath d=\"M40.819 139.912Q40.819 139.627 40.975 139.373Q41.131 139.119 41.381 138.945Q41.631 138.771 41.916 138.685Q41.678 138.611 41.451 138.469Q41.225 138.326 41.082 138.117Q40.940 137.908 40.940 137.662Q40.940 137.263 41.186 136.969Q41.432 136.674 41.815 136.515Q42.197 136.357 42.588 136.357Q42.979 136.357 43.362 136.515Q43.744 136.674 43.990 136.972Q44.237 137.271 44.237 137.662Q44.237 137.908 44.094 138.115Q43.951 138.322 43.725 138.467Q43.498 138.611 43.260 138.685Q43.713 138.822 44.033 139.148Q44.354 139.474 44.354 139.912Q44.354 140.349 44.096 140.693Q43.838 141.037 43.428 141.221Q43.018 141.404 42.588 141.404Q42.158 141.404 41.748 141.222Q41.338 141.041 41.078 140.697Q40.819 140.353 40.819 139.912M41.459 139.912Q41.459 140.185 41.625 140.400Q41.791 140.615 42.053 140.730Q42.315 140.846 42.588 140.846Q42.862 140.846 43.121 140.730Q43.381 140.615 43.547 140.398Q43.713 140.181 43.713 139.912Q43.713 139.635 43.547 139.418Q43.381 139.201 43.121 139.084Q42.862 138.967 42.588 138.967Q42.315 138.967 42.053 139.084Q41.791 139.201 41.625 139.416Q41.459 139.631 41.459 139.912M41.580 137.662Q41.580 137.900 41.737 138.068Q41.893 138.236 42.129 138.320Q42.365 138.404 42.588 138.404Q42.807 138.404 43.045 138.320Q43.283 138.236 43.440 138.066Q43.596 137.896 43.596 137.662Q43.596 137.428 43.440 137.258Q43.283 137.088 43.045 137.004Q42.807 136.920 42.588 136.920Q42.365 136.920 42.129 137.004Q41.893 137.088 41.737 137.256Q41.580 137.424 41.580 137.662M45.752 141.990L45.666 141.990Q45.561 141.978 45.492 141.906Q45.424 141.834 45.424 141.740Q45.424 141.599 45.529 141.533Q45.865 141.318 46.135 141.029Q46.404 140.740 46.588 140.392Q46.772 140.045 46.862 139.666Q46.951 139.287 46.951 138.877Q46.951 138.338 46.787 137.846Q46.623 137.353 46.305 136.939Q45.987 136.525 45.545 136.236Q45.424 136.154 45.424 136.021Q45.424 135.924 45.492 135.855Q45.561 135.787 45.666 135.775L45.752 135.775Q45.807 135.775 45.842 135.799Q46.229 136.021 46.569 136.369Q46.908 136.717 47.129 137.111Q47.350 137.506 47.471 137.951Q47.592 138.396 47.592 138.877Q47.592 139.361 47.471 139.812Q47.350 140.263 47.125 140.660Q46.901 141.056 46.576 141.390Q46.252 141.724 45.850 141.967Q45.779 141.990 45.752 141.990\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-dasharray:3.0,3.0\">\u003Cpath fill=\"none\" d=\"M190.184 64.503h85.358V-9.474h-85.358Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(244.459 -102.578)\">\u003Cpath d=\"M-23.404 119.592Q-23.404 118.998-23.172 118.467Q-22.939 117.935-22.523 117.535Q-22.107 117.135-21.574 116.914Q-21.041 116.693-20.436 116.693Q-19.998 116.693-19.600 116.875Q-19.201 117.056-18.893 117.388L-18.420 116.724Q-18.389 116.693-18.357 116.693L-18.311 116.693Q-18.283 116.693-18.252 116.724Q-18.221 116.756-18.221 116.783L-18.221 118.920Q-18.221 118.943-18.252 118.974Q-18.283 119.006-18.311 119.006L-18.428 119.006Q-18.455 119.006-18.486 118.974Q-18.518 118.943-18.518 118.920Q-18.518 118.654-18.660 118.301Q-18.803 117.947-18.982 117.709Q-19.236 117.377-19.586 117.183Q-19.936 116.990-20.342 116.990Q-20.846 116.990-21.299 117.209Q-21.752 117.428-22.045 117.822Q-22.541 118.490-22.541 119.592Q-22.541 120.123-22.404 120.590Q-22.268 121.056-21.992 121.422Q-21.717 121.787-21.297 121.992Q-20.877 122.197-20.334 122.197Q-19.846 122.197-19.422 121.953Q-18.998 121.709-18.750 121.289Q-18.502 120.869-18.502 120.373Q-18.502 120.338-18.473 120.312Q-18.443 120.287-18.412 120.287L-18.311 120.287Q-18.268 120.287-18.244 120.316Q-18.221 120.346-18.221 120.388Q-18.221 120.826-18.397 121.215Q-18.572 121.603-18.883 121.887Q-19.193 122.170-19.604 122.332Q-20.014 122.494-20.436 122.494Q-21.025 122.494-21.566 122.273Q-22.107 122.053-22.523 121.648Q-22.939 121.244-23.172 120.715Q-23.404 120.185-23.404 119.592M-17.502 120.631Q-17.502 120.127-17.246 119.695Q-16.990 119.263-16.555 119.012Q-16.119 118.760-15.619 118.760Q-15.232 118.760-14.891 118.904Q-14.549 119.049-14.287 119.310Q-14.025 119.572-13.883 119.908Q-13.740 120.244-13.740 120.631Q-13.740 121.123-14.004 121.533Q-14.268 121.943-14.697 122.174Q-15.127 122.404-15.619 122.404Q-16.111 122.404-16.545 122.172Q-16.979 121.939-17.240 121.531Q-17.502 121.123-17.502 120.631M-15.619 122.127Q-15.162 122.127-14.910 121.904Q-14.658 121.681-14.570 121.330Q-14.482 120.978-14.482 120.533Q-14.482 120.103-14.576 119.765Q-14.670 119.428-14.924 119.221Q-15.178 119.013-15.619 119.013Q-16.268 119.013-16.512 119.430Q-16.756 119.846-16.756 120.533Q-16.756 120.978-16.668 121.330Q-16.580 121.681-16.328 121.904Q-16.076 122.127-15.619 122.127M-11.248 122.326L-13.229 122.326L-13.229 122.029Q-12.959 122.029-12.791 121.984Q-12.623 121.939-12.623 121.767L-12.623 119.631Q-12.623 119.416-12.686 119.320Q-12.748 119.224-12.865 119.203Q-12.982 119.181-13.229 119.181L-13.229 118.885L-12.061 118.799L-12.061 119.584Q-11.982 119.373-11.830 119.187Q-11.678 119.002-11.479 118.900Q-11.279 118.799-11.053 118.799Q-10.807 118.799-10.615 118.943Q-10.424 119.088-10.424 119.318Q-10.424 119.474-10.529 119.584Q-10.635 119.693-10.791 119.693Q-10.947 119.693-11.057 119.584Q-11.166 119.474-11.166 119.318Q-11.166 119.158-11.061 119.053Q-11.385 119.053-11.600 119.281Q-11.814 119.510-11.910 119.849Q-12.006 120.189-12.006 120.494L-12.006 121.767Q-12.006 121.935-11.779 121.982Q-11.553 122.029-11.248 122.029L-11.248 122.326M-9.943 120.572Q-9.943 120.092-9.711 119.676Q-9.479 119.260-9.068 119.010Q-8.658 118.760-8.182 118.760Q-7.451 118.760-7.053 119.201Q-6.654 119.642-6.654 120.373Q-6.654 120.478-6.748 120.502L-9.197 120.502L-9.197 120.572Q-9.197 120.982-9.076 121.338Q-8.955 121.693-8.684 121.910Q-8.412 122.127-7.982 122.127Q-7.619 122.127-7.322 121.898Q-7.025 121.670-6.924 121.318Q-6.916 121.271-6.830 121.256L-6.748 121.256Q-6.654 121.283-6.654 121.365Q-6.654 121.373-6.662 121.404Q-6.725 121.631-6.863 121.814Q-7.002 121.998-7.193 122.131Q-7.385 122.263-7.604 122.334Q-7.822 122.404-8.061 122.404Q-8.432 122.404-8.770 122.267Q-9.107 122.131-9.375 121.879Q-9.643 121.627-9.793 121.287Q-9.943 120.947-9.943 120.572M-9.189 120.263L-7.229 120.263Q-7.229 119.959-7.330 119.668Q-7.432 119.377-7.648 119.195Q-7.865 119.013-8.182 119.013Q-8.482 119.013-8.713 119.201Q-8.943 119.388-9.066 119.680Q-9.189 119.971-9.189 120.263\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(244.459 -102.578)\">\u003Cpath d=\"M0.029 122.326L-2.764 122.326L-2.764 122.029Q-1.702 122.029-1.702 121.767L-1.702 117.599Q-2.131 117.814-2.811 117.814L-2.811 117.517Q-1.792 117.517-1.276 117.006L-1.131 117.006Q-1.057 117.025-1.038 117.103L-1.038 121.767Q-1.038 122.029 0.029 122.029\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(244.459 -102.578)\">\u003Cpath d=\"M-37.667 133.818Q-38.280 133.361-38.682 132.726Q-39.085 132.092-39.280 131.346Q-39.475 130.599-39.475 129.826Q-39.475 129.053-39.280 128.306Q-39.085 127.560-38.682 126.926Q-38.280 126.291-37.667 125.834Q-37.655 125.830-37.647 125.828Q-37.639 125.826-37.628 125.826L-37.550 125.826Q-37.511 125.826-37.485 125.853Q-37.460 125.881-37.460 125.924Q-37.460 125.974-37.491 125.994Q-37.999 126.447-38.321 127.070Q-38.643 127.693-38.784 128.388Q-38.925 129.084-38.925 129.826Q-38.925 130.560-38.786 131.260Q-38.647 131.959-38.323 132.584Q-37.999 133.209-37.491 133.658Q-37.460 133.678-37.460 133.728Q-37.460 133.771-37.485 133.799Q-37.511 133.826-37.550 133.826L-37.628 133.826Q-37.636 133.822-37.645 133.820Q-37.655 133.818-37.667 133.818M-36.741 130.131Q-36.741 129.627-36.485 129.195Q-36.229 128.763-35.794 128.512Q-35.358 128.260-34.858 128.260Q-34.471 128.260-34.130 128.404Q-33.788 128.549-33.526 128.810Q-33.264 129.072-33.122 129.408Q-32.979 129.744-32.979 130.131Q-32.979 130.623-33.243 131.033Q-33.507 131.443-33.936 131.674Q-34.366 131.904-34.858 131.904Q-35.350 131.904-35.784 131.672Q-36.218 131.439-36.479 131.031Q-36.741 130.623-36.741 130.131M-34.858 131.627Q-34.401 131.627-34.149 131.404Q-33.897 131.181-33.809 130.830Q-33.721 130.478-33.721 130.033Q-33.721 129.603-33.815 129.265Q-33.909 128.928-34.163 128.721Q-34.417 128.513-34.858 128.513Q-35.507 128.513-35.751 128.930Q-35.995 129.346-35.995 130.033Q-35.995 130.478-35.907 130.830Q-35.819 131.181-35.567 131.404Q-35.315 131.627-34.858 131.627\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(244.459 -102.578)\">\u003Cpath d=\"M-31.140 131.795L-32.210 128.939Q-32.276 128.760-32.407 128.717Q-32.538 128.674-32.796 128.674L-32.796 128.377L-31.116 128.377L-31.116 128.674Q-31.566 128.674-31.566 128.873Q-31.562 128.888-31.560 128.906Q-31.558 128.924-31.558 128.939L-30.765 131.033L-30.054 129.123Q-30.089 129.029-30.089 128.984Q-30.089 128.939-30.124 128.939Q-30.191 128.760-30.321 128.717Q-30.452 128.674-30.706 128.674L-30.706 128.377L-29.116 128.377L-29.116 128.674Q-29.566 128.674-29.566 128.873Q-29.562 128.892-29.560 128.910Q-29.558 128.928-29.558 128.939L-28.726 131.154L-27.972 129.154Q-27.948 129.096-27.948 129.025Q-27.948 128.865-28.085 128.769Q-28.222 128.674-28.390 128.674L-28.390 128.377L-27.003 128.377L-27.003 128.674Q-27.237 128.674-27.415 128.801Q-27.593 128.928-27.675 129.154L-28.659 131.795Q-28.714 131.904-28.827 131.904L-28.886 131.904Q-28.999 131.904-29.042 131.795L-29.901 129.521L-30.757 131.795Q-30.796 131.904-30.917 131.904L-30.972 131.904Q-31.085 131.904-31.140 131.795M-24.659 131.826L-26.515 131.826L-26.515 131.529Q-26.241 131.529-26.073 131.482Q-25.905 131.435-25.905 131.267L-25.905 129.131Q-25.905 128.916-25.968 128.820Q-26.030 128.724-26.150 128.703Q-26.269 128.681-26.515 128.681L-26.515 128.385L-25.323 128.299L-25.323 129.033Q-25.210 128.818-25.017 128.650Q-24.823 128.482-24.585 128.390Q-24.347 128.299-24.093 128.299Q-22.925 128.299-22.925 129.377L-22.925 131.267Q-22.925 131.435-22.755 131.482Q-22.585 131.529-22.316 131.529L-22.316 131.826L-24.171 131.826L-24.171 131.529Q-23.898 131.529-23.730 131.482Q-23.562 131.435-23.562 131.267L-23.562 129.392Q-23.562 129.010-23.683 128.781Q-23.804 128.553-24.155 128.553Q-24.468 128.553-24.722 128.715Q-24.976 128.877-25.122 129.146Q-25.269 129.416-25.269 129.713L-25.269 131.267Q-25.269 131.435-25.099 131.482Q-24.929 131.529-24.659 131.529\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(244.459 -102.578)\">\u003Cpath d=\"M-19.200 133.369L-19.200 133.283Q-19.157 133.064-18.950 133.041L-18.528 133.041L-18.528 128.939L-18.950 128.939Q-19.157 128.916-19.200 128.697L-19.200 128.611Q-19.153 128.400-18.950 128.377L-18.133 128.377Q-17.938 128.396-17.887 128.611L-17.887 128.681Q-17.676 128.513-17.413 128.426Q-17.149 128.338-16.879 128.338Q-16.540 128.338-16.243 128.482Q-15.946 128.627-15.731 128.879Q-15.516 129.131-15.401 129.443Q-15.286 129.756-15.286 130.099Q-15.286 130.564-15.512 130.974Q-15.739 131.385-16.125 131.625Q-16.512 131.865-16.981 131.865Q-17.500 131.865-17.887 131.498L-17.887 133.041L-17.461 133.041Q-17.254 133.064-17.215 133.283L-17.215 133.369Q-17.254 133.580-17.461 133.603L-18.950 133.603Q-19.153 133.580-19.200 133.369M-17.024 131.306Q-16.715 131.306-16.465 131.137Q-16.215 130.967-16.071 130.685Q-15.926 130.404-15.926 130.099Q-15.926 129.810-16.051 129.531Q-16.176 129.252-16.409 129.074Q-16.641 128.896-16.942 128.896Q-17.262 128.896-17.524 129.082Q-17.786 129.267-17.887 129.568L-17.887 130.420Q-17.797 130.787-17.577 131.047Q-17.356 131.306-17.024 131.306M-14.407 131.588L-14.407 131.498Q-14.356 131.291-14.161 131.267L-13.122 131.267L-13.122 128.939L-14.094 128.939Q-14.293 128.916-14.344 128.697L-14.344 128.611Q-14.293 128.400-14.094 128.377L-12.727 128.377Q-12.532 128.396-12.481 128.611L-12.481 131.267L-11.567 131.267Q-11.372 131.291-11.321 131.498L-11.321 131.588Q-11.372 131.803-11.567 131.826L-14.161 131.826Q-14.356 131.803-14.407 131.588M-13.375 127.400L-13.375 127.346Q-13.375 127.174-13.239 127.053Q-13.102 126.931-12.926 126.931Q-12.754 126.931-12.618 127.053Q-12.481 127.174-12.481 127.346L-12.481 127.400Q-12.481 127.576-12.618 127.697Q-12.754 127.818-12.926 127.818Q-13.102 127.818-13.239 127.697Q-13.375 127.576-13.375 127.400M-10.707 133.369L-10.707 133.283Q-10.665 133.064-10.457 133.041L-10.036 133.041L-10.036 128.939L-10.457 128.939Q-10.665 128.916-10.707 128.697L-10.707 128.611Q-10.661 128.400-10.457 128.377L-9.641 128.377Q-9.446 128.396-9.395 128.611L-9.395 128.681Q-9.184 128.513-8.920 128.426Q-8.657 128.338-8.387 128.338Q-8.047 128.338-7.750 128.482Q-7.454 128.627-7.239 128.879Q-7.024 129.131-6.909 129.443Q-6.793 129.756-6.793 130.099Q-6.793 130.564-7.020 130.974Q-7.247 131.385-7.633 131.625Q-8.020 131.865-8.489 131.865Q-9.008 131.865-9.395 131.498L-9.395 133.041L-8.969 133.041Q-8.762 133.064-8.723 133.283L-8.723 133.369Q-8.762 133.580-8.969 133.603L-10.457 133.603Q-10.661 133.580-10.707 133.369M-8.532 131.306Q-8.223 131.306-7.973 131.137Q-7.723 130.967-7.579 130.685Q-7.434 130.404-7.434 130.099Q-7.434 129.810-7.559 129.531Q-7.684 129.252-7.916 129.074Q-8.149 128.896-8.450 128.896Q-8.770 128.896-9.032 129.082Q-9.293 129.267-9.395 129.568L-9.395 130.420Q-9.305 130.787-9.084 131.047Q-8.864 131.306-8.532 131.306M-3.020 130.338L-5.461 130.338Q-5.407 130.615-5.209 130.838Q-5.012 131.060-4.735 131.183Q-4.457 131.306-4.172 131.306Q-3.700 131.306-3.477 131.017Q-3.469 131.006-3.413 130.900Q-3.356 130.795-3.307 130.752Q-3.258 130.709-3.165 130.697L-3.020 130.697Q-2.829 130.717-2.770 130.931L-2.770 130.986Q-2.836 131.287-3.067 131.484Q-3.297 131.681-3.610 131.773Q-3.922 131.865-4.227 131.865Q-4.711 131.865-5.151 131.637Q-5.590 131.408-5.858 131.008Q-6.125 130.607-6.125 130.115L-6.125 130.056Q-6.125 129.588-5.879 129.185Q-5.633 128.783-5.225 128.549Q-4.817 128.314-4.348 128.314Q-3.844 128.314-3.491 128.537Q-3.137 128.760-2.954 129.148Q-2.770 129.537-2.770 130.041L-2.770 130.099Q-2.829 130.314-3.020 130.338M-5.454 129.787L-3.426 129.787Q-3.473 129.377-3.711 129.125Q-3.950 128.873-4.348 128.873Q-4.743 128.873-5.049 129.135Q-5.356 129.396-5.454 129.787M-1.836 131.588L-1.836 131.498Q-1.786 131.291-1.590 131.267L-0.485 131.267L-0.485 127.498L-1.590 127.498Q-1.786 127.474-1.836 127.260L-1.836 127.170Q-1.786 126.963-1.590 126.939L-0.094 126.939Q0.097 126.963 0.156 127.170L0.156 131.267L1.257 131.267Q1.457 131.291 1.507 131.498L1.507 131.588Q1.457 131.803 1.257 131.826L-1.590 131.826Q-1.786 131.803-1.836 131.588M2.578 131.588L2.578 131.498Q2.628 131.291 2.824 131.267L3.863 131.267L3.863 128.939L2.890 128.939Q2.691 128.916 2.640 128.697L2.640 128.611Q2.691 128.400 2.890 128.377L4.257 128.377Q4.453 128.396 4.503 128.611L4.503 131.267L5.418 131.267Q5.613 131.291 5.664 131.498L5.664 131.588Q5.613 131.803 5.418 131.826L2.824 131.826Q2.628 131.803 2.578 131.588M3.609 127.400L3.609 127.346Q3.609 127.174 3.746 127.053Q3.882 126.931 4.058 126.931Q4.230 126.931 4.367 127.053Q4.503 127.174 4.503 127.346L4.503 127.400Q4.503 127.576 4.367 127.697Q4.230 127.818 4.058 127.818Q3.882 127.818 3.746 127.697Q3.609 127.576 3.609 127.400M6.277 131.588L6.277 131.498Q6.320 131.291 6.527 131.267L6.949 131.267L6.949 128.939L6.527 128.939Q6.320 128.916 6.277 128.697L6.277 128.611Q6.324 128.400 6.527 128.377L7.343 128.377Q7.539 128.400 7.589 128.611L7.589 128.697L7.582 128.721Q7.808 128.541 8.082 128.439Q8.355 128.338 8.648 128.338Q8.996 128.338 9.234 128.478Q9.472 128.619 9.587 128.877Q9.703 129.135 9.703 129.490L9.703 131.267L10.128 131.267Q10.335 131.291 10.375 131.498L10.375 131.588Q10.335 131.803 10.128 131.826L8.734 131.826Q8.539 131.803 8.488 131.588L8.488 131.498Q8.539 131.287 8.734 131.267L9.062 131.267L9.062 129.521Q9.062 129.213 8.972 129.055Q8.882 128.896 8.589 128.896Q8.320 128.896 8.091 129.027Q7.863 129.158 7.726 129.387Q7.589 129.615 7.589 129.881L7.589 131.267L8.015 131.267Q8.222 131.291 8.261 131.498L8.261 131.588Q8.222 131.803 8.015 131.826L6.527 131.826Q6.320 131.803 6.277 131.588M13.964 130.338L11.523 130.338Q11.578 130.615 11.775 130.838Q11.972 131.060 12.250 131.183Q12.527 131.306 12.812 131.306Q13.285 131.306 13.507 131.017Q13.515 131.006 13.572 130.900Q13.628 130.795 13.677 130.752Q13.726 130.709 13.820 130.697L13.964 130.697Q14.156 130.717 14.214 130.931L14.214 130.986Q14.148 131.287 13.918 131.484Q13.687 131.681 13.375 131.773Q13.062 131.865 12.757 131.865Q12.273 131.865 11.834 131.637Q11.394 131.408 11.126 131.008Q10.859 130.607 10.859 130.115L10.859 130.056Q10.859 129.588 11.105 129.185Q11.351 128.783 11.759 128.549Q12.168 128.314 12.636 128.314Q13.140 128.314 13.494 128.537Q13.847 128.760 14.031 129.148Q14.214 129.537 14.214 130.041L14.214 130.099Q14.156 130.314 13.964 130.338M11.531 129.787L13.558 129.787Q13.511 129.377 13.273 129.125Q13.035 128.873 12.636 128.873Q12.242 128.873 11.935 129.135Q11.628 129.396 11.531 129.787\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(244.459 -102.578)\">\u003Cpath d=\"M15.555 133.232Q15.555 133.209 15.586 133.162Q15.879 132.900 16.045 132.533Q16.211 132.166 16.211 131.779L16.211 131.721Q16.083 131.826 15.915 131.826Q15.723 131.826 15.586 131.693Q15.450 131.560 15.450 131.361Q15.450 131.170 15.586 131.037Q15.723 130.904 15.915 130.904Q16.215 130.904 16.340 131.174Q16.465 131.443 16.465 131.779Q16.465 132.228 16.284 132.642Q16.102 133.056 15.762 133.353Q15.739 133.377 15.700 133.377Q15.653 133.377 15.604 133.332Q15.555 133.287 15.555 133.232\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(244.459 -102.578)\">\u003Cpath d=\"M-38.805 141.088L-38.805 140.998Q-38.747 140.791-38.555 140.767L-38.188 140.767L-38.188 136.998L-38.555 136.998Q-38.747 136.974-38.805 136.760L-38.805 136.670Q-38.747 136.463-38.555 136.439L-37.028 136.439Q-36.833 136.463-36.782 136.670L-36.782 136.760Q-36.833 136.974-37.028 136.998L-37.548 136.998L-37.548 140.767L-35.715 140.767L-35.715 140.127Q-35.665 139.920-35.469 139.892L-35.325 139.892Q-35.126 139.920-35.075 140.127L-35.075 141.088Q-35.126 141.303-35.325 141.326L-38.555 141.326Q-38.747 141.303-38.805 141.088M-33.926 141.088L-33.926 140.998Q-33.876 140.791-33.676 140.767L-32.860 140.767L-32.860 137.584Q-33.239 137.892-33.692 137.892Q-33.923 137.892-33.973 137.662L-33.973 137.572Q-33.923 137.357-33.727 137.334Q-33.399 137.334-33.145 137.096Q-32.891 136.857-32.751 136.510Q-32.680 136.381-32.524 136.357L-32.469 136.357Q-32.274 136.377-32.223 136.592L-32.223 140.767L-31.407 140.767Q-31.208 140.791-31.157 140.998L-31.157 141.088Q-31.208 141.303-31.407 141.326L-33.676 141.326Q-33.876 141.303-33.926 141.088\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(244.459 -102.578)\">\u003Cpath d=\"M-30.247 141.318L-30.247 140.096Q-30.247 140.068-30.215 140.037Q-30.184 140.006-30.161 140.006L-30.055 140.006Q-29.985 140.006-29.969 140.068Q-29.907 140.388-29.768 140.629Q-29.630 140.869-29.397 141.010Q-29.165 141.150-28.856 141.150Q-28.618 141.150-28.409 141.090Q-28.200 141.029-28.063 140.881Q-27.926 140.732-27.926 140.486Q-27.926 140.232-28.137 140.066Q-28.348 139.900-28.618 139.846L-29.239 139.732Q-29.645 139.654-29.946 139.398Q-30.247 139.142-30.247 138.767Q-30.247 138.400-30.046 138.178Q-29.844 137.955-29.520 137.857Q-29.196 137.760-28.856 137.760Q-28.391 137.760-28.094 137.967L-27.872 137.783Q-27.848 137.760-27.817 137.760L-27.766 137.760Q-27.735 137.760-27.708 137.787Q-27.680 137.814-27.680 137.846L-27.680 138.830Q-27.680 138.861-27.706 138.890Q-27.731 138.920-27.766 138.920L-27.872 138.920Q-27.907 138.920-27.934 138.892Q-27.962 138.865-27.962 138.830Q-27.962 138.431-28.214 138.211Q-28.465 137.990-28.864 137.990Q-29.219 137.990-29.503 138.113Q-29.786 138.236-29.786 138.541Q-29.786 138.760-29.585 138.892Q-29.383 139.025-29.137 139.068L-28.512 139.181Q-28.083 139.271-27.774 139.568Q-27.465 139.865-27.465 140.279Q-27.465 140.849-27.864 141.127Q-28.262 141.404-28.856 141.404Q-29.407 141.404-29.758 141.068L-30.055 141.381Q-30.079 141.404-30.114 141.404L-30.161 141.404Q-30.184 141.404-30.215 141.373Q-30.247 141.342-30.247 141.318M-26.352 142.732Q-26.352 142.709-26.321 142.662Q-26.028 142.400-25.862 142.033Q-25.696 141.666-25.696 141.279L-25.696 141.221Q-25.825 141.326-25.993 141.326Q-26.184 141.326-26.321 141.193Q-26.458 141.060-26.458 140.861Q-26.458 140.670-26.321 140.537Q-26.184 140.404-25.993 140.404Q-25.692 140.404-25.567 140.674Q-25.442 140.943-25.442 141.279Q-25.442 141.728-25.624 142.142Q-25.805 142.556-26.145 142.853Q-26.169 142.877-26.208 142.877Q-26.255 142.877-26.303 142.832Q-26.352 142.787-26.352 142.732\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(244.459 -102.578)\">\u003Cpath d=\"M-17.395 141.326L-20.438 141.326L-20.438 141.029Q-19.676 141.029-19.493 140.990Q-19.450 140.978-19.401 140.945Q-19.352 140.912-19.327 140.869Q-19.301 140.826-19.301 140.767L-19.301 136.424Q-19.301 136.248-19.393 136.203Q-19.485 136.158-19.700 136.158L-20.094 136.158Q-20.790 136.158-21.079 136.447Q-21.227 136.596-21.290 136.916Q-21.352 137.236-21.395 137.709L-21.676 137.709L-21.516 135.861L-16.317 135.861L-16.157 137.709L-16.438 137.709Q-16.481 137.201-16.544 136.898Q-16.606 136.596-16.758 136.447Q-17.044 136.158-17.743 136.158L-18.133 136.158Q-18.348 136.158-18.440 136.201Q-18.532 136.244-18.532 136.424L-18.532 140.767Q-18.532 140.842-18.477 140.906Q-18.422 140.971-18.340 140.990Q-18.157 141.029-17.395 141.029L-17.395 141.326M-11.126 141.326L-15.508 141.326L-15.508 141.029Q-15.188 141.029-14.944 140.982Q-14.700 140.935-14.700 140.767L-14.700 136.424Q-14.700 136.252-14.944 136.205Q-15.188 136.158-15.508 136.158L-15.508 135.861L-12.922 135.861L-12.922 136.158Q-13.934 136.158-13.934 136.424L-13.934 140.767Q-13.934 140.939-13.842 140.984Q-13.751 141.029-13.532 141.029L-12.844 141.029Q-12.372 141.029-12.063 140.904Q-11.754 140.779-11.577 140.549Q-11.399 140.318-11.307 139.992Q-11.215 139.666-11.172 139.213L-10.891 139.213L-11.126 141.326M-6.891 141.326L-10.172 141.326L-10.172 141.029Q-9.848 141.029-9.606 140.982Q-9.364 140.935-9.364 140.767L-9.364 136.424Q-9.364 136.252-9.606 136.205Q-9.848 136.158-10.172 136.158L-10.172 135.861L-7.126 135.861Q-6.700 135.861-6.266 136.015Q-5.833 136.170-5.538 136.478Q-5.243 136.787-5.243 137.221Q-5.243 137.474-5.368 137.691Q-5.493 137.908-5.694 138.064Q-5.895 138.221-6.127 138.320Q-6.360 138.420-6.618 138.471Q-6.243 138.506-5.864 138.683Q-5.485 138.861-5.245 139.160Q-5.004 139.459-5.004 139.853Q-5.004 140.306-5.288 140.640Q-5.571 140.974-6.006 141.150Q-6.442 141.326-6.891 141.326M-8.653 138.615L-8.653 140.767Q-8.653 140.939-8.561 140.984Q-8.469 141.029-8.251 141.029L-7.126 141.029Q-6.887 141.029-6.653 140.941Q-6.419 140.853-6.233 140.693Q-6.047 140.533-5.946 140.320Q-5.844 140.107-5.844 139.853Q-5.844 139.533-5.997 139.248Q-6.149 138.963-6.419 138.789Q-6.688 138.615-7.004 138.615L-8.653 138.615M-8.653 136.424L-8.653 138.357L-7.364 138.357Q-7.122 138.357-6.883 138.275Q-6.645 138.193-6.461 138.047Q-6.278 137.900-6.165 137.683Q-6.051 137.467-6.051 137.221Q-6.051 137.010-6.137 136.808Q-6.223 136.607-6.370 136.465Q-6.516 136.322-6.711 136.240Q-6.907 136.158-7.126 136.158L-8.251 136.158Q-8.469 136.158-8.561 136.201Q-8.653 136.244-8.653 136.424M-4.243 141.318L-4.243 140.096Q-4.243 140.068-4.211 140.037Q-4.180 140.006-4.157 140.006L-4.051 140.006Q-3.981 140.006-3.965 140.068Q-3.903 140.388-3.764 140.629Q-3.626 140.869-3.393 141.010Q-3.161 141.150-2.852 141.150Q-2.614 141.150-2.405 141.090Q-2.196 141.029-2.059 140.881Q-1.922 140.732-1.922 140.486Q-1.922 140.232-2.133 140.066Q-2.344 139.900-2.614 139.846L-3.235 139.732Q-3.641 139.654-3.942 139.398Q-4.243 139.142-4.243 138.767Q-4.243 138.400-4.042 138.178Q-3.840 137.955-3.516 137.857Q-3.192 137.760-2.852 137.760Q-2.387 137.760-2.090 137.967L-1.868 137.783Q-1.844 137.760-1.813 137.760L-1.762 137.760Q-1.731 137.760-1.704 137.787Q-1.676 137.814-1.676 137.846L-1.676 138.830Q-1.676 138.861-1.702 138.890Q-1.727 138.920-1.762 138.920L-1.868 138.920Q-1.903 138.920-1.930 138.892Q-1.958 138.865-1.958 138.830Q-1.958 138.431-2.210 138.211Q-2.461 137.990-2.860 137.990Q-3.215 137.990-3.499 138.113Q-3.782 138.236-3.782 138.541Q-3.782 138.760-3.581 138.892Q-3.379 139.025-3.133 139.068L-2.508 139.181Q-2.079 139.271-1.770 139.568Q-1.461 139.865-1.461 140.279Q-1.461 140.849-1.860 141.127Q-2.258 141.404-2.852 141.404Q-3.403 141.404-3.754 141.068L-4.051 141.381Q-4.075 141.404-4.110 141.404L-4.157 141.404Q-4.180 141.404-4.211 141.373Q-4.243 141.342-4.243 141.318M-0.348 142.732Q-0.348 142.709-0.317 142.662Q-0.024 142.400 0.142 142.033Q0.308 141.666 0.308 141.279L0.308 141.221Q0.179 141.326 0.011 141.326Q-0.180 141.326-0.317 141.193Q-0.454 141.060-0.454 140.861Q-0.454 140.670-0.317 140.537Q-0.180 140.404 0.011 140.404Q0.312 140.404 0.437 140.674Q0.562 140.943 0.562 141.279Q0.562 141.728 0.380 142.142Q0.199 142.556-0.141 142.853Q-0.165 142.877-0.204 142.877Q-0.251 142.877-0.299 142.832Q-0.348 142.787-0.348 142.732\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(244.459 -102.578)\">\u003Cpath d=\"M4.254 141.088L4.254 140.998Q4.312 140.791 4.504 140.767L4.871 140.767L4.871 136.998L4.504 136.998Q4.312 136.974 4.254 136.760L4.254 136.670Q4.312 136.463 4.504 136.439L6.031 136.439Q6.226 136.463 6.277 136.670L6.277 136.760Q6.226 136.974 6.031 136.998L5.511 136.998L5.511 140.767L7.343 140.767L7.343 140.127Q7.394 139.920 7.590 139.892L7.734 139.892Q7.933 139.920 7.984 140.127L7.984 141.088Q7.933 141.303 7.734 141.326L4.504 141.326Q4.312 141.303 4.254 141.088M8.703 141.088L8.703 141.013Q8.734 140.846 8.836 140.799L10.125 139.732Q10.457 139.455 10.638 139.303Q10.820 139.150 11.015 138.930Q11.211 138.709 11.332 138.459Q11.453 138.209 11.453 137.943Q11.453 137.619 11.277 137.385Q11.101 137.150 10.822 137.035Q10.543 136.920 10.222 136.920Q9.965 136.920 9.736 137.043Q9.508 137.166 9.406 137.381Q9.508 137.513 9.508 137.662Q9.508 137.822 9.388 137.945Q9.269 138.068 9.109 138.068Q8.933 138.068 8.818 137.943Q8.703 137.818 8.703 137.646Q8.703 137.353 8.838 137.111Q8.972 136.869 9.211 136.697Q9.449 136.525 9.717 136.441Q9.984 136.357 10.277 136.357Q10.758 136.357 11.174 136.547Q11.590 136.736 11.842 137.097Q12.093 137.459 12.093 137.943Q12.093 138.287 11.961 138.590Q11.828 138.892 11.603 139.152Q11.379 139.412 11.070 139.674Q10.761 139.935 10.551 140.111L9.742 140.767L11.453 140.767L11.453 140.623Q11.504 140.412 11.703 140.388L11.843 140.388Q12.043 140.408 12.093 140.623L12.093 141.088Q12.043 141.303 11.843 141.326L8.949 141.326Q8.754 141.306 8.703 141.088\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(244.459 -102.578)\">\u003Cpath d=\"M13.172 143.326L13.090 143.326Q13.054 143.326 13.029 143.297Q13.004 143.267 13.004 143.228Q13.004 143.178 13.035 143.158Q13.422 142.822 13.705 142.373Q13.988 141.924 14.154 141.424Q14.320 140.924 14.394 140.406Q14.469 139.888 14.469 139.326Q14.469 138.756 14.394 138.240Q14.320 137.724 14.154 137.228Q13.988 136.732 13.709 136.285Q13.429 135.838 13.035 135.494Q13.004 135.474 13.004 135.424Q13.004 135.385 13.029 135.355Q13.054 135.326 13.090 135.326L13.172 135.326Q13.183 135.326 13.193 135.328Q13.203 135.330 13.211 135.334Q13.824 135.791 14.226 136.426Q14.629 137.060 14.824 137.806Q15.019 138.553 15.019 139.326Q15.019 140.099 14.824 140.846Q14.629 141.592 14.226 142.226Q13.824 142.861 13.211 143.318Q13.199 143.318 13.191 143.320Q13.183 143.322 13.172 143.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(256.146 -157.178)\">\u003Cpath d=\"M-40.339 141.088L-40.339 140.998Q-40.288 140.787-40.093 140.767L-39.893 140.767L-39.893 138.439L-40.093 138.439Q-40.300 138.416-40.339 138.197L-40.339 138.111Q-40.288 137.896-40.093 137.877L-39.612 137.877Q-39.421 137.900-39.362 138.111Q-39.042 137.838-38.628 137.838Q-38.436 137.838-38.268 137.947Q-38.100 138.056-38.026 138.228Q-37.850 138.037-37.628 137.937Q-37.405 137.838-37.163 137.838Q-36.745 137.838-36.591 138.180Q-36.436 138.521-36.436 138.990L-36.436 140.767L-36.237 140.767Q-36.026 140.791-35.987 140.998L-35.987 141.088Q-36.038 141.303-36.237 141.326L-37.054 141.326Q-37.249 141.303-37.300 141.088L-37.300 140.998Q-37.249 140.791-37.054 140.767L-36.964 140.767L-36.964 139.021Q-36.964 138.396-37.214 138.396Q-37.546 138.396-37.723 138.707Q-37.901 139.017-37.901 139.381L-37.901 140.767L-37.698 140.767Q-37.491 140.791-37.452 140.998L-37.452 141.088Q-37.503 141.303-37.698 141.326L-38.514 141.326Q-38.714 141.303-38.764 141.088L-38.764 140.998Q-38.714 140.791-38.514 140.767L-38.429 140.767L-38.429 139.021Q-38.429 138.396-38.675 138.396Q-39.007 138.396-39.184 138.709Q-39.362 139.021-39.362 139.381L-39.362 140.767L-39.163 140.767Q-38.956 140.791-38.917 140.998L-38.917 141.088Q-38.968 141.306-39.163 141.326L-40.093 141.326Q-40.300 141.303-40.339 141.088M-33.917 141.365Q-34.389 141.365-34.774 141.121Q-35.159 140.877-35.382 140.467Q-35.604 140.056-35.604 139.599Q-35.604 139.256-35.479 138.933Q-35.354 138.611-35.124 138.357Q-34.893 138.103-34.587 137.959Q-34.280 137.814-33.917 137.814Q-33.554 137.814-33.241 137.961Q-32.929 138.107-32.706 138.353Q-32.483 138.599-32.356 138.920Q-32.229 139.240-32.229 139.599Q-32.229 140.056-32.454 140.469Q-32.679 140.881-33.063 141.123Q-33.448 141.365-33.917 141.365M-33.917 140.806Q-33.452 140.806-33.161 140.412Q-32.870 140.017-32.870 139.533Q-32.870 139.240-33.005 138.972Q-33.139 138.705-33.380 138.539Q-33.620 138.373-33.917 138.373Q-34.221 138.373-34.460 138.539Q-34.698 138.705-34.833 138.972Q-34.968 139.240-34.968 139.533Q-34.968 140.013-34.675 140.410Q-34.382 140.806-33.917 140.806M-29.929 141.365Q-30.393 141.365-30.759 141.115Q-31.124 140.865-31.329 140.461Q-31.534 140.056-31.534 139.599Q-31.534 139.256-31.409 138.935Q-31.284 138.615-31.052 138.365Q-30.819 138.115-30.514 137.976Q-30.210 137.838-29.854 137.838Q-29.343 137.838-28.936 138.158L-28.936 136.998L-29.358 136.998Q-29.569 136.974-29.608 136.760L-29.608 136.670Q-29.569 136.463-29.358 136.439L-28.546 136.439Q-28.346 136.463-28.296 136.670L-28.296 140.767L-27.870 140.767Q-27.663 140.791-27.624 140.998L-27.624 141.088Q-27.663 141.303-27.870 141.326L-28.686 141.326Q-28.886 141.303-28.936 141.088L-28.936 140.959Q-29.132 141.150-29.393 141.258Q-29.655 141.365-29.929 141.365M-29.889 140.806Q-29.530 140.806-29.278 140.537Q-29.026 140.267-28.936 139.892L-28.936 139.060Q-28.995 138.873-29.122 138.722Q-29.249 138.572-29.427 138.484Q-29.604 138.396-29.800 138.396Q-30.108 138.396-30.358 138.566Q-30.608 138.736-30.753 139.021Q-30.897 139.306-30.897 139.607Q-30.897 140.056-30.612 140.431Q-30.327 140.806-29.889 140.806M-26.804 140.471L-26.804 138.439L-27.225 138.439Q-27.432 138.416-27.475 138.197L-27.475 138.111Q-27.429 137.900-27.225 137.877L-26.409 137.877Q-26.214 137.900-26.163 138.111L-26.163 140.439Q-26.163 140.674-25.993 140.740Q-25.823 140.806-25.538 140.806Q-25.331 140.806-25.136 140.730Q-24.940 140.654-24.815 140.504Q-24.690 140.353-24.690 140.142L-24.690 138.439L-25.112 138.439Q-25.323 138.416-25.362 138.197L-25.362 138.111Q-25.323 137.900-25.112 137.877L-24.300 137.877Q-24.100 137.900-24.050 138.111L-24.050 140.767L-23.624 140.767Q-23.417 140.791-23.378 140.998L-23.378 141.088Q-23.417 141.303-23.624 141.326L-24.440 141.326Q-24.639 141.303-24.690 141.103Q-25.093 141.365-25.600 141.365Q-25.835 141.365-26.050 141.324Q-26.264 141.283-26.430 141.181Q-26.596 141.080-26.700 140.902Q-26.804 140.724-26.804 140.471M-22.850 141.088L-22.850 140.998Q-22.800 140.791-22.604 140.767L-21.499 140.767L-21.499 136.998L-22.604 136.998Q-22.800 136.974-22.850 136.760L-22.850 136.670Q-22.800 136.463-22.604 136.439L-21.108 136.439Q-20.917 136.463-20.858 136.670L-20.858 140.767L-19.757 140.767Q-19.557 140.791-19.507 140.998L-19.507 141.088Q-19.557 141.303-19.757 141.326L-22.604 141.326Q-22.800 141.303-22.850 141.088M-15.542 139.838L-17.983 139.838Q-17.929 140.115-17.731 140.338Q-17.534 140.560-17.257 140.683Q-16.979 140.806-16.694 140.806Q-16.221 140.806-15.999 140.517Q-15.991 140.506-15.934 140.400Q-15.878 140.295-15.829 140.252Q-15.780 140.209-15.686 140.197L-15.542 140.197Q-15.350 140.217-15.292 140.431L-15.292 140.486Q-15.358 140.787-15.589 140.984Q-15.819 141.181-16.132 141.273Q-16.444 141.365-16.749 141.365Q-17.233 141.365-17.673 141.137Q-18.112 140.908-18.380 140.508Q-18.647 140.107-18.647 139.615L-18.647 139.556Q-18.647 139.088-18.401 138.685Q-18.155 138.283-17.747 138.049Q-17.339 137.814-16.870 137.814Q-16.366 137.814-16.013 138.037Q-15.659 138.260-15.475 138.648Q-15.292 139.037-15.292 139.541L-15.292 139.599Q-15.350 139.814-15.542 139.838M-17.975 139.287L-15.948 139.287Q-15.995 138.877-16.233 138.625Q-16.471 138.373-16.870 138.373Q-17.264 138.373-17.571 138.635Q-17.878 138.896-17.975 139.287\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(256.146 -157.178)\">\u003Cpath d=\"M-9.967 140.525Q-9.967 140.349-9.851 140.226Q-9.736 140.103-9.556 140.103Q-9.388 140.103-9.273 140.219Q-9.158 140.334-9.158 140.510Q-9.158 140.631-9.220 140.732Q-9.072 140.846-8.763 140.846Q-8.459 140.846-8.205 140.695Q-7.951 140.545-7.769 140.299Q-7.588 140.053-7.480 139.760Q-7.373 139.467-7.342 139.189Q-7.580 139.388-7.888 139.494Q-8.197 139.599-8.517 139.599Q-8.963 139.599-9.336 139.383Q-9.709 139.166-9.926 138.797Q-10.142 138.428-10.142 137.982Q-10.142 137.510-9.896 137.138Q-9.650 136.767-9.244 136.562Q-8.838 136.357-8.365 136.357Q-7.881 136.357-7.549 136.586Q-7.217 136.814-7.029 137.187Q-6.842 137.560-6.763 137.990Q-6.685 138.420-6.685 138.877Q-6.685 139.486-6.939 140.074Q-7.193 140.662-7.670 141.033Q-8.146 141.404-8.763 141.404Q-9.260 141.404-9.613 141.195Q-9.967 140.986-9.967 140.525M-8.463 139.037Q-8.076 139.037-7.740 138.808Q-7.404 138.580-7.404 138.213Q-7.404 138.174-7.420 138.096Q-7.435 138.017-7.435 137.982Q-7.435 137.971-7.428 137.939Q-7.420 137.908-7.420 137.900Q-7.482 137.650-7.601 137.430Q-7.720 137.209-7.914 137.064Q-8.107 136.920-8.365 136.920Q-8.838 136.920-9.170 137.221Q-9.502 137.521-9.502 137.982Q-9.502 138.263-9.365 138.510Q-9.228 138.756-8.990 138.896Q-8.752 139.037-8.463 139.037\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-dasharray:3.0,3.0\">\u003Cpath fill=\"none\" d=\"M232.863 64.503v69.132\"\u002F>\u003Cpath stroke=\"none\" d=\"m232.863 135.635 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(280.947 -34.558)\">\u003Cpath d=\"M-39.970 139.815Q-39.970 139.487-39.835 139.186Q-39.700 138.886-39.464 138.665Q-39.228 138.445-38.924 138.325Q-38.619 138.205-38.295 138.205Q-37.789 138.205-37.440 138.308Q-37.092 138.410-37.092 138.786Q-37.092 138.933-37.189 139.034Q-37.286 139.135-37.433 139.135Q-37.587 139.135-37.686 139.036Q-37.785 138.937-37.785 138.786Q-37.785 138.598-37.645 138.506Q-37.847 138.455-38.288 138.455Q-38.643 138.455-38.872 138.651Q-39.101 138.848-39.202 139.157Q-39.303 139.467-39.303 139.815Q-39.303 140.164-39.177 140.470Q-39.050 140.776-38.795 140.960Q-38.541 141.145-38.185 141.145Q-37.963 141.145-37.779 141.061Q-37.594 140.977-37.459 140.822Q-37.324 140.666-37.266 140.458Q-37.252 140.403-37.198 140.403L-37.085 140.403Q-37.054 140.403-37.032 140.427Q-37.010 140.451-37.010 140.485L-37.010 140.506Q-37.095 140.793-37.283 140.991Q-37.471 141.189-37.736 141.292Q-38.001 141.394-38.295 141.394Q-38.725 141.394-39.113 141.188Q-39.501 140.981-39.735 140.618Q-39.970 140.256-39.970 139.815M-36.463 139.843Q-36.463 139.501-36.328 139.202Q-36.193 138.903-35.953 138.679Q-35.714 138.455-35.396 138.330Q-35.078 138.205-34.747 138.205Q-34.303 138.205-33.903 138.421Q-33.503 138.636-33.269 139.014Q-33.034 139.391-33.034 139.843Q-33.034 140.184-33.176 140.468Q-33.318 140.752-33.563 140.959Q-33.807 141.165-34.116 141.280Q-34.426 141.394-34.747 141.394Q-35.178 141.394-35.579 141.193Q-35.981 140.991-36.222 140.639Q-36.463 140.287-36.463 139.843M-34.747 141.145Q-34.145 141.145-33.921 140.767Q-33.698 140.389-33.698 139.757Q-33.698 139.145-33.932 138.786Q-34.166 138.428-34.747 138.428Q-35.800 138.428-35.800 139.757Q-35.800 140.389-35.574 140.767Q-35.348 141.145-34.747 141.145M-30.758 141.326L-32.392 141.326L-32.392 141.046Q-32.163 141.046-32.014 141.012Q-31.866 140.977-31.866 140.837L-31.866 137.218Q-31.866 136.948-31.973 136.886Q-32.081 136.825-32.392 136.825L-32.392 136.544L-31.312 136.469L-31.312 138.855Q-31.206 138.670-31.028 138.528Q-30.850 138.387-30.642 138.313Q-30.433 138.240-30.208 138.240Q-29.702 138.240-29.418 138.463Q-29.135 138.687-29.135 139.183L-29.135 140.837Q-29.135 140.974-28.986 141.010Q-28.837 141.046-28.612 141.046L-28.612 141.326L-30.242 141.326L-30.242 141.046Q-30.013 141.046-29.864 141.012Q-29.716 140.977-29.716 140.837L-29.716 139.197Q-29.716 138.862-29.835 138.662Q-29.955 138.462-30.269 138.462Q-30.539 138.462-30.774 138.598Q-31.008 138.735-31.146 138.969Q-31.284 139.203-31.284 139.477L-31.284 140.837Q-31.284 140.974-31.134 141.010Q-30.984 141.046-30.758 141.046L-30.758 141.326M-28.065 139.791Q-28.065 139.470-27.940 139.181Q-27.815 138.892-27.590 138.669Q-27.364 138.445-27.068 138.325Q-26.773 138.205-26.455 138.205Q-26.127 138.205-25.865 138.305Q-25.604 138.404-25.428 138.586Q-25.252 138.769-25.158 139.027Q-25.064 139.285-25.064 139.617Q-25.064 139.709-25.146 139.730L-27.402 139.730L-27.402 139.791Q-27.402 140.379-27.118 140.762Q-26.834 141.145-26.267 141.145Q-25.946 141.145-25.677 140.952Q-25.409 140.759-25.320 140.444Q-25.313 140.403-25.238 140.389L-25.146 140.389Q-25.064 140.413-25.064 140.485Q-25.064 140.492-25.071 140.519Q-25.183 140.916-25.554 141.155Q-25.925 141.394-26.349 141.394Q-26.786 141.394-27.186 141.186Q-27.586 140.977-27.826 140.610Q-28.065 140.243-28.065 139.791M-27.395 139.521L-25.580 139.521Q-25.580 139.244-25.677 138.992Q-25.775 138.739-25.973 138.583Q-26.171 138.428-26.455 138.428Q-26.732 138.428-26.945 138.586Q-27.159 138.745-27.277 139Q-27.395 139.255-27.395 139.521M-22.726 141.326L-24.462 141.326L-24.462 141.046Q-24.233 141.046-24.085 141.012Q-23.936 140.977-23.936 140.837L-23.936 138.988Q-23.936 138.718-24.044 138.657Q-24.151 138.595-24.462 138.595L-24.462 138.315L-23.433 138.240L-23.433 138.947Q-23.304 138.639-23.061 138.440Q-22.818 138.240-22.500 138.240Q-22.282 138.240-22.111 138.364Q-21.940 138.489-21.940 138.701Q-21.940 138.838-22.039 138.937Q-22.138 139.036-22.271 139.036Q-22.408 139.036-22.507 138.937Q-22.606 138.838-22.606 138.701Q-22.606 138.561-22.507 138.462Q-22.798 138.462-22.998 138.658Q-23.198 138.855-23.290 139.149Q-23.382 139.443-23.382 139.723L-23.382 140.837Q-23.382 141.046-22.726 141.046L-22.726 141.326M-21.396 139.791Q-21.396 139.470-21.272 139.181Q-21.147 138.892-20.921 138.669Q-20.696 138.445-20.400 138.325Q-20.104 138.205-19.786 138.205Q-19.458 138.205-19.197 138.305Q-18.935 138.404-18.759 138.586Q-18.583 138.769-18.489 139.027Q-18.395 139.285-18.395 139.617Q-18.395 139.709-18.477 139.730L-20.733 139.730L-20.733 139.791Q-20.733 140.379-20.450 140.762Q-20.166 141.145-19.598 141.145Q-19.277 141.145-19.009 140.952Q-18.741 140.759-18.652 140.444Q-18.645 140.403-18.570 140.389L-18.477 140.389Q-18.395 140.413-18.395 140.485Q-18.395 140.492-18.402 140.519Q-18.515 140.916-18.886 141.155Q-19.257 141.394-19.680 141.394Q-20.118 141.394-20.518 141.186Q-20.918 140.977-21.157 140.610Q-21.396 140.243-21.396 139.791M-20.726 139.521L-18.911 139.521Q-18.911 139.244-19.009 138.992Q-19.106 138.739-19.305 138.583Q-19.503 138.428-19.786 138.428Q-20.063 138.428-20.277 138.586Q-20.491 138.745-20.608 139Q-20.726 139.255-20.726 139.521M-16.126 141.326L-17.760 141.326L-17.760 141.046Q-17.531 141.046-17.382 141.012Q-17.233 140.977-17.233 140.837L-17.233 138.988Q-17.233 138.718-17.341 138.657Q-17.449 138.595-17.760 138.595L-17.760 138.315L-16.700 138.240L-16.700 138.889Q-16.529 138.581-16.225 138.410Q-15.921 138.240-15.576 138.240Q-15.070 138.240-14.786 138.463Q-14.502 138.687-14.502 139.183L-14.502 140.837Q-14.502 140.974-14.354 141.010Q-14.205 141.046-13.979 141.046L-13.979 141.326L-15.610 141.326L-15.610 141.046Q-15.381 141.046-15.232 141.012Q-15.083 140.977-15.083 140.837L-15.083 139.197Q-15.083 138.862-15.203 138.662Q-15.323 138.462-15.637 138.462Q-15.907 138.462-16.141 138.598Q-16.375 138.735-16.514 138.969Q-16.652 139.203-16.652 139.477L-16.652 140.837Q-16.652 140.974-16.502 141.010Q-16.351 141.046-16.126 141.046L-16.126 141.326M-13.391 139.815Q-13.391 139.487-13.256 139.186Q-13.121 138.886-12.886 138.665Q-12.650 138.445-12.346 138.325Q-12.041 138.205-11.717 138.205Q-11.211 138.205-10.862 138.308Q-10.513 138.410-10.513 138.786Q-10.513 138.933-10.611 139.034Q-10.708 139.135-10.855 139.135Q-11.009 139.135-11.108 139.036Q-11.207 138.937-11.207 138.786Q-11.207 138.598-11.067 138.506Q-11.269 138.455-11.710 138.455Q-12.065 138.455-12.294 138.651Q-12.523 138.848-12.624 139.157Q-12.725 139.467-12.725 139.815Q-12.725 140.164-12.598 140.470Q-12.472 140.776-12.217 140.960Q-11.963 141.145-11.607 141.145Q-11.385 141.145-11.201 141.061Q-11.016 140.977-10.881 140.822Q-10.746 140.666-10.688 140.458Q-10.674 140.403-10.619 140.403L-10.507 140.403Q-10.476 140.403-10.454 140.427Q-10.431 140.451-10.431 140.485L-10.431 140.506Q-10.517 140.793-10.705 140.991Q-10.893 141.189-11.158 141.292Q-11.423 141.394-11.717 141.394Q-12.147 141.394-12.535 141.188Q-12.923 140.981-13.157 140.618Q-13.391 140.256-13.391 139.815M-9.885 139.791Q-9.885 139.470-9.760 139.181Q-9.635 138.892-9.409 138.669Q-9.184 138.445-8.888 138.325Q-8.593 138.205-8.275 138.205Q-7.947 138.205-7.685 138.305Q-7.424 138.404-7.248 138.586Q-7.072 138.769-6.978 139.027Q-6.884 139.285-6.884 139.617Q-6.884 139.709-6.966 139.730L-9.221 139.730L-9.221 139.791Q-9.221 140.379-8.938 140.762Q-8.654 141.145-8.087 141.145Q-7.765 141.145-7.497 140.952Q-7.229 140.759-7.140 140.444Q-7.133 140.403-7.058 140.389L-6.966 140.389Q-6.884 140.413-6.884 140.485Q-6.884 140.492-6.890 140.519Q-7.003 140.916-7.374 141.155Q-7.745 141.394-8.169 141.394Q-8.606 141.394-9.006 141.186Q-9.406 140.977-9.645 140.610Q-9.885 140.243-9.885 139.791M-9.215 139.521L-7.400 139.521Q-7.400 139.244-7.497 138.992Q-7.595 138.739-7.793 138.583Q-7.991 138.428-8.275 138.428Q-8.552 138.428-8.765 138.586Q-8.979 138.745-9.097 139Q-9.215 139.255-9.215 139.521\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The full machine. Core 0 is the five-stage PIPE datapath; fetch and memory each translate through a TLB and then probe an L1 cache; the L1s share a unified L2, which meets the rest of the die at the shared L3 and interconnect. Below sit the memory controller with DRAM and the I\u002FO devices whose interrupts re-enter the core between instructions. Core 1, dashed, is module 9&#39;s addition — a full copy kept honest by coherence.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:582.992px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 437.244 117.919\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg transform=\"translate(13.922 -19.59)\">\u003Cpath d=\"M-22.230-46.041Q-22.230-46.441-22.074-46.745Q-21.919-47.049-21.642-47.255Q-21.365-47.460-21.025-47.559Q-20.685-47.658-20.295-47.658Q-19.725-47.658-19.318-47.525Q-18.911-47.391-18.911-46.944Q-18.911-46.738-19.055-46.591Q-19.198-46.444-19.407-46.444Q-19.622-46.444-19.767-46.590Q-19.912-46.735-19.912-46.944Q-19.912-47.121-19.820-47.244Q-20.015-47.272-20.288-47.272Q-20.576-47.272-20.758-47.176Q-20.941-47.080-21.044-46.911Q-21.146-46.742-21.187-46.527Q-21.228-46.311-21.228-46.041Q-21.228-45.457-20.946-45.142Q-20.664-44.828-20.087-44.828Q-19.813-44.828-19.591-44.954Q-19.369-45.081-19.273-45.327Q-19.236-45.392-19.171-45.409L-18.925-45.409Q-18.812-45.385-18.812-45.282Q-18.812-45.276-18.819-45.241Q-18.983-44.818-19.381-44.631Q-19.779-44.445-20.295-44.445Q-20.811-44.445-21.252-44.621Q-21.693-44.797-21.962-45.159Q-22.230-45.522-22.230-46.041M-18.323-43.799Q-18.323-44.004-18.186-44.137Q-18.050-44.271-17.851-44.271Q-17.728-44.271-17.619-44.209Q-17.510-44.148-17.446-44.037Q-17.383-43.925-17.383-43.799Q-17.383-43.587-17.544-43.437L-17.503-43.437Q-17.226-43.437-16.988-43.589Q-16.751-43.741-16.628-43.984L-16.375-44.486L-17.797-47.173L-18.272-47.173L-18.272-47.593L-16.501-47.593L-16.501-47.173L-16.809-47.173L-15.893-45.429L-15.011-47.152Q-15.018-47.173-15.319-47.173L-15.319-47.593L-14.003-47.593L-14.003-47.173Q-14.451-47.173-14.485-47.152L-16.101-43.984Q-16.307-43.580-16.684-43.332Q-17.062-43.085-17.503-43.085Q-17.814-43.085-18.068-43.286Q-18.323-43.488-18.323-43.799M-13.422-46.041Q-13.422-46.441-13.266-46.745Q-13.111-47.049-12.834-47.255Q-12.557-47.460-12.217-47.559Q-11.877-47.658-11.487-47.658Q-10.916-47.658-10.510-47.525Q-10.103-47.391-10.103-46.944Q-10.103-46.738-10.246-46.591Q-10.390-46.444-10.599-46.444Q-10.814-46.444-10.959-46.590Q-11.104-46.735-11.104-46.944Q-11.104-47.121-11.012-47.244Q-11.207-47.272-11.480-47.272Q-11.767-47.272-11.950-47.176Q-12.133-47.080-12.236-46.911Q-12.338-46.742-12.379-46.527Q-12.420-46.311-12.420-46.041Q-12.420-45.457-12.138-45.142Q-11.856-44.828-11.279-44.828Q-11.005-44.828-10.783-44.954Q-10.561-45.081-10.465-45.327Q-10.428-45.392-10.363-45.409L-10.117-45.409Q-10.004-45.385-10.004-45.282Q-10.004-45.276-10.011-45.241Q-10.175-44.818-10.573-44.631Q-10.971-44.445-11.487-44.445Q-12.003-44.445-12.444-44.621Q-12.885-44.797-13.153-45.159Q-13.422-45.522-13.422-46.041M-7.454-44.486L-9.262-44.486L-9.262-44.906L-8.794-44.906L-8.794-48.673Q-8.794-48.803-8.925-48.835Q-9.057-48.868-9.262-48.868L-9.262-49.288L-7.926-49.343L-7.926-44.906L-7.454-44.906L-7.454-44.486M-6.897-46.062Q-6.897-46.455-6.738-46.761Q-6.579-47.067-6.311-47.265Q-6.042-47.463-5.702-47.560Q-5.362-47.658-4.986-47.658Q-4.207-47.658-3.764-47.270Q-3.322-46.882-3.322-46.110Q-3.322-45.973-3.462-45.942L-5.895-45.942Q-5.895-45.375-5.591-45.101Q-5.287-44.828-4.713-44.828Q-4.415-44.828-4.149-44.956Q-3.882-45.084-3.776-45.340Q-3.735-45.416-3.650-45.440L-3.462-45.440Q-3.322-45.409-3.322-45.282Q-3.322-45.248-3.329-45.228Q-3.411-45.016-3.575-44.862Q-3.739-44.708-3.951-44.618Q-4.162-44.527-4.390-44.486Q-4.617-44.445-4.860-44.445Q-5.390-44.445-5.853-44.618Q-6.316-44.790-6.606-45.158Q-6.897-45.525-6.897-46.062M-5.895-46.263L-4.039-46.263Q-4.039-46.732-4.282-47.019Q-4.525-47.306-4.986-47.306Q-5.444-47.306-5.670-47.019Q-5.895-46.732-5.895-46.263\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.64 -19.084)\">\u003Cpath d=\"M-18.685-44.486L-21.782-44.486L-21.782-44.906L-20.688-44.906L-20.688-48.359Q-21.146-48.212-21.857-48.212L-21.857-48.629Q-21.321-48.629-20.881-48.721Q-20.442-48.813-20.100-49.076L-19.892-49.076Q-19.772-49.056-19.752-48.940L-19.752-44.906L-18.685-44.906\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.052 -19.084)\">\u003Cpath d=\"M-18.750-44.486L-22.083-44.486L-22.083-44.794Q-22.073-44.835-22.038-44.879L-20.494-46.236Q-20.083-46.595-19.834-46.940Q-19.584-47.285-19.584-47.692Q-19.584-47.983-19.728-48.203Q-19.871-48.423-20.119-48.541Q-20.367-48.659-20.654-48.659Q-20.996-48.659-21.228-48.526Q-21.102-48.454-21.035-48.324Q-20.969-48.194-20.969-48.048Q-20.969-47.812-21.129-47.651Q-21.290-47.490-21.522-47.490Q-21.758-47.490-21.921-47.649Q-22.083-47.808-22.083-48.048Q-22.083-48.430-21.821-48.661Q-21.560-48.892-21.174-48.984Q-20.787-49.076-20.422-49.076Q-19.960-49.076-19.521-48.933Q-19.082-48.789-18.797-48.478Q-18.511-48.167-18.511-47.692Q-18.511-47.395-18.650-47.157Q-18.788-46.920-19.005-46.737Q-19.222-46.554-19.560-46.342Q-19.899-46.130-20.032-46.034L-20.822-45.474L-20.576-45.474Q-19.984-45.474-19.583-45.482Q-19.181-45.491-19.157-45.508Q-19.048-45.638-18.979-46.110L-18.511-46.110\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(131.463 -19.084)\">\u003Cpath d=\"M-21.304-44.999Q-21.122-44.886-20.885-44.836Q-20.647-44.787-20.401-44.787Q-19.957-44.787-19.781-45.043Q-19.605-45.299-19.605-45.768Q-19.605-46.233-19.788-46.491Q-19.971-46.749-20.415-46.749L-20.928-46.749Q-21.016-46.769-21.040-46.858L-21.040-46.985Q-21.016-47.077-20.928-47.097L-20.494-47.125Q-20.159-47.125-19.952-47.425Q-19.745-47.726-19.745-48.085Q-19.745-48.427-19.902-48.577Q-20.059-48.728-20.401-48.728Q-20.859-48.728-21.157-48.506Q-21.006-48.451-20.914-48.311Q-20.822-48.171-20.822-48Q-20.822-47.856-20.892-47.730Q-20.962-47.603-21.087-47.531Q-21.211-47.460-21.362-47.460Q-21.591-47.460-21.750-47.619Q-21.909-47.778-21.909-48Q-21.909-48.270-21.770-48.480Q-21.632-48.690-21.411-48.820Q-21.191-48.950-20.928-49.013Q-20.664-49.076-20.401-49.076Q-20.121-49.076-19.837-49.034Q-19.554-48.991-19.290-48.880Q-19.027-48.769-18.856-48.570Q-18.685-48.372-18.685-48.085Q-18.685-47.672-18.962-47.379Q-19.239-47.087-19.666-46.930Q-19.167-46.831-18.802-46.532Q-18.436-46.233-18.436-45.768Q-18.436-45.399-18.614-45.134Q-18.791-44.869-19.079-44.708Q-19.366-44.548-19.711-44.474Q-20.056-44.401-20.401-44.401Q-20.794-44.401-21.199-44.505Q-21.604-44.609-21.881-44.859Q-22.158-45.108-22.158-45.522Q-22.158-45.682-22.083-45.814Q-22.008-45.945-21.874-46.024Q-21.741-46.103-21.570-46.103Q-21.406-46.103-21.275-46.026Q-21.143-45.949-21.066-45.817Q-20.989-45.686-20.989-45.522Q-20.989-45.354-21.071-45.214Q-21.153-45.074-21.304-44.999\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(169.874 -19.084)\">\u003Cpath d=\"M-20.053-45.563L-22.278-45.563L-22.278-45.983L-19.694-49.015Q-19.632-49.076-19.540-49.076L-19.219-49.076Q-19.157-49.076-19.111-49.034Q-19.065-48.991-19.065-48.923L-19.065-45.983L-18.316-45.983L-18.316-45.563L-19.065-45.563L-19.065-44.906L-18.316-44.906L-18.316-44.486L-20.921-44.486L-20.921-44.906L-20.053-44.906L-20.053-45.563M-19.960-48.092L-21.751-45.983L-19.960-45.983\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.286 -19.084)\">\u003Cpath d=\"M-21.382-45.081Q-21.054-44.787-20.541-44.787Q-20.162-44.787-19.955-44.913Q-19.748-45.040-19.673-45.282Q-19.598-45.525-19.598-45.901Q-19.598-46.246-19.632-46.467Q-19.666-46.687-19.812-46.846Q-19.957-47.005-20.275-47.005Q-21.003-47.005-21.348-46.578Q-21.403-46.523-21.451-46.523L-21.604-46.523Q-21.724-46.544-21.745-46.663L-21.745-48.967Q-21.721-49.076-21.621-49.076Q-21.615-49.076-21.577-49.069Q-20.952-48.854-20.306-48.854Q-19.656-48.854-19.031-49.069Q-18.996-49.076-18.990-49.076Q-18.887-49.076-18.863-48.967L-18.863-48.840Q-18.873-48.799-18.891-48.769Q-19.113-48.495-19.402-48.300Q-19.690-48.106-20.029-48Q-20.367-47.894-20.709-47.894Q-20.958-47.894-21.222-47.931L-21.222-47.125Q-20.822-47.357-20.268-47.357Q-19.912-47.357-19.600-47.267Q-19.287-47.176-19.041-46.993Q-18.795-46.810-18.653-46.530Q-18.511-46.250-18.511-45.887Q-18.511-45.494-18.687-45.209Q-18.863-44.923-19.159-44.746Q-19.454-44.568-19.812-44.484Q-20.169-44.401-20.541-44.401Q-20.911-44.401-21.264-44.534Q-21.618-44.667-21.850-44.935Q-22.083-45.204-22.083-45.587Q-22.083-45.805-21.927-45.957Q-21.772-46.110-21.550-46.110Q-21.403-46.110-21.283-46.039Q-21.163-45.969-21.093-45.853Q-21.023-45.737-21.023-45.587Q-21.023-45.409-21.121-45.270Q-21.218-45.132-21.382-45.081\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(246.697 -19.084)\">\u003Cpath d=\"M-20.295-44.401Q-20.815-44.401-21.177-44.585Q-21.539-44.770-21.755-45.094Q-21.970-45.419-22.064-45.840Q-22.158-46.260-22.158-46.749Q-22.158-47.439-21.862-47.971Q-21.567-48.502-21.027-48.789Q-20.487-49.076-19.800-49.076Q-19.485-49.076-19.229-48.972Q-18.973-48.868-18.815-48.653Q-18.658-48.437-18.658-48.126Q-18.658-47.918-18.802-47.774Q-18.945-47.631-19.157-47.631Q-19.372-47.631-19.516-47.774Q-19.660-47.918-19.660-48.126Q-19.660-48.283-19.574-48.413Q-19.489-48.543-19.338-48.594Q-19.516-48.728-19.800-48.728Q-20.206-48.728-20.463-48.584Q-20.719-48.441-20.861-48.186Q-21.003-47.931-21.052-47.624Q-21.102-47.316-21.102-46.930Q-20.941-47.166-20.697-47.302Q-20.453-47.439-20.172-47.439Q-19.417-47.439-18.926-47.051Q-18.436-46.663-18.436-45.928Q-18.436-45.419-18.692-45.076Q-18.949-44.732-19.374-44.566Q-19.800-44.401-20.295-44.401M-20.288-44.787Q-19.919-44.787-19.745-44.923Q-19.571-45.060-19.531-45.282Q-19.492-45.505-19.492-45.915L-19.492-45.942Q-19.492-46.339-19.528-46.566Q-19.564-46.793-19.728-46.942Q-19.892-47.090-20.241-47.090Q-20.504-47.090-20.697-46.933Q-20.890-46.776-20.989-46.532Q-21.088-46.287-21.088-46.028L-21.088-45.942L-21.088-45.908Q-21.088-45.409-20.917-45.098Q-20.746-44.787-20.288-44.787\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(285.108 -19.084)\">\u003Cpath d=\"M-21.040-44.906Q-21.040-45.272-20.958-45.634Q-20.876-45.997-20.719-46.351Q-20.562-46.704-20.353-47.007Q-20.145-47.309-19.878-47.586L-19.472-48.007L-19.827-48.007Q-21.341-48.007-21.375-47.972Q-21.505-47.822-21.563-47.371L-22.032-47.371L-21.768-49.203L-21.297-49.203L-21.297-49.182Q-21.297-49.107-21.211-49.071Q-21.126-49.035-21.034-49.035L-20.842-49.035Q-20.658-49.035-20.299-49.015Q-19.940-48.994-19.759-48.994L-18.190-48.994L-18.190-48.714Q-18.190-48.670-18.224-48.629L-19.420-47.391Q-19.642-47.162-19.772-46.865Q-19.902-46.568-19.957-46.248Q-20.012-45.928-20.025-45.634Q-20.039-45.340-20.039-44.906Q-20.039-44.691-20.181-44.546Q-20.323-44.401-20.535-44.401Q-20.753-44.401-20.897-44.544Q-21.040-44.688-21.040-44.906\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-43.045 1.889)\">\u003Cpath d=\"M-22.613-44.724L-22.613-44.814Q-22.562-45.025-22.367-45.045L-22.167-45.045L-22.167-47.373L-22.367-47.373Q-22.574-47.396-22.613-47.615L-22.613-47.701Q-22.562-47.916-22.367-47.935L-21.886-47.935Q-21.695-47.912-21.636-47.701Q-21.316-47.974-20.902-47.974Q-20.710-47.974-20.542-47.865Q-20.374-47.756-20.300-47.584Q-20.124-47.775-19.902-47.875Q-19.679-47.974-19.437-47.974Q-19.019-47.974-18.865-47.632Q-18.710-47.291-18.710-46.822L-18.710-45.045L-18.511-45.045Q-18.300-45.021-18.261-44.814L-18.261-44.724Q-18.312-44.509-18.511-44.486L-19.328-44.486Q-19.523-44.509-19.574-44.724L-19.574-44.814Q-19.523-45.021-19.328-45.045L-19.238-45.045L-19.238-46.791Q-19.238-47.416-19.488-47.416Q-19.820-47.416-19.997-47.105Q-20.175-46.795-20.175-46.431L-20.175-45.045L-19.972-45.045Q-19.765-45.021-19.726-44.814L-19.726-44.724Q-19.777-44.509-19.972-44.486L-20.788-44.486Q-20.988-44.509-21.038-44.724L-21.038-44.814Q-20.988-45.021-20.788-45.045L-20.703-45.045L-20.703-46.791Q-20.703-47.416-20.949-47.416Q-21.281-47.416-21.458-47.103Q-21.636-46.791-21.636-46.431L-21.636-45.045L-21.437-45.045Q-21.230-45.021-21.191-44.814L-21.191-44.724Q-21.242-44.506-21.437-44.486L-22.367-44.486Q-22.574-44.509-22.613-44.724M-18.089-44.724L-18.089-44.814Q-18.031-45.021-17.839-45.045L-17.128-45.045L-17.128-47.373L-17.839-47.373Q-18.035-47.396-18.089-47.615L-18.089-47.701Q-18.031-47.912-17.839-47.935L-16.738-47.935Q-16.538-47.916-16.488-47.701L-16.488-47.373Q-16.226-47.658-15.870-47.816Q-15.515-47.974-15.128-47.974Q-14.835-47.974-14.601-47.840Q-14.367-47.705-14.367-47.439Q-14.367-47.271-14.476-47.154Q-14.585-47.037-14.753-47.037Q-14.906-47.037-15.021-47.148Q-15.136-47.259-15.136-47.416Q-15.511-47.416-15.826-47.215Q-16.140-47.013-16.314-46.679Q-16.488-46.345-16.488-45.966L-16.488-45.045L-15.542-45.045Q-15.335-45.021-15.296-44.814L-15.296-44.724Q-15.335-44.509-15.542-44.486L-17.839-44.486Q-18.031-44.509-18.089-44.724M-14.120-44.724L-14.120-44.814Q-14.070-45.025-13.874-45.045L-13.675-45.045L-13.675-47.373L-13.874-47.373Q-14.081-47.396-14.120-47.615L-14.120-47.701Q-14.070-47.916-13.874-47.935L-13.394-47.935Q-13.203-47.912-13.144-47.701Q-12.824-47.974-12.410-47.974Q-12.218-47.974-12.050-47.865Q-11.882-47.756-11.808-47.584Q-11.632-47.775-11.410-47.875Q-11.187-47.974-10.945-47.974Q-10.527-47.974-10.372-47.632Q-10.218-47.291-10.218-46.822L-10.218-45.045L-10.019-45.045Q-9.808-45.021-9.769-44.814L-9.769-44.724Q-9.820-44.509-10.019-44.486L-10.835-44.486Q-11.031-44.509-11.081-44.724L-11.081-44.814Q-11.031-45.021-10.835-45.045L-10.745-45.045L-10.745-46.791Q-10.745-47.416-10.995-47.416Q-11.328-47.416-11.505-47.105Q-11.683-46.795-11.683-46.431L-11.683-45.045L-11.480-45.045Q-11.273-45.021-11.234-44.814L-11.234-44.724Q-11.285-44.509-11.480-44.486L-12.296-44.486Q-12.495-44.509-12.546-44.724L-12.546-44.814Q-12.495-45.021-12.296-45.045L-12.210-45.045L-12.210-46.791Q-12.210-47.416-12.456-47.416Q-12.788-47.416-12.966-47.103Q-13.144-46.791-13.144-46.431L-13.144-45.045L-12.945-45.045Q-12.738-45.021-12.699-44.814L-12.699-44.724Q-12.749-44.506-12.945-44.486L-13.874-44.486Q-14.081-44.509-14.120-44.724M-7.699-44.447Q-8.171-44.447-8.556-44.691Q-8.941-44.935-9.163-45.345Q-9.386-45.756-9.386-46.213Q-9.386-46.556-9.261-46.879Q-9.136-47.201-8.906-47.455Q-8.675-47.709-8.369-47.853Q-8.062-47.998-7.699-47.998Q-7.335-47.998-7.023-47.851Q-6.710-47.705-6.488-47.459Q-6.265-47.213-6.138-46.892Q-6.011-46.572-6.011-46.213Q-6.011-45.756-6.236-45.343Q-6.460-44.931-6.845-44.689Q-7.230-44.447-7.699-44.447M-7.699-45.006Q-7.234-45.006-6.943-45.400Q-6.652-45.795-6.652-46.279Q-6.652-46.572-6.787-46.840Q-6.921-47.107-7.162-47.273Q-7.402-47.439-7.699-47.439Q-8.003-47.439-8.242-47.273Q-8.480-47.107-8.615-46.840Q-8.749-46.572-8.749-46.279Q-8.749-45.798-8.456-45.402Q-8.163-45.006-7.699-45.006M-3.917-44.709L-4.804-47.373L-5.124-47.373Q-5.324-47.396-5.374-47.615L-5.374-47.701Q-5.324-47.912-5.124-47.935L-3.964-47.935Q-3.769-47.916-3.718-47.701L-3.718-47.615Q-3.769-47.396-3.964-47.373L-4.245-47.373L-3.453-44.998L-2.663-47.373L-2.941-47.373Q-3.140-47.396-3.191-47.615L-3.191-47.701Q-3.140-47.912-2.941-47.935L-1.781-47.935Q-1.585-47.912-1.535-47.701L-1.535-47.615Q-1.585-47.396-1.781-47.373L-2.101-47.373L-2.988-44.709Q-3.031-44.595-3.132-44.521Q-3.234-44.447-3.359-44.447L-3.550-44.447Q-3.667-44.447-3.771-44.519Q-3.874-44.591-3.917-44.709M0.985-42.943L0.985-43.029Q1.036-43.248 1.231-43.271L1.696-43.271L1.696-44.869Q1.243-44.447 0.633-44.447Q0.278-44.447-0.027-44.590Q-0.331-44.732-0.564-44.982Q-0.796-45.232-0.921-45.554Q-1.046-45.877-1.046-46.213Q-1.046-46.697-0.808-47.097Q-0.570-47.498-0.163-47.736Q0.243-47.974 0.719-47.974Q1.282-47.974 1.696-47.584L1.696-47.744Q1.747-47.955 1.946-47.974L2.087-47.974Q2.286-47.951 2.337-47.744L2.337-43.271L2.801-43.271Q2.997-43.248 3.047-43.029L3.047-42.943Q2.997-42.732 2.801-42.709L1.231-42.709Q1.036-42.732 0.985-42.943M0.680-45.006Q1.051-45.006 1.327-45.259Q1.602-45.513 1.696-45.877L1.696-46.494Q1.653-46.732 1.530-46.945Q1.407-47.158 1.210-47.287Q1.012-47.416 0.770-47.416Q0.454-47.416 0.182-47.250Q-0.089-47.084-0.247-46.802Q-0.406-46.521-0.406-46.205Q-0.406-45.740-0.091-45.373Q0.223-45.006 0.680-45.006\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-43.045 1.889)\">\u003Cpath d=\"M10.305-43.845Q9.774-44.154 9.374-44.642Q8.973-45.131 8.762-45.724Q8.551-46.318 8.551-46.935Q8.551-47.552 8.760-48.140Q8.969-48.728 9.366-49.209Q9.762-49.689 10.297-50.013Q10.368-50.037 10.399-50.037L10.489-50.037Q10.587-50.025 10.653-49.959Q10.719-49.892 10.719-49.791Q10.719-49.646 10.618-49.584Q10.169-49.295 9.842-48.879Q9.516-48.463 9.354-47.970Q9.192-47.478 9.192-46.935Q9.192-46.529 9.288-46.142Q9.383-45.756 9.561-45.420Q9.739-45.084 9.999-44.800Q10.258-44.517 10.606-44.287Q10.719-44.209 10.719-44.072Q10.719-43.974 10.653-43.904Q10.587-43.834 10.489-43.822L10.399-43.822Q10.340-43.822 10.305-43.845M12.118-44.127Q12.118-44.181 12.141-44.248L14.407-49.853Q14.501-50.037 14.696-50.037Q14.821-50.037 14.909-49.949Q14.997-49.861 14.997-49.732Q14.997-49.673 14.973-49.615L12.712-44.006Q12.610-43.822 12.430-43.822Q12.305-43.822 12.212-43.912Q12.118-44.002 12.118-44.127M14.696-43.822Q14.344-43.822 14.163-44.162Q13.981-44.502 13.981-44.884Q13.981-45.271 14.161-45.611Q14.340-45.951 14.696-45.951Q14.934-45.951 15.092-45.781Q15.251-45.611 15.325-45.367Q15.399-45.123 15.399-44.884Q15.399-44.650 15.325-44.406Q15.251-44.162 15.092-43.992Q14.934-43.822 14.696-43.822M14.696-44.381Q14.778-44.412 14.825-44.580Q14.872-44.748 14.872-44.884Q14.872-45.021 14.825-45.191Q14.778-45.361 14.696-45.388Q14.610-45.361 14.559-45.193Q14.508-45.025 14.508-44.884Q14.508-44.756 14.559-44.584Q14.610-44.412 14.696-44.381M12.430-47.900Q12.188-47.900 12.028-48.070Q11.868-48.240 11.794-48.486Q11.719-48.732 11.719-48.974Q11.719-49.357 11.899-49.697Q12.079-50.037 12.430-50.037Q12.669-50.037 12.827-49.867Q12.985-49.697 13.059-49.453Q13.133-49.209 13.133-48.974Q13.133-48.732 13.059-48.486Q12.985-48.240 12.827-48.070Q12.669-47.900 12.430-47.900M12.430-48.463Q12.520-48.506 12.563-48.662Q12.606-48.818 12.606-48.974Q12.606-49.103 12.559-49.279Q12.512-49.455 12.422-49.478Q12.407-49.478 12.378-49.443Q12.348-49.408 12.340-49.388Q12.247-49.201 12.247-48.974Q12.247-48.838 12.296-48.666Q12.344-48.494 12.430-48.463M15.907-44.724L15.907-44.814Q15.965-45.021 16.157-45.045L16.868-45.045L16.868-47.373L16.157-47.373Q15.962-47.396 15.907-47.615L15.907-47.701Q15.965-47.912 16.157-47.935L17.258-47.935Q17.458-47.916 17.508-47.701L17.508-47.373Q17.770-47.658 18.126-47.816Q18.481-47.974 18.868-47.974Q19.161-47.974 19.395-47.840Q19.630-47.705 19.630-47.439Q19.630-47.271 19.520-47.154Q19.411-47.037 19.243-47.037Q19.090-47.037 18.975-47.148Q18.860-47.259 18.860-47.416Q18.485-47.416 18.171-47.215Q17.856-47.013 17.682-46.679Q17.508-46.345 17.508-45.966L17.508-45.045L18.454-45.045Q18.661-45.021 18.700-44.814L18.700-44.724Q18.661-44.509 18.454-44.486L16.157-44.486Q15.965-44.509 15.907-44.724M21.794-44.447Q21.329-44.447 20.963-44.697Q20.598-44.947 20.393-45.351Q20.188-45.756 20.188-46.213Q20.188-46.556 20.313-46.877Q20.438-47.197 20.671-47.447Q20.903-47.697 21.208-47.836Q21.512-47.974 21.868-47.974Q22.380-47.974 22.786-47.654L22.786-48.814L22.364-48.814Q22.153-48.838 22.114-49.052L22.114-49.142Q22.153-49.349 22.364-49.373L23.176-49.373Q23.376-49.349 23.426-49.142L23.426-45.045L23.852-45.045Q24.059-45.021 24.098-44.814L24.098-44.724Q24.059-44.509 23.852-44.486L23.036-44.486Q22.837-44.509 22.786-44.724L22.786-44.853Q22.590-44.662 22.329-44.554Q22.067-44.447 21.794-44.447M21.833-45.006Q22.192-45.006 22.444-45.275Q22.696-45.545 22.786-45.920L22.786-46.752Q22.727-46.939 22.600-47.090Q22.473-47.240 22.296-47.328Q22.118-47.416 21.922-47.416Q21.614-47.416 21.364-47.246Q21.114-47.076 20.969-46.791Q20.825-46.506 20.825-46.205Q20.825-45.756 21.110-45.381Q21.395-45.006 21.833-45.006M24.794-44.724L24.794-44.814Q24.844-45.021 25.040-45.045L26.079-45.045L26.079-47.373L25.106-47.373Q24.907-47.396 24.856-47.615L24.856-47.701Q24.907-47.912 25.106-47.935L26.473-47.935Q26.669-47.916 26.719-47.701L26.719-45.045L27.633-45.045Q27.829-45.021 27.880-44.814L27.880-44.724Q27.829-44.509 27.633-44.486L25.040-44.486Q24.844-44.509 24.794-44.724M25.825-48.912L25.825-48.966Q25.825-49.138 25.962-49.259Q26.098-49.381 26.274-49.381Q26.446-49.381 26.583-49.259Q26.719-49.138 26.719-48.966L26.719-48.912Q26.719-48.736 26.583-48.615Q26.446-48.494 26.274-48.494Q26.098-48.494 25.962-48.615Q25.825-48.736 25.825-48.912M29.462-43.822L29.376-43.822Q29.270-43.834 29.202-43.906Q29.133-43.978 29.133-44.072Q29.133-44.213 29.239-44.279Q29.575-44.494 29.844-44.783Q30.114-45.072 30.297-45.420Q30.481-45.767 30.571-46.146Q30.661-46.525 30.661-46.935Q30.661-47.474 30.497-47.966Q30.333-48.459 30.014-48.873Q29.696-49.287 29.255-49.576Q29.133-49.658 29.133-49.791Q29.133-49.888 29.202-49.957Q29.270-50.025 29.376-50.037L29.462-50.037Q29.516-50.037 29.551-50.013Q29.938-49.791 30.278-49.443Q30.618-49.095 30.838-48.701Q31.059-48.306 31.180-47.861Q31.301-47.416 31.301-46.935Q31.301-46.451 31.180-46Q31.059-45.548 30.835-45.152Q30.610-44.756 30.286-44.422Q29.962-44.088 29.559-43.845Q29.489-43.822 29.462-43.822M34.387-43.373Q34.274-43.373 34.184-43.463Q34.094-43.552 34.094-43.662Q34.094-43.838 34.286-43.912Q34.505-43.963 34.676-44.121Q34.848-44.279 34.915-44.502Q34.891-44.502 34.860-44.486L34.797-44.486Q34.567-44.486 34.401-44.648Q34.235-44.810 34.235-45.045Q34.235-45.279 34.399-45.439Q34.563-45.599 34.797-45.599Q35.008-45.599 35.172-45.478Q35.337-45.357 35.426-45.164Q35.516-44.970 35.516-44.759Q35.516-44.283 35.217-43.894Q34.919-43.506 34.454-43.381Q34.430-43.373 34.387-43.373M37.594-44.127Q37.594-44.181 37.618-44.248L39.883-49.853Q39.977-50.037 40.172-50.037Q40.297-50.037 40.385-49.949Q40.473-49.861 40.473-49.732Q40.473-49.673 40.450-49.615L38.188-44.006Q38.087-43.822 37.907-43.822Q37.782-43.822 37.688-43.912Q37.594-44.002 37.594-44.127M40.172-43.822Q39.821-43.822 39.639-44.162Q39.458-44.502 39.458-44.884Q39.458-45.271 39.637-45.611Q39.817-45.951 40.172-45.951Q40.411-45.951 40.569-45.781Q40.727-45.611 40.801-45.367Q40.876-45.123 40.876-44.884Q40.876-44.650 40.801-44.406Q40.727-44.162 40.569-43.992Q40.411-43.822 40.172-43.822M40.172-44.381Q40.255-44.412 40.301-44.580Q40.348-44.748 40.348-44.884Q40.348-45.021 40.301-45.191Q40.255-45.361 40.172-45.388Q40.087-45.361 40.036-45.193Q39.985-45.025 39.985-44.884Q39.985-44.756 40.036-44.584Q40.087-44.412 40.172-44.381M37.907-47.900Q37.665-47.900 37.505-48.070Q37.344-48.240 37.270-48.486Q37.196-48.732 37.196-48.974Q37.196-49.357 37.376-49.697Q37.555-50.037 37.907-50.037Q38.145-50.037 38.303-49.867Q38.462-49.697 38.536-49.453Q38.610-49.209 38.610-48.974Q38.610-48.732 38.536-48.486Q38.462-48.240 38.303-48.070Q38.145-47.900 37.907-47.900M37.907-48.463Q37.997-48.506 38.040-48.662Q38.083-48.818 38.083-48.974Q38.083-49.103 38.036-49.279Q37.989-49.455 37.899-49.478Q37.883-49.478 37.854-49.443Q37.825-49.408 37.817-49.388Q37.723-49.201 37.723-48.974Q37.723-48.838 37.772-48.666Q37.821-48.494 37.907-48.463M41.383-44.724L41.383-44.814Q41.442-45.021 41.633-45.045L42.344-45.045L42.344-47.373L41.633-47.373Q41.438-47.396 41.383-47.615L41.383-47.701Q41.442-47.912 41.633-47.935L42.735-47.935Q42.934-47.916 42.985-47.701L42.985-47.373Q43.247-47.658 43.602-47.816Q43.958-47.974 44.344-47.974Q44.637-47.974 44.872-47.840Q45.106-47.705 45.106-47.439Q45.106-47.271 44.997-47.154Q44.887-47.037 44.719-47.037Q44.567-47.037 44.452-47.148Q44.337-47.259 44.337-47.416Q43.962-47.416 43.647-47.215Q43.333-47.013 43.159-46.679Q42.985-46.345 42.985-45.966L42.985-45.045L43.930-45.045Q44.137-45.021 44.176-44.814L44.176-44.724Q44.137-44.509 43.930-44.486L41.633-44.486Q41.442-44.509 41.383-44.724M45.813-45.599Q45.813-46.045 46.227-46.302Q46.641-46.560 47.182-46.660Q47.723-46.759 48.231-46.767Q48.231-46.982 48.096-47.134Q47.962-47.287 47.755-47.363Q47.547-47.439 47.337-47.439Q46.993-47.439 46.833-47.416L46.833-47.357Q46.833-47.189 46.713-47.074Q46.594-46.959 46.430-46.959Q46.255-46.959 46.139-47.082Q46.024-47.205 46.024-47.373Q46.024-47.779 46.405-47.888Q46.786-47.998 47.344-47.998Q47.614-47.998 47.881-47.920Q48.149-47.841 48.374-47.691Q48.598-47.541 48.735-47.320Q48.872-47.099 48.872-46.822L48.872-45.103Q48.872-45.045 49.399-45.045Q49.594-45.025 49.645-44.814L49.645-44.724Q49.594-44.509 49.399-44.486L49.255-44.486Q48.911-44.486 48.682-44.533Q48.454-44.580 48.309-44.767Q47.848-44.447 47.141-44.447Q46.805-44.447 46.501-44.588Q46.196-44.728 46.005-44.990Q45.813-45.252 45.813-45.599M46.454-45.591Q46.454-45.318 46.696-45.162Q46.938-45.006 47.223-45.006Q47.442-45.006 47.674-45.064Q47.907-45.123 48.069-45.261Q48.231-45.400 48.231-45.623L48.231-46.213Q47.950-46.213 47.534-46.156Q47.118-46.099 46.786-45.961Q46.454-45.822 46.454-45.591M49.911-44.724L49.911-44.814Q49.950-45.021 50.157-45.045L50.563-45.045L51.493-46.263L50.622-47.373L50.204-47.373Q50.008-47.392 49.958-47.615L49.958-47.701Q50.008-47.912 50.204-47.935L51.364-47.935Q51.563-47.912 51.614-47.701L51.614-47.615Q51.563-47.396 51.364-47.373L51.255-47.373L51.751-46.716L52.227-47.373L52.110-47.373Q51.911-47.396 51.860-47.615L51.860-47.701Q51.911-47.912 52.110-47.935L53.270-47.935Q53.465-47.916 53.516-47.701L53.516-47.615Q53.465-47.396 53.270-47.373L52.860-47.373L52.012-46.263L52.973-45.045L53.380-45.045Q53.579-45.021 53.630-44.814L53.630-44.724Q53.590-44.509 53.380-44.486L52.227-44.486Q52.020-44.509 51.981-44.724L51.981-44.814Q52.020-45.021 52.227-45.045L52.356-45.045L51.751-45.900L51.165-45.045L51.309-45.045Q51.516-45.021 51.555-44.814L51.555-44.724Q51.516-44.509 51.309-44.486L50.157-44.486Q49.962-44.506 49.911-44.724\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M20.12-34.528h28.454v-19.917H20.12Z\"\u002F>\u003Cg transform=\"translate(54.78 2.444)\">\u003Cpath d=\"M-22.351-44.724L-22.351-44.814Q-22.312-45.021-22.101-45.045L-21.765-45.045L-21.765-48.814L-22.101-48.814Q-22.312-48.838-22.351-49.052L-22.351-49.142Q-22.312-49.349-22.101-49.373L-18.847-49.373Q-18.648-49.349-18.597-49.142L-18.597-48.302Q-18.644-48.088-18.847-48.060L-18.992-48.060Q-19.187-48.088-19.238-48.302L-19.238-48.814L-21.124-48.814L-21.124-47.213L-20.117-47.213L-20.117-47.431Q-20.066-47.638-19.870-47.662L-19.726-47.662Q-19.531-47.642-19.480-47.431L-19.480-46.447Q-19.531-46.228-19.726-46.205L-19.870-46.205Q-20.066-46.224-20.117-46.447L-20.117-46.654L-21.124-46.654L-21.124-45.045L-20.636-45.045Q-20.441-45.021-20.390-44.814L-20.390-44.724Q-20.441-44.509-20.636-44.486L-22.101-44.486Q-22.312-44.509-22.351-44.724\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M58.532-34.528h28.453v-19.917H58.532Z\"\u002F>\u003Cg transform=\"translate(93.192 2.444)\">\u003Cpath d=\"M-22.421-44.724L-22.421-44.814Q-22.382-45.021-22.175-45.045L-21.925-45.045L-21.925-48.814L-22.175-48.814Q-22.382-48.838-22.421-49.052L-22.421-49.142Q-22.382-49.349-22.175-49.373L-20.359-49.373Q-19.808-49.373-19.413-48.980Q-19.019-48.588-18.824-48.009Q-18.628-47.431-18.628-46.884Q-18.628-46.357-18.828-45.793Q-19.027-45.228-19.419-44.857Q-19.812-44.486-20.359-44.486L-22.175-44.486Q-22.382-44.509-22.421-44.724M-21.285-48.814L-21.285-45.045L-20.519-45.045Q-19.925-45.045-19.597-45.640Q-19.269-46.236-19.269-46.884Q-19.269-47.291-19.404-47.740Q-19.538-48.189-19.824-48.502Q-20.109-48.814-20.519-48.814\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M96.943-34.528h28.453v-19.917H96.943Z\"\u002F>\u003Cg transform=\"translate(131.603 2.444)\">\u003Cpath d=\"M-22.374-44.724L-22.374-44.814Q-22.335-45.021-22.124-45.045L-21.816-45.045L-21.816-48.814L-22.124-48.814Q-22.335-48.838-22.374-49.052L-22.374-49.142Q-22.335-49.349-22.124-49.373L-18.917-49.373Q-18.722-49.349-18.671-49.142L-18.671-48.302Q-18.722-48.088-18.917-48.060L-19.062-48.060Q-19.257-48.088-19.312-48.302L-19.312-48.814L-21.175-48.814L-21.175-47.295L-20.199-47.295L-20.199-47.509Q-20.148-47.716-19.949-47.744L-19.804-47.744Q-19.609-47.716-19.558-47.509L-19.558-46.525Q-19.609-46.310-19.804-46.287L-19.949-46.287Q-20.148-46.310-20.199-46.525L-20.199-46.732L-21.175-46.732L-21.175-45.045L-19.132-45.045L-19.132-45.685Q-19.081-45.892-18.886-45.920L-18.742-45.920Q-18.546-45.892-18.495-45.685L-18.495-44.724Q-18.546-44.506-18.742-44.486L-22.124-44.486Q-22.335-44.509-22.374-44.724\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M135.355-34.528h28.452v-19.917h-28.452Z\"\u002F>\u003Cg transform=\"translate(170.014 2.444)\">\u003Cpath d=\"M-22.445-44.724L-22.445-44.814Q-22.394-45.021-22.199-45.045L-22.023-45.045L-22.023-48.814L-22.199-48.814Q-22.394-48.838-22.445-49.052L-22.445-49.142Q-22.394-49.349-22.199-49.373L-21.511-49.373Q-21.382-49.373-21.283-49.297Q-21.183-49.220-21.144-49.111Q-21.113-49.006-20.890-48.316Q-20.667-47.627-20.552-47.230Q-20.437-46.834-20.437-46.759Q-20.429-46.838-20.374-47.035Q-20.320-47.232-20.206-47.603Q-20.093-47.974-19.947-48.437Q-19.800-48.900-19.734-49.111Q-19.695-49.220-19.591-49.297Q-19.488-49.373-19.367-49.373L-18.679-49.373Q-18.480-49.349-18.429-49.142L-18.429-49.052Q-18.480-48.838-18.679-48.814L-18.855-48.814L-18.855-45.045L-18.679-45.045Q-18.480-45.021-18.429-44.814L-18.429-44.724Q-18.480-44.509-18.679-44.486L-19.558-44.486Q-19.753-44.509-19.804-44.724L-19.804-44.814Q-19.753-45.021-19.558-45.045L-19.382-45.045L-19.382-48.732Q-19.382-48.673-19.466-48.375Q-19.550-48.076-19.654-47.744Q-19.757-47.412-19.888-47.004Q-20.019-46.595-20.085-46.381Q-20.124-46.267-20.224-46.193Q-20.324-46.119-20.437-46.119Q-20.550-46.119-20.650-46.193Q-20.749-46.267-20.788-46.381Q-20.855-46.595-20.990-47.013Q-21.124-47.431-21.261-47.875Q-21.398-48.318-21.443-48.482Q-21.488-48.646-21.495-48.732L-21.495-45.045L-21.320-45.045Q-21.120-45.021-21.070-44.814L-21.070-44.724Q-21.120-44.509-21.320-44.486L-22.199-44.486Q-22.394-44.509-22.445-44.724\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M173.765-34.528h28.453v-19.917h-28.453Z\"\u002F>\u003Cg transform=\"translate(208.425 2.444)\">\u003Cpath d=\"M-21.589-44.670L-22.160-48.814L-22.214-48.814Q-22.410-48.838-22.460-49.052L-22.460-49.142Q-22.410-49.349-22.214-49.373L-21.359-49.373Q-21.148-49.349-21.109-49.142L-21.109-49.052Q-21.148-48.838-21.359-48.814L-21.628-48.814Q-21.589-48.529-21.453-47.496Q-21.316-46.463-21.253-45.918Q-21.191-45.373-21.183-45.127Q-21.183-45.420-21.097-45.865Q-21.011-46.310-20.824-47.158Q-20.792-47.279-20.703-47.351Q-20.613-47.423-20.495-47.423L-20.382-47.423Q-20.257-47.423-20.167-47.349Q-20.078-47.275-20.054-47.158Q-19.890-46.455-19.792-45.947Q-19.695-45.439-19.695-45.127Q-19.687-45.318-19.638-45.761Q-19.589-46.205-19.540-46.595Q-19.492-46.986-19.384-47.779Q-19.277-48.572-19.245-48.814L-19.519-48.814Q-19.726-48.838-19.765-49.052L-19.765-49.142Q-19.726-49.349-19.519-49.373L-18.663-49.373Q-18.464-49.349-18.413-49.142L-18.413-49.052Q-18.464-48.838-18.663-48.814L-18.718-48.814L-19.285-44.670Q-19.296-44.560-19.384-44.484Q-19.472-44.408-19.589-44.408L-19.695-44.408Q-19.808-44.408-19.904-44.482Q-19.999-44.556-20.023-44.670Q-20.120-45.091-20.216-45.541Q-20.312-45.990-20.370-46.308Q-20.429-46.627-20.437-46.783Q-20.437-46.506-20.855-44.670Q-20.878-44.556-20.972-44.482Q-21.066-44.408-21.183-44.408L-21.285-44.408Q-21.402-44.408-21.490-44.484Q-21.578-44.560-21.589-44.670\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-21.795 38.878)\">\u003Cpath d=\"M-22.152-45.599Q-22.152-46.045-21.738-46.302Q-21.324-46.560-20.783-46.660Q-20.242-46.759-19.734-46.767Q-19.734-46.982-19.869-47.134Q-20.003-47.287-20.210-47.363Q-20.417-47.439-20.628-47.439Q-20.972-47.439-21.132-47.416L-21.132-47.357Q-21.132-47.189-21.251-47.074Q-21.370-46.959-21.535-46.959Q-21.710-46.959-21.826-47.082Q-21.941-47.205-21.941-47.373Q-21.941-47.779-21.560-47.888Q-21.179-47.998-20.620-47.998Q-20.351-47.998-20.083-47.920Q-19.816-47.841-19.591-47.691Q-19.367-47.541-19.230-47.320Q-19.093-47.099-19.093-46.822L-19.093-45.103Q-19.093-45.045-18.566-45.045Q-18.370-45.025-18.320-44.814L-18.320-44.724Q-18.370-44.509-18.566-44.486L-18.710-44.486Q-19.054-44.486-19.283-44.533Q-19.511-44.580-19.656-44.767Q-20.117-44.447-20.824-44.447Q-21.160-44.447-21.464-44.588Q-21.769-44.728-21.960-44.990Q-22.152-45.252-22.152-45.599M-21.511-45.591Q-21.511-45.318-21.269-45.162Q-21.027-45.006-20.742-45.006Q-20.523-45.006-20.290-45.064Q-20.058-45.123-19.896-45.261Q-19.734-45.400-19.734-45.623L-19.734-46.213Q-20.015-46.213-20.431-46.156Q-20.847-46.099-21.179-45.961Q-21.511-45.822-21.511-45.591M-16.449-44.447Q-16.913-44.447-17.279-44.697Q-17.644-44.947-17.849-45.351Q-18.054-45.756-18.054-46.213Q-18.054-46.556-17.929-46.877Q-17.804-47.197-17.572-47.447Q-17.339-47.697-17.035-47.836Q-16.730-47.974-16.374-47.974Q-15.863-47.974-15.456-47.654L-15.456-48.814L-15.878-48.814Q-16.089-48.838-16.128-49.052L-16.128-49.142Q-16.089-49.349-15.878-49.373L-15.066-49.373Q-14.867-49.349-14.816-49.142L-14.816-45.045L-14.390-45.045Q-14.183-45.021-14.144-44.814L-14.144-44.724Q-14.183-44.509-14.390-44.486L-15.206-44.486Q-15.406-44.509-15.456-44.724L-15.456-44.853Q-15.652-44.662-15.913-44.554Q-16.175-44.447-16.449-44.447M-16.410-45.006Q-16.050-45.006-15.798-45.275Q-15.546-45.545-15.456-45.920L-15.456-46.752Q-15.515-46.939-15.642-47.090Q-15.769-47.240-15.947-47.328Q-16.124-47.416-16.320-47.416Q-16.628-47.416-16.878-47.246Q-17.128-47.076-17.273-46.791Q-17.417-46.506-17.417-46.205Q-17.417-45.756-17.132-45.381Q-16.847-45.006-16.410-45.006M-12.203-44.447Q-12.667-44.447-13.033-44.697Q-13.398-44.947-13.603-45.351Q-13.808-45.756-13.808-46.213Q-13.808-46.556-13.683-46.877Q-13.558-47.197-13.326-47.447Q-13.093-47.697-12.788-47.836Q-12.484-47.974-12.128-47.974Q-11.617-47.974-11.210-47.654L-11.210-48.814L-11.632-48.814Q-11.843-48.838-11.882-49.052L-11.882-49.142Q-11.843-49.349-11.632-49.373L-10.820-49.373Q-10.620-49.349-10.570-49.142L-10.570-45.045L-10.144-45.045Q-9.937-45.021-9.898-44.814L-9.898-44.724Q-9.937-44.509-10.144-44.486L-10.960-44.486Q-11.160-44.509-11.210-44.724L-11.210-44.853Q-11.406-44.662-11.667-44.554Q-11.929-44.447-12.203-44.447M-12.163-45.006Q-11.804-45.006-11.552-45.275Q-11.300-45.545-11.210-45.920L-11.210-46.752Q-11.269-46.939-11.396-47.090Q-11.523-47.240-11.701-47.328Q-11.878-47.416-12.074-47.416Q-12.382-47.416-12.632-47.246Q-12.882-47.076-13.027-46.791Q-13.171-46.506-13.171-46.205Q-13.171-45.756-12.886-45.381Q-12.601-45.006-12.163-45.006M-7.507-42.943L-7.507-43.029Q-7.456-43.248-7.261-43.271L-6.796-43.271L-6.796-44.869Q-7.249-44.447-7.859-44.447Q-8.214-44.447-8.519-44.590Q-8.824-44.732-9.056-44.982Q-9.288-45.232-9.413-45.554Q-9.538-45.877-9.538-46.213Q-9.538-46.697-9.300-47.097Q-9.062-47.498-8.656-47.736Q-8.249-47.974-7.773-47.974Q-7.210-47.974-6.796-47.584L-6.796-47.744Q-6.745-47.955-6.546-47.974L-6.406-47.974Q-6.206-47.951-6.156-47.744L-6.156-43.271L-5.691-43.271Q-5.495-43.248-5.445-43.029L-5.445-42.943Q-5.495-42.732-5.691-42.709L-7.261-42.709Q-7.456-42.732-7.507-42.943M-7.812-45.006Q-7.441-45.006-7.165-45.259Q-6.890-45.513-6.796-45.877L-6.796-46.494Q-6.839-46.732-6.962-46.945Q-7.085-47.158-7.283-47.287Q-7.480-47.416-7.722-47.416Q-8.038-47.416-8.310-47.250Q-8.581-47.084-8.740-46.802Q-8.898-46.521-8.898-46.205Q-8.898-45.740-8.583-45.373Q-8.269-45.006-7.812-45.006\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.795 38.878)\">\u003Cpath d=\"M-0.628-44.127Q-0.628-44.181-0.605-44.248L1.661-49.853Q1.755-50.037 1.950-50.037Q2.075-50.037 2.163-49.949Q2.251-49.861 2.251-49.732Q2.251-49.673 2.227-49.615L-0.035-44.006Q-0.136-43.822-0.316-43.822Q-0.441-43.822-0.535-43.912Q-0.628-44.002-0.628-44.127M1.950-43.822Q1.598-43.822 1.417-44.162Q1.235-44.502 1.235-44.884Q1.235-45.271 1.415-45.611Q1.594-45.951 1.950-45.951Q2.188-45.951 2.346-45.781Q2.505-45.611 2.579-45.367Q2.653-45.123 2.653-44.884Q2.653-44.650 2.579-44.406Q2.505-44.162 2.346-43.992Q2.188-43.822 1.950-43.822M1.950-44.381Q2.032-44.412 2.079-44.580Q2.126-44.748 2.126-44.884Q2.126-45.021 2.079-45.191Q2.032-45.361 1.950-45.388Q1.864-45.361 1.813-45.193Q1.762-45.025 1.762-44.884Q1.762-44.756 1.813-44.584Q1.864-44.412 1.950-44.381M-0.316-47.900Q-0.558-47.900-0.718-48.070Q-0.878-48.240-0.953-48.486Q-1.027-48.732-1.027-48.974Q-1.027-49.357-0.847-49.697Q-0.667-50.037-0.316-50.037Q-0.078-50.037 0.081-49.867Q0.239-49.697 0.313-49.453Q0.387-49.209 0.387-48.974Q0.387-48.732 0.313-48.486Q0.239-48.240 0.081-48.070Q-0.078-47.900-0.316-47.900M-0.316-48.463Q-0.226-48.506-0.183-48.662Q-0.140-48.818-0.140-48.974Q-0.140-49.103-0.187-49.279Q-0.234-49.455-0.324-49.478Q-0.339-49.478-0.369-49.443Q-0.398-49.408-0.406-49.388Q-0.499-49.201-0.499-48.974Q-0.499-48.838-0.451-48.666Q-0.402-48.494-0.316-48.463M3.161-44.724L3.161-44.814Q3.219-45.021 3.411-45.045L4.122-45.045L4.122-47.373L3.411-47.373Q3.215-47.396 3.161-47.615L3.161-47.701Q3.219-47.912 3.411-47.935L4.512-47.935Q4.712-47.916 4.762-47.701L4.762-47.373Q5.024-47.658 5.380-47.816Q5.735-47.974 6.122-47.974Q6.415-47.974 6.649-47.840Q6.883-47.705 6.883-47.439Q6.883-47.271 6.774-47.154Q6.665-47.037 6.497-47.037Q6.344-47.037 6.229-47.148Q6.114-47.259 6.114-47.416Q5.739-47.416 5.424-47.215Q5.110-47.013 4.936-46.679Q4.762-46.345 4.762-45.966L4.762-45.045L5.708-45.045Q5.915-45.021 5.954-44.814L5.954-44.724Q5.915-44.509 5.708-44.486L3.411-44.486Q3.219-44.509 3.161-44.724M7.536-45.900Q7.536-46.185 7.692-46.439Q7.848-46.693 8.098-46.867Q8.348-47.041 8.633-47.127Q8.395-47.201 8.169-47.343Q7.942-47.486 7.799-47.695Q7.657-47.904 7.657-48.150Q7.657-48.548 7.903-48.843Q8.149-49.138 8.532-49.297Q8.915-49.455 9.305-49.455Q9.696-49.455 10.079-49.297Q10.462-49.138 10.708-48.840Q10.954-48.541 10.954-48.150Q10.954-47.904 10.811-47.697Q10.669-47.490 10.442-47.345Q10.215-47.201 9.977-47.127Q10.430-46.990 10.751-46.664Q11.071-46.338 11.071-45.900Q11.071-45.463 10.813-45.119Q10.555-44.775 10.145-44.591Q9.735-44.408 9.305-44.408Q8.876-44.408 8.465-44.590Q8.055-44.771 7.796-45.115Q7.536-45.459 7.536-45.900M8.176-45.900Q8.176-45.627 8.342-45.412Q8.508-45.197 8.770-45.082Q9.032-44.966 9.305-44.966Q9.579-44.966 9.838-45.082Q10.098-45.197 10.264-45.414Q10.430-45.631 10.430-45.900Q10.430-46.177 10.264-46.394Q10.098-46.611 9.838-46.728Q9.579-46.845 9.305-46.845Q9.032-46.845 8.770-46.728Q8.508-46.611 8.342-46.396Q8.176-46.181 8.176-45.900M8.297-48.150Q8.297-47.912 8.454-47.744Q8.610-47.576 8.846-47.492Q9.083-47.408 9.305-47.408Q9.524-47.408 9.762-47.492Q10.001-47.576 10.157-47.746Q10.313-47.916 10.313-48.150Q10.313-48.384 10.157-48.554Q10.001-48.724 9.762-48.808Q9.524-48.892 9.305-48.892Q9.083-48.892 8.846-48.808Q8.610-48.724 8.454-48.556Q8.297-48.388 8.297-48.150M13.149-43.373Q13.036-43.373 12.946-43.463Q12.856-43.552 12.856-43.662Q12.856-43.838 13.047-43.912Q13.266-43.963 13.438-44.121Q13.610-44.279 13.676-44.502Q13.653-44.502 13.622-44.486L13.559-44.486Q13.329-44.486 13.163-44.648Q12.997-44.810 12.997-45.045Q12.997-45.279 13.161-45.439Q13.325-45.599 13.559-45.599Q13.770-45.599 13.934-45.478Q14.098-45.357 14.188-45.164Q14.278-44.970 14.278-44.759Q14.278-44.283 13.979-43.894Q13.680-43.506 13.215-43.381Q13.192-43.373 13.149-43.373M16.356-44.127Q16.356-44.181 16.380-44.248L18.645-49.853Q18.739-50.037 18.934-50.037Q19.059-50.037 19.147-49.949Q19.235-49.861 19.235-49.732Q19.235-49.673 19.212-49.615L16.950-44.006Q16.848-43.822 16.669-43.822Q16.544-43.822 16.450-43.912Q16.356-44.002 16.356-44.127M18.934-43.822Q18.583-43.822 18.401-44.162Q18.219-44.502 18.219-44.884Q18.219-45.271 18.399-45.611Q18.579-45.951 18.934-45.951Q19.172-45.951 19.331-45.781Q19.489-45.611 19.563-45.367Q19.637-45.123 19.637-44.884Q19.637-44.650 19.563-44.406Q19.489-44.162 19.331-43.992Q19.172-43.822 18.934-43.822M18.934-44.381Q19.016-44.412 19.063-44.580Q19.110-44.748 19.110-44.884Q19.110-45.021 19.063-45.191Q19.016-45.361 18.934-45.388Q18.848-45.361 18.797-45.193Q18.747-45.025 18.747-44.884Q18.747-44.756 18.797-44.584Q18.848-44.412 18.934-44.381M16.669-47.900Q16.426-47.900 16.266-48.070Q16.106-48.240 16.032-48.486Q15.958-48.732 15.958-48.974Q15.958-49.357 16.137-49.697Q16.317-50.037 16.669-50.037Q16.907-50.037 17.065-49.867Q17.223-49.697 17.297-49.453Q17.372-49.209 17.372-48.974Q17.372-48.732 17.297-48.486Q17.223-48.240 17.065-48.070Q16.907-47.900 16.669-47.900M16.669-48.463Q16.758-48.506 16.801-48.662Q16.844-48.818 16.844-48.974Q16.844-49.103 16.797-49.279Q16.751-49.455 16.661-49.478Q16.645-49.478 16.616-49.443Q16.587-49.408 16.579-49.388Q16.485-49.201 16.485-48.974Q16.485-48.838 16.534-48.666Q16.583-48.494 16.669-48.463M20.145-44.724L20.145-44.814Q20.204-45.021 20.395-45.045L21.106-45.045L21.106-47.373L20.395-47.373Q20.200-47.396 20.145-47.615L20.145-47.701Q20.204-47.912 20.395-47.935L21.497-47.935Q21.696-47.916 21.747-47.701L21.747-47.373Q22.008-47.658 22.364-47.816Q22.719-47.974 23.106-47.974Q23.399-47.974 23.633-47.840Q23.868-47.705 23.868-47.439Q23.868-47.271 23.758-47.154Q23.649-47.037 23.481-47.037Q23.329-47.037 23.213-47.148Q23.098-47.259 23.098-47.416Q22.723-47.416 22.409-47.215Q22.094-47.013 21.921-46.679Q21.747-46.345 21.747-45.966L21.747-45.045L22.692-45.045Q22.899-45.021 22.938-44.814L22.938-44.724Q22.899-44.509 22.692-44.486L20.395-44.486Q20.204-44.509 20.145-44.724M24.575-45.599Q24.575-46.045 24.989-46.302Q25.403-46.560 25.944-46.660Q26.485-46.759 26.993-46.767Q26.993-46.982 26.858-47.134Q26.723-47.287 26.516-47.363Q26.309-47.439 26.098-47.439Q25.755-47.439 25.594-47.416L25.594-47.357Q25.594-47.189 25.475-47.074Q25.356-46.959 25.192-46.959Q25.016-46.959 24.901-47.082Q24.786-47.205 24.786-47.373Q24.786-47.779 25.167-47.888Q25.547-47.998 26.106-47.998Q26.376-47.998 26.643-47.920Q26.911-47.841 27.135-47.691Q27.360-47.541 27.497-47.320Q27.633-47.099 27.633-46.822L27.633-45.103Q27.633-45.045 28.161-45.045Q28.356-45.025 28.407-44.814L28.407-44.724Q28.356-44.509 28.161-44.486L28.016-44.486Q27.672-44.486 27.444-44.533Q27.215-44.580 27.071-44.767Q26.610-44.447 25.903-44.447Q25.567-44.447 25.262-44.588Q24.958-44.728 24.766-44.990Q24.575-45.252 24.575-45.599M25.215-45.591Q25.215-45.318 25.458-45.162Q25.700-45.006 25.985-45.006Q26.204-45.006 26.436-45.064Q26.669-45.123 26.831-45.261Q26.993-45.400 26.993-45.623L26.993-46.213Q26.712-46.213 26.296-46.156Q25.880-46.099 25.547-45.961Q25.215-45.822 25.215-45.591M28.672-44.724L28.672-44.814Q28.712-45.021 28.919-45.045L29.325-45.045L30.255-46.263L29.383-47.373L28.965-47.373Q28.770-47.392 28.719-47.615L28.719-47.701Q28.770-47.912 28.965-47.935L30.126-47.935Q30.325-47.912 30.376-47.701L30.376-47.615Q30.325-47.396 30.126-47.373L30.016-47.373L30.512-46.716L30.989-47.373L30.872-47.373Q30.672-47.396 30.622-47.615L30.622-47.701Q30.672-47.912 30.872-47.935L32.032-47.935Q32.227-47.916 32.278-47.701L32.278-47.615Q32.227-47.396 32.032-47.373L31.622-47.373L30.774-46.263L31.735-45.045L32.141-45.045Q32.340-45.021 32.391-44.814L32.391-44.724Q32.352-44.509 32.141-44.486L30.989-44.486Q30.782-44.509 30.743-44.724L30.743-44.814Q30.782-45.021 30.989-45.045L31.118-45.045L30.512-45.900L29.926-45.045L30.071-45.045Q30.278-45.021 30.317-44.814L30.317-44.724Q30.278-44.509 30.071-44.486L28.919-44.486Q28.723-44.506 28.672-44.724\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M58.532 2.46h28.453v-19.916H58.532Z\"\u002F>\u003Cg transform=\"translate(93.192 39.433)\">\u003Cpath d=\"M-22.351-44.724L-22.351-44.814Q-22.312-45.021-22.101-45.045L-21.765-45.045L-21.765-48.814L-22.101-48.814Q-22.312-48.838-22.351-49.052L-22.351-49.142Q-22.312-49.349-22.101-49.373L-18.847-49.373Q-18.648-49.349-18.597-49.142L-18.597-48.302Q-18.644-48.088-18.847-48.060L-18.992-48.060Q-19.187-48.088-19.238-48.302L-19.238-48.814L-21.124-48.814L-21.124-47.213L-20.117-47.213L-20.117-47.431Q-20.066-47.638-19.870-47.662L-19.726-47.662Q-19.531-47.642-19.480-47.431L-19.480-46.447Q-19.531-46.228-19.726-46.205L-19.870-46.205Q-20.066-46.224-20.117-46.447L-20.117-46.654L-21.124-46.654L-21.124-45.045L-20.636-45.045Q-20.441-45.021-20.390-44.814L-20.390-44.724Q-20.441-44.509-20.636-44.486L-22.101-44.486Q-22.312-44.509-22.351-44.724\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M96.943 2.46h28.453v-19.916H96.943Z\"\u002F>\u003Cg transform=\"translate(131.603 39.433)\">\u003Cpath d=\"M-22.421-44.724L-22.421-44.814Q-22.382-45.021-22.175-45.045L-21.925-45.045L-21.925-48.814L-22.175-48.814Q-22.382-48.838-22.421-49.052L-22.421-49.142Q-22.382-49.349-22.175-49.373L-20.359-49.373Q-19.808-49.373-19.413-48.980Q-19.019-48.588-18.824-48.009Q-18.628-47.431-18.628-46.884Q-18.628-46.357-18.828-45.793Q-19.027-45.228-19.419-44.857Q-19.812-44.486-20.359-44.486L-22.175-44.486Q-22.382-44.509-22.421-44.724M-21.285-48.814L-21.285-45.045L-20.519-45.045Q-19.925-45.045-19.597-45.640Q-19.269-46.236-19.269-46.884Q-19.269-47.291-19.404-47.740Q-19.538-48.189-19.824-48.502Q-20.109-48.814-20.519-48.814\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath fill=\"var(--tk-soft-accent)\" d=\"M135.355 2.46h28.452v-19.916h-28.452Z\"\u002F>\u003Cg transform=\"translate(170.014 39.433)\">\u003Cpath d=\"M-22.421-44.724L-22.421-44.814Q-22.382-45.021-22.175-45.045L-21.925-45.045L-21.925-48.814L-22.175-48.814Q-22.382-48.838-22.421-49.052L-22.421-49.142Q-22.382-49.349-22.175-49.373L-20.359-49.373Q-19.808-49.373-19.413-48.980Q-19.019-48.588-18.824-48.009Q-18.628-47.431-18.628-46.884Q-18.628-46.357-18.828-45.793Q-19.027-45.228-19.419-44.857Q-19.812-44.486-20.359-44.486L-22.175-44.486Q-22.382-44.509-22.421-44.724M-21.285-48.814L-21.285-45.045L-20.519-45.045Q-19.925-45.045-19.597-45.640Q-19.269-46.236-19.269-46.884Q-19.269-47.291-19.404-47.740Q-19.538-48.189-19.824-48.502Q-20.109-48.814-20.519-48.814\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M173.765 2.46h28.453v-19.916h-28.453Z\"\u002F>\u003Cg transform=\"translate(208.425 39.433)\">\u003Cpath d=\"M-22.374-44.724L-22.374-44.814Q-22.335-45.021-22.124-45.045L-21.816-45.045L-21.816-48.814L-22.124-48.814Q-22.335-48.838-22.374-49.052L-22.374-49.142Q-22.335-49.349-22.124-49.373L-18.917-49.373Q-18.722-49.349-18.671-49.142L-18.671-48.302Q-18.722-48.088-18.917-48.060L-19.062-48.060Q-19.257-48.088-19.312-48.302L-19.312-48.814L-21.175-48.814L-21.175-47.295L-20.199-47.295L-20.199-47.509Q-20.148-47.716-19.949-47.744L-19.804-47.744Q-19.609-47.716-19.558-47.509L-19.558-46.525Q-19.609-46.310-19.804-46.287L-19.949-46.287Q-20.148-46.310-20.199-46.525L-20.199-46.732L-21.175-46.732L-21.175-45.045L-19.132-45.045L-19.132-45.685Q-19.081-45.892-18.886-45.920L-18.742-45.920Q-18.546-45.892-18.495-45.685L-18.495-44.724Q-18.546-44.506-18.742-44.486L-22.124-44.486Q-22.335-44.509-22.374-44.724\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M212.177 2.46h28.453v-19.916h-28.453Z\"\u002F>\u003Cg transform=\"translate(246.836 39.433)\">\u003Cpath d=\"M-22.445-44.724L-22.445-44.814Q-22.394-45.021-22.199-45.045L-22.023-45.045L-22.023-48.814L-22.199-48.814Q-22.394-48.838-22.445-49.052L-22.445-49.142Q-22.394-49.349-22.199-49.373L-21.511-49.373Q-21.382-49.373-21.283-49.297Q-21.183-49.220-21.144-49.111Q-21.113-49.006-20.890-48.316Q-20.667-47.627-20.552-47.230Q-20.437-46.834-20.437-46.759Q-20.429-46.838-20.374-47.035Q-20.320-47.232-20.206-47.603Q-20.093-47.974-19.947-48.437Q-19.800-48.900-19.734-49.111Q-19.695-49.220-19.591-49.297Q-19.488-49.373-19.367-49.373L-18.679-49.373Q-18.480-49.349-18.429-49.142L-18.429-49.052Q-18.480-48.838-18.679-48.814L-18.855-48.814L-18.855-45.045L-18.679-45.045Q-18.480-45.021-18.429-44.814L-18.429-44.724Q-18.480-44.509-18.679-44.486L-19.558-44.486Q-19.753-44.509-19.804-44.724L-19.804-44.814Q-19.753-45.021-19.558-45.045L-19.382-45.045L-19.382-48.732Q-19.382-48.673-19.466-48.375Q-19.550-48.076-19.654-47.744Q-19.757-47.412-19.888-47.004Q-20.019-46.595-20.085-46.381Q-20.124-46.267-20.224-46.193Q-20.324-46.119-20.437-46.119Q-20.550-46.119-20.650-46.193Q-20.749-46.267-20.788-46.381Q-20.855-46.595-20.990-47.013Q-21.124-47.431-21.261-47.875Q-21.398-48.318-21.443-48.482Q-21.488-48.646-21.495-48.732L-21.495-45.045L-21.320-45.045Q-21.120-45.021-21.070-44.814L-21.070-44.724Q-21.120-44.509-21.320-44.486L-22.199-44.486Q-22.394-44.509-22.445-44.724\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M250.588 2.46h28.453v-19.916h-28.453Z\"\u002F>\u003Cg transform=\"translate(285.248 39.433)\">\u003Cpath d=\"M-21.589-44.670L-22.160-48.814L-22.214-48.814Q-22.410-48.838-22.460-49.052L-22.460-49.142Q-22.410-49.349-22.214-49.373L-21.359-49.373Q-21.148-49.349-21.109-49.142L-21.109-49.052Q-21.148-48.838-21.359-48.814L-21.628-48.814Q-21.589-48.529-21.453-47.496Q-21.316-46.463-21.253-45.918Q-21.191-45.373-21.183-45.127Q-21.183-45.420-21.097-45.865Q-21.011-46.310-20.824-47.158Q-20.792-47.279-20.703-47.351Q-20.613-47.423-20.495-47.423L-20.382-47.423Q-20.257-47.423-20.167-47.349Q-20.078-47.275-20.054-47.158Q-19.890-46.455-19.792-45.947Q-19.695-45.439-19.695-45.127Q-19.687-45.318-19.638-45.761Q-19.589-46.205-19.540-46.595Q-19.492-46.986-19.384-47.779Q-19.277-48.572-19.245-48.814L-19.519-48.814Q-19.726-48.838-19.765-49.052L-19.765-49.142Q-19.726-49.349-19.519-49.373L-18.663-49.373Q-18.464-49.349-18.413-49.142L-18.413-49.052Q-18.464-48.838-18.663-48.814L-18.718-48.814L-19.285-44.670Q-19.296-44.560-19.384-44.484Q-19.472-44.408-19.589-44.408L-19.695-44.408Q-19.808-44.408-19.904-44.482Q-19.999-44.556-20.023-44.670Q-20.120-45.091-20.216-45.541Q-20.312-45.990-20.370-46.308Q-20.429-46.627-20.437-46.783Q-20.437-46.506-20.855-44.670Q-20.878-44.556-20.972-44.482Q-21.066-44.408-21.183-44.408L-21.285-44.408Q-21.402-44.408-21.490-44.484Q-21.578-44.560-21.589-44.670\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-.545 76.422)\">\u003Cpath d=\"M-19.445-43.845Q-19.976-44.154-20.376-44.642Q-20.777-45.131-20.988-45.724Q-21.199-46.318-21.199-46.935Q-21.199-47.552-20.990-48.140Q-20.781-48.728-20.384-49.209Q-19.988-49.689-19.453-50.013Q-19.382-50.037-19.351-50.037L-19.261-50.037Q-19.163-50.025-19.097-49.959Q-19.031-49.892-19.031-49.791Q-19.031-49.646-19.132-49.584Q-19.581-49.295-19.908-48.879Q-20.234-48.463-20.396-47.970Q-20.558-47.478-20.558-46.935Q-20.558-46.529-20.462-46.142Q-20.367-45.756-20.189-45.420Q-20.011-45.084-19.751-44.800Q-19.492-44.517-19.144-44.287Q-19.031-44.209-19.031-44.072Q-19.031-43.974-19.097-43.904Q-19.163-43.834-19.261-43.822L-19.351-43.822Q-19.410-43.822-19.445-43.845M-17.570-44.724L-17.570-48.814L-17.992-48.814Q-18.199-48.838-18.242-49.052L-18.242-49.142Q-18.199-49.349-17.992-49.373L-17.175-49.373Q-16.980-49.349-16.929-49.142L-16.929-47.631Q-16.718-47.798-16.454-47.886Q-16.191-47.974-15.921-47.974Q-15.581-47.974-15.285-47.830Q-14.988-47.685-14.773-47.433Q-14.558-47.181-14.443-46.869Q-14.328-46.556-14.328-46.213Q-14.328-45.748-14.554-45.338Q-14.781-44.927-15.167-44.687Q-15.554-44.447-16.023-44.447Q-16.542-44.447-16.929-44.814L-16.929-44.724Q-16.980-44.506-17.175-44.486L-17.320-44.486Q-17.511-44.509-17.570-44.724M-16.066-45.006Q-15.757-45.006-15.507-45.175Q-15.257-45.345-15.113-45.627Q-14.968-45.908-14.968-46.213Q-14.968-46.502-15.093-46.781Q-15.218-47.060-15.451-47.238Q-15.683-47.416-15.984-47.416Q-16.304-47.416-16.566-47.230Q-16.828-47.045-16.929-46.744L-16.929-45.892Q-16.839-45.525-16.619-45.265Q-16.398-45.006-16.066-45.006M-13.324-45.341L-13.324-47.373L-13.745-47.373Q-13.953-47.396-13.995-47.615L-13.995-47.701Q-13.949-47.912-13.745-47.935L-12.929-47.935Q-12.734-47.912-12.683-47.701L-12.683-45.373Q-12.683-45.138-12.513-45.072Q-12.343-45.006-12.058-45.006Q-11.851-45.006-11.656-45.082Q-11.460-45.158-11.335-45.308Q-11.210-45.459-11.210-45.670L-11.210-47.373L-11.632-47.373Q-11.843-47.396-11.882-47.615L-11.882-47.701Q-11.843-47.912-11.632-47.935L-10.820-47.935Q-10.620-47.912-10.570-47.701L-10.570-45.045L-10.144-45.045Q-9.937-45.021-9.898-44.814L-9.898-44.724Q-9.937-44.509-10.144-44.486L-10.960-44.486Q-11.160-44.509-11.210-44.709Q-11.613-44.447-12.120-44.447Q-12.355-44.447-12.570-44.488Q-12.785-44.529-12.951-44.631Q-13.117-44.732-13.220-44.910Q-13.324-45.088-13.324-45.341M-9.078-44.724L-9.078-48.814L-9.499-48.814Q-9.706-48.838-9.749-49.052L-9.749-49.142Q-9.706-49.349-9.499-49.373L-8.683-49.373Q-8.488-49.349-8.437-49.142L-8.437-47.631Q-8.226-47.798-7.962-47.886Q-7.699-47.974-7.429-47.974Q-7.089-47.974-6.792-47.830Q-6.495-47.685-6.281-47.433Q-6.066-47.181-5.951-46.869Q-5.835-46.556-5.835-46.213Q-5.835-45.748-6.062-45.338Q-6.288-44.927-6.675-44.687Q-7.062-44.447-7.531-44.447Q-8.050-44.447-8.437-44.814L-8.437-44.724Q-8.488-44.506-8.683-44.486L-8.828-44.486Q-9.019-44.509-9.078-44.724M-7.574-45.006Q-7.265-45.006-7.015-45.175Q-6.765-45.345-6.620-45.627Q-6.476-45.908-6.476-46.213Q-6.476-46.502-6.601-46.781Q-6.726-47.060-6.958-47.238Q-7.191-47.416-7.492-47.416Q-7.812-47.416-8.074-47.230Q-8.335-47.045-8.437-46.744L-8.437-45.892Q-8.347-45.525-8.126-45.265Q-7.906-45.006-7.574-45.006M-4.831-44.724L-4.831-48.814L-5.253-48.814Q-5.460-48.838-5.503-49.052L-5.503-49.142Q-5.460-49.349-5.253-49.373L-4.437-49.373Q-4.242-49.349-4.191-49.142L-4.191-47.631Q-3.980-47.798-3.716-47.886Q-3.453-47.974-3.183-47.974Q-2.843-47.974-2.546-47.830Q-2.249-47.685-2.035-47.433Q-1.820-47.181-1.704-46.869Q-1.589-46.556-1.589-46.213Q-1.589-45.748-1.816-45.338Q-2.042-44.927-2.429-44.687Q-2.816-44.447-3.285-44.447Q-3.804-44.447-4.191-44.814L-4.191-44.724Q-4.242-44.506-4.437-44.486L-4.581-44.486Q-4.773-44.509-4.831-44.724M-3.328-45.006Q-3.019-45.006-2.769-45.175Q-2.519-45.345-2.374-45.627Q-2.230-45.908-2.230-46.213Q-2.230-46.502-2.355-46.781Q-2.480-47.060-2.712-47.238Q-2.945-47.416-3.245-47.416Q-3.566-47.416-3.828-47.230Q-4.089-47.045-4.191-46.744L-4.191-45.892Q-4.101-45.525-3.880-45.265Q-3.660-45.006-3.328-45.006M-0.878-44.724L-0.878-44.814Q-0.828-45.021-0.632-45.045L0.473-45.045L0.473-48.814L-0.632-48.814Q-0.828-48.838-0.878-49.052L-0.878-49.142Q-0.828-49.349-0.632-49.373L0.864-49.373Q1.055-49.349 1.114-49.142L1.114-45.045L2.215-45.045Q2.415-45.021 2.465-44.814L2.465-44.724Q2.415-44.509 2.215-44.486L-0.632-44.486Q-0.828-44.509-0.878-44.724M6.430-45.974L3.989-45.974Q4.044-45.697 4.241-45.474Q4.438-45.252 4.715-45.129Q4.993-45.006 5.278-45.006Q5.751-45.006 5.973-45.295Q5.981-45.306 6.038-45.412Q6.094-45.517 6.143-45.560Q6.192-45.603 6.286-45.615L6.430-45.615Q6.622-45.595 6.680-45.381L6.680-45.326Q6.614-45.025 6.383-44.828Q6.153-44.631 5.840-44.539Q5.528-44.447 5.223-44.447Q4.739-44.447 4.299-44.675Q3.860-44.904 3.592-45.304Q3.325-45.705 3.325-46.197L3.325-46.256Q3.325-46.724 3.571-47.127Q3.817-47.529 4.225-47.763Q4.633-47.998 5.102-47.998Q5.606-47.998 5.960-47.775Q6.313-47.552 6.497-47.164Q6.680-46.775 6.680-46.271L6.680-46.213Q6.622-45.998 6.430-45.974M3.997-46.525L6.024-46.525Q5.977-46.935 5.739-47.187Q5.501-47.439 5.102-47.439Q4.708-47.439 4.401-47.177Q4.094-46.916 3.997-46.525M8.204-43.822L8.118-43.822Q8.012-43.834 7.944-43.906Q7.876-43.978 7.876-44.072Q7.876-44.213 7.981-44.279Q8.317-44.494 8.587-44.783Q8.856-45.072 9.040-45.420Q9.223-45.767 9.313-46.146Q9.403-46.525 9.403-46.935Q9.403-47.474 9.239-47.966Q9.075-48.459 8.756-48.873Q8.438-49.287 7.997-49.576Q7.876-49.658 7.876-49.791Q7.876-49.888 7.944-49.957Q8.012-50.025 8.118-50.037L8.204-50.037Q8.258-50.037 8.294-50.013Q8.680-49.791 9.020-49.443Q9.360-49.095 9.581-48.701Q9.801-48.306 9.922-47.861Q10.044-47.416 10.044-46.935Q10.044-46.451 9.922-46Q9.801-45.548 9.577-45.152Q9.352-44.756 9.028-44.422Q8.704-44.088 8.301-43.845Q8.231-43.822 8.204-43.822\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg style=\"stroke-dasharray:3.0,3.0\">\u003Cpath fill=\"none\" d=\"M135.355 39.45h28.452V19.531h-28.452Z\"\u002F>\u003Cg transform=\"translate(170.014 76.422)\">\u003Cpath d=\"M-22.374-44.724L-22.374-44.814Q-22.335-45.021-22.124-45.045L-21.816-45.045L-21.816-48.814L-22.124-48.814Q-22.335-48.838-22.374-49.052L-22.374-49.142Q-22.335-49.349-22.124-49.373L-18.917-49.373Q-18.722-49.349-18.671-49.142L-18.671-48.302Q-18.722-48.088-18.917-48.060L-19.062-48.060Q-19.257-48.088-19.312-48.302L-19.312-48.814L-21.175-48.814L-21.175-47.295L-20.199-47.295L-20.199-47.509Q-20.148-47.716-19.949-47.744L-19.804-47.744Q-19.609-47.716-19.558-47.509L-19.558-46.525Q-19.609-46.310-19.804-46.287L-19.949-46.287Q-20.148-46.310-20.199-46.525L-20.199-46.732L-21.175-46.732L-21.175-45.045L-19.132-45.045L-19.132-45.685Q-19.081-45.892-18.886-45.920L-18.742-45.920Q-18.546-45.892-18.495-45.685L-18.495-44.724Q-18.546-44.506-18.742-44.486L-22.124-44.486Q-22.335-44.509-22.374-44.724\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-dasharray:3.0,3.0\">\u003Cpath fill=\"none\" d=\"M173.765 39.45h28.453V19.531h-28.453Z\"\u002F>\u003Cg transform=\"translate(208.425 76.422)\">\u003Cpath d=\"M-22.445-44.724L-22.445-44.814Q-22.394-45.021-22.199-45.045L-22.023-45.045L-22.023-48.814L-22.199-48.814Q-22.394-48.838-22.445-49.052L-22.445-49.142Q-22.394-49.349-22.199-49.373L-21.511-49.373Q-21.382-49.373-21.283-49.297Q-21.183-49.220-21.144-49.111Q-21.113-49.006-20.890-48.316Q-20.667-47.627-20.552-47.230Q-20.437-46.834-20.437-46.759Q-20.429-46.838-20.374-47.035Q-20.320-47.232-20.206-47.603Q-20.093-47.974-19.947-48.437Q-19.800-48.900-19.734-49.111Q-19.695-49.220-19.591-49.297Q-19.488-49.373-19.367-49.373L-18.679-49.373Q-18.480-49.349-18.429-49.142L-18.429-49.052Q-18.480-48.838-18.679-48.814L-18.855-48.814L-18.855-45.045L-18.679-45.045Q-18.480-45.021-18.429-44.814L-18.429-44.724Q-18.480-44.509-18.679-44.486L-19.558-44.486Q-19.753-44.509-19.804-44.724L-19.804-44.814Q-19.753-45.021-19.558-45.045L-19.382-45.045L-19.382-48.732Q-19.382-48.673-19.466-48.375Q-19.550-48.076-19.654-47.744Q-19.757-47.412-19.888-47.004Q-20.019-46.595-20.085-46.381Q-20.124-46.267-20.224-46.193Q-20.324-46.119-20.437-46.119Q-20.550-46.119-20.650-46.193Q-20.749-46.267-20.788-46.381Q-20.855-46.595-20.990-47.013Q-21.124-47.431-21.261-47.875Q-21.398-48.318-21.443-48.482Q-21.488-48.646-21.495-48.732L-21.495-45.045L-21.320-45.045Q-21.120-45.021-21.070-44.814L-21.070-44.724Q-21.120-44.509-21.320-44.486L-22.199-44.486Q-22.394-44.509-22.445-44.724\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-dasharray:3.0,3.0\">\u003Cpath fill=\"none\" d=\"M212.177 39.45h28.453V19.531h-28.453Z\"\u002F>\u003Cg transform=\"translate(246.836 76.422)\">\u003Cpath d=\"M-21.589-44.670L-22.160-48.814L-22.214-48.814Q-22.410-48.838-22.460-49.052L-22.460-49.142Q-22.410-49.349-22.214-49.373L-21.359-49.373Q-21.148-49.349-21.109-49.142L-21.109-49.052Q-21.148-48.838-21.359-48.814L-21.628-48.814Q-21.589-48.529-21.453-47.496Q-21.316-46.463-21.253-45.918Q-21.191-45.373-21.183-45.127Q-21.183-45.420-21.097-45.865Q-21.011-46.310-20.824-47.158Q-20.792-47.279-20.703-47.351Q-20.613-47.423-20.495-47.423L-20.382-47.423Q-20.257-47.423-20.167-47.349Q-20.078-47.275-20.054-47.158Q-19.890-46.455-19.792-45.947Q-19.695-45.439-19.695-45.127Q-19.687-45.318-19.638-45.761Q-19.589-46.205-19.540-46.595Q-19.492-46.986-19.384-47.779Q-19.277-48.572-19.245-48.814L-19.519-48.814Q-19.726-48.838-19.765-49.052L-19.765-49.142Q-19.726-49.349-19.519-49.373L-18.663-49.373Q-18.464-49.349-18.413-49.142L-18.413-49.052Q-18.464-48.838-18.663-48.814L-18.718-48.814L-19.285-44.670Q-19.296-44.560-19.384-44.484Q-19.472-44.408-19.589-44.408L-19.695-44.408Q-19.808-44.408-19.904-44.482Q-19.999-44.556-20.023-44.670Q-20.120-45.091-20.216-45.541Q-20.312-45.990-20.370-46.308Q-20.429-46.627-20.437-46.783Q-20.437-46.506-20.855-44.670Q-20.878-44.556-20.972-44.482Q-21.066-44.408-21.183-44.408L-21.285-44.408Q-21.402-44.408-21.490-44.484Q-21.578-44.560-21.589-44.670\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M149.58-34.328v14.072\"\u002F>\u003Cpath stroke=\"none\" d=\"m149.58-17.656 2.08-4.16-2.08 1.56-2.08-1.56\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(181.363 20.939)\">\u003Cpath d=\"M-20.902-44.709L-21.788-47.373L-22.109-47.373Q-22.308-47.396-22.359-47.615L-22.359-47.701Q-22.308-47.912-22.109-47.935L-20.949-47.935Q-20.753-47.916-20.703-47.701L-20.703-47.615Q-20.753-47.396-20.949-47.373L-21.230-47.373L-20.437-44.998L-19.648-47.373L-19.925-47.373Q-20.124-47.396-20.175-47.615L-20.175-47.701Q-20.124-47.912-19.925-47.935L-18.765-47.935Q-18.570-47.912-18.519-47.701L-18.519-47.615Q-18.570-47.396-18.765-47.373L-19.085-47.373L-19.972-44.709Q-20.015-44.595-20.117-44.521Q-20.218-44.447-20.343-44.447L-20.535-44.447Q-20.652-44.447-20.755-44.519Q-20.859-44.591-20.902-44.709M-17.906-45.599Q-17.906-46.045-17.492-46.302Q-17.078-46.560-16.537-46.660Q-15.995-46.759-15.488-46.767Q-15.488-46.982-15.622-47.134Q-15.757-47.287-15.964-47.363Q-16.171-47.439-16.382-47.439Q-16.726-47.439-16.886-47.416L-16.886-47.357Q-16.886-47.189-17.005-47.074Q-17.124-46.959-17.288-46.959Q-17.464-46.959-17.579-47.082Q-17.695-47.205-17.695-47.373Q-17.695-47.779-17.314-47.888Q-16.933-47.998-16.374-47.998Q-16.105-47.998-15.837-47.920Q-15.570-47.841-15.345-47.691Q-15.120-47.541-14.984-47.320Q-14.847-47.099-14.847-46.822L-14.847-45.103Q-14.847-45.045-14.320-45.045Q-14.124-45.025-14.074-44.814L-14.074-44.724Q-14.124-44.509-14.320-44.486L-14.464-44.486Q-14.808-44.486-15.037-44.533Q-15.265-44.580-15.410-44.767Q-15.870-44.447-16.578-44.447Q-16.913-44.447-17.218-44.588Q-17.523-44.728-17.714-44.990Q-17.906-45.252-17.906-45.599M-17.265-45.591Q-17.265-45.318-17.023-45.162Q-16.781-45.006-16.495-45.006Q-16.277-45.006-16.044-45.064Q-15.812-45.123-15.650-45.261Q-15.488-45.400-15.488-45.623L-15.488-46.213Q-15.769-46.213-16.185-46.156Q-16.601-46.099-16.933-45.961Q-17.265-45.822-17.265-45.591M-13.617-44.724L-13.617-44.814Q-13.566-45.021-13.370-45.045L-12.265-45.045L-12.265-48.814L-13.370-48.814Q-13.566-48.838-13.617-49.052L-13.617-49.142Q-13.566-49.349-13.370-49.373L-11.874-49.373Q-11.683-49.349-11.624-49.142L-11.624-45.045L-10.523-45.045Q-10.324-45.021-10.273-44.814L-10.273-44.724Q-10.324-44.509-10.523-44.486L-13.370-44.486Q-13.566-44.509-13.617-44.724M-9.706-44.724L-9.706-44.814Q-9.656-45.021-9.460-45.045L-9.285-45.045L-9.285-48.814L-9.460-48.814Q-9.656-48.838-9.706-49.052L-9.706-49.142Q-9.656-49.349-9.460-49.373L-8.773-49.373Q-8.644-49.373-8.544-49.297Q-8.445-49.220-8.406-49.111Q-8.374-49.006-8.152-48.316Q-7.929-47.627-7.814-47.230Q-7.699-46.834-7.699-46.759Q-7.691-46.838-7.636-47.035Q-7.581-47.232-7.468-47.603Q-7.355-47.974-7.208-48.437Q-7.062-48.900-6.995-49.111Q-6.956-49.220-6.853-49.297Q-6.749-49.373-6.628-49.373L-5.941-49.373Q-5.742-49.349-5.691-49.142L-5.691-49.052Q-5.742-48.838-5.941-48.814L-6.117-48.814L-6.117-45.045L-5.941-45.045Q-5.742-45.021-5.691-44.814L-5.691-44.724Q-5.742-44.509-5.941-44.486L-6.820-44.486Q-7.015-44.509-7.066-44.724L-7.066-44.814Q-7.015-45.021-6.820-45.045L-6.644-45.045L-6.644-48.732Q-6.644-48.673-6.728-48.375Q-6.812-48.076-6.915-47.744Q-7.019-47.412-7.150-47.004Q-7.281-46.595-7.347-46.381Q-7.386-46.267-7.486-46.193Q-7.585-46.119-7.699-46.119Q-7.812-46.119-7.912-46.193Q-8.011-46.267-8.050-46.381Q-8.117-46.595-8.251-47.013Q-8.386-47.431-8.523-47.875Q-8.660-48.318-8.704-48.482Q-8.749-48.646-8.757-48.732L-8.757-45.045L-8.581-45.045Q-8.382-45.021-8.331-44.814L-8.331-44.724Q-8.382-44.509-8.581-44.486L-9.460-44.486Q-9.656-44.509-9.706-44.724\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(181.363 20.939)\">\u003Cpath d=\"M-0.988-44.724L-0.988-44.814Q-0.937-45.021-0.742-45.045L0.141-45.045L0.141-47.373L-0.714-47.373Q-0.913-47.396-0.964-47.615L-0.964-47.701Q-0.913-47.912-0.714-47.935L0.141-47.935L0.141-48.388Q0.141-48.853 0.547-49.134Q0.954-49.416 1.434-49.416Q1.747-49.416 1.991-49.295Q2.235-49.173 2.235-48.892Q2.235-48.728 2.126-48.611Q2.016-48.494 1.852-48.494Q1.704-48.494 1.583-48.599Q1.462-48.705 1.462-48.853L1.379-48.853Q1.227-48.853 1.090-48.793Q0.954-48.732 0.868-48.617Q0.782-48.502 0.782-48.357L0.782-47.935L1.813-47.935Q2.008-47.916 2.059-47.701L2.059-47.615Q2.008-47.396 1.813-47.373L0.782-47.373L0.782-45.045L1.661-45.045Q1.856-45.021 1.907-44.814L1.907-44.724Q1.856-44.509 1.661-44.486L-0.742-44.486Q-0.937-44.509-0.988-44.724M5.059-44.447Q4.587-44.447 4.202-44.691Q3.817-44.935 3.594-45.345Q3.372-45.756 3.372-46.213Q3.372-46.556 3.497-46.879Q3.622-47.201 3.852-47.455Q4.083-47.709 4.389-47.853Q4.696-47.998 5.059-47.998Q5.422-47.998 5.735-47.851Q6.047-47.705 6.270-47.459Q6.493-47.213 6.620-46.892Q6.747-46.572 6.747-46.213Q6.747-45.756 6.522-45.343Q6.297-44.931 5.913-44.689Q5.528-44.447 5.059-44.447M5.059-45.006Q5.524-45.006 5.815-45.400Q6.106-45.795 6.106-46.279Q6.106-46.572 5.971-46.840Q5.837-47.107 5.596-47.273Q5.356-47.439 5.059-47.439Q4.755-47.439 4.516-47.273Q4.278-47.107 4.143-46.840Q4.008-46.572 4.008-46.279Q4.008-45.798 4.301-45.402Q4.594-45.006 5.059-45.006M7.407-44.724L7.407-44.814Q7.465-45.021 7.657-45.045L8.368-45.045L8.368-47.373L7.657-47.373Q7.462-47.396 7.407-47.615L7.407-47.701Q7.465-47.912 7.657-47.935L8.758-47.935Q8.958-47.916 9.008-47.701L9.008-47.373Q9.270-47.658 9.626-47.816Q9.981-47.974 10.368-47.974Q10.661-47.974 10.895-47.840Q11.130-47.705 11.130-47.439Q11.130-47.271 11.020-47.154Q10.911-47.037 10.743-47.037Q10.590-47.037 10.475-47.148Q10.360-47.259 10.360-47.416Q9.985-47.416 9.671-47.215Q9.356-47.013 9.182-46.679Q9.008-46.345 9.008-45.966L9.008-45.045L9.954-45.045Q10.161-45.021 10.200-44.814L10.200-44.724Q10.161-44.509 9.954-44.486L7.657-44.486Q7.465-44.509 7.407-44.724M12.438-44.709L11.973-47.373L11.813-47.373Q11.606-47.396 11.567-47.615L11.567-47.701Q11.606-47.912 11.813-47.935L12.981-47.935Q13.192-47.912 13.231-47.701L13.231-47.615Q13.192-47.396 12.981-47.373L12.508-47.373Q12.622-46.728 12.700-46.283Q12.778-45.838 12.829-45.519Q12.880-45.201 12.880-45.127Q12.887-45.298 13.172-46.295Q13.212-46.408 13.309-46.482Q13.407-46.556 13.528-46.556L13.606-46.556Q13.727-46.556 13.825-46.482Q13.922-46.408 13.958-46.295Q14.067-45.912 14.149-45.588Q14.231-45.263 14.231-45.127Q14.243-45.416 14.590-47.373L14.118-47.373Q13.911-47.396 13.872-47.615L13.872-47.701Q13.911-47.912 14.118-47.935L15.294-47.935Q15.485-47.912 15.544-47.701L15.544-47.615Q15.489-47.396 15.294-47.373L15.126-47.373L14.661-44.709Q14.637-44.591 14.549-44.519Q14.462-44.447 14.340-44.447L14.200-44.447Q14.079-44.447 13.983-44.519Q13.887-44.591 13.844-44.709Q13.797-44.888 13.725-45.144Q13.653-45.400 13.610-45.609Q13.567-45.818 13.567-45.920Q13.559-45.638 13.278-44.709Q13.251-44.599 13.153-44.523Q13.055-44.447 12.934-44.447L12.758-44.447Q12.637-44.447 12.549-44.519Q12.462-44.591 12.438-44.709M16.083-45.599Q16.083-46.045 16.497-46.302Q16.911-46.560 17.452-46.660Q17.993-46.759 18.501-46.767Q18.501-46.982 18.366-47.134Q18.231-47.287 18.024-47.363Q17.817-47.439 17.606-47.439Q17.262-47.439 17.102-47.416L17.102-47.357Q17.102-47.189 16.983-47.074Q16.864-46.959 16.700-46.959Q16.524-46.959 16.409-47.082Q16.294-47.205 16.294-47.373Q16.294-47.779 16.674-47.888Q17.055-47.998 17.614-47.998Q17.883-47.998 18.151-47.920Q18.419-47.841 18.643-47.691Q18.868-47.541 19.005-47.320Q19.141-47.099 19.141-46.822L19.141-45.103Q19.141-45.045 19.669-45.045Q19.864-45.025 19.915-44.814L19.915-44.724Q19.864-44.509 19.669-44.486L19.524-44.486Q19.180-44.486 18.952-44.533Q18.723-44.580 18.579-44.767Q18.118-44.447 17.411-44.447Q17.075-44.447 16.770-44.588Q16.465-44.728 16.274-44.990Q16.083-45.252 16.083-45.599M16.723-45.591Q16.723-45.318 16.965-45.162Q17.208-45.006 17.493-45.006Q17.712-45.006 17.944-45.064Q18.176-45.123 18.338-45.261Q18.501-45.400 18.501-45.623L18.501-46.213Q18.219-46.213 17.803-46.156Q17.387-46.099 17.055-45.961Q16.723-45.822 16.723-45.591M20.145-44.724L20.145-44.814Q20.204-45.021 20.395-45.045L21.106-45.045L21.106-47.373L20.395-47.373Q20.200-47.396 20.145-47.615L20.145-47.701Q20.204-47.912 20.395-47.935L21.497-47.935Q21.696-47.916 21.747-47.701L21.747-47.373Q22.008-47.658 22.364-47.816Q22.719-47.974 23.106-47.974Q23.399-47.974 23.633-47.840Q23.868-47.705 23.868-47.439Q23.868-47.271 23.758-47.154Q23.649-47.037 23.481-47.037Q23.329-47.037 23.213-47.148Q23.098-47.259 23.098-47.416Q22.723-47.416 22.409-47.215Q22.094-47.013 21.921-46.679Q21.747-46.345 21.747-45.966L21.747-45.045L22.692-45.045Q22.899-45.021 22.938-44.814L22.938-44.724Q22.899-44.509 22.692-44.486L20.395-44.486Q20.204-44.509 20.145-44.724M26.032-44.447Q25.567-44.447 25.202-44.697Q24.837-44.947 24.631-45.351Q24.426-45.756 24.426-46.213Q24.426-46.556 24.551-46.877Q24.676-47.197 24.909-47.447Q25.141-47.697 25.446-47.836Q25.751-47.974 26.106-47.974Q26.618-47.974 27.024-47.654L27.024-48.814L26.602-48.814Q26.391-48.838 26.352-49.052L26.352-49.142Q26.391-49.349 26.602-49.373L27.415-49.373Q27.614-49.349 27.665-49.142L27.665-45.045L28.090-45.045Q28.297-45.021 28.337-44.814L28.337-44.724Q28.297-44.509 28.090-44.486L27.274-44.486Q27.075-44.509 27.024-44.724L27.024-44.853Q26.829-44.662 26.567-44.554Q26.305-44.447 26.032-44.447M26.071-45.006Q26.430-45.006 26.682-45.275Q26.934-45.545 27.024-45.920L27.024-46.752Q26.965-46.939 26.838-47.090Q26.712-47.240 26.534-47.328Q26.356-47.416 26.161-47.416Q25.852-47.416 25.602-47.246Q25.352-47.076 25.208-46.791Q25.063-46.506 25.063-46.205Q25.063-45.756 25.348-45.381Q25.633-45.006 26.071-45.006M31.926-45.974L29.485-45.974Q29.540-45.697 29.737-45.474Q29.934-45.252 30.212-45.129Q30.489-45.006 30.774-45.006Q31.247-45.006 31.469-45.295Q31.477-45.306 31.534-45.412Q31.590-45.517 31.639-45.560Q31.688-45.603 31.782-45.615L31.926-45.615Q32.118-45.595 32.176-45.381L32.176-45.326Q32.110-45.025 31.880-44.828Q31.649-44.631 31.337-44.539Q31.024-44.447 30.719-44.447Q30.235-44.447 29.796-44.675Q29.356-44.904 29.088-45.304Q28.821-45.705 28.821-46.197L28.821-46.256Q28.821-46.724 29.067-47.127Q29.313-47.529 29.721-47.763Q30.130-47.998 30.598-47.998Q31.102-47.998 31.456-47.775Q31.809-47.552 31.993-47.164Q32.176-46.775 32.176-46.271L32.176-46.213Q32.118-45.998 31.926-45.974M29.493-46.525L31.520-46.525Q31.473-46.935 31.235-47.187Q30.997-47.439 30.598-47.439Q30.204-47.439 29.897-47.177Q29.590-46.916 29.493-46.525M34.524-44.447Q34.059-44.447 33.694-44.697Q33.329-44.947 33.124-45.351Q32.919-45.756 32.919-46.213Q32.919-46.556 33.044-46.877Q33.169-47.197 33.401-47.447Q33.633-47.697 33.938-47.836Q34.243-47.974 34.598-47.974Q35.110-47.974 35.516-47.654L35.516-48.814L35.094-48.814Q34.883-48.838 34.844-49.052L34.844-49.142Q34.883-49.349 35.094-49.373L35.907-49.373Q36.106-49.349 36.157-49.142L36.157-45.045L36.583-45.045Q36.790-45.021 36.829-44.814L36.829-44.724Q36.790-44.509 36.583-44.486L35.766-44.486Q35.567-44.509 35.516-44.724L35.516-44.853Q35.321-44.662 35.059-44.554Q34.797-44.447 34.524-44.447M34.563-45.006Q34.922-45.006 35.174-45.275Q35.426-45.545 35.516-45.920L35.516-46.752Q35.458-46.939 35.331-47.090Q35.204-47.240 35.026-47.328Q34.848-47.416 34.653-47.416Q34.344-47.416 34.094-47.246Q33.844-47.076 33.700-46.791Q33.555-46.506 33.555-46.205Q33.555-45.756 33.840-45.381Q34.126-45.006 34.563-45.006\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(310.823 38.739)\">\u003Cpath d=\"M-22.285-45.969Q-22.285-46.311-22.150-46.610Q-22.015-46.909-21.775-47.133Q-21.536-47.357-21.218-47.482Q-20.900-47.607-20.569-47.607Q-20.124-47.607-19.725-47.391Q-19.325-47.176-19.090-46.798Q-18.856-46.421-18.856-45.969Q-18.856-45.628-18.998-45.344Q-19.140-45.060-19.384-44.853Q-19.629-44.647-19.938-44.532Q-20.247-44.418-20.569-44.418Q-20.999-44.418-21.401-44.619Q-21.803-44.821-22.044-45.173Q-22.285-45.525-22.285-45.969M-20.569-44.667Q-19.967-44.667-19.743-45.045Q-19.519-45.423-19.519-46.055Q-19.519-46.667-19.754-47.026Q-19.988-47.384-20.569-47.384Q-21.621-47.384-21.621-46.055Q-21.621-45.423-21.396-45.045Q-21.170-44.667-20.569-44.667M-16.580-44.486L-18.214-44.486L-18.214-44.766Q-17.985-44.766-17.836-44.800Q-17.687-44.835-17.687-44.975L-17.687-46.824Q-17.687-47.094-17.795-47.155Q-17.903-47.217-18.214-47.217L-18.214-47.497L-17.154-47.572L-17.154-46.923Q-16.983-47.231-16.679-47.402Q-16.375-47.572-16.030-47.572Q-15.524-47.572-15.240-47.349Q-14.956-47.125-14.956-46.629L-14.956-44.975Q-14.956-44.838-14.808-44.802Q-14.659-44.766-14.433-44.766L-14.433-44.486L-16.064-44.486L-16.064-44.766Q-15.835-44.766-15.686-44.800Q-15.537-44.835-15.537-44.975L-15.537-46.615Q-15.537-46.950-15.657-47.150Q-15.777-47.350-16.091-47.350Q-16.361-47.350-16.595-47.214Q-16.829-47.077-16.968-46.843Q-17.106-46.609-17.106-46.335L-17.106-44.975Q-17.106-44.838-16.956-44.802Q-16.806-44.766-16.580-44.766L-16.580-44.486M-13.887-46.021Q-13.887-46.342-13.762-46.631Q-13.637-46.920-13.412-47.143Q-13.186-47.367-12.890-47.487Q-12.595-47.607-12.277-47.607Q-11.949-47.607-11.687-47.507Q-11.426-47.408-11.250-47.226Q-11.074-47.043-10.980-46.785Q-10.886-46.527-10.886-46.195Q-10.886-46.103-10.968-46.082L-13.224-46.082L-13.224-46.021Q-13.224-45.433-12.940-45.050Q-12.656-44.667-12.089-44.667Q-11.767-44.667-11.499-44.860Q-11.231-45.053-11.142-45.368Q-11.135-45.409-11.060-45.423L-10.968-45.423Q-10.886-45.399-10.886-45.327Q-10.886-45.320-10.892-45.293Q-11.005-44.896-11.376-44.657Q-11.747-44.418-12.171-44.418Q-12.608-44.418-13.008-44.626Q-13.408-44.835-13.647-45.202Q-13.887-45.569-13.887-46.021M-13.217-46.291L-11.402-46.291Q-11.402-46.568-11.499-46.820Q-11.597-47.073-11.795-47.229Q-11.993-47.384-12.277-47.384Q-12.554-47.384-12.767-47.226Q-12.981-47.067-13.099-46.812Q-13.217-46.557-13.217-46.291M-8.414-45.740L-10.472-45.740L-10.472-46.243L-8.414-46.243L-8.414-45.740M-7.611-45.997Q-7.611-46.325-7.476-46.626Q-7.341-46.926-7.105-47.147Q-6.870-47.367-6.565-47.487Q-6.261-47.607-5.936-47.607Q-5.431-47.607-5.082-47.504Q-4.733-47.402-4.733-47.026Q-4.733-46.879-4.831-46.778Q-4.928-46.677-5.075-46.677Q-5.229-46.677-5.328-46.776Q-5.427-46.875-5.427-47.026Q-5.427-47.214-5.287-47.306Q-5.489-47.357-5.930-47.357Q-6.285-47.357-6.514-47.161Q-6.743-46.964-6.844-46.655Q-6.945-46.345-6.945-45.997Q-6.945-45.648-6.818-45.342Q-6.692-45.036-6.437-44.852Q-6.183-44.667-5.827-44.667Q-5.605-44.667-5.420-44.751Q-5.236-44.835-5.101-44.990Q-4.966-45.146-4.908-45.354Q-4.894-45.409-4.839-45.409L-4.726-45.409Q-4.696-45.409-4.673-45.385Q-4.651-45.361-4.651-45.327L-4.651-45.306Q-4.737-45.019-4.925-44.821Q-5.113-44.623-5.378-44.520Q-5.642-44.418-5.936-44.418Q-6.367-44.418-6.755-44.624Q-7.143-44.831-7.377-45.194Q-7.611-45.556-7.611-45.997M-3.728-43.351Q-3.599-43.283-3.462-43.283Q-3.291-43.283-3.141-43.372Q-2.990-43.461-2.879-43.606Q-2.768-43.751-2.689-43.919L-2.426-44.486L-3.595-47.012Q-3.670-47.159-3.800-47.191Q-3.930-47.224-4.162-47.224L-4.162-47.504L-2.641-47.504L-2.641-47.224Q-2.990-47.224-2.990-47.077Q-2.987-47.056-2.985-47.039Q-2.983-47.022-2.983-47.012L-2.125-45.153L-1.353-46.824Q-1.319-46.892-1.319-46.971Q-1.319-47.084-1.402-47.154Q-1.486-47.224-1.599-47.224L-1.599-47.504L-0.403-47.504L-0.403-47.224Q-0.621-47.224-0.794-47.120Q-0.967-47.015-1.059-46.824L-2.395-43.919Q-2.566-43.549-2.836-43.303Q-3.106-43.057-3.462-43.057Q-3.732-43.057-3.951-43.223Q-4.169-43.389-4.169-43.652Q-4.169-43.789-4.077-43.878Q-3.985-43.966-3.845-43.966Q-3.708-43.966-3.619-43.878Q-3.530-43.789-3.530-43.652Q-3.530-43.549-3.583-43.471Q-3.636-43.392-3.728-43.351M0.137-45.997Q0.137-46.325 0.272-46.626Q0.407-46.926 0.643-47.147Q0.879-47.367 1.183-47.487Q1.487-47.607 1.812-47.607Q2.318-47.607 2.667-47.504Q3.015-47.402 3.015-47.026Q3.015-46.879 2.918-46.778Q2.820-46.677 2.673-46.677Q2.520-46.677 2.421-46.776Q2.321-46.875 2.321-47.026Q2.321-47.214 2.462-47.306Q2.260-47.357 1.819-47.357Q1.463-47.357 1.234-47.161Q1.005-46.964 0.905-46.655Q0.804-46.345 0.804-45.997Q0.804-45.648 0.930-45.342Q1.057-45.036 1.311-44.852Q1.566-44.667 1.921-44.667Q2.144-44.667 2.328-44.751Q2.513-44.835 2.648-44.990Q2.783-45.146 2.841-45.354Q2.855-45.409 2.909-45.409L3.022-45.409Q3.053-45.409 3.075-45.385Q3.097-45.361 3.097-45.327L3.097-45.306Q3.012-45.019 2.824-44.821Q2.636-44.623 2.371-44.520Q2.106-44.418 1.812-44.418Q1.381-44.418 0.994-44.624Q0.606-44.831 0.371-45.194Q0.137-45.556 0.137-45.997M5.353-44.486L3.750-44.486L3.750-44.766Q3.976-44.766 4.124-44.800Q4.273-44.835 4.273-44.975L4.273-48.594Q4.273-48.864 4.165-48.926Q4.058-48.987 3.750-48.987L3.750-49.268L4.827-49.343L4.827-44.975Q4.827-44.838 4.977-44.802Q5.128-44.766 5.353-44.766L5.353-44.486M5.907-46.021Q5.907-46.342 6.032-46.631Q6.156-46.920 6.382-47.143Q6.608-47.367 6.903-47.487Q7.199-47.607 7.517-47.607Q7.845-47.607 8.106-47.507Q8.368-47.408 8.544-47.226Q8.720-47.043 8.814-46.785Q8.908-46.527 8.908-46.195Q8.908-46.103 8.826-46.082L6.570-46.082L6.570-46.021Q6.570-45.433 6.854-45.050Q7.137-44.667 7.705-44.667Q8.026-44.667 8.294-44.860Q8.563-45.053 8.651-45.368Q8.658-45.409 8.734-45.423L8.826-45.423Q8.908-45.399 8.908-45.327Q8.908-45.320 8.901-45.293Q8.788-44.896 8.417-44.657Q8.046-44.418 7.623-44.418Q7.185-44.418 6.785-44.626Q6.385-44.835 6.146-45.202Q5.907-45.569 5.907-46.021M6.577-46.291L8.392-46.291Q8.392-46.568 8.294-46.820Q8.197-47.073 7.999-47.229Q7.800-47.384 7.517-47.384Q7.240-47.384 7.026-47.226Q6.813-47.067 6.695-46.812Q6.577-46.557 6.577-46.291\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(310.823 38.739)\">\u003Cpath d=\"M12.235-44.493L12.235-45.556Q12.235-45.580 12.263-45.607Q12.290-45.634 12.314-45.634L12.423-45.634Q12.488-45.634 12.502-45.576Q12.598-45.142 12.844-44.891Q13.090-44.640 13.504-44.640Q13.845-44.640 14.098-44.773Q14.351-44.906 14.351-45.214Q14.351-45.371 14.257-45.486Q14.163-45.600 14.025-45.669Q13.886-45.737 13.719-45.775L13.138-45.874Q12.782-45.942 12.509-46.163Q12.235-46.383 12.235-46.725Q12.235-46.974 12.347-47.149Q12.458-47.323 12.644-47.422Q12.830-47.521 13.046-47.564Q13.261-47.607 13.504-47.607Q13.917-47.607 14.197-47.425L14.413-47.600Q14.423-47.603 14.430-47.605Q14.437-47.607 14.447-47.607L14.498-47.607Q14.525-47.607 14.549-47.583Q14.573-47.559 14.573-47.531L14.573-46.684Q14.573-46.663 14.549-46.636Q14.525-46.609 14.498-46.609L14.385-46.609Q14.358-46.609 14.332-46.634Q14.307-46.660 14.307-46.684Q14.307-46.920 14.201-47.084Q14.095-47.248 13.912-47.330Q13.729-47.412 13.497-47.412Q13.169-47.412 12.912-47.309Q12.656-47.207 12.656-46.930Q12.656-46.735 12.839-46.626Q13.022-46.516 13.251-46.475L13.825-46.369Q14.071-46.321 14.285-46.193Q14.498-46.065 14.635-45.862Q14.772-45.658 14.772-45.409Q14.772-44.896 14.406-44.657Q14.040-44.418 13.504-44.418Q13.008-44.418 12.676-44.712L12.410-44.438Q12.389-44.418 12.362-44.418L12.314-44.418Q12.290-44.418 12.263-44.445Q12.235-44.472 12.235-44.493M15.927-45.327L15.927-47.224L15.288-47.224L15.288-47.446Q15.606-47.446 15.823-47.656Q16.040-47.866 16.140-48.176Q16.241-48.485 16.241-48.793L16.508-48.793L16.508-47.504L17.585-47.504L17.585-47.224L16.508-47.224L16.508-45.340Q16.508-45.064 16.612-44.865Q16.716-44.667 16.976-44.667Q17.133-44.667 17.239-44.771Q17.345-44.876 17.395-45.029Q17.444-45.183 17.444-45.340L17.444-45.754L17.711-45.754L17.711-45.327Q17.711-45.101 17.612-44.891Q17.513-44.681 17.328-44.549Q17.144-44.418 16.915-44.418Q16.477-44.418 16.202-44.655Q15.927-44.893 15.927-45.327M18.579-45.214Q18.579-45.546 18.803-45.773Q19.027-46 19.370-46.128Q19.714-46.257 20.087-46.309Q20.459-46.362 20.763-46.362L20.763-46.615Q20.763-46.820 20.656-47Q20.548-47.179 20.367-47.282Q20.186-47.384 19.977-47.384Q19.570-47.384 19.335-47.292Q19.423-47.255 19.470-47.171Q19.516-47.087 19.516-46.985Q19.516-46.889 19.470-46.810Q19.423-46.732 19.343-46.687Q19.263-46.643 19.174-46.643Q19.024-46.643 18.923-46.740Q18.822-46.838 18.822-46.985Q18.822-47.607 19.977-47.607Q20.189-47.607 20.439-47.543Q20.688-47.480 20.890-47.361Q21.091-47.241 21.218-47.056Q21.344-46.872 21.344-46.629L21.344-45.053Q21.344-44.937 21.406-44.841Q21.467-44.746 21.580-44.746Q21.690-44.746 21.754-44.840Q21.819-44.934 21.819-45.053L21.819-45.501L22.086-45.501L22.086-45.053Q22.086-44.783 21.859-44.618Q21.631-44.452 21.351-44.452Q21.143-44.452 21.006-44.606Q20.869-44.759 20.845-44.975Q20.698-44.708 20.416-44.563Q20.134-44.418 19.810-44.418Q19.533-44.418 19.249-44.493Q18.965-44.568 18.772-44.747Q18.579-44.927 18.579-45.214M19.194-45.214Q19.194-45.040 19.295-44.910Q19.396-44.780 19.552-44.710Q19.707-44.640 19.871-44.640Q20.090-44.640 20.298-44.737Q20.507-44.835 20.635-45.016Q20.763-45.197 20.763-45.423L20.763-46.151Q20.439-46.151 20.073-46.060Q19.707-45.969 19.451-45.757Q19.194-45.546 19.194-45.214M24.171-44.486L22.568-44.486L22.568-44.766Q22.794-44.766 22.942-44.800Q23.091-44.835 23.091-44.975L23.091-48.594Q23.091-48.864 22.983-48.926Q22.876-48.987 22.568-48.987L22.568-49.268L23.645-49.343L23.645-44.975Q23.645-44.838 23.795-44.802Q23.945-44.766 24.171-44.766L24.171-44.486M26.434-44.486L24.831-44.486L24.831-44.766Q25.056-44.766 25.205-44.800Q25.354-44.835 25.354-44.975L25.354-48.594Q25.354-48.864 25.246-48.926Q25.138-48.987 24.831-48.987L24.831-49.268L25.907-49.343L25.907-44.975Q25.907-44.838 26.058-44.802Q26.208-44.766 26.434-44.766\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(310.823 38.739)\">\u003Cpath d=\"M31.354-44.486L29.802-44.486L29.802-44.766Q30.028-44.766 30.177-44.800Q30.325-44.835 30.325-44.975L30.325-46.824Q30.325-47.012 30.277-47.096Q30.230-47.179 30.132-47.198Q30.035-47.217 29.823-47.217L29.823-47.497L30.879-47.572L30.879-44.975Q30.879-44.835 31.011-44.800Q31.142-44.766 31.354-44.766L31.354-44.486M30.083-48.793Q30.083-48.964 30.206-49.083Q30.329-49.203 30.500-49.203Q30.667-49.203 30.790-49.083Q30.913-48.964 30.913-48.793Q30.913-48.618 30.790-48.495Q30.667-48.372 30.500-48.372Q30.329-48.372 30.206-48.495Q30.083-48.618 30.083-48.793M33.682-44.486L32.048-44.486L32.048-44.766Q32.277-44.766 32.426-44.800Q32.574-44.835 32.574-44.975L32.574-46.824Q32.574-47.094 32.467-47.155Q32.359-47.217 32.048-47.217L32.048-47.497L33.108-47.572L33.108-46.923Q33.278-47.231 33.583-47.402Q33.887-47.572 34.232-47.572Q34.738-47.572 35.022-47.349Q35.305-47.125 35.305-46.629L35.305-44.975Q35.305-44.838 35.454-44.802Q35.603-44.766 35.828-44.766L35.828-44.486L34.198-44.486L34.198-44.766Q34.427-44.766 34.576-44.800Q34.724-44.835 34.724-44.975L34.724-46.615Q34.724-46.950 34.605-47.150Q34.485-47.350 34.171-47.350Q33.901-47.350 33.666-47.214Q33.432-47.077 33.294-46.843Q33.155-46.609 33.155-46.335L33.155-44.975Q33.155-44.838 33.306-44.802Q33.456-44.766 33.682-44.766\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(310.823 38.739)\">\u003Cpath d=\"M41.963-44.486L39.191-44.486L39.191-44.766Q39.912-44.766 39.912-44.975L39.912-48.776Q39.912-48.987 39.191-48.987L39.191-49.268L41.963-49.268Q42.448-49.268 42.884-49.073Q43.320-48.878 43.643-48.536Q43.966-48.194 44.144-47.754Q44.321-47.313 44.321-46.831Q44.321-46.345 44.137-45.922Q43.952-45.498 43.629-45.176Q43.306-44.855 42.874-44.671Q42.442-44.486 41.963-44.486M40.575-48.776L40.575-44.975Q40.575-44.835 40.664-44.800Q40.753-44.766 40.941-44.766L41.765-44.766Q42.390-44.766 42.794-45.028Q43.197-45.289 43.385-45.756Q43.573-46.222 43.573-46.831Q43.573-47.309 43.481-47.702Q43.388-48.095 43.139-48.393Q42.900-48.680 42.536-48.834Q42.172-48.987 41.765-48.987L40.941-48.987Q40.753-48.987 40.664-48.953Q40.575-48.919 40.575-48.776\" 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 load-use pair on PIPE. The mrmovq flows F,D,E,M,W; the dependent addq stalls one extra cycle in Decode (shaded) while a bubble drains through Execute, then picks up valM forwarded from the Memory stage in cycle 4 and proceeds. Total cost of the hazard: one cycle.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:512.970px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 384.727 120.008\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-64.831-12.32H1.335v-22.762H-64.83Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-38.286 1.889)\">\u003Cpath d=\"M-22.806-24.813Q-22.806-25.259-22.392-25.516Q-21.978-25.774-21.437-25.874Q-20.896-25.973-20.388-25.981Q-20.388-26.196-20.523-26.348Q-20.657-26.501-20.864-26.577Q-21.071-26.653-21.282-26.653Q-21.626-26.653-21.786-26.630L-21.786-26.571Q-21.786-26.403-21.905-26.288Q-22.024-26.173-22.189-26.173Q-22.364-26.173-22.480-26.296Q-22.595-26.419-22.595-26.587Q-22.595-26.993-22.214-27.102Q-21.833-27.212-21.274-27.212Q-21.005-27.212-20.737-27.134Q-20.470-27.055-20.245-26.905Q-20.021-26.755-19.884-26.534Q-19.747-26.313-19.747-26.036L-19.747-24.317Q-19.747-24.259-19.220-24.259Q-19.024-24.239-18.974-24.028L-18.974-23.938Q-19.024-23.723-19.220-23.700L-19.364-23.700Q-19.708-23.700-19.937-23.747Q-20.165-23.794-20.310-23.981Q-20.771-23.661-21.478-23.661Q-21.814-23.661-22.118-23.802Q-22.423-23.942-22.614-24.204Q-22.806-24.466-22.806-24.813M-22.165-24.805Q-22.165-24.532-21.923-24.376Q-21.681-24.220-21.396-24.220Q-21.177-24.220-20.944-24.278Q-20.712-24.337-20.550-24.475Q-20.388-24.614-20.388-24.837L-20.388-25.427Q-20.669-25.427-21.085-25.370Q-21.501-25.313-21.833-25.175Q-22.165-25.036-22.165-24.805M-17.103-23.661Q-17.567-23.661-17.933-23.911Q-18.298-24.161-18.503-24.565Q-18.708-24.970-18.708-25.427Q-18.708-25.770-18.583-26.091Q-18.458-26.411-18.226-26.661Q-17.993-26.911-17.689-27.050Q-17.384-27.188-17.028-27.188Q-16.517-27.188-16.110-26.868L-16.110-28.028L-16.532-28.028Q-16.743-28.052-16.782-28.266L-16.782-28.356Q-16.743-28.563-16.532-28.587L-15.720-28.587Q-15.521-28.563-15.470-28.356L-15.470-24.259L-15.044-24.259Q-14.837-24.235-14.798-24.028L-14.798-23.938Q-14.837-23.723-15.044-23.700L-15.860-23.700Q-16.060-23.723-16.110-23.938L-16.110-24.067Q-16.306-23.876-16.567-23.768Q-16.829-23.661-17.103-23.661M-17.064-24.220Q-16.704-24.220-16.452-24.489Q-16.200-24.759-16.110-25.134L-16.110-25.966Q-16.169-26.153-16.296-26.304Q-16.423-26.454-16.601-26.542Q-16.778-26.630-16.974-26.630Q-17.282-26.630-17.532-26.460Q-17.782-26.290-17.927-26.005Q-18.071-25.720-18.071-25.419Q-18.071-24.970-17.786-24.595Q-17.501-24.220-17.064-24.220M-12.857-23.661Q-13.321-23.661-13.687-23.911Q-14.052-24.161-14.257-24.565Q-14.462-24.970-14.462-25.427Q-14.462-25.770-14.337-26.091Q-14.212-26.411-13.980-26.661Q-13.747-26.911-13.442-27.050Q-13.138-27.188-12.782-27.188Q-12.271-27.188-11.864-26.868L-11.864-28.028L-12.286-28.028Q-12.497-28.052-12.536-28.266L-12.536-28.356Q-12.497-28.563-12.286-28.587L-11.474-28.587Q-11.274-28.563-11.224-28.356L-11.224-24.259L-10.798-24.259Q-10.591-24.235-10.552-24.028L-10.552-23.938Q-10.591-23.723-10.798-23.700L-11.614-23.700Q-11.814-23.723-11.864-23.938L-11.864-24.067Q-12.060-23.876-12.321-23.768Q-12.583-23.661-12.857-23.661M-12.817-24.220Q-12.458-24.220-12.206-24.489Q-11.954-24.759-11.864-25.134L-11.864-25.966Q-11.923-26.153-12.050-26.304Q-12.177-26.454-12.355-26.542Q-12.532-26.630-12.728-26.630Q-13.036-26.630-13.286-26.460Q-13.536-26.290-13.681-26.005Q-13.825-25.720-13.825-25.419Q-13.825-24.970-13.540-24.595Q-13.255-24.220-12.817-24.220M-8.161-22.157L-8.161-22.243Q-8.110-22.462-7.915-22.485L-7.450-22.485L-7.450-24.083Q-7.903-23.661-8.513-23.661Q-8.868-23.661-9.173-23.804Q-9.478-23.946-9.710-24.196Q-9.942-24.446-10.067-24.768Q-10.192-25.091-10.192-25.427Q-10.192-25.911-9.954-26.311Q-9.716-26.712-9.310-26.950Q-8.903-27.188-8.427-27.188Q-7.864-27.188-7.450-26.798L-7.450-26.958Q-7.399-27.169-7.200-27.188L-7.060-27.188Q-6.860-27.165-6.810-26.958L-6.810-22.485L-6.345-22.485Q-6.149-22.462-6.099-22.243L-6.099-22.157Q-6.149-21.946-6.345-21.923L-7.915-21.923Q-8.110-21.946-8.161-22.157M-8.466-24.220Q-8.095-24.220-7.819-24.473Q-7.544-24.727-7.450-25.091L-7.450-25.708Q-7.493-25.946-7.616-26.159Q-7.739-26.372-7.937-26.501Q-8.134-26.630-8.376-26.630Q-8.692-26.630-8.964-26.464Q-9.235-26.298-9.394-26.016Q-9.552-25.735-9.552-25.419Q-9.552-24.954-9.237-24.587Q-8.923-24.220-8.466-24.220\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.286 1.889)\">\u003Cpath d=\"M-1.282-23.341Q-1.282-23.395-1.259-23.462L1.007-29.067Q1.101-29.251 1.296-29.251Q1.421-29.251 1.509-29.163Q1.597-29.075 1.597-28.946Q1.597-28.887 1.573-28.829L-0.689-23.220Q-0.790-23.036-0.970-23.036Q-1.095-23.036-1.189-23.126Q-1.282-23.216-1.282-23.341M1.296-23.036Q0.944-23.036 0.763-23.376Q0.581-23.716 0.581-24.098Q0.581-24.485 0.761-24.825Q0.940-25.165 1.296-25.165Q1.534-25.165 1.692-24.995Q1.851-24.825 1.925-24.581Q1.999-24.337 1.999-24.098Q1.999-23.864 1.925-23.620Q1.851-23.376 1.692-23.206Q1.534-23.036 1.296-23.036M1.296-23.595Q1.378-23.626 1.425-23.794Q1.472-23.962 1.472-24.098Q1.472-24.235 1.425-24.405Q1.378-24.575 1.296-24.602Q1.210-24.575 1.159-24.407Q1.108-24.239 1.108-24.098Q1.108-23.970 1.159-23.798Q1.210-23.626 1.296-23.595M-0.970-27.114Q-1.212-27.114-1.372-27.284Q-1.532-27.454-1.607-27.700Q-1.681-27.946-1.681-28.188Q-1.681-28.571-1.501-28.911Q-1.321-29.251-0.970-29.251Q-0.732-29.251-0.573-29.081Q-0.415-28.911-0.341-28.667Q-0.267-28.423-0.267-28.188Q-0.267-27.946-0.341-27.700Q-0.415-27.454-0.573-27.284Q-0.732-27.114-0.970-27.114M-0.970-27.677Q-0.880-27.720-0.837-27.876Q-0.794-28.032-0.794-28.188Q-0.794-28.317-0.841-28.493Q-0.888-28.669-0.978-28.692Q-0.993-28.692-1.023-28.657Q-1.052-28.622-1.060-28.602Q-1.153-28.415-1.153-28.188Q-1.153-28.052-1.105-27.880Q-1.056-27.708-0.970-27.677M2.507-23.938L2.507-24.028Q2.565-24.235 2.757-24.259L3.468-24.259L3.468-26.587L2.757-26.587Q2.561-26.610 2.507-26.829L2.507-26.915Q2.565-27.126 2.757-27.149L3.858-27.149Q4.058-27.130 4.108-26.915L4.108-26.587Q4.370-26.872 4.726-27.030Q5.081-27.188 5.468-27.188Q5.761-27.188 5.995-27.054Q6.229-26.919 6.229-26.653Q6.229-26.485 6.120-26.368Q6.011-26.251 5.843-26.251Q5.690-26.251 5.575-26.362Q5.460-26.473 5.460-26.630Q5.085-26.630 4.770-26.429Q4.456-26.227 4.282-25.893Q4.108-25.559 4.108-25.180L4.108-24.259L5.054-24.259Q5.261-24.235 5.300-24.028L5.300-23.938Q5.261-23.723 5.054-23.700L2.757-23.700Q2.565-23.723 2.507-23.938M7.386-23.938L7.386-24.028Q7.436-24.235 7.636-24.259L8.452-24.259L8.452-27.442Q8.073-27.134 7.620-27.134Q7.390-27.134 7.339-27.364L7.339-27.454Q7.390-27.669 7.585-27.692Q7.913-27.692 8.167-27.930Q8.421-28.169 8.561-28.516Q8.632-28.645 8.788-28.669L8.843-28.669Q9.038-28.649 9.089-28.434L9.089-24.259L9.905-24.259Q10.104-24.235 10.155-24.028L10.155-23.938Q10.104-23.723 9.905-23.700L7.636-23.700Q7.436-23.723 7.386-23.938M12.897-23.622Q12.464-23.622 12.132-23.860Q11.800-24.098 11.579-24.487Q11.358-24.876 11.251-25.313Q11.143-25.751 11.143-26.149Q11.143-26.540 11.253-26.983Q11.362-27.427 11.579-27.807Q11.796-28.188 12.130-28.429Q12.464-28.669 12.897-28.669Q13.452-28.669 13.852-28.270Q14.253-27.872 14.450-27.286Q14.647-26.700 14.647-26.149Q14.647-25.595 14.450-25.007Q14.253-24.419 13.852-24.020Q13.452-23.622 12.897-23.622M12.897-24.180Q13.198-24.180 13.415-24.397Q13.632-24.614 13.759-24.942Q13.886-25.270 13.946-25.616Q14.007-25.962 14.007-26.243Q14.007-26.493 13.944-26.819Q13.882-27.145 13.751-27.436Q13.620-27.727 13.407-27.917Q13.194-28.106 12.897-28.106Q12.522-28.106 12.270-27.794Q12.018-27.481 11.901-27.048Q11.784-26.614 11.784-26.243Q11.784-25.845 11.897-25.364Q12.011-24.884 12.259-24.532Q12.507-24.180 12.897-24.180M16.741-22.587Q16.628-22.587 16.538-22.677Q16.448-22.766 16.448-22.876Q16.448-23.052 16.640-23.126Q16.858-23.177 17.030-23.335Q17.202-23.493 17.268-23.716Q17.245-23.716 17.214-23.700L17.151-23.700Q16.921-23.700 16.755-23.862Q16.589-24.024 16.589-24.259Q16.589-24.493 16.753-24.653Q16.917-24.813 17.151-24.813Q17.362-24.813 17.526-24.692Q17.690-24.571 17.780-24.378Q17.870-24.184 17.870-23.973Q17.870-23.497 17.571-23.108Q17.272-22.720 16.808-22.595Q16.784-22.587 16.741-22.587M19.948-23.341Q19.948-23.395 19.972-23.462L22.237-29.067Q22.331-29.251 22.526-29.251Q22.651-29.251 22.739-29.163Q22.827-29.075 22.827-28.946Q22.827-28.887 22.804-28.829L20.542-23.220Q20.440-23.036 20.261-23.036Q20.136-23.036 20.042-23.126Q19.948-23.216 19.948-23.341M22.526-23.036Q22.175-23.036 21.993-23.376Q21.811-23.716 21.811-24.098Q21.811-24.485 21.991-24.825Q22.171-25.165 22.526-25.165Q22.765-25.165 22.923-24.995Q23.081-24.825 23.155-24.581Q23.229-24.337 23.229-24.098Q23.229-23.864 23.155-23.620Q23.081-23.376 22.923-23.206Q22.765-23.036 22.526-23.036M22.526-23.595Q22.608-23.626 22.655-23.794Q22.702-23.962 22.702-24.098Q22.702-24.235 22.655-24.405Q22.608-24.575 22.526-24.602Q22.440-24.575 22.390-24.407Q22.339-24.239 22.339-24.098Q22.339-23.970 22.390-23.798Q22.440-23.626 22.526-23.595M20.261-27.114Q20.018-27.114 19.858-27.284Q19.698-27.454 19.624-27.700Q19.550-27.946 19.550-28.188Q19.550-28.571 19.729-28.911Q19.909-29.251 20.261-29.251Q20.499-29.251 20.657-29.081Q20.815-28.911 20.890-28.667Q20.964-28.423 20.964-28.188Q20.964-27.946 20.890-27.700Q20.815-27.454 20.657-27.284Q20.499-27.114 20.261-27.114M20.261-27.677Q20.351-27.720 20.393-27.876Q20.436-28.032 20.436-28.188Q20.436-28.317 20.390-28.493Q20.343-28.669 20.253-28.692Q20.237-28.692 20.208-28.657Q20.179-28.622 20.171-28.602Q20.077-28.415 20.077-28.188Q20.077-28.052 20.126-27.880Q20.175-27.708 20.261-27.677M23.737-23.938L23.737-24.028Q23.796-24.235 23.987-24.259L24.698-24.259L24.698-26.587L23.987-26.587Q23.792-26.610 23.737-26.829L23.737-26.915Q23.796-27.126 23.987-27.149L25.089-27.149Q25.288-27.130 25.339-26.915L25.339-26.587Q25.601-26.872 25.956-27.030Q26.311-27.188 26.698-27.188Q26.991-27.188 27.226-27.054Q27.460-26.919 27.460-26.653Q27.460-26.485 27.351-26.368Q27.241-26.251 27.073-26.251Q26.921-26.251 26.806-26.362Q26.690-26.473 26.690-26.630Q26.315-26.630 26.001-26.429Q25.686-26.227 25.513-25.893Q25.339-25.559 25.339-25.180L25.339-24.259L26.284-24.259Q26.491-24.235 26.530-24.028L26.530-23.938Q26.491-23.723 26.284-23.700L23.987-23.700Q23.796-23.723 23.737-23.938M28.167-24.813Q28.167-25.259 28.581-25.516Q28.995-25.774 29.536-25.874Q30.077-25.973 30.585-25.981Q30.585-26.196 30.450-26.348Q30.315-26.501 30.108-26.577Q29.901-26.653 29.690-26.653Q29.347-26.653 29.186-26.630L29.186-26.571Q29.186-26.403 29.067-26.288Q28.948-26.173 28.784-26.173Q28.608-26.173 28.493-26.296Q28.378-26.419 28.378-26.587Q28.378-26.993 28.759-27.102Q29.140-27.212 29.698-27.212Q29.968-27.212 30.235-27.134Q30.503-27.055 30.727-26.905Q30.952-26.755 31.089-26.534Q31.226-26.313 31.226-26.036L31.226-24.317Q31.226-24.259 31.753-24.259Q31.948-24.239 31.999-24.028L31.999-23.938Q31.948-23.723 31.753-23.700L31.608-23.700Q31.265-23.700 31.036-23.747Q30.808-23.794 30.663-23.981Q30.202-23.661 29.495-23.661Q29.159-23.661 28.854-23.802Q28.550-23.942 28.358-24.204Q28.167-24.466 28.167-24.813M28.808-24.805Q28.808-24.532 29.050-24.376Q29.292-24.220 29.577-24.220Q29.796-24.220 30.028-24.278Q30.261-24.337 30.423-24.475Q30.585-24.614 30.585-24.837L30.585-25.427Q30.304-25.427 29.888-25.370Q29.472-25.313 29.140-25.175Q28.808-25.036 28.808-24.805M32.265-23.938L32.265-24.028Q32.304-24.235 32.511-24.259L32.917-24.259L33.847-25.477L32.975-26.587L32.558-26.587Q32.362-26.606 32.311-26.829L32.311-26.915Q32.362-27.126 32.558-27.149L33.718-27.149Q33.917-27.126 33.968-26.915L33.968-26.829Q33.917-26.610 33.718-26.587L33.608-26.587L34.104-25.930L34.581-26.587L34.464-26.587Q34.265-26.610 34.214-26.829L34.214-26.915Q34.265-27.126 34.464-27.149L35.624-27.149Q35.819-27.130 35.870-26.915L35.870-26.829Q35.819-26.610 35.624-26.587L35.214-26.587L34.366-25.477L35.327-24.259L35.733-24.259Q35.933-24.235 35.983-24.028L35.983-23.938Q35.944-23.723 35.733-23.700L34.581-23.700Q34.374-23.723 34.335-23.938L34.335-24.028Q34.374-24.235 34.581-24.259L34.710-24.259L34.104-25.114L33.518-24.259L33.663-24.259Q33.870-24.235 33.909-24.028L33.909-23.938Q33.870-23.723 33.663-23.700L32.511-23.700Q32.315-23.720 32.265-23.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M50.765-10.897h96.74v-25.607h-96.74Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(85.159 5.653)\">\u003Cpath d=\"M-17.913-31.700L-19.496-31.700L-19.496-31.980Q-19.267-31.980-19.118-32.014Q-18.970-32.049-18.970-32.189L-18.970-35.808Q-18.970-36.078-19.077-36.140Q-19.185-36.201-19.496-36.201L-19.496-36.482L-18.416-36.557L-18.416-33.269L-17.431-34.038Q-17.226-34.175-17.226-34.325Q-17.226-34.369-17.267-34.404Q-17.308-34.438-17.353-34.438L-17.353-34.718L-15.989-34.718L-15.989-34.438Q-16.478-34.438-16.997-34.038L-17.554-33.604L-16.577-32.380Q-16.375-32.134-16.242-32.057Q-16.109-31.980-15.822-31.980L-15.822-31.700L-17.254-31.700L-17.254-31.980Q-17.066-31.980-17.066-32.093Q-17.066-32.189-17.220-32.380L-17.954-33.289L-18.436-32.910L-18.436-32.189Q-18.436-32.052-18.288-32.016Q-18.139-31.980-17.913-31.980\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(85.159 5.653)\">\u003Cpath d=\"M-15.565-33.235Q-15.565-33.556-15.440-33.845Q-15.315-34.134-15.089-34.357Q-14.864-34.581-14.568-34.701Q-14.273-34.821-13.955-34.821Q-13.627-34.821-13.365-34.721Q-13.104-34.622-12.928-34.440Q-12.752-34.257-12.658-33.999Q-12.564-33.741-12.564-33.409Q-12.564-33.317-12.646-33.296L-14.901-33.296L-14.901-33.235Q-14.901-32.647-14.618-32.264Q-14.334-31.881-13.767-31.881Q-13.445-31.881-13.177-32.074Q-12.909-32.267-12.820-32.582Q-12.813-32.623-12.738-32.637L-12.646-32.637Q-12.564-32.613-12.564-32.541Q-12.564-32.534-12.570-32.507Q-12.683-32.110-13.054-31.871Q-13.425-31.632-13.849-31.632Q-14.286-31.632-14.686-31.840Q-15.086-32.049-15.325-32.416Q-15.565-32.783-15.565-33.235M-14.895-33.505L-13.080-33.505Q-13.080-33.782-13.177-34.034Q-13.275-34.287-13.473-34.443Q-13.671-34.598-13.955-34.598Q-14.232-34.598-14.445-34.440Q-14.659-34.281-14.777-34.026Q-14.895-33.771-14.895-33.505M-10.226-31.700L-11.962-31.700L-11.962-31.980Q-11.733-31.980-11.584-32.014Q-11.436-32.049-11.436-32.189L-11.436-34.038Q-11.436-34.308-11.543-34.369Q-11.651-34.431-11.962-34.431L-11.962-34.711L-10.933-34.786L-10.933-34.079Q-10.803-34.387-10.561-34.586Q-10.318-34.786-10-34.786Q-9.781-34.786-9.610-34.662Q-9.440-34.537-9.440-34.325Q-9.440-34.188-9.539-34.089Q-9.638-33.990-9.771-33.990Q-9.908-33.990-10.007-34.089Q-10.106-34.188-10.106-34.325Q-10.106-34.465-10.007-34.564Q-10.297-34.564-10.497-34.368Q-10.697-34.171-10.790-33.877Q-10.882-33.583-10.882-33.303L-10.882-32.189Q-10.882-31.980-10.226-31.980L-10.226-31.700M-7.173-31.700L-8.807-31.700L-8.807-31.980Q-8.578-31.980-8.430-32.014Q-8.281-32.049-8.281-32.189L-8.281-34.038Q-8.281-34.308-8.389-34.369Q-8.496-34.431-8.807-34.431L-8.807-34.711L-7.748-34.786L-7.748-34.137Q-7.577-34.445-7.273-34.616Q-6.968-34.786-6.623-34.786Q-6.117-34.786-5.834-34.563Q-5.550-34.339-5.550-33.843L-5.550-32.189Q-5.550-32.052-5.401-32.016Q-5.253-31.980-5.027-31.980L-5.027-31.700L-6.657-31.700L-6.657-31.980Q-6.428-31.980-6.280-32.014Q-6.131-32.049-6.131-32.189L-6.131-33.829Q-6.131-34.164-6.251-34.364Q-6.370-34.564-6.685-34.564Q-6.955-34.564-7.189-34.428Q-7.423-34.291-7.561-34.057Q-7.700-33.823-7.700-33.549L-7.700-32.189Q-7.700-32.052-7.549-32.016Q-7.399-31.980-7.173-31.980L-7.173-31.700M-4.480-33.235Q-4.480-33.556-4.355-33.845Q-4.231-34.134-4.005-34.357Q-3.779-34.581-3.484-34.701Q-3.188-34.821-2.870-34.821Q-2.542-34.821-2.281-34.721Q-2.019-34.622-1.843-34.440Q-1.667-34.257-1.573-33.999Q-1.479-33.741-1.479-33.409Q-1.479-33.317-1.561-33.296L-3.817-33.296L-3.817-33.235Q-3.817-32.647-3.533-32.264Q-3.250-31.881-2.682-31.881Q-2.361-31.881-2.093-32.074Q-1.824-32.267-1.735-32.582Q-1.729-32.623-1.653-32.637L-1.561-32.637Q-1.479-32.613-1.479-32.541Q-1.479-32.534-1.486-32.507Q-1.599-32.110-1.970-31.871Q-2.340-31.632-2.764-31.632Q-3.202-31.632-3.602-31.840Q-4.002-32.049-4.241-32.416Q-4.480-32.783-4.480-33.235M-3.810-33.505L-1.995-33.505Q-1.995-33.782-2.093-34.034Q-2.190-34.287-2.388-34.443Q-2.587-34.598-2.870-34.598Q-3.147-34.598-3.361-34.440Q-3.574-34.281-3.692-34.026Q-3.810-33.771-3.810-33.505M0.777-31.700L-0.826-31.700L-0.826-31.980Q-0.601-31.980-0.452-32.014Q-0.303-32.049-0.303-32.189L-0.303-35.808Q-0.303-36.078-0.411-36.140Q-0.519-36.201-0.826-36.201L-0.826-36.482L0.250-36.557L0.250-32.189Q0.250-32.052 0.401-32.016Q0.551-31.980 0.777-31.980\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(85.159 5.653)\">\u003Cpath d=\"M5.770-31.700L4.136-31.700L4.136-31.980Q4.365-31.980 4.514-32.014Q4.663-32.049 4.663-32.189L4.663-35.808Q4.663-36.078 4.555-36.140Q4.447-36.201 4.136-36.201L4.136-36.482L5.216-36.557L5.216-34.171Q5.322-34.356 5.500-34.498Q5.678-34.639 5.886-34.713Q6.095-34.786 6.320-34.786Q6.826-34.786 7.110-34.563Q7.394-34.339 7.394-33.843L7.394-32.189Q7.394-32.052 7.542-32.016Q7.691-31.980 7.917-31.980L7.917-31.700L6.286-31.700L6.286-31.980Q6.515-31.980 6.664-32.014Q6.813-32.049 6.813-32.189L6.813-33.829Q6.813-34.164 6.693-34.364Q6.573-34.564 6.259-34.564Q5.989-34.564 5.755-34.428Q5.521-34.291 5.382-34.057Q5.244-33.823 5.244-33.549L5.244-32.189Q5.244-32.052 5.394-32.016Q5.545-31.980 5.770-31.980L5.770-31.700M8.563-32.428Q8.563-32.760 8.786-32.987Q9.010-33.214 9.354-33.342Q9.697-33.471 10.070-33.523Q10.442-33.576 10.747-33.576L10.747-33.829Q10.747-34.034 10.639-34.214Q10.531-34.393 10.350-34.496Q10.169-34.598 9.961-34.598Q9.554-34.598 9.318-34.506Q9.407-34.469 9.453-34.385Q9.499-34.301 9.499-34.199Q9.499-34.103 9.453-34.024Q9.407-33.946 9.326-33.901Q9.246-33.857 9.157-33.857Q9.007-33.857 8.906-33.954Q8.805-34.052 8.805-34.199Q8.805-34.821 9.961-34.821Q10.172-34.821 10.422-34.757Q10.671-34.694 10.873-34.575Q11.075-34.455 11.201-34.270Q11.328-34.086 11.328-33.843L11.328-32.267Q11.328-32.151 11.389-32.055Q11.451-31.960 11.564-31.960Q11.673-31.960 11.738-32.054Q11.803-32.148 11.803-32.267L11.803-32.715L12.069-32.715L12.069-32.267Q12.069-31.997 11.842-31.832Q11.615-31.666 11.335-31.666Q11.126-31.666 10.989-31.820Q10.853-31.973 10.829-32.189Q10.682-31.922 10.400-31.777Q10.118-31.632 9.793-31.632Q9.516-31.632 9.232-31.707Q8.949-31.782 8.756-31.961Q8.563-32.141 8.563-32.428M9.178-32.428Q9.178-32.254 9.279-32.124Q9.379-31.994 9.535-31.924Q9.691-31.854 9.855-31.854Q10.073-31.854 10.282-31.951Q10.490-32.049 10.618-32.230Q10.747-32.411 10.747-32.637L10.747-33.365Q10.422-33.365 10.056-33.274Q9.691-33.183 9.434-32.971Q9.178-32.760 9.178-32.428M14.168-31.700L12.534-31.700L12.534-31.980Q12.763-31.980 12.912-32.014Q13.061-32.049 13.061-32.189L13.061-34.038Q13.061-34.308 12.953-34.369Q12.845-34.431 12.534-34.431L12.534-34.711L13.594-34.786L13.594-34.137Q13.765-34.445 14.069-34.616Q14.373-34.786 14.718-34.786Q15.224-34.786 15.508-34.563Q15.792-34.339 15.792-33.843L15.792-32.189Q15.792-32.052 15.940-32.016Q16.089-31.980 16.315-31.980L16.315-31.700L14.684-31.700L14.684-31.980Q14.913-31.980 15.062-32.014Q15.211-32.049 15.211-32.189L15.211-33.829Q15.211-34.164 15.091-34.364Q14.971-34.564 14.657-34.564Q14.387-34.564 14.153-34.428Q13.919-34.291 13.780-34.057Q13.642-33.823 13.642-33.549L13.642-32.189Q13.642-32.052 13.792-32.016Q13.942-31.980 14.168-31.980L14.168-31.700M16.902-33.211Q16.902-33.549 17.043-33.840Q17.183-34.130 17.427-34.344Q17.671-34.557 17.976-34.672Q18.280-34.786 18.605-34.786Q18.875-34.786 19.138-34.687Q19.401-34.588 19.592-34.410L19.592-35.808Q19.592-36.078 19.485-36.140Q19.377-36.201 19.066-36.201L19.066-36.482L20.143-36.557L20.143-32.373Q20.143-32.185 20.197-32.102Q20.252-32.018 20.353-31.999Q20.454-31.980 20.669-31.980L20.669-31.700L19.562-31.632L19.562-32.049Q19.145-31.632 18.519-31.632Q18.088-31.632 17.716-31.844Q17.343-32.055 17.123-32.416Q16.902-32.777 16.902-33.211M18.577-31.854Q18.786-31.854 18.972-31.926Q19.158-31.997 19.312-32.134Q19.466-32.271 19.562-32.449L19.562-34.058Q19.476-34.205 19.331-34.325Q19.186-34.445 19.016-34.504Q18.847-34.564 18.666-34.564Q18.106-34.564 17.837-34.175Q17.569-33.785 17.569-33.204Q17.569-32.633 17.803-32.243Q18.037-31.854 18.577-31.854M22.986-31.700L21.383-31.700L21.383-31.980Q21.609-31.980 21.758-32.014Q21.906-32.049 21.906-32.189L21.906-35.808Q21.906-36.078 21.799-36.140Q21.691-36.201 21.383-36.201L21.383-36.482L22.460-36.557L22.460-32.189Q22.460-32.052 22.610-32.016Q22.761-31.980 22.986-31.980L22.986-31.700M23.540-33.235Q23.540-33.556 23.665-33.845Q23.790-34.134 24.015-34.357Q24.241-34.581 24.536-34.701Q24.832-34.821 25.150-34.821Q25.478-34.821 25.740-34.721Q26.001-34.622 26.177-34.440Q26.353-34.257 26.447-33.999Q26.541-33.741 26.541-33.409Q26.541-33.317 26.459-33.296L24.203-33.296L24.203-33.235Q24.203-32.647 24.487-32.264Q24.771-31.881 25.338-31.881Q25.659-31.881 25.928-32.074Q26.196-32.267 26.285-32.582Q26.292-32.623 26.367-32.637L26.459-32.637Q26.541-32.613 26.541-32.541Q26.541-32.534 26.534-32.507Q26.421-32.110 26.051-31.871Q25.680-31.632 25.256-31.632Q24.818-31.632 24.419-31.840Q24.019-32.049 23.779-32.416Q23.540-32.783 23.540-33.235M24.210-33.505L26.025-33.505Q26.025-33.782 25.928-34.034Q25.830-34.287 25.632-34.443Q25.434-34.598 25.150-34.598Q24.873-34.598 24.659-34.440Q24.446-34.281 24.328-34.026Q24.210-33.771 24.210-33.505M28.879-31.700L27.143-31.700L27.143-31.980Q27.372-31.980 27.520-32.014Q27.669-32.049 27.669-32.189L27.669-34.038Q27.669-34.308 27.561-34.369Q27.454-34.431 27.143-34.431L27.143-34.711L28.171-34.786L28.171-34.079Q28.301-34.387 28.544-34.586Q28.787-34.786 29.105-34.786Q29.323-34.786 29.494-34.662Q29.665-34.537 29.665-34.325Q29.665-34.188 29.566-34.089Q29.467-33.990 29.334-33.990Q29.197-33.990 29.098-34.089Q28.999-34.188 28.999-34.325Q28.999-34.465 29.098-34.564Q28.807-34.564 28.607-34.368Q28.407-34.171 28.315-33.877Q28.223-33.583 28.223-33.303L28.223-32.189Q28.223-31.980 28.879-31.980\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(85.159 5.653)\">\u003Cpath d=\"M34.713-31.700L32.977-31.700L32.977-31.980Q33.206-31.980 33.355-32.014Q33.503-32.049 33.503-32.189L33.503-34.038Q33.503-34.308 33.396-34.369Q33.288-34.431 32.977-34.431L32.977-34.711L34.006-34.786L34.006-34.079Q34.136-34.387 34.378-34.586Q34.621-34.786 34.939-34.786Q35.158-34.786 35.329-34.662Q35.500-34.537 35.500-34.325Q35.500-34.188 35.400-34.089Q35.301-33.990 35.168-33.990Q35.031-33.990 34.932-34.089Q34.833-34.188 34.833-34.325Q34.833-34.465 34.932-34.564Q34.642-34.564 34.442-34.368Q34.242-34.171 34.149-33.877Q34.057-33.583 34.057-33.303L34.057-32.189Q34.057-31.980 34.713-31.980L34.713-31.700M36.658-32.534L36.658-34.038Q36.658-34.308 36.551-34.369Q36.443-34.431 36.132-34.431L36.132-34.711L37.239-34.786L37.239-32.554L37.239-32.534Q37.239-32.254 37.291-32.110Q37.342-31.967 37.484-31.910Q37.626-31.854 37.913-31.854Q38.166-31.854 38.371-31.994Q38.576-32.134 38.692-32.360Q38.808-32.585 38.808-32.835L38.808-34.038Q38.808-34.308 38.701-34.369Q38.593-34.431 38.282-34.431L38.282-34.711L39.389-34.786L39.389-32.373Q39.389-32.182 39.442-32.100Q39.495-32.018 39.596-31.999Q39.697-31.980 39.912-31.980L39.912-31.700L38.836-31.632L38.836-32.196Q38.726-32.014 38.581-31.891Q38.436-31.768 38.249-31.700Q38.063-31.632 37.861-31.632Q36.658-31.632 36.658-32.534M42.182-31.700L40.548-31.700L40.548-31.980Q40.777-31.980 40.926-32.014Q41.074-32.049 41.074-32.189L41.074-34.038Q41.074-34.308 40.967-34.369Q40.859-34.431 40.548-34.431L40.548-34.711L41.607-34.786L41.607-34.137Q41.778-34.445 42.083-34.616Q42.387-34.786 42.732-34.786Q43.238-34.786 43.522-34.563Q43.805-34.339 43.805-33.843L43.805-32.189Q43.805-32.052 43.954-32.016Q44.103-31.980 44.328-31.980L44.328-31.700L42.698-31.700L42.698-31.980Q42.927-31.980 43.076-32.014Q43.224-32.049 43.224-32.189L43.224-33.829Q43.224-34.164 43.105-34.364Q42.985-34.564 42.670-34.564Q42.400-34.564 42.166-34.428Q41.932-34.291 41.794-34.057Q41.655-33.823 41.655-33.549L41.655-32.189Q41.655-32.052 41.806-32.016Q41.956-31.980 42.182-31.980L42.182-31.700M44.916-31.707L44.916-32.770Q44.916-32.794 44.943-32.821Q44.971-32.848 44.995-32.848L45.104-32.848Q45.169-32.848 45.183-32.790Q45.278-32.356 45.524-32.105Q45.771-31.854 46.184-31.854Q46.526-31.854 46.779-31.987Q47.032-32.120 47.032-32.428Q47.032-32.585 46.938-32.700Q46.844-32.814 46.705-32.883Q46.567-32.951 46.399-32.989L45.818-33.088Q45.463-33.156 45.190-33.377Q44.916-33.597 44.916-33.939Q44.916-34.188 45.027-34.363Q45.138-34.537 45.325-34.636Q45.511-34.735 45.726-34.778Q45.941-34.821 46.184-34.821Q46.598-34.821 46.878-34.639L47.093-34.814Q47.104-34.817 47.110-34.819Q47.117-34.821 47.128-34.821L47.179-34.821Q47.206-34.821 47.230-34.797Q47.254-34.773 47.254-34.745L47.254-33.898Q47.254-33.877 47.230-33.850Q47.206-33.823 47.179-33.823L47.066-33.823Q47.039-33.823 47.013-33.848Q46.987-33.874 46.987-33.898Q46.987-34.134 46.881-34.298Q46.775-34.462 46.593-34.544Q46.410-34.626 46.177-34.626Q45.849-34.626 45.593-34.523Q45.337-34.421 45.337-34.144Q45.337-33.949 45.519-33.840Q45.702-33.730 45.931-33.689L46.505-33.583Q46.752-33.535 46.965-33.407Q47.179-33.279 47.316-33.076Q47.452-32.872 47.452-32.623Q47.452-32.110 47.087-31.871Q46.721-31.632 46.184-31.632Q45.689-31.632 45.357-31.926L45.090-31.652Q45.070-31.632 45.043-31.632L44.995-31.632Q44.971-31.632 44.943-31.659Q44.916-31.686 44.916-31.707\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(85.159 5.653)\">\u003Cpath d=\"M-20.488-23.139Q-20.953-23.409-21.303-23.837Q-21.653-24.264-21.838-24.783Q-22.023-25.303-22.023-25.843Q-22.023-26.383-21.840-26.898Q-21.657-27.412-21.310-27.832Q-20.963-28.253-20.495-28.536Q-20.433-28.557-20.406-28.557L-20.327-28.557Q-20.242-28.547-20.184-28.489Q-20.126-28.430-20.126-28.342Q-20.126-28.215-20.214-28.160Q-20.608-27.908-20.893-27.544Q-21.178-27.179-21.320-26.749Q-21.462-26.318-21.462-25.843Q-21.462-25.488-21.378-25.149Q-21.295-24.811-21.139-24.517Q-20.983-24.223-20.756-23.975Q-20.529-23.727-20.225-23.526Q-20.126-23.457-20.126-23.338Q-20.126-23.252-20.184-23.191Q-20.242-23.129-20.327-23.119L-20.406-23.119Q-20.457-23.119-20.488-23.139M-19.545-23.908L-19.545-23.987Q-19.500-24.172-19.329-24.189L-19.155-24.189L-19.155-26.226L-19.329-26.226Q-19.510-26.246-19.545-26.438L-19.545-26.513Q-19.500-26.701-19.329-26.718L-18.909-26.718Q-18.741-26.698-18.690-26.513Q-18.410-26.752-18.047-26.752Q-17.880-26.752-17.733-26.657Q-17.586-26.561-17.521-26.410Q-17.367-26.578-17.172-26.665Q-16.978-26.752-16.766-26.752Q-16.400-26.752-16.265-26.453Q-16.130-26.154-16.130-25.744L-16.130-24.189L-15.956-24.189Q-15.771-24.168-15.737-23.987L-15.737-23.908Q-15.781-23.721-15.956-23.700L-16.670-23.700Q-16.841-23.721-16.885-23.908L-16.885-23.987Q-16.841-24.168-16.670-24.189L-16.591-24.189L-16.591-25.717Q-16.591-26.263-16.810-26.263Q-17.101-26.263-17.256-25.992Q-17.412-25.720-17.412-25.402L-17.412-24.189L-17.234-24.189Q-17.053-24.168-17.019-23.987L-17.019-23.908Q-17.063-23.721-17.234-23.700L-17.948-23.700Q-18.123-23.721-18.167-23.908L-18.167-23.987Q-18.123-24.168-17.948-24.189L-17.873-24.189L-17.873-25.717Q-17.873-26.263-18.088-26.263Q-18.379-26.263-18.535-25.990Q-18.690-25.717-18.690-25.402L-18.690-24.189L-18.516-24.189Q-18.335-24.168-18.300-23.987L-18.300-23.908Q-18.345-23.717-18.516-23.700L-19.329-23.700Q-19.510-23.721-19.545-23.908M-15.426-24.674Q-15.426-25.064-15.064-25.289Q-14.701-25.515-14.228-25.602Q-13.754-25.689-13.310-25.696Q-13.310-25.884-13.428-26.017Q-13.546-26.151-13.727-26.217Q-13.908-26.284-14.093-26.284Q-14.394-26.284-14.534-26.263L-14.534-26.212Q-14.534-26.065-14.638-25.964Q-14.742-25.864-14.886-25.864Q-15.040-25.864-15.140-25.971Q-15.241-26.079-15.241-26.226Q-15.241-26.581-14.908-26.677Q-14.575-26.773-14.086-26.773Q-13.850-26.773-13.616-26.704Q-13.382-26.636-13.185-26.504Q-12.989-26.373-12.869-26.180Q-12.750-25.987-12.750-25.744L-12.750-24.240Q-12.750-24.189-12.288-24.189Q-12.117-24.172-12.073-23.987L-12.073-23.908Q-12.117-23.721-12.288-23.700L-12.415-23.700Q-12.715-23.700-12.915-23.741Q-13.115-23.782-13.242-23.946Q-13.645-23.666-14.264-23.666Q-14.558-23.666-14.824-23.789Q-15.091-23.912-15.258-24.141Q-15.426-24.370-15.426-24.674M-14.865-24.667Q-14.865-24.428-14.653-24.291Q-14.441-24.155-14.192-24.155Q-14.001-24.155-13.797-24.206Q-13.594-24.257-13.452-24.378Q-13.310-24.500-13.310-24.695L-13.310-25.211Q-13.556-25.211-13.920-25.161Q-14.284-25.112-14.575-24.990Q-14.865-24.869-14.865-24.667M-11.765-22.719Q-11.765-22.815-11.721-22.895Q-11.676-22.975-11.596-23.020Q-11.516-23.064-11.423-23.064Q-11.328-23.064-11.247-23.020Q-11.167-22.975-11.123-22.895Q-11.078-22.815-11.078-22.719L-11.205-22.719Q-11.205-22.599-11.184-22.599Q-10.959-22.599-10.795-22.767Q-10.630-22.934-10.555-23.167L-10.371-23.700L-11.365-26.226L-11.652-26.226Q-11.823-26.246-11.871-26.438L-11.871-26.513Q-11.820-26.698-11.652-26.718L-10.637-26.718Q-10.466-26.698-10.422-26.513L-10.422-26.438Q-10.466-26.246-10.637-26.226L-10.870-26.226Q-10.576-25.484-10.362-24.912Q-10.149-24.339-10.149-24.261L-10.142-24.261Q-10.142-24.312-10.061-24.568Q-9.981-24.825-9.812-25.335Q-9.643-25.846-9.520-26.226L-9.762-26.226Q-9.947-26.246-9.981-26.438L-9.981-26.513Q-9.937-26.701-9.762-26.718L-8.754-26.718Q-8.573-26.698-8.539-26.513L-8.539-26.438Q-8.573-26.246-8.754-26.226L-9.034-26.226L-10.063-23.167Q-10.210-22.729-10.495-22.420Q-10.781-22.111-11.184-22.111Q-11.423-22.111-11.594-22.295Q-11.765-22.480-11.765-22.719\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(85.159 5.653)\">\u003Cpath d=\"M-4.105-23.874L-4.105-24.674Q-4.081-24.855-3.897-24.876L-3.750-24.876Q-3.606-24.855-3.555-24.715Q-3.377-24.155-2.742-24.155Q-2.560-24.155-2.360-24.185Q-2.160-24.216-2.014-24.317Q-1.867-24.418-1.867-24.596Q-1.867-24.780-2.061-24.879Q-2.256-24.978-2.495-25.016L-3.107-25.115Q-4.105-25.300-4.105-25.932Q-4.105-26.185-3.979-26.351Q-3.852-26.516-3.642-26.610Q-3.432-26.704-3.208-26.739Q-2.984-26.773-2.742-26.773Q-2.523-26.773-2.354-26.747Q-2.184-26.721-2.041-26.653Q-1.972-26.756-1.860-26.773L-1.791-26.773Q-1.706-26.762-1.651-26.708Q-1.597-26.653-1.586-26.571L-1.586-25.952Q-1.597-25.870-1.651-25.812Q-1.706-25.754-1.791-25.744L-1.938-25.744Q-2.020-25.754-2.078-25.812Q-2.137-25.870-2.147-25.952Q-2.147-26.284-2.755-26.284Q-3.059-26.284-3.338-26.212Q-3.617-26.140-3.617-25.925Q-3.617-25.693-3.029-25.597L-2.413-25.491Q-1.990-25.419-1.684-25.202Q-1.378-24.985-1.378-24.596Q-1.378-24.254-1.585-24.042Q-1.791-23.830-2.097-23.748Q-2.403-23.666-2.742-23.666Q-3.247-23.666-3.596-23.888Q-3.658-23.779-3.700-23.729Q-3.743-23.679-3.835-23.666L-3.897-23.666Q-4.085-23.686-4.105-23.874M-0.021-23.895L-0.428-26.226L-0.568-26.226Q-0.749-26.246-0.783-26.438L-0.783-26.513Q-0.749-26.698-0.568-26.718L0.454-26.718Q0.639-26.698 0.673-26.513L0.673-26.438Q0.639-26.246 0.454-26.226L0.041-26.226Q0.140-25.662 0.208-25.272Q0.277-24.883 0.321-24.604Q0.365-24.325 0.365-24.261Q0.372-24.411 0.622-25.283Q0.656-25.382 0.741-25.447Q0.827-25.512 0.933-25.512L1.001-25.512Q1.107-25.512 1.193-25.447Q1.278-25.382 1.309-25.283Q1.404-24.948 1.476-24.664Q1.548-24.380 1.548-24.261Q1.558-24.513 1.862-26.226L1.449-26.226Q1.268-26.246 1.234-26.438L1.234-26.513Q1.268-26.698 1.449-26.718L2.478-26.718Q2.645-26.698 2.696-26.513L2.696-26.438Q2.649-26.246 2.478-26.226L2.331-26.226L1.924-23.895Q1.903-23.792 1.827-23.729Q1.750-23.666 1.644-23.666L1.521-23.666Q1.415-23.666 1.331-23.729Q1.247-23.792 1.210-23.895Q1.169-24.052 1.105-24.276Q1.042-24.500 1.005-24.683Q0.967-24.866 0.967-24.954Q0.960-24.708 0.714-23.895Q0.690-23.799 0.605-23.732Q0.519-23.666 0.413-23.666L0.259-23.666Q0.153-23.666 0.077-23.729Q0-23.792-0.021-23.895M3.353-23.908L3.353-23.987Q3.397-24.168 3.568-24.189L4.477-24.189L4.477-26.226L3.626-26.226Q3.452-26.246 3.407-26.438L3.407-26.513Q3.452-26.698 3.626-26.718L4.822-26.718Q4.993-26.701 5.038-26.513L5.038-24.189L5.838-24.189Q6.008-24.168 6.053-23.987L6.053-23.908Q6.008-23.721 5.838-23.700L3.568-23.700Q3.397-23.721 3.353-23.908M4.255-27.573L4.255-27.620Q4.255-27.771 4.375-27.877Q4.494-27.983 4.648-27.983Q4.799-27.983 4.918-27.877Q5.038-27.771 5.038-27.620L5.038-27.573Q5.038-27.419 4.918-27.313Q4.799-27.207 4.648-27.207Q4.494-27.207 4.375-27.313Q4.255-27.419 4.255-27.573M7.577-24.667L7.577-26.226L6.921-26.226Q6.747-26.246 6.702-26.438L6.702-26.513Q6.747-26.698 6.921-26.718L7.577-26.718L7.577-27.374Q7.622-27.555 7.796-27.579L7.923-27.579Q8.093-27.555 8.138-27.374L8.138-26.718L9.327-26.718Q9.495-26.701 9.546-26.513L9.546-26.438Q9.498-26.246 9.327-26.226L8.138-26.226L8.138-24.695Q8.138-24.155 8.640-24.155Q8.859-24.155 9.003-24.317Q9.146-24.479 9.146-24.695Q9.146-24.777 9.209-24.838Q9.273-24.900 9.361-24.910L9.488-24.910Q9.662-24.889 9.707-24.708L9.707-24.667Q9.707-24.384 9.546-24.153Q9.385-23.922 9.129-23.794Q8.873-23.666 8.592-23.666Q8.145-23.666 7.861-23.938Q7.577-24.209 7.577-24.667M10.732-25.211Q10.732-25.631 10.946-25.993Q11.159-26.356 11.523-26.564Q11.887-26.773 12.308-26.773Q12.793-26.773 13.125-26.677Q13.456-26.581 13.456-26.226Q13.456-26.079 13.357-25.971Q13.258-25.864 13.108-25.864Q12.957-25.864 12.853-25.964Q12.749-26.065 12.749-26.212L12.749-26.263Q12.609-26.284 12.315-26.284Q12.028-26.284 11.793-26.135Q11.559-25.987 11.426-25.739Q11.293-25.491 11.293-25.211Q11.293-24.930 11.443-24.684Q11.593-24.438 11.843-24.296Q12.092-24.155 12.380-24.155Q12.653-24.155 12.764-24.245Q12.875-24.336 12.978-24.502Q13.080-24.667 13.183-24.681L13.330-24.681Q13.422-24.671 13.478-24.611Q13.535-24.551 13.535-24.462Q13.535-24.421 13.518-24.387Q13.422-24.131 13.244-23.973Q13.067-23.816 12.826-23.741Q12.585-23.666 12.308-23.666Q11.884-23.666 11.520-23.874Q11.156-24.083 10.944-24.435Q10.732-24.787 10.732-25.211M14.020-23.908L14.020-23.987Q14.058-24.168 14.239-24.189L14.608-24.189L14.608-27.487L14.239-27.487Q14.058-27.508 14.020-27.696L14.020-27.774Q14.058-27.955 14.239-27.976L14.953-27.976Q15.124-27.955 15.169-27.774L15.169-26.417Q15.572-26.752 16.095-26.752Q16.399-26.752 16.608-26.629Q16.816-26.506 16.917-26.281Q17.018-26.055 17.018-25.744L17.018-24.189L17.390-24.189Q17.571-24.168 17.606-23.987L17.606-23.908Q17.571-23.721 17.390-23.700L16.170-23.700Q15.999-23.721 15.955-23.908L15.955-23.987Q15.999-24.172 16.170-24.189L16.457-24.189L16.457-25.717Q16.457-25.987 16.379-26.125Q16.300-26.263 16.044-26.263Q15.808-26.263 15.608-26.149Q15.408-26.034 15.288-25.835Q15.169-25.635 15.169-25.402L15.169-24.189L15.541-24.189Q15.722-24.168 15.757-23.987L15.757-23.908Q15.722-23.721 15.541-23.700L14.239-23.700Q14.058-23.721 14.020-23.908\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(85.159 5.653)\">\u003Cpath d=\"M22.462-24.667L22.462-26.226L21.806-26.226Q21.632-26.246 21.587-26.438L21.587-26.513Q21.632-26.698 21.806-26.718L22.462-26.718L22.462-27.374Q22.507-27.555 22.681-27.579L22.808-27.579Q22.978-27.555 23.023-27.374L23.023-26.718L24.212-26.718Q24.380-26.701 24.431-26.513L24.431-26.438Q24.383-26.246 24.212-26.226L23.023-26.226L23.023-24.695Q23.023-24.155 23.525-24.155Q23.744-24.155 23.888-24.317Q24.031-24.479 24.031-24.695Q24.031-24.777 24.094-24.838Q24.158-24.900 24.246-24.910L24.373-24.910Q24.547-24.889 24.592-24.708L24.592-24.667Q24.592-24.384 24.431-24.153Q24.270-23.922 24.014-23.794Q23.758-23.666 23.477-23.666Q23.030-23.666 22.746-23.938Q22.462-24.209 22.462-24.667M25.190-23.908L25.190-23.987Q25.227-24.168 25.409-24.189L25.778-24.189L25.778-27.487L25.409-27.487Q25.227-27.508 25.190-27.696L25.190-27.774Q25.227-27.955 25.409-27.976L26.123-27.976Q26.294-27.955 26.338-27.774L26.338-26.417Q26.742-26.752 27.265-26.752Q27.569-26.752 27.777-26.629Q27.986-26.506 28.087-26.281Q28.187-26.055 28.187-25.744L28.187-24.189L28.560-24.189Q28.741-24.168 28.775-23.987L28.775-23.908Q28.741-23.721 28.560-23.700L27.340-23.700Q27.169-23.721 27.124-23.908L27.124-23.987Q27.169-24.172 27.340-24.189L27.627-24.189L27.627-25.717Q27.627-25.987 27.548-26.125Q27.470-26.263 27.213-26.263Q26.977-26.263 26.778-26.149Q26.578-26.034 26.458-25.835Q26.338-25.635 26.338-25.402L26.338-24.189L26.711-24.189Q26.892-24.168 26.926-23.987L26.926-23.908Q26.892-23.721 26.711-23.700L25.409-23.700Q25.227-23.721 25.190-23.908M29.038-23.908L29.038-23.987Q29.090-24.168 29.257-24.189L29.879-24.189L29.879-26.226L29.257-26.226Q29.086-26.246 29.038-26.438L29.038-26.513Q29.090-26.698 29.257-26.718L30.221-26.718Q30.395-26.701 30.440-26.513L30.440-26.226Q30.669-26.475 30.980-26.614Q31.291-26.752 31.629-26.752Q31.886-26.752 32.091-26.634Q32.296-26.516 32.296-26.284Q32.296-26.137 32.200-26.034Q32.104-25.932 31.957-25.932Q31.824-25.932 31.723-26.029Q31.622-26.127 31.622-26.263Q31.294-26.263 31.019-26.087Q30.744-25.911 30.592-25.619Q30.440-25.327 30.440-24.995L30.440-24.189L31.267-24.189Q31.448-24.168 31.482-23.987L31.482-23.908Q31.448-23.721 31.267-23.700L29.257-23.700Q29.090-23.721 29.038-23.908M35.632-25.002L33.496-25.002Q33.543-24.760 33.716-24.565Q33.889-24.370 34.131-24.262Q34.374-24.155 34.623-24.155Q35.037-24.155 35.232-24.408Q35.239-24.418 35.288-24.510Q35.338-24.602 35.381-24.640Q35.423-24.678 35.505-24.688L35.632-24.688Q35.799-24.671 35.850-24.483L35.850-24.435Q35.792-24.172 35.591-23.999Q35.389-23.826 35.116-23.746Q34.842-23.666 34.576-23.666Q34.152-23.666 33.767-23.866Q33.383-24.066 33.149-24.416Q32.914-24.766 32.914-25.197L32.914-25.248Q32.914-25.658 33.130-26.011Q33.345-26.363 33.702-26.568Q34.059-26.773 34.470-26.773Q34.911-26.773 35.220-26.578Q35.529-26.383 35.690-26.043Q35.850-25.703 35.850-25.262L35.850-25.211Q35.799-25.023 35.632-25.002M33.502-25.484L35.276-25.484Q35.235-25.843 35.027-26.064Q34.818-26.284 34.470-26.284Q34.124-26.284 33.856-26.055Q33.588-25.826 33.502-25.484M36.630-24.674Q36.630-25.064 36.992-25.289Q37.354-25.515 37.828-25.602Q38.301-25.689 38.746-25.696Q38.746-25.884 38.628-26.017Q38.510-26.151 38.329-26.217Q38.147-26.284 37.963-26.284Q37.662-26.284 37.522-26.263L37.522-26.212Q37.522-26.065 37.418-25.964Q37.313-25.864 37.170-25.864Q37.016-25.864 36.915-25.971Q36.814-26.079 36.814-26.226Q36.814-26.581 37.148-26.677Q37.481-26.773 37.970-26.773Q38.205-26.773 38.440-26.704Q38.674-26.636 38.870-26.504Q39.067-26.373 39.186-26.180Q39.306-25.987 39.306-25.744L39.306-24.240Q39.306-24.189 39.767-24.189Q39.938-24.172 39.983-23.987L39.983-23.908Q39.938-23.721 39.767-23.700L39.641-23.700Q39.340-23.700 39.140-23.741Q38.940-23.782 38.814-23.946Q38.411-23.666 37.792-23.666Q37.498-23.666 37.231-23.789Q36.965-23.912 36.797-24.141Q36.630-24.370 36.630-24.674M37.190-24.667Q37.190-24.428 37.402-24.291Q37.614-24.155 37.864-24.155Q38.055-24.155 38.258-24.206Q38.462-24.257 38.604-24.378Q38.746-24.500 38.746-24.695L38.746-25.211Q38.499-25.211 38.135-25.161Q37.771-25.112 37.481-24.990Q37.190-24.869 37.190-24.667M41.620-23.666Q41.213-23.666 40.894-23.885Q40.574-24.103 40.395-24.457Q40.215-24.811 40.215-25.211Q40.215-25.512 40.325-25.792Q40.434-26.072 40.637-26.291Q40.841-26.510 41.107-26.631Q41.374-26.752 41.685-26.752Q42.133-26.752 42.488-26.472L42.488-27.487L42.119-27.487Q41.934-27.508 41.900-27.696L41.900-27.774Q41.934-27.955 42.119-27.976L42.830-27.976Q43.004-27.955 43.049-27.774L43.049-24.189L43.421-24.189Q43.602-24.168 43.637-23.987L43.637-23.908Q43.602-23.721 43.421-23.700L42.707-23.700Q42.533-23.721 42.488-23.908L42.488-24.021Q42.317-23.854 42.088-23.760Q41.859-23.666 41.620-23.666M41.654-24.155Q41.969-24.155 42.189-24.390Q42.410-24.626 42.488-24.954L42.488-25.682Q42.437-25.846 42.326-25.978Q42.215-26.110 42.059-26.187Q41.904-26.263 41.733-26.263Q41.463-26.263 41.244-26.115Q41.025-25.966 40.899-25.717Q40.772-25.467 40.772-25.204Q40.772-24.811 41.022-24.483Q41.271-24.155 41.654-24.155M44.218-23.874L44.218-24.674Q44.242-24.855 44.426-24.876L44.573-24.876Q44.717-24.855 44.768-24.715Q44.946-24.155 45.581-24.155Q45.763-24.155 45.963-24.185Q46.163-24.216 46.309-24.317Q46.456-24.418 46.456-24.596Q46.456-24.780 46.262-24.879Q46.067-24.978 45.828-25.016L45.216-25.115Q44.218-25.300 44.218-25.932Q44.218-26.185 44.344-26.351Q44.471-26.516 44.681-26.610Q44.891-26.704 45.115-26.739Q45.339-26.773 45.581-26.773Q45.800-26.773 45.969-26.747Q46.139-26.721 46.282-26.653Q46.350-26.756 46.463-26.773L46.532-26.773Q46.617-26.762 46.672-26.708Q46.726-26.653 46.737-26.571L46.737-25.952Q46.726-25.870 46.672-25.812Q46.617-25.754 46.532-25.744L46.385-25.744Q46.303-25.754 46.245-25.812Q46.186-25.870 46.176-25.952Q46.176-26.284 45.568-26.284Q45.264-26.284 44.985-26.212Q44.706-26.140 44.706-25.925Q44.706-25.693 45.294-25.597L45.910-25.491Q46.333-25.419 46.639-25.202Q46.945-24.985 46.945-24.596Q46.945-24.254 46.738-24.042Q46.532-23.830 46.226-23.748Q45.920-23.666 45.581-23.666Q45.076-23.666 44.727-23.888Q44.665-23.779 44.623-23.729Q44.580-23.679 44.488-23.666L44.426-23.666Q44.238-23.686 44.218-23.874M48.330-23.119L48.254-23.119Q48.162-23.129 48.102-23.192Q48.042-23.256 48.042-23.338Q48.042-23.461 48.135-23.519Q48.429-23.707 48.664-23.960Q48.900-24.213 49.061-24.517Q49.222-24.821 49.300-25.153Q49.379-25.484 49.379-25.843Q49.379-26.315 49.235-26.745Q49.092-27.176 48.813-27.538Q48.535-27.901 48.148-28.154Q48.042-28.225 48.042-28.342Q48.042-28.427 48.102-28.487Q48.162-28.547 48.254-28.557L48.330-28.557Q48.377-28.557 48.408-28.536Q48.746-28.342 49.044-28.037Q49.341-27.733 49.534-27.388Q49.727-27.043 49.833-26.653Q49.939-26.263 49.939-25.843Q49.939-25.419 49.833-25.024Q49.727-24.630 49.531-24.283Q49.334-23.936 49.051-23.644Q48.767-23.351 48.415-23.139Q48.353-23.119 48.330-23.119\" 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=\"M181.987-12.32h61.917v-22.762h-61.917Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(208.532 1.889)\">\u003Cpath d=\"M-22.806-24.813Q-22.806-25.259-22.392-25.516Q-21.978-25.774-21.437-25.874Q-20.896-25.973-20.388-25.981Q-20.388-26.196-20.523-26.348Q-20.657-26.501-20.864-26.577Q-21.071-26.653-21.282-26.653Q-21.626-26.653-21.786-26.630L-21.786-26.571Q-21.786-26.403-21.905-26.288Q-22.024-26.173-22.189-26.173Q-22.364-26.173-22.480-26.296Q-22.595-26.419-22.595-26.587Q-22.595-26.993-22.214-27.102Q-21.833-27.212-21.274-27.212Q-21.005-27.212-20.737-27.134Q-20.470-27.055-20.245-26.905Q-20.021-26.755-19.884-26.534Q-19.747-26.313-19.747-26.036L-19.747-24.317Q-19.747-24.259-19.220-24.259Q-19.024-24.239-18.974-24.028L-18.974-23.938Q-19.024-23.723-19.220-23.700L-19.364-23.700Q-19.708-23.700-19.937-23.747Q-20.165-23.794-20.310-23.981Q-20.771-23.661-21.478-23.661Q-21.814-23.661-22.118-23.802Q-22.423-23.942-22.614-24.204Q-22.806-24.466-22.806-24.813M-22.165-24.805Q-22.165-24.532-21.923-24.376Q-21.681-24.220-21.396-24.220Q-21.177-24.220-20.944-24.278Q-20.712-24.337-20.550-24.475Q-20.388-24.614-20.388-24.837L-20.388-25.427Q-20.669-25.427-21.085-25.370Q-21.501-25.313-21.833-25.175Q-22.165-25.036-22.165-24.805M-17.103-23.661Q-17.567-23.661-17.933-23.911Q-18.298-24.161-18.503-24.565Q-18.708-24.970-18.708-25.427Q-18.708-25.770-18.583-26.091Q-18.458-26.411-18.226-26.661Q-17.993-26.911-17.689-27.050Q-17.384-27.188-17.028-27.188Q-16.517-27.188-16.110-26.868L-16.110-28.028L-16.532-28.028Q-16.743-28.052-16.782-28.266L-16.782-28.356Q-16.743-28.563-16.532-28.587L-15.720-28.587Q-15.521-28.563-15.470-28.356L-15.470-24.259L-15.044-24.259Q-14.837-24.235-14.798-24.028L-14.798-23.938Q-14.837-23.723-15.044-23.700L-15.860-23.700Q-16.060-23.723-16.110-23.938L-16.110-24.067Q-16.306-23.876-16.567-23.768Q-16.829-23.661-17.103-23.661M-17.064-24.220Q-16.704-24.220-16.452-24.489Q-16.200-24.759-16.110-25.134L-16.110-25.966Q-16.169-26.153-16.296-26.304Q-16.423-26.454-16.601-26.542Q-16.778-26.630-16.974-26.630Q-17.282-26.630-17.532-26.460Q-17.782-26.290-17.927-26.005Q-18.071-25.720-18.071-25.419Q-18.071-24.970-17.786-24.595Q-17.501-24.220-17.064-24.220M-12.857-23.661Q-13.321-23.661-13.687-23.911Q-14.052-24.161-14.257-24.565Q-14.462-24.970-14.462-25.427Q-14.462-25.770-14.337-26.091Q-14.212-26.411-13.980-26.661Q-13.747-26.911-13.442-27.050Q-13.138-27.188-12.782-27.188Q-12.271-27.188-11.864-26.868L-11.864-28.028L-12.286-28.028Q-12.497-28.052-12.536-28.266L-12.536-28.356Q-12.497-28.563-12.286-28.587L-11.474-28.587Q-11.274-28.563-11.224-28.356L-11.224-24.259L-10.798-24.259Q-10.591-24.235-10.552-24.028L-10.552-23.938Q-10.591-23.723-10.798-23.700L-11.614-23.700Q-11.814-23.723-11.864-23.938L-11.864-24.067Q-12.060-23.876-12.321-23.768Q-12.583-23.661-12.857-23.661M-12.817-24.220Q-12.458-24.220-12.206-24.489Q-11.954-24.759-11.864-25.134L-11.864-25.966Q-11.923-26.153-12.050-26.304Q-12.177-26.454-12.355-26.542Q-12.532-26.630-12.728-26.630Q-13.036-26.630-13.286-26.460Q-13.536-26.290-13.681-26.005Q-13.825-25.720-13.825-25.419Q-13.825-24.970-13.540-24.595Q-13.255-24.220-12.817-24.220M-8.161-22.157L-8.161-22.243Q-8.110-22.462-7.915-22.485L-7.450-22.485L-7.450-24.083Q-7.903-23.661-8.513-23.661Q-8.868-23.661-9.173-23.804Q-9.478-23.946-9.710-24.196Q-9.942-24.446-10.067-24.768Q-10.192-25.091-10.192-25.427Q-10.192-25.911-9.954-26.311Q-9.716-26.712-9.310-26.950Q-8.903-27.188-8.427-27.188Q-7.864-27.188-7.450-26.798L-7.450-26.958Q-7.399-27.169-7.200-27.188L-7.060-27.188Q-6.860-27.165-6.810-26.958L-6.810-22.485L-6.345-22.485Q-6.149-22.462-6.099-22.243L-6.099-22.157Q-6.149-21.946-6.345-21.923L-7.915-21.923Q-8.110-21.946-8.161-22.157M-8.466-24.220Q-8.095-24.220-7.819-24.473Q-7.544-24.727-7.450-25.091L-7.450-25.708Q-7.493-25.946-7.616-26.159Q-7.739-26.372-7.937-26.501Q-8.134-26.630-8.376-26.630Q-8.692-26.630-8.964-26.464Q-9.235-26.298-9.394-26.016Q-9.552-25.735-9.552-25.419Q-9.552-24.954-9.237-24.587Q-8.923-24.220-8.466-24.220\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.532 1.889)\">\u003Cpath d=\"M-1.282-23.341Q-1.282-23.395-1.259-23.462L1.007-29.067Q1.101-29.251 1.296-29.251Q1.421-29.251 1.509-29.163Q1.597-29.075 1.597-28.946Q1.597-28.887 1.573-28.829L-0.689-23.220Q-0.790-23.036-0.970-23.036Q-1.095-23.036-1.189-23.126Q-1.282-23.216-1.282-23.341M1.296-23.036Q0.944-23.036 0.763-23.376Q0.581-23.716 0.581-24.098Q0.581-24.485 0.761-24.825Q0.940-25.165 1.296-25.165Q1.534-25.165 1.692-24.995Q1.851-24.825 1.925-24.581Q1.999-24.337 1.999-24.098Q1.999-23.864 1.925-23.620Q1.851-23.376 1.692-23.206Q1.534-23.036 1.296-23.036M1.296-23.595Q1.378-23.626 1.425-23.794Q1.472-23.962 1.472-24.098Q1.472-24.235 1.425-24.405Q1.378-24.575 1.296-24.602Q1.210-24.575 1.159-24.407Q1.108-24.239 1.108-24.098Q1.108-23.970 1.159-23.798Q1.210-23.626 1.296-23.595M-0.970-27.114Q-1.212-27.114-1.372-27.284Q-1.532-27.454-1.607-27.700Q-1.681-27.946-1.681-28.188Q-1.681-28.571-1.501-28.911Q-1.321-29.251-0.970-29.251Q-0.732-29.251-0.573-29.081Q-0.415-28.911-0.341-28.667Q-0.267-28.423-0.267-28.188Q-0.267-27.946-0.341-27.700Q-0.415-27.454-0.573-27.284Q-0.732-27.114-0.970-27.114M-0.970-27.677Q-0.880-27.720-0.837-27.876Q-0.794-28.032-0.794-28.188Q-0.794-28.317-0.841-28.493Q-0.888-28.669-0.978-28.692Q-0.993-28.692-1.023-28.657Q-1.052-28.622-1.060-28.602Q-1.153-28.415-1.153-28.188Q-1.153-28.052-1.105-27.880Q-1.056-27.708-0.970-27.677M2.507-23.938L2.507-24.028Q2.565-24.235 2.757-24.259L3.468-24.259L3.468-26.587L2.757-26.587Q2.561-26.610 2.507-26.829L2.507-26.915Q2.565-27.126 2.757-27.149L3.858-27.149Q4.058-27.130 4.108-26.915L4.108-26.587Q4.370-26.872 4.726-27.030Q5.081-27.188 5.468-27.188Q5.761-27.188 5.995-27.054Q6.229-26.919 6.229-26.653Q6.229-26.485 6.120-26.368Q6.011-26.251 5.843-26.251Q5.690-26.251 5.575-26.362Q5.460-26.473 5.460-26.630Q5.085-26.630 4.770-26.429Q4.456-26.227 4.282-25.893Q4.108-25.559 4.108-25.180L4.108-24.259L5.054-24.259Q5.261-24.235 5.300-24.028L5.300-23.938Q5.261-23.723 5.054-23.700L2.757-23.700Q2.565-23.723 2.507-23.938M6.882-25.114Q6.882-25.399 7.038-25.653Q7.194-25.907 7.444-26.081Q7.694-26.255 7.979-26.341Q7.741-26.415 7.515-26.557Q7.288-26.700 7.145-26.909Q7.003-27.118 7.003-27.364Q7.003-27.762 7.249-28.057Q7.495-28.352 7.878-28.511Q8.261-28.669 8.651-28.669Q9.042-28.669 9.425-28.511Q9.808-28.352 10.054-28.054Q10.300-27.755 10.300-27.364Q10.300-27.118 10.157-26.911Q10.015-26.704 9.788-26.559Q9.561-26.415 9.323-26.341Q9.776-26.204 10.097-25.878Q10.417-25.552 10.417-25.114Q10.417-24.677 10.159-24.333Q9.901-23.989 9.491-23.805Q9.081-23.622 8.651-23.622Q8.222-23.622 7.811-23.804Q7.401-23.985 7.142-24.329Q6.882-24.673 6.882-25.114M7.522-25.114Q7.522-24.841 7.688-24.626Q7.854-24.411 8.116-24.296Q8.378-24.180 8.651-24.180Q8.925-24.180 9.184-24.296Q9.444-24.411 9.610-24.628Q9.776-24.845 9.776-25.114Q9.776-25.391 9.610-25.608Q9.444-25.825 9.184-25.942Q8.925-26.059 8.651-26.059Q8.378-26.059 8.116-25.942Q7.854-25.825 7.688-25.610Q7.522-25.395 7.522-25.114M7.643-27.364Q7.643-27.126 7.800-26.958Q7.956-26.790 8.192-26.706Q8.429-26.622 8.651-26.622Q8.870-26.622 9.108-26.706Q9.347-26.790 9.503-26.960Q9.659-27.130 9.659-27.364Q9.659-27.598 9.503-27.768Q9.347-27.938 9.108-28.022Q8.870-28.106 8.651-28.106Q8.429-28.106 8.192-28.022Q7.956-27.938 7.800-27.770Q7.643-27.602 7.643-27.364M12.495-22.587Q12.382-22.587 12.292-22.677Q12.202-22.766 12.202-22.876Q12.202-23.052 12.393-23.126Q12.612-23.177 12.784-23.335Q12.956-23.493 13.022-23.716Q12.999-23.716 12.968-23.700L12.905-23.700Q12.675-23.700 12.509-23.862Q12.343-24.024 12.343-24.259Q12.343-24.493 12.507-24.653Q12.671-24.813 12.905-24.813Q13.116-24.813 13.280-24.692Q13.444-24.571 13.534-24.378Q13.624-24.184 13.624-23.973Q13.624-23.497 13.325-23.108Q13.026-22.720 12.561-22.595Q12.538-22.587 12.495-22.587M15.702-23.341Q15.702-23.395 15.726-23.462L17.991-29.067Q18.085-29.251 18.280-29.251Q18.405-29.251 18.493-29.163Q18.581-29.075 18.581-28.946Q18.581-28.887 18.558-28.829L16.296-23.220Q16.194-23.036 16.015-23.036Q15.890-23.036 15.796-23.126Q15.702-23.216 15.702-23.341M18.280-23.036Q17.929-23.036 17.747-23.376Q17.565-23.716 17.565-24.098Q17.565-24.485 17.745-24.825Q17.925-25.165 18.280-25.165Q18.518-25.165 18.677-24.995Q18.835-24.825 18.909-24.581Q18.983-24.337 18.983-24.098Q18.983-23.864 18.909-23.620Q18.835-23.376 18.677-23.206Q18.518-23.036 18.280-23.036M18.280-23.595Q18.362-23.626 18.409-23.794Q18.456-23.962 18.456-24.098Q18.456-24.235 18.409-24.405Q18.362-24.575 18.280-24.602Q18.194-24.575 18.143-24.407Q18.093-24.239 18.093-24.098Q18.093-23.970 18.143-23.798Q18.194-23.626 18.280-23.595M16.015-27.114Q15.772-27.114 15.612-27.284Q15.452-27.454 15.378-27.700Q15.304-27.946 15.304-28.188Q15.304-28.571 15.483-28.911Q15.663-29.251 16.015-29.251Q16.253-29.251 16.411-29.081Q16.569-28.911 16.643-28.667Q16.718-28.423 16.718-28.188Q16.718-27.946 16.643-27.700Q16.569-27.454 16.411-27.284Q16.253-27.114 16.015-27.114M16.015-27.677Q16.104-27.720 16.147-27.876Q16.190-28.032 16.190-28.188Q16.190-28.317 16.143-28.493Q16.097-28.669 16.007-28.692Q15.991-28.692 15.962-28.657Q15.933-28.622 15.925-28.602Q15.831-28.415 15.831-28.188Q15.831-28.052 15.880-27.880Q15.929-27.708 16.015-27.677M19.491-23.938L19.491-24.028Q19.550-24.235 19.741-24.259L20.452-24.259L20.452-26.587L19.741-26.587Q19.546-26.610 19.491-26.829L19.491-26.915Q19.550-27.126 19.741-27.149L20.843-27.149Q21.042-27.130 21.093-26.915L21.093-26.587Q21.354-26.872 21.710-27.030Q22.065-27.188 22.452-27.188Q22.745-27.188 22.979-27.054Q23.214-26.919 23.214-26.653Q23.214-26.485 23.104-26.368Q22.995-26.251 22.827-26.251Q22.675-26.251 22.559-26.362Q22.444-26.473 22.444-26.630Q22.069-26.630 21.755-26.429Q21.440-26.227 21.267-25.893Q21.093-25.559 21.093-25.180L21.093-24.259L22.038-24.259Q22.245-24.235 22.284-24.028L22.284-23.938Q22.245-23.723 22.038-23.700L19.741-23.700Q19.550-23.723 19.491-23.938M25.378-23.661Q24.913-23.661 24.548-23.911Q24.183-24.161 23.977-24.565Q23.772-24.970 23.772-25.427Q23.772-25.770 23.897-26.091Q24.022-26.411 24.255-26.661Q24.487-26.911 24.792-27.050Q25.097-27.188 25.452-27.188Q25.964-27.188 26.370-26.868L26.370-28.028L25.948-28.028Q25.737-28.052 25.698-28.266L25.698-28.356Q25.737-28.563 25.948-28.587L26.761-28.587Q26.960-28.563 27.011-28.356L27.011-24.259L27.436-24.259Q27.643-24.235 27.683-24.028L27.683-23.938Q27.643-23.723 27.436-23.700L26.620-23.700Q26.421-23.723 26.370-23.938L26.370-24.067Q26.175-23.876 25.913-23.768Q25.651-23.661 25.378-23.661M25.417-24.220Q25.776-24.220 26.028-24.489Q26.280-24.759 26.370-25.134L26.370-25.966Q26.311-26.153 26.184-26.304Q26.058-26.454 25.880-26.542Q25.702-26.630 25.507-26.630Q25.198-26.630 24.948-26.460Q24.698-26.290 24.554-26.005Q24.409-25.720 24.409-25.419Q24.409-24.970 24.694-24.595Q24.979-24.220 25.417-24.220M28.378-23.938L28.378-24.028Q28.429-24.235 28.624-24.259L29.663-24.259L29.663-26.587L28.690-26.587Q28.491-26.610 28.440-26.829L28.440-26.915Q28.491-27.126 28.690-27.149L30.058-27.149Q30.253-27.130 30.304-26.915L30.304-24.259L31.218-24.259Q31.413-24.235 31.464-24.028L31.464-23.938Q31.413-23.723 31.218-23.700L28.624-23.700Q28.429-23.723 28.378-23.938M29.409-28.126L29.409-28.180Q29.409-28.352 29.546-28.473Q29.683-28.595 29.858-28.595Q30.030-28.595 30.167-28.473Q30.304-28.352 30.304-28.180L30.304-28.126Q30.304-27.950 30.167-27.829Q30.030-27.708 29.858-27.708Q29.683-27.708 29.546-27.829Q29.409-27.950 29.409-28.126\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(283.843 .538)\">\u003Cpath d=\"M-21.646-24.259Q-21.646-24.481-21.480-24.647Q-21.314-24.813-21.083-24.813Q-20.935-24.813-20.808-24.735Q-20.681-24.657-20.607-24.532Q-20.532-24.407-20.532-24.259Q-20.532-24.032-20.698-23.866Q-20.864-23.700-21.083-23.700Q-21.310-23.700-21.478-23.868Q-21.646-24.036-21.646-24.259M-17.399-24.259Q-17.399-24.481-17.233-24.647Q-17.067-24.813-16.837-24.813Q-16.689-24.813-16.562-24.735Q-16.435-24.657-16.360-24.532Q-16.286-24.407-16.286-24.259Q-16.286-24.032-16.452-23.866Q-16.618-23.700-16.837-23.700Q-17.064-23.700-17.232-23.868Q-17.399-24.036-17.399-24.259M-13.153-24.259Q-13.153-24.481-12.987-24.647Q-12.821-24.813-12.591-24.813Q-12.442-24.813-12.316-24.735Q-12.189-24.657-12.114-24.532Q-12.040-24.407-12.040-24.259Q-12.040-24.032-12.206-23.866Q-12.372-23.700-12.591-23.700Q-12.817-23.700-12.985-23.868Q-13.153-24.036-13.153-24.259\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"M18.044-6.629v-32.72M170.267-6.629v-32.72\" style=\"stroke-dasharray:3.0,3.0\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M18.044-72.07v27.876\"\u002F>\u003Cpath stroke=\"none\" d=\"m18.044-42.195 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(49.058 -36.856)\">\u003Cpath d=\"M-22.013-24.805L-22.013-26.587L-22.763-26.587Q-22.962-26.610-23.013-26.829L-23.013-26.915Q-22.962-27.126-22.763-27.149L-22.013-27.149L-22.013-27.899Q-21.962-28.106-21.763-28.134L-21.618-28.134Q-21.423-28.106-21.372-27.899L-21.372-27.149L-20.013-27.149Q-19.821-27.130-19.763-26.915L-19.763-26.829Q-19.817-26.610-20.013-26.587L-21.372-26.587L-21.372-24.837Q-21.372-24.220-20.798-24.220Q-20.548-24.220-20.384-24.405Q-20.220-24.591-20.220-24.837Q-20.220-24.930-20.148-25.001Q-20.075-25.071-19.974-25.083L-19.829-25.083Q-19.630-25.059-19.579-24.852L-19.579-24.805Q-19.579-24.481-19.763-24.218Q-19.946-23.954-20.239-23.807Q-20.532-23.661-20.853-23.661Q-21.364-23.661-21.689-23.971Q-22.013-24.282-22.013-24.805M-18.349-23.938L-18.349-24.028Q-18.298-24.235-18.103-24.259L-17.064-24.259L-17.064-26.587L-18.036-26.587Q-18.235-26.610-18.286-26.829L-18.286-26.915Q-18.235-27.126-18.036-27.149L-16.669-27.149Q-16.474-27.130-16.423-26.915L-16.423-24.259L-15.509-24.259Q-15.314-24.235-15.263-24.028L-15.263-23.938Q-15.314-23.723-15.509-23.700L-18.103-23.700Q-18.298-23.723-18.349-23.938M-17.317-28.126L-17.317-28.180Q-17.317-28.352-17.181-28.473Q-17.044-28.595-16.868-28.595Q-16.696-28.595-16.560-28.473Q-16.423-28.352-16.423-28.180L-16.423-28.126Q-16.423-27.950-16.560-27.829Q-16.696-27.708-16.868-27.708Q-17.044-27.708-17.181-27.829Q-17.317-27.950-17.317-28.126M-14.774-23.938L-14.774-24.028Q-14.724-24.239-14.528-24.259L-14.329-24.259L-14.329-26.587L-14.528-26.587Q-14.735-26.610-14.774-26.829L-14.774-26.915Q-14.724-27.130-14.528-27.149L-14.048-27.149Q-13.857-27.126-13.798-26.915Q-13.478-27.188-13.064-27.188Q-12.872-27.188-12.704-27.079Q-12.536-26.970-12.462-26.798Q-12.286-26.989-12.064-27.089Q-11.841-27.188-11.599-27.188Q-11.181-27.188-11.026-26.846Q-10.872-26.505-10.872-26.036L-10.872-24.259L-10.673-24.259Q-10.462-24.235-10.423-24.028L-10.423-23.938Q-10.474-23.723-10.673-23.700L-11.489-23.700Q-11.685-23.723-11.735-23.938L-11.735-24.028Q-11.685-24.235-11.489-24.259L-11.399-24.259L-11.399-26.005Q-11.399-26.630-11.649-26.630Q-11.982-26.630-12.159-26.319Q-12.337-26.009-12.337-25.645L-12.337-24.259L-12.134-24.259Q-11.927-24.235-11.888-24.028L-11.888-23.938Q-11.939-23.723-12.134-23.700L-12.950-23.700Q-13.149-23.723-13.200-23.938L-13.200-24.028Q-13.149-24.235-12.950-24.259L-12.864-24.259L-12.864-26.005Q-12.864-26.630-13.110-26.630Q-13.442-26.630-13.620-26.317Q-13.798-26.005-13.798-25.645L-13.798-24.259L-13.599-24.259Q-13.392-24.235-13.353-24.028L-13.353-23.938Q-13.403-23.720-13.599-23.700L-14.528-23.700Q-14.735-23.723-14.774-23.938M-6.962-25.188L-9.403-25.188Q-9.349-24.911-9.151-24.688Q-8.954-24.466-8.677-24.343Q-8.399-24.220-8.114-24.220Q-7.642-24.220-7.419-24.509Q-7.411-24.520-7.355-24.626Q-7.298-24.731-7.249-24.774Q-7.200-24.817-7.107-24.829L-6.962-24.829Q-6.771-24.809-6.712-24.595L-6.712-24.540Q-6.778-24.239-7.009-24.042Q-7.239-23.845-7.552-23.753Q-7.864-23.661-8.169-23.661Q-8.653-23.661-9.093-23.889Q-9.532-24.118-9.800-24.518Q-10.067-24.919-10.067-25.411L-10.067-25.470Q-10.067-25.938-9.821-26.341Q-9.575-26.743-9.167-26.977Q-8.759-27.212-8.290-27.212Q-7.786-27.212-7.433-26.989Q-7.079-26.766-6.896-26.378Q-6.712-25.989-6.712-25.485L-6.712-25.427Q-6.771-25.212-6.962-25.188M-9.396-25.739L-7.368-25.739Q-7.415-26.149-7.653-26.401Q-7.892-26.653-8.290-26.653Q-8.685-26.653-8.991-26.391Q-9.298-26.130-9.396-25.739M-6.005-23.938L-6.005-24.028Q-5.946-24.235-5.755-24.259L-5.044-24.259L-5.044-26.587L-5.755-26.587Q-5.950-26.610-6.005-26.829L-6.005-26.915Q-5.946-27.126-5.755-27.149L-4.653-27.149Q-4.454-27.130-4.403-26.915L-4.403-26.587Q-4.142-26.872-3.786-27.030Q-3.431-27.188-3.044-27.188Q-2.751-27.188-2.517-27.054Q-2.282-26.919-2.282-26.653Q-2.282-26.485-2.392-26.368Q-2.501-26.251-2.669-26.251Q-2.821-26.251-2.937-26.362Q-3.052-26.473-3.052-26.630Q-3.427-26.630-3.741-26.429Q-4.056-26.227-4.230-25.893Q-4.403-25.559-4.403-25.180L-4.403-24.259L-3.458-24.259Q-3.251-24.235-3.212-24.028L-3.212-23.938Q-3.251-23.723-3.458-23.700L-5.755-23.700Q-5.946-23.723-6.005-23.938\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(49.058 -36.856)\">\u003Cpath d=\"M2.905-23.938L2.905-24.028Q2.956-24.235 3.151-24.259L4.190-24.259L4.190-26.587L3.218-26.587Q3.018-26.610 2.968-26.829L2.968-26.915Q3.018-27.126 3.218-27.149L4.585-27.149Q4.780-27.130 4.831-26.915L4.831-24.259L5.745-24.259Q5.940-24.235 5.991-24.028L5.991-23.938Q5.940-23.723 5.745-23.700L3.151-23.700Q2.956-23.723 2.905-23.938M3.936-28.126L3.936-28.180Q3.936-28.352 4.073-28.473Q4.210-28.595 4.386-28.595Q4.558-28.595 4.694-28.473Q4.831-28.352 4.831-28.180L4.831-28.126Q4.831-27.950 4.694-27.829Q4.558-27.708 4.386-27.708Q4.210-27.708 4.073-27.829Q3.936-27.950 3.936-28.126M6.604-23.938L6.604-24.028Q6.647-24.235 6.854-24.259L7.276-24.259L7.276-26.587L6.854-26.587Q6.647-26.610 6.604-26.829L6.604-26.915Q6.651-27.126 6.854-27.149L7.671-27.149Q7.866-27.126 7.917-26.915L7.917-26.829L7.909-26.805Q8.136-26.985 8.409-27.087Q8.683-27.188 8.976-27.188Q9.323-27.188 9.561-27.048Q9.800-26.907 9.915-26.649Q10.030-26.391 10.030-26.036L10.030-24.259L10.456-24.259Q10.663-24.235 10.702-24.028L10.702-23.938Q10.663-23.723 10.456-23.700L9.061-23.700Q8.866-23.723 8.815-23.938L8.815-24.028Q8.866-24.239 9.061-24.259L9.390-24.259L9.390-26.005Q9.390-26.313 9.300-26.471Q9.210-26.630 8.917-26.630Q8.647-26.630 8.419-26.499Q8.190-26.368 8.054-26.139Q7.917-25.911 7.917-25.645L7.917-24.259L8.343-24.259Q8.550-24.235 8.589-24.028L8.589-23.938Q8.550-23.723 8.343-23.700L6.854-23.700Q6.647-23.723 6.604-23.938M11.979-24.805L11.979-26.587L11.229-26.587Q11.030-26.610 10.979-26.829L10.979-26.915Q11.030-27.126 11.229-27.149L11.979-27.149L11.979-27.899Q12.030-28.106 12.229-28.134L12.374-28.134Q12.569-28.106 12.620-27.899L12.620-27.149L13.979-27.149Q14.171-27.130 14.229-26.915L14.229-26.829Q14.175-26.610 13.979-26.587L12.620-26.587L12.620-24.837Q12.620-24.220 13.194-24.220Q13.444-24.220 13.608-24.405Q13.772-24.591 13.772-24.837Q13.772-24.930 13.845-25.001Q13.917-25.071 14.018-25.083L14.163-25.083Q14.362-25.059 14.413-24.852L14.413-24.805Q14.413-24.481 14.229-24.218Q14.046-23.954 13.753-23.807Q13.460-23.661 13.140-23.661Q12.628-23.661 12.304-23.971Q11.979-24.282 11.979-24.805M18.538-25.188L16.097-25.188Q16.151-24.911 16.349-24.688Q16.546-24.466 16.823-24.343Q17.101-24.220 17.386-24.220Q17.858-24.220 18.081-24.509Q18.089-24.520 18.145-24.626Q18.202-24.731 18.251-24.774Q18.300-24.817 18.393-24.829L18.538-24.829Q18.729-24.809 18.788-24.595L18.788-24.540Q18.722-24.239 18.491-24.042Q18.261-23.845 17.948-23.753Q17.636-23.661 17.331-23.661Q16.847-23.661 16.407-23.889Q15.968-24.118 15.700-24.518Q15.433-24.919 15.433-25.411L15.433-25.470Q15.433-25.938 15.679-26.341Q15.925-26.743 16.333-26.977Q16.741-27.212 17.210-27.212Q17.714-27.212 18.067-26.989Q18.421-26.766 18.604-26.378Q18.788-25.989 18.788-25.485L18.788-25.427Q18.729-25.212 18.538-25.188M16.104-25.739L18.132-25.739Q18.085-26.149 17.847-26.401Q17.608-26.653 17.210-26.653Q16.815-26.653 16.509-26.391Q16.202-26.130 16.104-25.739M19.495-23.938L19.495-24.028Q19.554-24.235 19.745-24.259L20.456-24.259L20.456-26.587L19.745-26.587Q19.550-26.610 19.495-26.829L19.495-26.915Q19.554-27.126 19.745-27.149L20.847-27.149Q21.046-27.130 21.097-26.915L21.097-26.587Q21.358-26.872 21.714-27.030Q22.069-27.188 22.456-27.188Q22.749-27.188 22.983-27.054Q23.218-26.919 23.218-26.653Q23.218-26.485 23.108-26.368Q22.999-26.251 22.831-26.251Q22.679-26.251 22.563-26.362Q22.448-26.473 22.448-26.630Q22.073-26.630 21.759-26.429Q21.444-26.227 21.270-25.893Q21.097-25.559 21.097-25.180L21.097-24.259L22.042-24.259Q22.249-24.235 22.288-24.028L22.288-23.938Q22.249-23.723 22.042-23.700L19.745-23.700Q19.554-23.723 19.495-23.938M23.741-23.938L23.741-24.028Q23.800-24.235 23.991-24.259L24.702-24.259L24.702-26.587L23.991-26.587Q23.796-26.610 23.741-26.829L23.741-26.915Q23.800-27.126 23.991-27.149L25.093-27.149Q25.292-27.130 25.343-26.915L25.343-26.587Q25.604-26.872 25.960-27.030Q26.315-27.188 26.702-27.188Q26.995-27.188 27.229-27.054Q27.464-26.919 27.464-26.653Q27.464-26.485 27.354-26.368Q27.245-26.251 27.077-26.251Q26.925-26.251 26.809-26.362Q26.694-26.473 26.694-26.630Q26.319-26.630 26.005-26.429Q25.690-26.227 25.517-25.893Q25.343-25.559 25.343-25.180L25.343-24.259L26.288-24.259Q26.495-24.235 26.534-24.028L26.534-23.938Q26.495-23.723 26.288-23.700L23.991-23.700Q23.800-23.723 23.741-23.938M28.507-24.555L28.507-26.587L28.085-26.587Q27.878-26.610 27.835-26.829L27.835-26.915Q27.882-27.126 28.085-27.149L28.901-27.149Q29.097-27.126 29.147-26.915L29.147-24.587Q29.147-24.352 29.317-24.286Q29.487-24.220 29.772-24.220Q29.979-24.220 30.175-24.296Q30.370-24.372 30.495-24.522Q30.620-24.673 30.620-24.884L30.620-26.587L30.198-26.587Q29.987-26.610 29.948-26.829L29.948-26.915Q29.987-27.126 30.198-27.149L31.011-27.149Q31.210-27.126 31.261-26.915L31.261-24.259L31.686-24.259Q31.893-24.235 31.933-24.028L31.933-23.938Q31.893-23.723 31.686-23.700L30.870-23.700Q30.671-23.723 30.620-23.923Q30.218-23.661 29.710-23.661Q29.476-23.661 29.261-23.702Q29.046-23.743 28.880-23.845Q28.714-23.946 28.610-24.124Q28.507-24.302 28.507-24.555M32.081-22.157L32.081-22.243Q32.124-22.462 32.331-22.485L32.753-22.485L32.753-26.587L32.331-26.587Q32.124-26.610 32.081-26.829L32.081-26.915Q32.128-27.126 32.331-27.149L33.147-27.149Q33.343-27.130 33.393-26.915L33.393-26.845Q33.604-27.012 33.868-27.100Q34.132-27.188 34.401-27.188Q34.741-27.188 35.038-27.044Q35.335-26.899 35.550-26.647Q35.765-26.395 35.880-26.083Q35.995-25.770 35.995-25.427Q35.995-24.962 35.768-24.552Q35.542-24.141 35.155-23.901Q34.768-23.661 34.300-23.661Q33.780-23.661 33.393-24.028L33.393-22.485L33.819-22.485Q34.026-22.462 34.065-22.243L34.065-22.157Q34.026-21.946 33.819-21.923L32.331-21.923Q32.128-21.946 32.081-22.157M34.257-24.220Q34.565-24.220 34.815-24.389Q35.065-24.559 35.210-24.841Q35.354-25.122 35.354-25.427Q35.354-25.716 35.229-25.995Q35.104-26.274 34.872-26.452Q34.640-26.630 34.339-26.630Q34.018-26.630 33.757-26.444Q33.495-26.259 33.393-25.958L33.393-25.106Q33.483-24.739 33.704-24.479Q33.925-24.220 34.257-24.220M37.456-24.805L37.456-26.587L36.706-26.587Q36.507-26.610 36.456-26.829L36.456-26.915Q36.507-27.126 36.706-27.149L37.456-27.149L37.456-27.899Q37.507-28.106 37.706-28.134L37.850-28.134Q38.046-28.106 38.097-27.899L38.097-27.149L39.456-27.149Q39.647-27.130 39.706-26.915L39.706-26.829Q39.651-26.610 39.456-26.587L38.097-26.587L38.097-24.837Q38.097-24.220 38.671-24.220Q38.921-24.220 39.085-24.405Q39.249-24.591 39.249-24.837Q39.249-24.930 39.321-25.001Q39.393-25.071 39.495-25.083L39.640-25.083Q39.839-25.059 39.890-24.852L39.890-24.805Q39.890-24.481 39.706-24.218Q39.522-23.954 39.229-23.807Q38.936-23.661 38.616-23.661Q38.104-23.661 37.780-23.971Q37.456-24.282 37.456-24.805\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(11.53 39.156)\">\u003Cpath d=\"M-10.077-31.700L-12.210-31.700L-12.210-31.980Q-11.489-31.980-11.489-32.189L-11.489-35.990Q-11.489-36.201-12.210-36.201L-12.210-36.482L-9.544-36.482Q-9.134-36.482-8.713-36.328Q-8.293-36.174-8.009-35.870Q-7.726-35.566-7.726-35.152Q-7.726-34.834-7.893-34.588Q-8.061-34.342-8.337-34.176Q-8.614-34.011-8.936-33.927Q-9.257-33.843-9.544-33.843L-10.798-33.843L-10.798-32.189Q-10.798-31.980-10.077-31.980L-10.077-31.700M-10.826-35.990L-10.826-34.093L-9.739-34.093Q-9.130-34.093-8.816-34.330Q-8.501-34.568-8.501-35.152Q-8.501-35.545-8.647-35.779Q-8.792-36.013-9.064-36.107Q-9.335-36.201-9.739-36.201L-10.460-36.201Q-10.648-36.201-10.737-36.167Q-10.826-36.133-10.826-35.990M-6.745-34.093Q-6.745-34.619-6.528-35.087Q-6.311-35.555-5.928-35.901Q-5.545-36.246-5.061-36.434Q-4.578-36.622-4.048-36.622Q-3.645-36.622-3.280-36.465Q-2.916-36.307-2.633-36.013L-2.209-36.595Q-2.175-36.622-2.151-36.622L-2.103-36.622Q-2.072-36.622-2.048-36.598Q-2.024-36.574-2.024-36.543L-2.024-34.680Q-2.024-34.657-2.050-34.631Q-2.076-34.605-2.103-34.605L-2.229-34.605Q-2.291-34.605-2.305-34.680Q-2.335-34.995-2.470-35.299Q-2.605-35.603-2.821-35.837Q-3.036-36.072-3.325-36.207Q-3.614-36.342-3.942-36.342Q-4.584-36.342-5.042-36.048Q-5.500-35.754-5.733-35.241Q-5.965-34.728-5.965-34.093Q-5.965-33.621-5.835-33.212Q-5.706-32.804-5.446-32.491Q-5.186-32.179-4.807-32.009Q-4.427-31.840-3.935-31.840Q-3.607-31.840-3.313-31.956Q-3.019-32.073-2.785-32.288Q-2.551-32.503-2.421-32.792Q-2.291-33.081-2.291-33.409Q-2.291-33.436-2.264-33.460Q-2.236-33.484-2.216-33.484L-2.103-33.484Q-2.065-33.484-2.045-33.459Q-2.024-33.433-2.024-33.395Q-2.024-32.999-2.190-32.662Q-2.356-32.325-2.643-32.078Q-2.930-31.830-3.299-31.695Q-3.668-31.560-4.048-31.560Q-4.567-31.560-5.060-31.750Q-5.552-31.939-5.931-32.283Q-6.311-32.626-6.528-33.095Q-6.745-33.563-6.745-34.093\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(11.53 39.156)\">\u003Cpath d=\"M1.448-33.183Q1.448-33.525 1.583-33.824Q1.718-34.123 1.958-34.347Q2.197-34.571 2.515-34.696Q2.833-34.821 3.164-34.821Q3.609-34.821 4.008-34.605Q4.408-34.390 4.643-34.012Q4.877-33.635 4.877-33.183Q4.877-32.842 4.735-32.558Q4.593-32.274 4.349-32.067Q4.104-31.861 3.795-31.746Q3.486-31.632 3.164-31.632Q2.734-31.632 2.332-31.833Q1.930-32.035 1.689-32.387Q1.448-32.739 1.448-33.183M3.164-31.881Q3.766-31.881 3.990-32.259Q4.214-32.637 4.214-33.269Q4.214-33.881 3.979-34.240Q3.745-34.598 3.164-34.598Q2.112-34.598 2.112-33.269Q2.112-32.637 2.337-32.259Q2.563-31.881 3.164-31.881M7.269-31.700L5.536-31.700L5.536-31.980Q5.762-31.980 5.911-32.014Q6.059-32.049 6.059-32.189L6.059-34.438L5.471-34.438L5.471-34.718L6.059-34.718L6.059-35.535Q6.059-35.853 6.237-36.101Q6.415-36.348 6.705-36.489Q6.996-36.629 7.307-36.629Q7.563-36.629 7.767-36.487Q7.970-36.345 7.970-36.102Q7.970-35.966 7.871-35.867Q7.772-35.767 7.635-35.767Q7.498-35.767 7.399-35.867Q7.300-35.966 7.300-36.102Q7.300-36.283 7.440-36.376Q7.362-36.403 7.262-36.403Q7.054-36.403 6.900-36.270Q6.746-36.137 6.666-35.933Q6.586-35.730 6.586-35.521L6.586-34.718L7.474-34.718L7.474-34.438L6.613-34.438L6.613-32.189Q6.613-31.980 7.269-31.980\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(11.53 39.156)\">\u003Cpath d=\"M12.331-31.700L10.697-31.700L10.697-31.980Q10.926-31.980 11.075-32.014Q11.224-32.049 11.224-32.189L11.224-34.038Q11.224-34.308 11.116-34.369Q11.008-34.431 10.697-34.431L10.697-34.711L11.757-34.786L11.757-34.137Q11.928-34.445 12.232-34.616Q12.536-34.786 12.881-34.786Q13.387-34.786 13.671-34.563Q13.955-34.339 13.955-33.843L13.955-32.189Q13.955-32.052 14.103-32.016Q14.252-31.980 14.478-31.980L14.478-31.700L12.847-31.700L12.847-31.980Q13.076-31.980 13.225-32.014Q13.374-32.049 13.374-32.189L13.374-33.829Q13.374-34.164 13.254-34.364Q13.134-34.564 12.820-34.564Q12.550-34.564 12.316-34.428Q12.082-34.291 11.943-34.057Q11.805-33.823 11.805-33.549L11.805-32.189Q11.805-32.052 11.955-32.016Q12.106-31.980 12.331-31.980L12.331-31.700M15.024-33.235Q15.024-33.556 15.149-33.845Q15.274-34.134 15.500-34.357Q15.725-34.581 16.021-34.701Q16.316-34.821 16.634-34.821Q16.962-34.821 17.224-34.721Q17.485-34.622 17.661-34.440Q17.837-34.257 17.931-33.999Q18.025-33.741 18.025-33.409Q18.025-33.317 17.943-33.296L15.688-33.296L15.688-33.235Q15.688-32.647 15.971-32.264Q16.255-31.881 16.822-31.881Q17.144-31.881 17.412-32.074Q17.680-32.267 17.769-32.582Q17.776-32.623 17.851-32.637L17.943-32.637Q18.025-32.613 18.025-32.541Q18.025-32.534 18.019-32.507Q17.906-32.110 17.535-31.871Q17.164-31.632 16.740-31.632Q16.303-31.632 15.903-31.840Q15.503-32.049 15.264-32.416Q15.024-32.783 15.024-33.235M15.694-33.505L17.509-33.505Q17.509-33.782 17.412-34.034Q17.314-34.287 17.116-34.443Q16.918-34.598 16.634-34.598Q16.357-34.598 16.144-34.440Q15.930-34.281 15.812-34.026Q15.694-33.771 15.694-33.505M19.796-31.700L18.473-31.700L18.473-31.980Q19.034-31.980 19.413-32.380L20.127-33.177L19.215-34.226Q19.078-34.373 18.929-34.405Q18.781-34.438 18.514-34.438L18.514-34.718L20.015-34.718L20.015-34.438Q19.823-34.438 19.823-34.304Q19.823-34.274 19.854-34.226L20.449-33.542L20.890-34.038Q21.002-34.168 21.002-34.284Q21.002-34.346 20.965-34.392Q20.927-34.438 20.869-34.438L20.869-34.718L22.185-34.718L22.185-34.438Q21.625-34.438 21.245-34.038L20.623-33.337L21.618-32.189Q21.717-32.090 21.818-32.045Q21.918-32.001 22.030-31.991Q22.141-31.980 22.318-31.980L22.318-31.700L20.825-31.700L20.825-31.980Q20.890-31.980 20.950-32.014Q21.009-32.049 21.009-32.114Q21.009-32.161 20.979-32.189L20.302-32.975L19.769-32.380Q19.656-32.250 19.656-32.134Q19.656-32.069 19.697-32.025Q19.738-31.980 19.796-31.980L19.796-31.700M23.340-32.541L23.340-34.438L22.701-34.438L22.701-34.660Q23.019-34.660 23.236-34.870Q23.453-35.080 23.554-35.390Q23.655-35.699 23.655-36.007L23.921-36.007L23.921-34.718L24.998-34.718L24.998-34.438L23.921-34.438L23.921-32.554Q23.921-32.278 24.026-32.079Q24.130-31.881 24.390-31.881Q24.547-31.881 24.653-31.985Q24.759-32.090 24.808-32.243Q24.858-32.397 24.858-32.554L24.858-32.968L25.125-32.968L25.125-32.541Q25.125-32.315 25.025-32.105Q24.926-31.895 24.742-31.763Q24.557-31.632 24.328-31.632Q23.891-31.632 23.616-31.869Q23.340-32.107 23.340-32.541\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(11.53 39.156)\">\u003Cpath d=\"M-21.281-23.700L-22.833-23.700L-22.833-23.980Q-22.607-23.980-22.458-24.014Q-22.310-24.049-22.310-24.189L-22.310-26.038Q-22.310-26.226-22.358-26.310Q-22.405-26.393-22.503-26.412Q-22.600-26.431-22.812-26.431L-22.812-26.711L-21.756-26.786L-21.756-24.189Q-21.756-24.049-21.624-24.014Q-21.493-23.980-21.281-23.980L-21.281-23.700M-22.552-28.007Q-22.552-28.178-22.429-28.297Q-22.306-28.417-22.135-28.417Q-21.968-28.417-21.845-28.297Q-21.722-28.178-21.722-28.007Q-21.722-27.832-21.845-27.709Q-21.968-27.586-22.135-27.586Q-22.306-27.586-22.429-27.709Q-22.552-27.832-22.552-28.007M-18.953-23.700L-20.587-23.700L-20.587-23.980Q-20.358-23.980-20.209-24.014Q-20.061-24.049-20.061-24.189L-20.061-26.038Q-20.061-26.308-20.168-26.369Q-20.276-26.431-20.587-26.431L-20.587-26.711L-19.527-26.786L-19.527-26.137Q-19.357-26.445-19.052-26.616Q-18.748-26.786-18.403-26.786Q-17.897-26.786-17.613-26.563Q-17.330-26.339-17.330-25.843L-17.330-24.189Q-17.330-24.052-17.181-24.016Q-17.032-23.980-16.807-23.980L-16.807-23.700L-18.437-23.700L-18.437-23.980Q-18.208-23.980-18.059-24.014Q-17.911-24.049-17.911-24.189L-17.911-25.829Q-17.911-26.164-18.030-26.364Q-18.150-26.564-18.464-26.564Q-18.734-26.564-18.969-26.428Q-19.203-26.291-19.341-26.057Q-19.480-25.823-19.480-25.549L-19.480-24.189Q-19.480-24.052-19.329-24.016Q-19.179-23.980-18.953-23.980L-18.953-23.700M-16.219-23.707L-16.219-24.770Q-16.219-24.794-16.191-24.821Q-16.164-24.848-16.140-24.848L-16.031-24.848Q-15.966-24.848-15.952-24.790Q-15.857-24.356-15.610-24.105Q-15.364-23.854-14.951-23.854Q-14.609-23.854-14.356-23.987Q-14.103-24.120-14.103-24.428Q-14.103-24.585-14.197-24.700Q-14.291-24.814-14.430-24.883Q-14.568-24.951-14.735-24.989L-15.316-25.088Q-15.672-25.156-15.945-25.377Q-16.219-25.597-16.219-25.939Q-16.219-26.188-16.108-26.363Q-15.997-26.537-15.810-26.636Q-15.624-26.735-15.409-26.778Q-15.193-26.821-14.951-26.821Q-14.537-26.821-14.257-26.639L-14.042-26.814Q-14.031-26.817-14.024-26.819Q-14.018-26.821-14.007-26.821L-13.956-26.821Q-13.929-26.821-13.905-26.797Q-13.881-26.773-13.881-26.745L-13.881-25.898Q-13.881-25.877-13.905-25.850Q-13.929-25.823-13.956-25.823L-14.069-25.823Q-14.096-25.823-14.122-25.848Q-14.148-25.874-14.148-25.898Q-14.148-26.134-14.254-26.298Q-14.359-26.462-14.542-26.544Q-14.725-26.626-14.958-26.626Q-15.286-26.626-15.542-26.523Q-15.798-26.421-15.798-26.144Q-15.798-25.949-15.616-25.840Q-15.433-25.730-15.204-25.689L-14.629-25.583Q-14.383-25.535-14.170-25.407Q-13.956-25.279-13.819-25.076Q-13.683-24.872-13.683-24.623Q-13.683-24.110-14.048-23.871Q-14.414-23.632-14.951-23.632Q-15.446-23.632-15.778-23.926L-16.045-23.652Q-16.065-23.632-16.092-23.632L-16.140-23.632Q-16.164-23.632-16.191-23.659Q-16.219-23.686-16.219-23.707M-12.527-24.541L-12.527-26.438L-13.167-26.438L-13.167-26.660Q-12.849-26.660-12.632-26.870Q-12.415-27.080-12.314-27.390Q-12.213-27.699-12.213-28.007L-11.946-28.007L-11.946-26.718L-10.870-26.718L-10.870-26.438L-11.946-26.438L-11.946-24.554Q-11.946-24.278-11.842-24.079Q-11.738-23.881-11.478-23.881Q-11.321-23.881-11.215-23.985Q-11.109-24.090-11.059-24.243Q-11.010-24.397-11.010-24.554L-11.010-24.968L-10.743-24.968L-10.743-24.541Q-10.743-24.315-10.842-24.105Q-10.941-23.895-11.126-23.763Q-11.311-23.632-11.540-23.632Q-11.977-23.632-12.252-23.869Q-12.527-24.107-12.527-24.541M-8.183-23.700L-9.920-23.700L-9.920-23.980Q-9.691-23.980-9.542-24.014Q-9.393-24.049-9.393-24.189L-9.393-26.038Q-9.393-26.308-9.501-26.369Q-9.608-26.431-9.920-26.431L-9.920-26.711L-8.891-26.786L-8.891-26.079Q-8.761-26.387-8.518-26.586Q-8.275-26.786-7.958-26.786Q-7.739-26.786-7.568-26.662Q-7.397-26.537-7.397-26.325Q-7.397-26.188-7.496-26.089Q-7.595-25.990-7.729-25.990Q-7.865-25.990-7.964-26.089Q-8.064-26.188-8.064-26.325Q-8.064-26.465-7.964-26.564Q-8.255-26.564-8.455-26.368Q-8.655-26.171-8.747-25.877Q-8.839-25.583-8.839-25.303L-8.839-24.189Q-8.839-23.980-8.183-23.980L-8.183-23.700M-6.238-24.534L-6.238-26.038Q-6.238-26.308-6.346-26.369Q-6.454-26.431-6.765-26.431L-6.765-26.711L-5.657-26.786L-5.657-24.554L-5.657-24.534Q-5.657-24.254-5.606-24.110Q-5.555-23.967-5.413-23.910Q-5.271-23.854-4.984-23.854Q-4.731-23.854-4.526-23.994Q-4.321-24.134-4.205-24.360Q-4.088-24.585-4.088-24.835L-4.088-26.038Q-4.088-26.308-4.196-26.369Q-4.304-26.431-4.615-26.431L-4.615-26.711L-3.507-26.786L-3.507-24.373Q-3.507-24.182-3.454-24.100Q-3.401-24.018-3.301-23.999Q-3.200-23.980-2.984-23.980L-2.984-23.700L-4.061-23.632L-4.061-24.196Q-4.170-24.014-4.316-23.891Q-4.461-23.768-4.647-23.700Q-4.834-23.632-5.035-23.632Q-6.238-23.632-6.238-24.534M-2.397-25.211Q-2.397-25.539-2.262-25.840Q-2.127-26.140-1.891-26.361Q-1.655-26.581-1.351-26.701Q-1.046-26.821-0.722-26.821Q-0.216-26.821 0.133-26.718Q0.481-26.616 0.481-26.240Q0.481-26.093 0.384-25.992Q0.287-25.891 0.140-25.891Q-0.014-25.891-0.113-25.990Q-0.212-26.089-0.212-26.240Q-0.212-26.428-0.072-26.520Q-0.274-26.571-0.715-26.571Q-1.070-26.571-1.299-26.375Q-1.528-26.178-1.629-25.869Q-1.730-25.559-1.730-25.211Q-1.730-24.862-1.604-24.556Q-1.477-24.250-1.222-24.066Q-0.968-23.881-0.612-23.881Q-0.390-23.881-0.206-23.965Q-0.021-24.049 0.114-24.204Q0.249-24.360 0.307-24.568Q0.321-24.623 0.375-24.623L0.488-24.623Q0.519-24.623 0.541-24.599Q0.563-24.575 0.563-24.541L0.563-24.520Q0.478-24.233 0.290-24.035Q0.102-23.837-0.163-23.734Q-0.428-23.632-0.722-23.632Q-1.152-23.632-1.540-23.838Q-1.928-24.045-2.162-24.408Q-2.397-24.770-2.397-25.211M1.678-24.541L1.678-26.438L1.038-26.438L1.038-26.660Q1.356-26.660 1.573-26.870Q1.790-27.080 1.891-27.390Q1.992-27.699 1.992-28.007L2.259-28.007L2.259-26.718L3.335-26.718L3.335-26.438L2.259-26.438L2.259-24.554Q2.259-24.278 2.363-24.079Q2.467-23.881 2.727-23.881Q2.884-23.881 2.990-23.985Q3.096-24.090 3.146-24.243Q3.195-24.397 3.195-24.554L3.195-24.968L3.462-24.968L3.462-24.541Q3.462-24.315 3.363-24.105Q3.264-23.895 3.079-23.763Q2.894-23.632 2.665-23.632Q2.228-23.632 1.953-23.869Q1.678-24.107 1.678-24.541M5.889-23.700L4.337-23.700L4.337-23.980Q4.562-23.980 4.711-24.014Q4.860-24.049 4.860-24.189L4.860-26.038Q4.860-26.226 4.812-26.310Q4.764-26.393 4.667-26.412Q4.569-26.431 4.357-26.431L4.357-26.711L5.413-26.786L5.413-24.189Q5.413-24.049 5.545-24.014Q5.677-23.980 5.889-23.980L5.889-23.700M4.617-28.007Q4.617-28.178 4.740-28.297Q4.863-28.417 5.034-28.417Q5.202-28.417 5.325-28.297Q5.448-28.178 5.448-28.007Q5.448-27.832 5.325-27.709Q5.202-27.586 5.034-27.586Q4.863-27.586 4.740-27.709Q4.617-27.832 4.617-28.007M6.494-25.183Q6.494-25.525 6.629-25.824Q6.764-26.123 7.003-26.347Q7.242-26.571 7.560-26.696Q7.878-26.821 8.209-26.821Q8.654-26.821 9.054-26.605Q9.454-26.390 9.688-26.012Q9.922-25.635 9.922-25.183Q9.922-24.842 9.780-24.558Q9.638-24.274 9.394-24.067Q9.149-23.861 8.840-23.746Q8.531-23.632 8.209-23.632Q7.779-23.632 7.377-23.833Q6.976-24.035 6.735-24.387Q6.494-24.739 6.494-25.183M8.209-23.881Q8.811-23.881 9.035-24.259Q9.259-24.637 9.259-25.269Q9.259-25.881 9.025-26.240Q8.790-26.598 8.209-26.598Q7.157-26.598 7.157-25.269Q7.157-24.637 7.382-24.259Q7.608-23.881 8.209-23.881M12.198-23.700L10.564-23.700L10.564-23.980Q10.793-23.980 10.942-24.014Q11.091-24.049 11.091-24.189L11.091-26.038Q11.091-26.308 10.983-26.369Q10.875-26.431 10.564-26.431L10.564-26.711L11.624-26.786L11.624-26.137Q11.795-26.445 12.099-26.616Q12.403-26.786 12.748-26.786Q13.254-26.786 13.538-26.563Q13.822-26.339 13.822-25.843L13.822-24.189Q13.822-24.052 13.970-24.016Q14.119-23.980 14.345-23.980L14.345-23.700L12.714-23.700L12.714-23.980Q12.943-23.980 13.092-24.014Q13.241-24.049 13.241-24.189L13.241-25.829Q13.241-26.164 13.121-26.364Q13.001-26.564 12.687-26.564Q12.417-26.564 12.183-26.428Q11.949-26.291 11.810-26.057Q11.672-25.823 11.672-25.549L11.672-24.189Q11.672-24.052 11.822-24.016Q11.973-23.980 12.198-23.980\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(11.53 39.156)\">\u003Cpath d=\"M17.659-23.707L17.659-24.770Q17.659-24.794 17.687-24.821Q17.714-24.848 17.738-24.848L17.847-24.848Q17.912-24.848 17.926-24.790Q18.022-24.356 18.268-24.105Q18.514-23.854 18.928-23.854Q19.269-23.854 19.522-23.987Q19.775-24.120 19.775-24.428Q19.775-24.585 19.681-24.700Q19.587-24.814 19.449-24.883Q19.310-24.951 19.143-24.989L18.562-25.088Q18.206-25.156 17.933-25.377Q17.659-25.597 17.659-25.939Q17.659-26.188 17.771-26.363Q17.882-26.537 18.068-26.636Q18.254-26.735 18.470-26.778Q18.685-26.821 18.928-26.821Q19.341-26.821 19.621-26.639L19.837-26.814Q19.847-26.817 19.854-26.819Q19.861-26.821 19.871-26.821L19.922-26.821Q19.949-26.821 19.973-26.797Q19.997-26.773 19.997-26.745L19.997-25.898Q19.997-25.877 19.973-25.850Q19.949-25.823 19.922-25.823L19.809-25.823Q19.782-25.823 19.756-25.848Q19.731-25.874 19.731-25.898Q19.731-26.134 19.625-26.298Q19.519-26.462 19.336-26.544Q19.153-26.626 18.921-26.626Q18.593-26.626 18.336-26.523Q18.080-26.421 18.080-26.144Q18.080-25.949 18.263-25.840Q18.446-25.730 18.675-25.689L19.249-25.583Q19.495-25.535 19.709-25.407Q19.922-25.279 20.059-25.076Q20.196-24.872 20.196-24.623Q20.196-24.110 19.830-23.871Q19.464-23.632 18.928-23.632Q18.432-23.632 18.100-23.926L17.834-23.652Q17.813-23.632 17.786-23.632L17.738-23.632Q17.714-23.632 17.687-23.659Q17.659-23.686 17.659-23.707M20.883-24.428Q20.883-24.760 21.106-24.987Q21.330-25.214 21.674-25.342Q22.017-25.471 22.390-25.523Q22.762-25.576 23.067-25.576L23.067-25.829Q23.067-26.034 22.959-26.214Q22.851-26.393 22.670-26.496Q22.489-26.598 22.281-26.598Q21.874-26.598 21.638-26.506Q21.727-26.469 21.773-26.385Q21.819-26.301 21.819-26.199Q21.819-26.103 21.773-26.024Q21.727-25.946 21.647-25.901Q21.566-25.857 21.477-25.857Q21.327-25.857 21.226-25.954Q21.125-26.052 21.125-26.199Q21.125-26.821 22.281-26.821Q22.492-26.821 22.742-26.757Q22.991-26.694 23.193-26.575Q23.395-26.455 23.521-26.270Q23.648-26.086 23.648-25.843L23.648-24.267Q23.648-24.151 23.709-24.055Q23.771-23.960 23.884-23.960Q23.993-23.960 24.058-24.054Q24.123-24.148 24.123-24.267L24.123-24.715L24.389-24.715L24.389-24.267Q24.389-23.997 24.162-23.832Q23.935-23.666 23.655-23.666Q23.446-23.666 23.309-23.820Q23.173-23.973 23.149-24.189Q23.002-23.922 22.720-23.777Q22.438-23.632 22.113-23.632Q21.836-23.632 21.553-23.707Q21.269-23.782 21.076-23.961Q20.883-24.141 20.883-24.428M21.498-24.428Q21.498-24.254 21.599-24.124Q21.699-23.994 21.855-23.924Q22.011-23.854 22.175-23.854Q22.393-23.854 22.602-23.951Q22.810-24.049 22.939-24.230Q23.067-24.411 23.067-24.637L23.067-25.365Q22.742-25.365 22.376-25.274Q22.011-25.183 21.754-24.971Q21.498-24.760 21.498-24.428\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(11.53 39.156)\">\u003Cpath d=\"M26.188-23.727L25.060-26.226Q24.988-26.373 24.858-26.405Q24.728-26.438 24.499-26.438L24.499-26.718L26.013-26.718L26.013-26.438Q25.661-26.438 25.661-26.291Q25.661-26.246 25.672-26.226L26.536-24.308L27.316-26.038Q27.350-26.106 27.350-26.185Q27.350-26.298 27.266-26.368Q27.182-26.438 27.063-26.438L27.063-26.718L28.259-26.718L28.259-26.438Q28.040-26.438 27.869-26.335Q27.699-26.233 27.610-26.038L26.574-23.727Q26.526-23.632 26.420-23.632L26.342-23.632Q26.236-23.632 26.188-23.727\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(11.53 39.156)\">\u003Cpath d=\"M28.543-25.235Q28.543-25.556 28.668-25.845Q28.793-26.134 29.019-26.357Q29.244-26.581 29.540-26.701Q29.835-26.821 30.153-26.821Q30.481-26.821 30.743-26.721Q31.004-26.622 31.180-26.440Q31.356-26.257 31.450-25.999Q31.544-25.741 31.544-25.409Q31.544-25.317 31.462-25.296L29.207-25.296L29.207-25.235Q29.207-24.647 29.490-24.264Q29.774-23.881 30.341-23.881Q30.663-23.881 30.931-24.074Q31.199-24.267 31.288-24.582Q31.295-24.623 31.370-24.637L31.462-24.637Q31.544-24.613 31.544-24.541Q31.544-24.534 31.538-24.507Q31.425-24.110 31.054-23.871Q30.683-23.632 30.259-23.632Q29.822-23.632 29.422-23.840Q29.022-24.049 28.783-24.416Q28.543-24.783 28.543-25.235M29.213-25.505L31.028-25.505Q31.028-25.782 30.931-26.034Q30.833-26.287 30.635-26.443Q30.437-26.598 30.153-26.598Q29.876-26.598 29.663-26.440Q29.449-26.281 29.331-26.026Q29.213-25.771 29.213-25.505M32.132-25.211Q32.132-25.549 32.272-25.840Q32.413-26.130 32.657-26.344Q32.901-26.557 33.206-26.672Q33.510-26.786 33.834-26.786Q34.104-26.786 34.368-26.687Q34.631-26.588 34.822-26.410L34.822-27.808Q34.822-28.078 34.715-28.140Q34.607-28.201 34.296-28.201L34.296-28.482L35.373-28.557L35.373-24.373Q35.373-24.185 35.427-24.102Q35.482-24.018 35.583-23.999Q35.684-23.980 35.899-23.980L35.899-23.700L34.791-23.632L34.791-24.049Q34.374-23.632 33.749-23.632Q33.318-23.632 32.946-23.844Q32.573-24.055 32.353-24.416Q32.132-24.777 32.132-25.211M33.807-23.854Q34.016-23.854 34.202-23.926Q34.388-23.997 34.542-24.134Q34.696-24.271 34.791-24.449L34.791-26.058Q34.706-26.205 34.561-26.325Q34.416-26.445 34.246-26.504Q34.077-26.564 33.896-26.564Q33.335-26.564 33.067-26.175Q32.799-25.785 32.799-25.204Q32.799-24.633 33.033-24.243Q33.267-23.854 33.807-23.854\" 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(172.561 39.156)\">\u003Cpath d=\"M-21.551-31.908L-21.551-31.987Q-21.507-32.168-21.336-32.189L-20.426-32.189L-20.426-34.226L-21.278-34.226Q-21.452-34.246-21.496-34.438L-21.496-34.513Q-21.452-34.698-21.278-34.718L-20.081-34.718Q-19.910-34.701-19.866-34.513L-19.866-32.189L-19.066-32.189Q-18.895-32.168-18.851-31.987L-18.851-31.908Q-18.895-31.721-19.066-31.700L-21.336-31.700Q-21.507-31.721-21.551-31.908M-20.649-35.573L-20.649-35.620Q-20.649-35.771-20.529-35.877Q-20.409-35.983-20.256-35.983Q-20.105-35.983-19.986-35.877Q-19.866-35.771-19.866-35.620L-19.866-35.573Q-19.866-35.419-19.986-35.313Q-20.105-35.207-20.256-35.207Q-20.409-35.207-20.529-35.313Q-20.649-35.419-20.649-35.573M-18.181-31.908L-18.181-31.987Q-18.130-32.168-17.962-32.189L-17.340-32.189L-17.340-34.226L-17.962-34.226Q-18.133-34.246-18.181-34.438L-18.181-34.513Q-18.130-34.698-17.962-34.718L-16.998-34.718Q-16.824-34.701-16.779-34.513L-16.779-34.226Q-16.550-34.475-16.239-34.614Q-15.928-34.752-15.590-34.752Q-15.334-34.752-15.129-34.634Q-14.924-34.516-14.924-34.284Q-14.924-34.137-15.019-34.034Q-15.115-33.932-15.262-33.932Q-15.395-33.932-15.496-34.029Q-15.597-34.127-15.597-34.263Q-15.925-34.263-16.200-34.087Q-16.475-33.911-16.627-33.619Q-16.779-33.327-16.779-32.995L-16.779-32.189L-15.952-32.189Q-15.771-32.168-15.737-31.987L-15.737-31.908Q-15.771-31.721-15.952-31.700L-17.962-31.700Q-18.130-31.721-18.181-31.908M-11.588-33.002L-13.724-33.002Q-13.676-32.760-13.503-32.565Q-13.331-32.370-13.088-32.262Q-12.845-32.155-12.596-32.155Q-12.182-32.155-11.987-32.408Q-11.981-32.418-11.931-32.510Q-11.882-32.602-11.839-32.640Q-11.796-32.678-11.714-32.688L-11.588-32.688Q-11.420-32.671-11.369-32.483L-11.369-32.435Q-11.427-32.172-11.629-31.999Q-11.830-31.826-12.104-31.746Q-12.377-31.666-12.644-31.666Q-13.068-31.666-13.452-31.866Q-13.837-32.066-14.071-32.416Q-14.305-32.766-14.305-33.197L-14.305-33.248Q-14.305-33.658-14.090-34.011Q-13.874-34.363-13.517-34.568Q-13.160-34.773-12.750-34.773Q-12.309-34.773-11.999-34.578Q-11.690-34.383-11.529-34.043Q-11.369-33.703-11.369-33.262L-11.369-33.211Q-11.420-33.023-11.588-33.002M-13.717-33.484L-11.943-33.484Q-11.984-33.843-12.193-34.064Q-12.401-34.284-12.750-34.284Q-13.095-34.284-13.363-34.055Q-13.632-33.826-13.717-33.484M-9.896-32.667L-9.896-34.226L-10.552-34.226Q-10.726-34.246-10.771-34.438L-10.771-34.513Q-10.726-34.698-10.552-34.718L-9.896-34.718L-9.896-35.374Q-9.851-35.555-9.677-35.579L-9.550-35.579Q-9.380-35.555-9.335-35.374L-9.335-34.718L-8.146-34.718Q-7.978-34.701-7.927-34.513L-7.927-34.438Q-7.975-34.246-8.146-34.226L-9.335-34.226L-9.335-32.695Q-9.335-32.155-8.833-32.155Q-8.614-32.155-8.470-32.317Q-8.327-32.479-8.327-32.695Q-8.327-32.777-8.264-32.838Q-8.200-32.900-8.112-32.910L-7.985-32.910Q-7.811-32.889-7.766-32.708L-7.766-32.667Q-7.766-32.384-7.927-32.153Q-8.088-31.922-8.344-31.794Q-8.600-31.666-8.881-31.666Q-9.328-31.666-9.612-31.938Q-9.896-32.209-9.896-32.667\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(172.561 39.156)\">\u003Cpath d=\"M-6.501-32.120Q-6.501-32.288-6.378-32.411Q-6.255-32.534-6.080-32.534Q-5.913-32.534-5.790-32.411Q-5.667-32.288-5.667-32.120Q-5.667-31.946-5.790-31.823Q-5.913-31.700-6.080-31.700Q-6.255-31.700-6.378-31.823Q-6.501-31.946-6.501-32.120M-6.501-34.304Q-6.501-34.472-6.378-34.595Q-6.255-34.718-6.080-34.718Q-5.913-34.718-5.790-34.595Q-5.667-34.472-5.667-34.304Q-5.667-34.130-5.790-34.007Q-5.913-33.884-6.080-33.884Q-6.255-33.884-6.378-34.007Q-6.501-34.130-6.501-34.304\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(172.561 39.156)\">\u003Cpath d=\"M-1.082-31.707L-1.082-32.770Q-1.082-32.794-1.054-32.821Q-1.027-32.848-1.003-32.848L-0.894-32.848Q-0.829-32.848-0.815-32.790Q-0.719-32.356-0.473-32.105Q-0.227-31.854 0.187-31.854Q0.528-31.854 0.781-31.987Q1.034-32.120 1.034-32.428Q1.034-32.585 0.940-32.700Q0.846-32.814 0.708-32.883Q0.569-32.951 0.402-32.989L-0.179-33.088Q-0.535-33.156-0.808-33.377Q-1.082-33.597-1.082-33.939Q-1.082-34.188-0.970-34.363Q-0.859-34.537-0.673-34.636Q-0.487-34.735-0.271-34.778Q-0.056-34.821 0.187-34.821Q0.600-34.821 0.880-34.639L1.096-34.814Q1.106-34.817 1.113-34.819Q1.120-34.821 1.130-34.821L1.181-34.821Q1.208-34.821 1.232-34.797Q1.256-34.773 1.256-34.745L1.256-33.898Q1.256-33.877 1.232-33.850Q1.208-33.823 1.181-33.823L1.068-33.823Q1.041-33.823 1.015-33.848Q0.990-33.874 0.990-33.898Q0.990-34.134 0.884-34.298Q0.778-34.462 0.595-34.544Q0.412-34.626 0.180-34.626Q-0.148-34.626-0.405-34.523Q-0.661-34.421-0.661-34.144Q-0.661-33.949-0.478-33.840Q-0.295-33.730-0.066-33.689L0.508-33.583Q0.754-33.535 0.968-33.407Q1.181-33.279 1.318-33.076Q1.455-32.872 1.455-32.623Q1.455-32.110 1.089-31.871Q0.723-31.632 0.187-31.632Q-0.309-31.632-0.641-31.926L-0.907-31.652Q-0.928-31.632-0.955-31.632L-1.003-31.632Q-1.027-31.632-1.054-31.659Q-1.082-31.686-1.082-31.707M2.142-32.428Q2.142-32.760 2.365-32.987Q2.589-33.214 2.933-33.342Q3.276-33.471 3.649-33.523Q4.021-33.576 4.326-33.576L4.326-33.829Q4.326-34.034 4.218-34.214Q4.110-34.393 3.929-34.496Q3.748-34.598 3.540-34.598Q3.133-34.598 2.897-34.506Q2.986-34.469 3.032-34.385Q3.078-34.301 3.078-34.199Q3.078-34.103 3.032-34.024Q2.986-33.946 2.906-33.901Q2.825-33.857 2.736-33.857Q2.586-33.857 2.485-33.954Q2.384-34.052 2.384-34.199Q2.384-34.821 3.540-34.821Q3.751-34.821 4.001-34.757Q4.250-34.694 4.452-34.575Q4.654-34.455 4.780-34.270Q4.907-34.086 4.907-33.843L4.907-32.267Q4.907-32.151 4.968-32.055Q5.030-31.960 5.143-31.960Q5.252-31.960 5.317-32.054Q5.382-32.148 5.382-32.267L5.382-32.715L5.648-32.715L5.648-32.267Q5.648-31.997 5.421-31.832Q5.194-31.666 4.914-31.666Q4.705-31.666 4.568-31.820Q4.432-31.973 4.408-32.189Q4.261-31.922 3.979-31.777Q3.697-31.632 3.372-31.632Q3.095-31.632 2.812-31.707Q2.528-31.782 2.335-31.961Q2.142-32.141 2.142-32.428M2.757-32.428Q2.757-32.254 2.858-32.124Q2.958-31.994 3.114-31.924Q3.270-31.854 3.434-31.854Q3.652-31.854 3.861-31.951Q4.069-32.049 4.198-32.230Q4.326-32.411 4.326-32.637L4.326-33.365Q4.001-33.365 3.635-33.274Q3.270-33.183 3.013-32.971Q2.757-32.760 2.757-32.428\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(172.561 39.156)\">\u003Cpath d=\"M7.447-31.727L6.319-34.226Q6.247-34.373 6.117-34.405Q5.987-34.438 5.758-34.438L5.758-34.718L7.272-34.718L7.272-34.438Q6.920-34.438 6.920-34.291Q6.920-34.246 6.931-34.226L7.795-32.308L8.575-34.038Q8.609-34.106 8.609-34.185Q8.609-34.298 8.525-34.368Q8.441-34.438 8.322-34.438L8.322-34.718L9.518-34.718L9.518-34.438Q9.299-34.438 9.128-34.335Q8.958-34.233 8.869-34.038L7.833-31.727Q7.785-31.632 7.679-31.632L7.601-31.632Q7.495-31.632 7.447-31.727\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(172.561 39.156)\">\u003Cpath d=\"M9.802-33.235Q9.802-33.556 9.927-33.845Q10.052-34.134 10.278-34.357Q10.503-34.581 10.799-34.701Q11.094-34.821 11.412-34.821Q11.740-34.821 12.002-34.721Q12.263-34.622 12.439-34.440Q12.615-34.257 12.709-33.999Q12.803-33.741 12.803-33.409Q12.803-33.317 12.721-33.296L10.466-33.296L10.466-33.235Q10.466-32.647 10.749-32.264Q11.033-31.881 11.600-31.881Q11.922-31.881 12.190-32.074Q12.458-32.267 12.547-32.582Q12.554-32.623 12.629-32.637L12.721-32.637Q12.803-32.613 12.803-32.541Q12.803-32.534 12.797-32.507Q12.684-32.110 12.313-31.871Q11.942-31.632 11.518-31.632Q11.081-31.632 10.681-31.840Q10.281-32.049 10.042-32.416Q9.802-32.783 9.802-33.235M10.472-33.505L12.287-33.505Q12.287-33.782 12.190-34.034Q12.092-34.287 11.894-34.443Q11.696-34.598 11.412-34.598Q11.135-34.598 10.922-34.440Q10.708-34.281 10.590-34.026Q10.472-33.771 10.472-33.505M13.391-33.211Q13.391-33.549 13.531-33.840Q13.672-34.130 13.916-34.344Q14.160-34.557 14.465-34.672Q14.769-34.786 15.093-34.786Q15.363-34.786 15.627-34.687Q15.890-34.588 16.081-34.410L16.081-35.808Q16.081-36.078 15.974-36.140Q15.866-36.201 15.555-36.201L15.555-36.482L16.632-36.557L16.632-32.373Q16.632-32.185 16.686-32.102Q16.741-32.018 16.842-31.999Q16.943-31.980 17.158-31.980L17.158-31.700L16.050-31.632L16.050-32.049Q15.633-31.632 15.008-31.632Q14.577-31.632 14.205-31.844Q13.832-32.055 13.612-32.416Q13.391-32.777 13.391-33.211M15.066-31.854Q15.275-31.854 15.461-31.926Q15.647-31.997 15.801-32.134Q15.955-32.271 16.050-32.449L16.050-34.058Q15.965-34.205 15.820-34.325Q15.675-34.445 15.505-34.504Q15.336-34.564 15.155-34.564Q14.594-34.564 14.326-34.175Q14.058-33.785 14.058-33.204Q14.058-32.633 14.292-32.243Q14.526-31.854 15.066-31.854\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(172.561 39.156)\">\u003Cpath d=\"M-20.686-23.700L-22.819-23.700L-22.819-23.980Q-22.098-23.980-22.098-24.189L-22.098-27.990Q-22.098-28.201-22.819-28.201L-22.819-28.482L-20.153-28.482Q-19.743-28.482-19.322-28.328Q-18.902-28.174-18.618-27.870Q-18.335-27.566-18.335-27.152Q-18.335-26.834-18.502-26.588Q-18.670-26.342-18.946-26.176Q-19.223-26.011-19.545-25.927Q-19.866-25.843-20.153-25.843L-21.407-25.843L-21.407-24.189Q-21.407-23.980-20.686-23.980L-20.686-23.700M-21.435-27.990L-21.435-26.093L-20.348-26.093Q-19.739-26.093-19.425-26.330Q-19.110-26.568-19.110-27.152Q-19.110-27.545-19.256-27.779Q-19.401-28.013-19.673-28.107Q-19.944-28.201-20.348-28.201L-21.069-28.201Q-21.257-28.201-21.346-28.167Q-21.435-28.133-21.435-27.990M-17.354-26.093Q-17.354-26.619-17.137-27.087Q-16.920-27.555-16.537-27.901Q-16.154-28.246-15.670-28.434Q-15.187-28.622-14.657-28.622Q-14.254-28.622-13.889-28.465Q-13.525-28.307-13.242-28.013L-12.818-28.595Q-12.784-28.622-12.760-28.622L-12.712-28.622Q-12.681-28.622-12.657-28.598Q-12.633-28.574-12.633-28.543L-12.633-26.680Q-12.633-26.657-12.659-26.631Q-12.685-26.605-12.712-26.605L-12.838-26.605Q-12.900-26.605-12.914-26.680Q-12.944-26.995-13.079-27.299Q-13.214-27.603-13.430-27.837Q-13.645-28.072-13.934-28.207Q-14.223-28.342-14.551-28.342Q-15.193-28.342-15.651-28.048Q-16.109-27.754-16.342-27.241Q-16.574-26.728-16.574-26.093Q-16.574-25.621-16.444-25.212Q-16.315-24.804-16.055-24.491Q-15.795-24.179-15.416-24.009Q-15.036-23.840-14.544-23.840Q-14.216-23.840-13.922-23.956Q-13.628-24.073-13.394-24.288Q-13.160-24.503-13.030-24.792Q-12.900-25.081-12.900-25.409Q-12.900-25.436-12.873-25.460Q-12.845-25.484-12.825-25.484L-12.712-25.484Q-12.674-25.484-12.654-25.459Q-12.633-25.433-12.633-25.395Q-12.633-24.999-12.799-24.662Q-12.965-24.325-13.252-24.078Q-13.539-23.830-13.908-23.695Q-14.277-23.560-14.657-23.560Q-15.176-23.560-15.669-23.750Q-16.161-23.939-16.540-24.283Q-16.920-24.626-17.137-25.095Q-17.354-25.563-17.354-26.093\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(172.561 39.156)\">\u003Cpath d=\"M-7.370-23.700L-9.106-23.700L-9.106-23.980Q-8.877-23.980-8.728-24.014Q-8.580-24.049-8.580-24.189L-8.580-26.038Q-8.580-26.308-8.687-26.369Q-8.795-26.431-9.106-26.431L-9.106-26.711L-8.077-26.786L-8.077-26.079Q-7.947-26.387-7.705-26.586Q-7.462-26.786-7.144-26.786Q-6.925-26.786-6.754-26.662Q-6.583-26.537-6.583-26.325Q-6.583-26.188-6.683-26.089Q-6.782-25.990-6.915-25.990Q-7.052-25.990-7.151-26.089Q-7.250-26.188-7.250-26.325Q-7.250-26.465-7.151-26.564Q-7.441-26.564-7.641-26.368Q-7.841-26.171-7.934-25.877Q-8.026-25.583-8.026-25.303L-8.026-24.189Q-8.026-23.980-7.370-23.980L-7.370-23.700M-6.040-25.235Q-6.040-25.556-5.915-25.845Q-5.790-26.134-5.565-26.357Q-5.339-26.581-5.044-26.701Q-4.748-26.821-4.430-26.821Q-4.102-26.821-3.840-26.721Q-3.579-26.622-3.403-26.440Q-3.227-26.257-3.133-25.999Q-3.039-25.741-3.039-25.409Q-3.039-25.317-3.121-25.296L-5.377-25.296L-5.377-25.235Q-5.377-24.647-5.093-24.264Q-4.809-23.881-4.242-23.881Q-3.921-23.881-3.653-24.074Q-3.384-24.267-3.295-24.582Q-3.288-24.623-3.213-24.637L-3.121-24.637Q-3.039-24.613-3.039-24.541Q-3.039-24.534-3.046-24.507Q-3.159-24.110-3.529-23.871Q-3.900-23.632-4.324-23.632Q-4.762-23.632-5.162-23.840Q-5.561-24.049-5.801-24.416Q-6.040-24.783-6.040-25.235M-5.370-25.505L-3.555-25.505Q-3.555-25.782-3.653-26.034Q-3.750-26.287-3.948-26.443Q-4.146-26.598-4.430-26.598Q-4.707-26.598-4.921-26.440Q-5.134-26.281-5.252-26.026Q-5.370-25.771-5.370-25.505M-2.451-23.707L-2.451-24.770Q-2.451-24.794-2.424-24.821Q-2.396-24.848-2.372-24.848L-2.263-24.848Q-2.198-24.848-2.184-24.790Q-2.089-24.356-1.843-24.105Q-1.597-23.854-1.183-23.854Q-0.841-23.854-0.588-23.987Q-0.335-24.120-0.335-24.428Q-0.335-24.585-0.429-24.700Q-0.523-24.814-0.662-24.883Q-0.800-24.951-0.968-24.989L-1.549-25.088Q-1.904-25.156-2.178-25.377Q-2.451-25.597-2.451-25.939Q-2.451-26.188-2.340-26.363Q-2.229-26.537-2.043-26.636Q-1.856-26.735-1.641-26.778Q-1.426-26.821-1.183-26.821Q-0.769-26.821-0.489-26.639L-0.274-26.814Q-0.264-26.817-0.257-26.819Q-0.250-26.821-0.240-26.821L-0.188-26.821Q-0.161-26.821-0.137-26.797Q-0.113-26.773-0.113-26.745L-0.113-25.898Q-0.113-25.877-0.137-25.850Q-0.161-25.823-0.188-25.823L-0.301-25.823Q-0.329-25.823-0.354-25.848Q-0.380-25.874-0.380-25.898Q-0.380-26.134-0.486-26.298Q-0.592-26.462-0.775-26.544Q-0.957-26.626-1.190-26.626Q-1.518-26.626-1.774-26.523Q-2.031-26.421-2.031-26.144Q-2.031-25.949-1.848-25.840Q-1.665-25.730-1.436-25.689L-0.862-25.583Q-0.616-25.535-0.402-25.407Q-0.188-25.279-0.052-25.076Q0.085-24.872 0.085-24.623Q0.085-24.110-0.281-23.871Q-0.646-23.632-1.183-23.632Q-1.679-23.632-2.010-23.926L-2.277-23.652Q-2.297-23.632-2.325-23.632L-2.372-23.632Q-2.396-23.632-2.424-23.659Q-2.451-23.686-2.451-23.707M1.240-24.541L1.240-26.438L0.601-26.438L0.601-26.660Q0.919-26.660 1.136-26.870Q1.353-27.080 1.454-27.390Q1.555-27.699 1.555-28.007L1.821-28.007L1.821-26.718L2.898-26.718L2.898-26.438L1.821-26.438L1.821-24.554Q1.821-24.278 1.926-24.079Q2.030-23.881 2.290-23.881Q2.447-23.881 2.553-23.985Q2.659-24.090 2.708-24.243Q2.758-24.397 2.758-24.554L2.758-24.968L3.024-24.968L3.024-24.541Q3.024-24.315 2.925-24.105Q2.826-23.895 2.642-23.763Q2.457-23.632 2.228-23.632Q1.791-23.632 1.515-23.869Q1.240-24.107 1.240-24.541M3.794-25.183Q3.794-25.525 3.929-25.824Q4.064-26.123 4.303-26.347Q4.542-26.571 4.860-26.696Q5.178-26.821 5.509-26.821Q5.954-26.821 6.354-26.605Q6.754-26.390 6.988-26.012Q7.222-25.635 7.222-25.183Q7.222-24.842 7.080-24.558Q6.938-24.274 6.694-24.067Q6.449-23.861 6.140-23.746Q5.831-23.632 5.509-23.632Q5.079-23.632 4.677-23.833Q4.275-24.035 4.035-24.387Q3.794-24.739 3.794-25.183M5.509-23.881Q6.111-23.881 6.335-24.259Q6.559-24.637 6.559-25.269Q6.559-25.881 6.325-26.240Q6.090-26.598 5.509-26.598Q4.457-26.598 4.457-25.269Q4.457-24.637 4.682-24.259Q4.908-23.881 5.509-23.881M9.566-23.700L7.830-23.700L7.830-23.980Q8.059-23.980 8.208-24.014Q8.357-24.049 8.357-24.189L8.357-26.038Q8.357-26.308 8.249-26.369Q8.141-26.431 7.830-26.431L7.830-26.711L8.859-26.786L8.859-26.079Q8.989-26.387 9.232-26.586Q9.474-26.786 9.792-26.786Q10.011-26.786 10.182-26.662Q10.353-26.537 10.353-26.325Q10.353-26.188 10.254-26.089Q10.154-25.990 10.021-25.990Q9.884-25.990 9.785-26.089Q9.686-26.188 9.686-26.325Q9.686-26.465 9.785-26.564Q9.495-26.564 9.295-26.368Q9.095-26.171 9.003-25.877Q8.910-25.583 8.910-25.303L8.910-24.189Q8.910-23.980 9.566-23.980L9.566-23.700M10.896-25.235Q10.896-25.556 11.021-25.845Q11.146-26.134 11.371-26.357Q11.597-26.581 11.892-26.701Q12.188-26.821 12.506-26.821Q12.834-26.821 13.096-26.721Q13.357-26.622 13.533-26.440Q13.709-26.257 13.803-25.999Q13.897-25.741 13.897-25.409Q13.897-25.317 13.815-25.296L11.559-25.296L11.559-25.235Q11.559-24.647 11.843-24.264Q12.127-23.881 12.694-23.881Q13.015-23.881 13.284-24.074Q13.552-24.267 13.641-24.582Q13.648-24.623 13.723-24.637L13.815-24.637Q13.897-24.613 13.897-24.541Q13.897-24.534 13.890-24.507Q13.777-24.110 13.407-23.871Q13.036-23.632 12.612-23.632Q12.174-23.632 11.774-23.840Q11.375-24.049 11.135-24.416Q10.896-24.783 10.896-25.235M11.566-25.505L13.381-25.505Q13.381-25.782 13.284-26.034Q13.186-26.287 12.988-26.443Q12.790-26.598 12.506-26.598Q12.229-26.598 12.015-26.440Q11.802-26.281 11.684-26.026Q11.566-25.771 11.566-25.505M14.485-25.211Q14.485-25.549 14.625-25.840Q14.765-26.130 15.010-26.344Q15.254-26.557 15.558-26.672Q15.862-26.786 16.187-26.786Q16.457-26.786 16.720-26.687Q16.983-26.588 17.175-26.410L17.175-27.808Q17.175-28.078 17.067-28.140Q16.960-28.201 16.649-28.201L16.649-28.482L17.725-28.557L17.725-24.373Q17.725-24.185 17.780-24.102Q17.835-24.018 17.935-23.999Q18.036-23.980 18.252-23.980L18.252-23.700L17.144-23.632L17.144-24.049Q16.727-23.632 16.102-23.632Q15.671-23.632 15.298-23.844Q14.926-24.055 14.705-24.416Q14.485-24.777 14.485-25.211M16.160-23.854Q16.368-23.854 16.555-23.926Q16.741-23.997 16.895-24.134Q17.048-24.271 17.144-24.449L17.144-26.058Q17.059-26.205 16.913-26.325Q16.768-26.445 16.599-26.504Q16.430-26.564 16.249-26.564Q15.688-26.564 15.420-26.175Q15.151-25.785 15.151-25.204Q15.151-24.633 15.386-24.243Q15.620-23.854 16.160-23.854\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-68.737 36.05h350.815\"\u002F>\u003Cpath stroke=\"none\" d=\"m284.078 36.05-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(310.823 62.105)\">\u003Cpath d=\"M-22.371-24.541L-22.371-26.438L-23.010-26.438L-23.010-26.660Q-22.692-26.660-22.475-26.870Q-22.258-27.080-22.158-27.390Q-22.057-27.699-22.057-28.007L-21.790-28.007L-21.790-26.718L-20.713-26.718L-20.713-26.438L-21.790-26.438L-21.790-24.554Q-21.790-24.278-21.686-24.079Q-21.582-23.881-21.322-23.881Q-21.165-23.881-21.059-23.985Q-20.953-24.090-20.903-24.243Q-20.854-24.397-20.854-24.554L-20.854-24.968L-20.587-24.968L-20.587-24.541Q-20.587-24.315-20.686-24.105Q-20.785-23.895-20.970-23.763Q-21.154-23.632-21.383-23.632Q-21.821-23.632-22.096-23.869Q-22.371-24.107-22.371-24.541M-18.160-23.700L-19.712-23.700L-19.712-23.980Q-19.486-23.980-19.338-24.014Q-19.189-24.049-19.189-24.189L-19.189-26.038Q-19.189-26.226-19.237-26.310Q-19.285-26.393-19.382-26.412Q-19.480-26.431-19.691-26.431L-19.691-26.711L-18.635-26.786L-18.635-24.189Q-18.635-24.049-18.504-24.014Q-18.372-23.980-18.160-23.980L-18.160-23.700M-19.432-28.007Q-19.432-28.178-19.309-28.297Q-19.186-28.417-19.015-28.417Q-18.847-28.417-18.724-28.297Q-18.601-28.178-18.601-28.007Q-18.601-27.832-18.724-27.709Q-18.847-27.586-19.015-27.586Q-19.186-27.586-19.309-27.709Q-19.432-27.832-19.432-28.007M-15.833-23.700L-17.466-23.700L-17.466-23.980Q-17.237-23.980-17.089-24.014Q-16.940-24.049-16.940-24.189L-16.940-26.038Q-16.940-26.308-17.048-26.369Q-17.155-26.431-17.466-26.431L-17.466-26.711L-16.407-26.786L-16.407-26.137Q-16.236-26.445-15.932-26.616Q-15.628-26.786-15.282-26.786Q-14.882-26.786-14.606-26.646Q-14.329-26.506-14.243-26.158Q-14.076-26.451-13.777-26.619Q-13.478-26.786-13.132-26.786Q-12.627-26.786-12.343-26.563Q-12.059-26.339-12.059-25.843L-12.059-24.189Q-12.059-24.052-11.910-24.016Q-11.762-23.980-11.536-23.980L-11.536-23.700L-13.167-23.700L-13.167-23.980Q-12.941-23.980-12.791-24.016Q-12.640-24.052-12.640-24.189L-12.640-25.829Q-12.640-26.164-12.760-26.364Q-12.879-26.564-13.194-26.564Q-13.464-26.564-13.698-26.428Q-13.932-26.291-14.071-26.057Q-14.209-25.823-14.209-25.549L-14.209-24.189Q-14.209-24.052-14.060-24.016Q-13.912-23.980-13.686-23.980L-13.686-23.700L-15.316-23.700L-15.316-23.980Q-15.087-23.980-14.939-24.014Q-14.790-24.049-14.790-24.189L-14.790-25.829Q-14.790-26.164-14.910-26.364Q-15.029-26.564-15.344-26.564Q-15.614-26.564-15.848-26.428Q-16.082-26.291-16.221-26.057Q-16.359-25.823-16.359-25.549L-16.359-24.189Q-16.359-24.052-16.209-24.016Q-16.058-23.980-15.833-23.980L-15.833-23.700M-10.989-25.235Q-10.989-25.556-10.865-25.845Q-10.740-26.134-10.514-26.357Q-10.289-26.581-9.993-26.701Q-9.697-26.821-9.379-26.821Q-9.051-26.821-8.790-26.721Q-8.528-26.622-8.352-26.440Q-8.176-26.257-8.082-25.999Q-7.988-25.741-7.988-25.409Q-7.988-25.317-8.070-25.296L-10.326-25.296L-10.326-25.235Q-10.326-24.647-10.043-24.264Q-9.759-23.881-9.191-23.881Q-8.870-23.881-8.602-24.074Q-8.334-24.267-8.245-24.582Q-8.238-24.623-8.163-24.637L-8.070-24.637Q-7.988-24.613-7.988-24.541Q-7.988-24.534-7.995-24.507Q-8.108-24.110-8.479-23.871Q-8.850-23.632-9.274-23.632Q-9.711-23.632-10.111-23.840Q-10.511-24.049-10.750-24.416Q-10.989-24.783-10.989-25.235M-10.319-25.505L-8.504-25.505Q-8.504-25.782-8.602-26.034Q-8.699-26.287-8.898-26.443Q-9.096-26.598-9.379-26.598Q-9.656-26.598-9.870-26.440Q-10.084-26.281-10.202-26.026Q-10.319-25.771-10.319-25.505\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">A timer interrupt lands between two instructions. Everything before the boundary completes; the PC of the next instruction is saved; the kernel handler runs (and may switch threads); iret restores the saved PC and the program resumes, unable to tell it was ever preempted.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:669.939px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 502.454 177.892\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-23.375 -21.207)\">\u003Cpath d=\"M9.773-43.946L9.773-45.728L9.023-45.728Q8.824-45.751 8.773-45.970L8.773-46.056Q8.824-46.267 9.023-46.290L9.773-46.290L9.773-47.040Q9.824-47.247 10.023-47.275L10.168-47.275Q10.363-47.247 10.414-47.040L10.414-46.290L11.773-46.290Q11.965-46.271 12.023-46.056L12.023-45.970Q11.969-45.751 11.773-45.728L10.414-45.728L10.414-43.978Q10.414-43.361 10.988-43.361Q11.238-43.361 11.402-43.546Q11.566-43.732 11.566-43.978Q11.566-44.071 11.638-44.142Q11.711-44.212 11.812-44.224L11.957-44.224Q12.156-44.200 12.207-43.993L12.207-43.946Q12.207-43.622 12.023-43.359Q11.840-43.095 11.547-42.948Q11.254-42.802 10.933-42.802Q10.422-42.802 10.097-43.112Q9.773-43.423 9.773-43.946M12.890-43.079L12.890-43.169Q12.933-43.376 13.140-43.400L13.562-43.400L13.562-47.169L13.140-47.169Q12.933-47.193 12.890-47.407L12.890-47.497Q12.933-47.704 13.140-47.728L13.957-47.728Q14.152-47.704 14.203-47.497L14.203-45.946Q14.664-46.329 15.261-46.329Q15.609-46.329 15.847-46.189Q16.086-46.048 16.201-45.790Q16.316-45.532 16.316-45.177L16.316-43.400L16.742-43.400Q16.949-43.376 16.988-43.169L16.988-43.079Q16.949-42.864 16.742-42.841L15.347-42.841Q15.152-42.864 15.101-43.079L15.101-43.169Q15.152-43.380 15.347-43.400L15.676-43.400L15.676-45.146Q15.676-45.454 15.586-45.612Q15.496-45.771 15.203-45.771Q14.933-45.771 14.705-45.640Q14.476-45.509 14.340-45.280Q14.203-45.052 14.203-44.786L14.203-43.400L14.629-43.400Q14.836-43.376 14.875-43.169L14.875-43.079Q14.836-42.864 14.629-42.841L13.140-42.841Q12.933-42.864 12.890-43.079M20.578-44.329L18.136-44.329Q18.191-44.052 18.388-43.829Q18.586-43.607 18.863-43.484Q19.140-43.361 19.426-43.361Q19.898-43.361 20.121-43.650Q20.129-43.661 20.185-43.767Q20.242-43.872 20.291-43.915Q20.340-43.958 20.433-43.970L20.578-43.970Q20.769-43.950 20.828-43.736L20.828-43.681Q20.761-43.380 20.531-43.183Q20.301-42.986 19.988-42.894Q19.676-42.802 19.371-42.802Q18.886-42.802 18.447-43.030Q18.008-43.259 17.740-43.659Q17.472-44.060 17.472-44.552L17.472-44.611Q17.472-45.079 17.719-45.482Q17.965-45.884 18.373-46.118Q18.781-46.353 19.250-46.353Q19.754-46.353 20.107-46.130Q20.461-45.907 20.644-45.519Q20.828-45.130 20.828-44.626L20.828-44.568Q20.769-44.353 20.578-44.329M18.144-44.880L20.172-44.880Q20.125-45.290 19.886-45.542Q19.648-45.794 19.250-45.794Q18.855-45.794 18.549-45.532Q18.242-45.271 18.144-44.880\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-23.375 -21.207)\">\u003Cpath d=\"M25.644-41.298L25.644-41.384Q25.687-41.603 25.894-41.626L26.316-41.626L26.316-45.728L25.894-45.728Q25.687-45.751 25.644-45.970L25.644-46.056Q25.691-46.267 25.894-46.290L26.711-46.290Q26.906-46.271 26.957-46.056L26.957-45.986Q27.168-46.154 27.431-46.241Q27.695-46.329 27.965-46.329Q28.304-46.329 28.601-46.185Q28.898-46.040 29.113-45.788Q29.328-45.536 29.443-45.224Q29.558-44.911 29.558-44.568Q29.558-44.103 29.332-43.693Q29.105-43.282 28.719-43.042Q28.332-42.802 27.863-42.802Q27.344-42.802 26.957-43.169L26.957-41.626L27.383-41.626Q27.590-41.603 27.629-41.384L27.629-41.298Q27.590-41.087 27.383-41.064L25.894-41.064Q25.691-41.087 25.644-41.298M27.820-43.361Q28.129-43.361 28.379-43.530Q28.629-43.700 28.773-43.982Q28.918-44.263 28.918-44.568Q28.918-44.857 28.793-45.136Q28.668-45.415 28.435-45.593Q28.203-45.771 27.902-45.771Q27.582-45.771 27.320-45.585Q27.058-45.400 26.957-45.099L26.957-44.247Q27.047-43.880 27.267-43.620Q27.488-43.361 27.820-43.361M30.043-43.079L30.043-43.169Q30.101-43.376 30.293-43.400L31.004-43.400L31.004-45.728L30.293-45.728Q30.097-45.751 30.043-45.970L30.043-46.056Q30.101-46.267 30.293-46.290L31.394-46.290Q31.594-46.271 31.644-46.056L31.644-45.728Q31.906-46.013 32.261-46.171Q32.617-46.329 33.004-46.329Q33.297-46.329 33.531-46.195Q33.765-46.060 33.765-45.794Q33.765-45.626 33.656-45.509Q33.547-45.392 33.379-45.392Q33.226-45.392 33.111-45.503Q32.996-45.614 32.996-45.771Q32.621-45.771 32.306-45.570Q31.992-45.368 31.818-45.034Q31.644-44.700 31.644-44.321L31.644-43.400L32.590-43.400Q32.797-43.376 32.836-43.169L32.836-43.079Q32.797-42.864 32.590-42.841L30.293-42.841Q30.101-42.864 30.043-43.079M36.187-42.802Q35.715-42.802 35.330-43.046Q34.945-43.290 34.722-43.700Q34.500-44.111 34.500-44.568Q34.500-44.911 34.625-45.234Q34.750-45.556 34.980-45.810Q35.211-46.064 35.517-46.208Q35.824-46.353 36.187-46.353Q36.551-46.353 36.863-46.206Q37.176-46.060 37.398-45.814Q37.621-45.568 37.748-45.247Q37.875-44.927 37.875-44.568Q37.875-44.111 37.650-43.698Q37.426-43.286 37.041-43.044Q36.656-42.802 36.187-42.802M36.187-43.361Q36.652-43.361 36.943-43.755Q37.234-44.150 37.234-44.634Q37.234-44.927 37.099-45.195Q36.965-45.462 36.724-45.628Q36.484-45.794 36.187-45.794Q35.883-45.794 35.644-45.628Q35.406-45.462 35.271-45.195Q35.136-44.927 35.136-44.634Q35.136-44.154 35.429-43.757Q35.722-43.361 36.187-43.361M38.551-42.193Q38.551-42.493 38.699-42.755Q38.847-43.017 39.097-43.177Q38.914-43.431 38.914-43.751Q38.914-44.036 39.066-44.298Q38.816-44.622 38.816-45.040Q38.816-45.400 39.008-45.696Q39.199-45.993 39.517-46.161Q39.836-46.329 40.199-46.329Q40.406-46.329 40.609-46.269Q40.812-46.208 40.976-46.107Q41.359-46.368 41.832-46.368Q42.070-46.368 42.252-46.237Q42.433-46.107 42.433-45.880Q42.433-45.732 42.332-45.626Q42.230-45.521 42.074-45.521Q41.941-45.521 41.845-45.599Q41.750-45.677 41.719-45.802Q41.574-45.794 41.375-45.704Q41.578-45.392 41.578-45.040Q41.578-44.759 41.467-44.527Q41.355-44.294 41.160-44.116Q40.965-43.939 40.713-43.841Q40.461-43.743 40.199-43.743Q39.812-43.743 39.480-43.931Q39.469-43.931 39.459-43.859Q39.449-43.786 39.449-43.751Q39.449-43.630 39.515-43.523Q39.582-43.415 39.703-43.376Q39.719-43.380 39.732-43.382Q39.746-43.384 39.769-43.384Q39.785-43.384 39.816-43.376Q39.847-43.368 39.855-43.368L40.449-43.368Q41.230-43.368 41.771-43.126Q42.312-42.884 42.312-42.193Q42.312-41.892 42.133-41.665Q41.953-41.439 41.656-41.294Q41.359-41.150 41.039-41.083Q40.719-41.017 40.433-41.017Q40.043-41.017 39.601-41.140Q39.160-41.263 38.855-41.530Q38.551-41.798 38.551-42.193M39.090-42.200Q39.090-41.982 39.330-41.841Q39.570-41.700 39.894-41.634Q40.219-41.568 40.433-41.568Q40.648-41.568 40.972-41.634Q41.297-41.700 41.537-41.841Q41.777-41.982 41.777-42.200Q41.777-42.489 41.553-42.628Q41.328-42.767 41.047-42.800Q40.765-42.833 40.418-42.833L39.801-42.833Q39.617-42.833 39.455-42.753Q39.293-42.673 39.191-42.527Q39.090-42.380 39.090-42.200M40.199-44.298Q40.500-44.298 40.719-44.517Q40.937-44.736 40.937-45.040Q40.937-45.196 40.883-45.327Q40.828-45.458 40.722-45.564Q40.617-45.669 40.486-45.724Q40.355-45.779 40.199-45.779Q39.894-45.779 39.676-45.560Q39.457-45.341 39.457-45.040Q39.457-44.743 39.679-44.521Q39.902-44.298 40.199-44.298M42.781-43.079L42.781-43.169Q42.840-43.376 43.031-43.400L43.742-43.400L43.742-45.728L43.031-45.728Q42.836-45.751 42.781-45.970L42.781-46.056Q42.840-46.267 43.031-46.290L44.133-46.290Q44.332-46.271 44.383-46.056L44.383-45.728Q44.644-46.013 45-46.171Q45.355-46.329 45.742-46.329Q46.035-46.329 46.269-46.195Q46.504-46.060 46.504-45.794Q46.504-45.626 46.394-45.509Q46.285-45.392 46.117-45.392Q45.965-45.392 45.849-45.503Q45.734-45.614 45.734-45.771Q45.359-45.771 45.045-45.570Q44.730-45.368 44.556-45.034Q44.383-44.700 44.383-44.321L44.383-43.400L45.328-43.400Q45.535-43.376 45.574-43.169L45.574-43.079Q45.535-42.864 45.328-42.841L43.031-42.841Q42.840-42.864 42.781-43.079M47.211-43.954Q47.211-44.400 47.625-44.657Q48.039-44.915 48.580-45.015Q49.121-45.114 49.629-45.122Q49.629-45.337 49.494-45.489Q49.359-45.642 49.152-45.718Q48.945-45.794 48.734-45.794Q48.390-45.794 48.230-45.771L48.230-45.712Q48.230-45.544 48.111-45.429Q47.992-45.314 47.828-45.314Q47.652-45.314 47.537-45.437Q47.422-45.560 47.422-45.728Q47.422-46.134 47.803-46.243Q48.183-46.353 48.742-46.353Q49.011-46.353 49.279-46.275Q49.547-46.196 49.771-46.046Q49.996-45.896 50.133-45.675Q50.269-45.454 50.269-45.177L50.269-43.458Q50.269-43.400 50.797-43.400Q50.992-43.380 51.043-43.169L51.043-43.079Q50.992-42.864 50.797-42.841L50.652-42.841Q50.308-42.841 50.080-42.888Q49.851-42.935 49.707-43.122Q49.246-42.802 48.539-42.802Q48.203-42.802 47.898-42.943Q47.594-43.083 47.402-43.345Q47.211-43.607 47.211-43.954M47.851-43.946Q47.851-43.673 48.094-43.517Q48.336-43.361 48.621-43.361Q48.840-43.361 49.072-43.419Q49.304-43.478 49.467-43.616Q49.629-43.755 49.629-43.978L49.629-44.568Q49.347-44.568 48.931-44.511Q48.515-44.454 48.183-44.316Q47.851-44.177 47.851-43.946M50.996-43.079L50.996-43.169Q51.047-43.380 51.242-43.400L51.441-43.400L51.441-45.728L51.242-45.728Q51.035-45.751 50.996-45.970L50.996-46.056Q51.047-46.271 51.242-46.290L51.722-46.290Q51.914-46.267 51.972-46.056Q52.293-46.329 52.707-46.329Q52.898-46.329 53.066-46.220Q53.234-46.111 53.308-45.939Q53.484-46.130 53.707-46.230Q53.929-46.329 54.172-46.329Q54.590-46.329 54.744-45.987Q54.898-45.646 54.898-45.177L54.898-43.400L55.097-43.400Q55.308-43.376 55.347-43.169L55.347-43.079Q55.297-42.864 55.097-42.841L54.281-42.841Q54.086-42.864 54.035-43.079L54.035-43.169Q54.086-43.376 54.281-43.400L54.371-43.400L54.371-45.146Q54.371-45.771 54.121-45.771Q53.789-45.771 53.611-45.460Q53.433-45.150 53.433-44.786L53.433-43.400L53.636-43.400Q53.844-43.376 53.883-43.169L53.883-43.079Q53.832-42.864 53.636-42.841L52.820-42.841Q52.621-42.864 52.570-43.079L52.570-43.169Q52.621-43.376 52.820-43.400L52.906-43.400L52.906-45.146Q52.906-45.771 52.660-45.771Q52.328-45.771 52.150-45.458Q51.972-45.146 51.972-44.786L51.972-43.400L52.172-43.400Q52.379-43.376 52.418-43.169L52.418-43.079Q52.367-42.861 52.172-42.841L51.242-42.841Q51.035-42.864 50.996-43.079\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(143.091 -21.207)\">\u003Cpath d=\"M9.773-43.946L9.773-45.728L9.023-45.728Q8.824-45.751 8.773-45.970L8.773-46.056Q8.824-46.267 9.023-46.290L9.773-46.290L9.773-47.040Q9.824-47.247 10.023-47.275L10.168-47.275Q10.363-47.247 10.414-47.040L10.414-46.290L11.773-46.290Q11.965-46.271 12.023-46.056L12.023-45.970Q11.969-45.751 11.773-45.728L10.414-45.728L10.414-43.978Q10.414-43.361 10.988-43.361Q11.238-43.361 11.402-43.546Q11.566-43.732 11.566-43.978Q11.566-44.071 11.638-44.142Q11.711-44.212 11.812-44.224L11.957-44.224Q12.156-44.200 12.207-43.993L12.207-43.946Q12.207-43.622 12.023-43.359Q11.840-43.095 11.547-42.948Q11.254-42.802 10.933-42.802Q10.422-42.802 10.097-43.112Q9.773-43.423 9.773-43.946M12.890-43.079L12.890-43.169Q12.933-43.376 13.140-43.400L13.562-43.400L13.562-47.169L13.140-47.169Q12.933-47.193 12.890-47.407L12.890-47.497Q12.933-47.704 13.140-47.728L13.957-47.728Q14.152-47.704 14.203-47.497L14.203-45.946Q14.664-46.329 15.261-46.329Q15.609-46.329 15.847-46.189Q16.086-46.048 16.201-45.790Q16.316-45.532 16.316-45.177L16.316-43.400L16.742-43.400Q16.949-43.376 16.988-43.169L16.988-43.079Q16.949-42.864 16.742-42.841L15.347-42.841Q15.152-42.864 15.101-43.079L15.101-43.169Q15.152-43.380 15.347-43.400L15.676-43.400L15.676-45.146Q15.676-45.454 15.586-45.612Q15.496-45.771 15.203-45.771Q14.933-45.771 14.705-45.640Q14.476-45.509 14.340-45.280Q14.203-45.052 14.203-44.786L14.203-43.400L14.629-43.400Q14.836-43.376 14.875-43.169L14.875-43.079Q14.836-42.864 14.629-42.841L13.140-42.841Q12.933-42.864 12.890-43.079M20.578-44.329L18.136-44.329Q18.191-44.052 18.388-43.829Q18.586-43.607 18.863-43.484Q19.140-43.361 19.426-43.361Q19.898-43.361 20.121-43.650Q20.129-43.661 20.185-43.767Q20.242-43.872 20.291-43.915Q20.340-43.958 20.433-43.970L20.578-43.970Q20.769-43.950 20.828-43.736L20.828-43.681Q20.761-43.380 20.531-43.183Q20.301-42.986 19.988-42.894Q19.676-42.802 19.371-42.802Q18.886-42.802 18.447-43.030Q18.008-43.259 17.740-43.659Q17.472-44.060 17.472-44.552L17.472-44.611Q17.472-45.079 17.719-45.482Q17.965-45.884 18.373-46.118Q18.781-46.353 19.250-46.353Q19.754-46.353 20.107-46.130Q20.461-45.907 20.644-45.519Q20.828-45.130 20.828-44.626L20.828-44.568Q20.769-44.353 20.578-44.329M18.144-44.880L20.172-44.880Q20.125-45.290 19.886-45.542Q19.648-45.794 19.250-45.794Q18.855-45.794 18.549-45.532Q18.242-45.271 18.144-44.880\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(143.091 -21.207)\">\u003Cpath d=\"M25.644-41.298L25.644-41.384Q25.687-41.603 25.894-41.626L26.316-41.626L26.316-45.728L25.894-45.728Q25.687-45.751 25.644-45.970L25.644-46.056Q25.691-46.267 25.894-46.290L26.711-46.290Q26.906-46.271 26.957-46.056L26.957-45.986Q27.168-46.154 27.431-46.241Q27.695-46.329 27.965-46.329Q28.304-46.329 28.601-46.185Q28.898-46.040 29.113-45.788Q29.328-45.536 29.443-45.224Q29.558-44.911 29.558-44.568Q29.558-44.103 29.332-43.693Q29.105-43.282 28.719-43.042Q28.332-42.802 27.863-42.802Q27.344-42.802 26.957-43.169L26.957-41.626L27.383-41.626Q27.590-41.603 27.629-41.384L27.629-41.298Q27.590-41.087 27.383-41.064L25.894-41.064Q25.691-41.087 25.644-41.298M27.820-43.361Q28.129-43.361 28.379-43.530Q28.629-43.700 28.773-43.982Q28.918-44.263 28.918-44.568Q28.918-44.857 28.793-45.136Q28.668-45.415 28.435-45.593Q28.203-45.771 27.902-45.771Q27.582-45.771 27.320-45.585Q27.058-45.400 26.957-45.099L26.957-44.247Q27.047-43.880 27.267-43.620Q27.488-43.361 27.820-43.361M30.043-43.079L30.043-43.169Q30.101-43.376 30.293-43.400L31.004-43.400L31.004-45.728L30.293-45.728Q30.097-45.751 30.043-45.970L30.043-46.056Q30.101-46.267 30.293-46.290L31.394-46.290Q31.594-46.271 31.644-46.056L31.644-45.728Q31.906-46.013 32.261-46.171Q32.617-46.329 33.004-46.329Q33.297-46.329 33.531-46.195Q33.765-46.060 33.765-45.794Q33.765-45.626 33.656-45.509Q33.547-45.392 33.379-45.392Q33.226-45.392 33.111-45.503Q32.996-45.614 32.996-45.771Q32.621-45.771 32.306-45.570Q31.992-45.368 31.818-45.034Q31.644-44.700 31.644-44.321L31.644-43.400L32.590-43.400Q32.797-43.376 32.836-43.169L32.836-43.079Q32.797-42.864 32.590-42.841L30.293-42.841Q30.101-42.864 30.043-43.079M36.187-42.802Q35.715-42.802 35.330-43.046Q34.945-43.290 34.722-43.700Q34.500-44.111 34.500-44.568Q34.500-44.911 34.625-45.234Q34.750-45.556 34.980-45.810Q35.211-46.064 35.517-46.208Q35.824-46.353 36.187-46.353Q36.551-46.353 36.863-46.206Q37.176-46.060 37.398-45.814Q37.621-45.568 37.748-45.247Q37.875-44.927 37.875-44.568Q37.875-44.111 37.650-43.698Q37.426-43.286 37.041-43.044Q36.656-42.802 36.187-42.802M36.187-43.361Q36.652-43.361 36.943-43.755Q37.234-44.150 37.234-44.634Q37.234-44.927 37.099-45.195Q36.965-45.462 36.724-45.628Q36.484-45.794 36.187-45.794Q35.883-45.794 35.644-45.628Q35.406-45.462 35.271-45.195Q35.136-44.927 35.136-44.634Q35.136-44.154 35.429-43.757Q35.722-43.361 36.187-43.361M38.871-44.568Q38.871-45.048 39.115-45.462Q39.359-45.876 39.775-46.114Q40.191-46.353 40.672-46.353Q41.226-46.353 41.605-46.243Q41.984-46.134 41.984-45.728Q41.984-45.560 41.871-45.437Q41.758-45.314 41.586-45.314Q41.414-45.314 41.295-45.429Q41.176-45.544 41.176-45.712L41.176-45.771Q41.015-45.794 40.679-45.794Q40.351-45.794 40.084-45.624Q39.816-45.454 39.664-45.171Q39.511-44.888 39.511-44.568Q39.511-44.247 39.683-43.966Q39.855-43.685 40.140-43.523Q40.426-43.361 40.754-43.361Q41.066-43.361 41.193-43.464Q41.320-43.568 41.437-43.757Q41.554-43.946 41.672-43.962L41.840-43.962Q41.945-43.950 42.010-43.882Q42.074-43.814 42.074-43.712Q42.074-43.665 42.054-43.626Q41.945-43.333 41.742-43.154Q41.539-42.974 41.263-42.888Q40.988-42.802 40.672-42.802Q40.187-42.802 39.771-43.040Q39.355-43.279 39.113-43.681Q38.871-44.083 38.871-44.568M46.070-44.329L43.629-44.329Q43.683-44.052 43.881-43.829Q44.078-43.607 44.355-43.484Q44.633-43.361 44.918-43.361Q45.390-43.361 45.613-43.650Q45.621-43.661 45.678-43.767Q45.734-43.872 45.783-43.915Q45.832-43.958 45.926-43.970L46.070-43.970Q46.261-43.950 46.320-43.736L46.320-43.681Q46.254-43.380 46.023-43.183Q45.793-42.986 45.480-42.894Q45.168-42.802 44.863-42.802Q44.379-42.802 43.939-43.030Q43.500-43.259 43.232-43.659Q42.965-44.060 42.965-44.552L42.965-44.611Q42.965-45.079 43.211-45.482Q43.457-45.884 43.865-46.118Q44.273-46.353 44.742-46.353Q45.246-46.353 45.599-46.130Q45.953-45.907 46.136-45.519Q46.320-45.130 46.320-44.626L46.320-44.568Q46.261-44.353 46.070-44.329M43.636-44.880L45.664-44.880Q45.617-45.290 45.379-45.542Q45.140-45.794 44.742-45.794Q44.347-45.794 44.041-45.532Q43.734-45.271 43.636-44.880M47.390-43.040L47.390-43.954Q47.418-44.161 47.629-44.185L47.797-44.185Q47.961-44.161 48.019-44.001Q48.222-43.361 48.949-43.361Q49.156-43.361 49.385-43.396Q49.613-43.431 49.781-43.546Q49.949-43.661 49.949-43.864Q49.949-44.075 49.726-44.189Q49.504-44.302 49.230-44.345L48.531-44.458Q47.390-44.669 47.390-45.392Q47.390-45.681 47.535-45.870Q47.679-46.060 47.920-46.167Q48.160-46.275 48.416-46.314Q48.672-46.353 48.949-46.353Q49.199-46.353 49.392-46.323Q49.586-46.294 49.750-46.216Q49.828-46.333 49.957-46.353L50.035-46.353Q50.133-46.341 50.195-46.279Q50.258-46.216 50.269-46.122L50.269-45.415Q50.258-45.321 50.195-45.255Q50.133-45.189 50.035-45.177L49.867-45.177Q49.773-45.189 49.707-45.255Q49.640-45.321 49.629-45.415Q49.629-45.794 48.933-45.794Q48.586-45.794 48.267-45.712Q47.949-45.630 47.949-45.384Q47.949-45.118 48.621-45.009L49.324-44.888Q49.808-44.806 50.158-44.558Q50.508-44.310 50.508-43.864Q50.508-43.474 50.271-43.232Q50.035-42.989 49.685-42.896Q49.336-42.802 48.949-42.802Q48.371-42.802 47.972-43.056Q47.902-42.931 47.853-42.874Q47.804-42.818 47.699-42.802L47.629-42.802Q47.414-42.825 47.390-43.040M51.636-43.040L51.636-43.954Q51.664-44.161 51.875-44.185L52.043-44.185Q52.207-44.161 52.265-44.001Q52.469-43.361 53.195-43.361Q53.402-43.361 53.631-43.396Q53.859-43.431 54.027-43.546Q54.195-43.661 54.195-43.864Q54.195-44.075 53.972-44.189Q53.750-44.302 53.476-44.345L52.777-44.458Q51.636-44.669 51.636-45.392Q51.636-45.681 51.781-45.870Q51.926-46.060 52.166-46.167Q52.406-46.275 52.662-46.314Q52.918-46.353 53.195-46.353Q53.445-46.353 53.638-46.323Q53.832-46.294 53.996-46.216Q54.074-46.333 54.203-46.353L54.281-46.353Q54.379-46.341 54.441-46.279Q54.504-46.216 54.515-46.122L54.515-45.415Q54.504-45.321 54.441-45.255Q54.379-45.189 54.281-45.177L54.113-45.177Q54.019-45.189 53.953-45.255Q53.886-45.321 53.875-45.415Q53.875-45.794 53.179-45.794Q52.832-45.794 52.513-45.712Q52.195-45.630 52.195-45.384Q52.195-45.118 52.867-45.009L53.570-44.888Q54.054-44.806 54.404-44.558Q54.754-44.310 54.754-43.864Q54.754-43.474 54.517-43.232Q54.281-42.989 53.931-42.896Q53.582-42.802 53.195-42.802Q52.617-42.802 52.219-43.056Q52.148-42.931 52.099-42.874Q52.051-42.818 51.945-42.802L51.875-42.802Q51.660-42.825 51.636-43.040M57.418-42.802Q56.945-42.802 56.560-43.046Q56.176-43.290 55.953-43.700Q55.730-44.111 55.730-44.568Q55.730-44.911 55.855-45.234Q55.980-45.556 56.211-45.810Q56.441-46.064 56.748-46.208Q57.054-46.353 57.418-46.353Q57.781-46.353 58.094-46.206Q58.406-46.060 58.629-45.814Q58.851-45.568 58.978-45.247Q59.105-44.927 59.105-44.568Q59.105-44.111 58.881-43.698Q58.656-43.286 58.271-43.044Q57.886-42.802 57.418-42.802M57.418-43.361Q57.883-43.361 58.174-43.755Q58.465-44.150 58.465-44.634Q58.465-44.927 58.330-45.195Q58.195-45.462 57.955-45.628Q57.715-45.794 57.418-45.794Q57.113-45.794 56.875-45.628Q56.636-45.462 56.502-45.195Q56.367-44.927 56.367-44.634Q56.367-44.154 56.660-43.757Q56.953-43.361 57.418-43.361M59.765-43.079L59.765-43.169Q59.824-43.376 60.015-43.400L60.726-43.400L60.726-45.728L60.015-45.728Q59.820-45.751 59.765-45.970L59.765-46.056Q59.824-46.267 60.015-46.290L61.117-46.290Q61.316-46.271 61.367-46.056L61.367-45.728Q61.629-46.013 61.984-46.171Q62.340-46.329 62.726-46.329Q63.019-46.329 63.254-46.195Q63.488-46.060 63.488-45.794Q63.488-45.626 63.379-45.509Q63.269-45.392 63.101-45.392Q62.949-45.392 62.834-45.503Q62.719-45.614 62.719-45.771Q62.344-45.771 62.029-45.570Q61.715-45.368 61.541-45.034Q61.367-44.700 61.367-44.321L61.367-43.400L62.312-43.400Q62.519-43.376 62.558-43.169L62.558-43.079Q62.519-42.864 62.312-42.841L60.015-42.841Q59.824-42.864 59.765-43.079\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(303.182 -21.207)\">\u003Cpath d=\"M8.519-43.079L8.519-43.169Q8.570-43.380 8.765-43.400L8.965-43.400L8.965-45.728L8.765-45.728Q8.558-45.751 8.519-45.970L8.519-46.056Q8.570-46.271 8.765-46.290L9.246-46.290Q9.437-46.267 9.496-46.056Q9.816-46.329 10.230-46.329Q10.422-46.329 10.590-46.220Q10.758-46.111 10.832-45.939Q11.008-46.130 11.230-46.230Q11.453-46.329 11.695-46.329Q12.113-46.329 12.267-45.987Q12.422-45.646 12.422-45.177L12.422-43.400L12.621-43.400Q12.832-43.376 12.871-43.169L12.871-43.079Q12.820-42.864 12.621-42.841L11.804-42.841Q11.609-42.864 11.558-43.079L11.558-43.169Q11.609-43.376 11.804-43.400L11.894-43.400L11.894-45.146Q11.894-45.771 11.644-45.771Q11.312-45.771 11.135-45.460Q10.957-45.150 10.957-44.786L10.957-43.400L11.160-43.400Q11.367-43.376 11.406-43.169L11.406-43.079Q11.355-42.864 11.160-42.841L10.344-42.841Q10.144-42.864 10.094-43.079L10.094-43.169Q10.144-43.376 10.344-43.400L10.429-43.400L10.429-45.146Q10.429-45.771 10.183-45.771Q9.851-45.771 9.674-45.458Q9.496-45.146 9.496-44.786L9.496-43.400L9.695-43.400Q9.902-43.376 9.941-43.169L9.941-43.079Q9.890-42.861 9.695-42.841L8.765-42.841Q8.558-42.864 8.519-43.079M16.332-44.329L13.890-44.329Q13.945-44.052 14.142-43.829Q14.340-43.607 14.617-43.484Q14.894-43.361 15.179-43.361Q15.652-43.361 15.875-43.650Q15.883-43.661 15.939-43.767Q15.996-43.872 16.045-43.915Q16.094-43.958 16.187-43.970L16.332-43.970Q16.523-43.950 16.582-43.736L16.582-43.681Q16.515-43.380 16.285-43.183Q16.054-42.986 15.742-42.894Q15.429-42.802 15.125-42.802Q14.640-42.802 14.201-43.030Q13.761-43.259 13.494-43.659Q13.226-44.060 13.226-44.552L13.226-44.611Q13.226-45.079 13.472-45.482Q13.719-45.884 14.127-46.118Q14.535-46.353 15.004-46.353Q15.508-46.353 15.861-46.130Q16.215-45.907 16.398-45.519Q16.582-45.130 16.582-44.626L16.582-44.568Q16.523-44.353 16.332-44.329M13.898-44.880L15.926-44.880Q15.879-45.290 15.640-45.542Q15.402-45.794 15.004-45.794Q14.609-45.794 14.303-45.532Q13.996-45.271 13.898-44.880M17.011-43.079L17.011-43.169Q17.062-43.380 17.258-43.400L17.457-43.400L17.457-45.728L17.258-45.728Q17.051-45.751 17.011-45.970L17.011-46.056Q17.062-46.271 17.258-46.290L17.738-46.290Q17.929-46.267 17.988-46.056Q18.308-46.329 18.722-46.329Q18.914-46.329 19.082-46.220Q19.250-46.111 19.324-45.939Q19.500-46.130 19.722-46.230Q19.945-46.329 20.187-46.329Q20.605-46.329 20.760-45.987Q20.914-45.646 20.914-45.177L20.914-43.400L21.113-43.400Q21.324-43.376 21.363-43.169L21.363-43.079Q21.312-42.864 21.113-42.841L20.297-42.841Q20.101-42.864 20.051-43.079L20.051-43.169Q20.101-43.376 20.297-43.400L20.386-43.400L20.386-45.146Q20.386-45.771 20.136-45.771Q19.804-45.771 19.627-45.460Q19.449-45.150 19.449-44.786L19.449-43.400L19.652-43.400Q19.859-43.376 19.898-43.169L19.898-43.079Q19.847-42.864 19.652-42.841L18.836-42.841Q18.636-42.864 18.586-43.079L18.586-43.169Q18.636-43.376 18.836-43.400L18.922-43.400L18.922-45.146Q18.922-45.771 18.676-45.771Q18.344-45.771 18.166-45.458Q17.988-45.146 17.988-44.786L17.988-43.400L18.187-43.400Q18.394-43.376 18.433-43.169L18.433-43.079Q18.383-42.861 18.187-42.841L17.258-42.841Q17.051-42.864 17.011-43.079M23.433-42.802Q22.961-42.802 22.576-43.046Q22.191-43.290 21.969-43.700Q21.746-44.111 21.746-44.568Q21.746-44.911 21.871-45.234Q21.996-45.556 22.226-45.810Q22.457-46.064 22.763-46.208Q23.070-46.353 23.433-46.353Q23.797-46.353 24.109-46.206Q24.422-46.060 24.644-45.814Q24.867-45.568 24.994-45.247Q25.121-44.927 25.121-44.568Q25.121-44.111 24.896-43.698Q24.672-43.286 24.287-43.044Q23.902-42.802 23.433-42.802M23.433-43.361Q23.898-43.361 24.189-43.755Q24.480-44.150 24.480-44.634Q24.480-44.927 24.345-45.195Q24.211-45.462 23.970-45.628Q23.730-45.794 23.433-45.794Q23.129-45.794 22.890-45.628Q22.652-45.462 22.517-45.195Q22.383-44.927 22.383-44.634Q22.383-44.154 22.676-43.757Q22.969-43.361 23.433-43.361M25.781-43.079L25.781-43.169Q25.840-43.376 26.031-43.400L26.742-43.400L26.742-45.728L26.031-45.728Q25.836-45.751 25.781-45.970L25.781-46.056Q25.840-46.267 26.031-46.290L27.133-46.290Q27.332-46.271 27.383-46.056L27.383-45.728Q27.644-46.013 28-46.171Q28.355-46.329 28.742-46.329Q29.035-46.329 29.269-46.195Q29.504-46.060 29.504-45.794Q29.504-45.626 29.394-45.509Q29.285-45.392 29.117-45.392Q28.965-45.392 28.849-45.503Q28.734-45.614 28.734-45.771Q28.359-45.771 28.045-45.570Q27.730-45.368 27.556-45.034Q27.383-44.700 27.383-44.321L27.383-43.400L28.328-43.400Q28.535-43.376 28.574-43.169L28.574-43.079Q28.535-42.864 28.328-42.841L26.031-42.841Q25.840-42.864 25.781-43.079M30.148-41.720Q30.148-41.829 30.199-41.921Q30.250-42.013 30.342-42.064Q30.433-42.114 30.539-42.114Q30.648-42.114 30.740-42.064Q30.832-42.013 30.883-41.921Q30.933-41.829 30.933-41.720L30.789-41.720Q30.789-41.583 30.812-41.583Q31.070-41.583 31.258-41.775Q31.445-41.966 31.531-42.232L31.742-42.841L30.605-45.728L30.277-45.728Q30.082-45.751 30.027-45.970L30.027-46.056Q30.086-46.267 30.277-46.290L31.437-46.290Q31.633-46.267 31.683-46.056L31.683-45.970Q31.633-45.751 31.437-45.728L31.172-45.728Q31.508-44.880 31.752-44.226Q31.996-43.571 31.996-43.482L32.004-43.482Q32.004-43.540 32.095-43.833Q32.187-44.126 32.381-44.710Q32.574-45.294 32.715-45.728L32.437-45.728Q32.226-45.751 32.187-45.970L32.187-46.056Q32.238-46.271 32.437-46.290L33.590-46.290Q33.797-46.267 33.836-46.056L33.836-45.970Q33.797-45.751 33.590-45.728L33.269-45.728L32.094-42.232Q31.926-41.732 31.599-41.378Q31.273-41.025 30.812-41.025Q30.539-41.025 30.344-41.236Q30.148-41.446 30.148-41.720\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(303.182 -21.207)\">\u003Cpath d=\"M40.140-43.763L40.140-44.978L38.926-44.978Q38.801-44.989 38.715-45.075Q38.629-45.161 38.629-45.290Q38.629-45.419 38.715-45.501Q38.801-45.583 38.926-45.595L40.140-45.595L40.140-46.818Q40.152-46.943 40.238-47.025Q40.324-47.107 40.453-47.107Q40.582-47.107 40.664-47.025Q40.746-46.943 40.758-46.818L40.758-45.595L41.972-45.595Q42.097-45.583 42.179-45.501Q42.261-45.419 42.261-45.290Q42.261-45.161 42.179-45.075Q42.097-44.989 41.972-44.978L40.758-44.978L40.758-43.763Q40.746-43.638 40.664-43.552Q40.582-43.466 40.453-43.466Q40.324-43.466 40.238-43.552Q40.152-43.638 40.140-43.763\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(303.182 -21.207)\">\u003Cpath d=\"M48.023-43.946L48.023-45.728L47.273-45.728Q47.074-45.751 47.023-45.970L47.023-46.056Q47.074-46.267 47.273-46.290L48.023-46.290L48.023-47.040Q48.074-47.247 48.273-47.275L48.418-47.275Q48.613-47.247 48.664-47.040L48.664-46.290L50.023-46.290Q50.215-46.271 50.273-46.056L50.273-45.970Q50.219-45.751 50.023-45.728L48.664-45.728L48.664-43.978Q48.664-43.361 49.238-43.361Q49.488-43.361 49.652-43.546Q49.816-43.732 49.816-43.978Q49.816-44.071 49.888-44.142Q49.961-44.212 50.062-44.224L50.207-44.224Q50.406-44.200 50.457-43.993L50.457-43.946Q50.457-43.622 50.273-43.359Q50.090-43.095 49.797-42.948Q49.504-42.802 49.183-42.802Q48.672-42.802 48.347-43.112Q48.023-43.423 48.023-43.946M51.140-43.079L51.140-43.169Q51.183-43.376 51.390-43.400L51.812-43.400L51.812-47.169L51.390-47.169Q51.183-47.193 51.140-47.407L51.140-47.497Q51.183-47.704 51.390-47.728L52.207-47.728Q52.402-47.704 52.453-47.497L52.453-45.946Q52.914-46.329 53.511-46.329Q53.859-46.329 54.097-46.189Q54.336-46.048 54.451-45.790Q54.566-45.532 54.566-45.177L54.566-43.400L54.992-43.400Q55.199-43.376 55.238-43.169L55.238-43.079Q55.199-42.864 54.992-42.841L53.597-42.841Q53.402-42.864 53.351-43.079L53.351-43.169Q53.402-43.380 53.597-43.400L53.926-43.400L53.926-45.146Q53.926-45.454 53.836-45.612Q53.746-45.771 53.453-45.771Q53.183-45.771 52.955-45.640Q52.726-45.509 52.590-45.280Q52.453-45.052 52.453-44.786L52.453-43.400L52.879-43.400Q53.086-43.376 53.125-43.169L53.125-43.079Q53.086-42.864 52.879-42.841L51.390-42.841Q51.183-42.864 51.140-43.079M58.828-44.329L56.386-44.329Q56.441-44.052 56.638-43.829Q56.836-43.607 57.113-43.484Q57.390-43.361 57.676-43.361Q58.148-43.361 58.371-43.650Q58.379-43.661 58.435-43.767Q58.492-43.872 58.541-43.915Q58.590-43.958 58.683-43.970L58.828-43.970Q59.019-43.950 59.078-43.736L59.078-43.681Q59.011-43.380 58.781-43.183Q58.551-42.986 58.238-42.894Q57.926-42.802 57.621-42.802Q57.136-42.802 56.697-43.030Q56.258-43.259 55.990-43.659Q55.722-44.060 55.722-44.552L55.722-44.611Q55.722-45.079 55.969-45.482Q56.215-45.884 56.623-46.118Q57.031-46.353 57.500-46.353Q58.004-46.353 58.357-46.130Q58.711-45.907 58.894-45.519Q59.078-45.130 59.078-44.626L59.078-44.568Q59.019-44.353 58.828-44.329M56.394-44.880L58.422-44.880Q58.375-45.290 58.136-45.542Q57.898-45.794 57.500-45.794Q57.105-45.794 56.799-45.532Q56.492-45.271 56.394-44.880\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(303.182 -21.207)\">\u003Cpath d=\"M64.833-43.064L64.368-45.728L64.208-45.728Q64.001-45.751 63.962-45.970L63.962-46.056Q64.001-46.267 64.208-46.290L65.376-46.290Q65.587-46.267 65.626-46.056L65.626-45.970Q65.587-45.751 65.376-45.728L64.903-45.728Q65.016-45.083 65.095-44.638Q65.173-44.193 65.223-43.874Q65.274-43.556 65.274-43.482Q65.282-43.654 65.567-44.650Q65.606-44.763 65.704-44.837Q65.802-44.911 65.923-44.911L66.001-44.911Q66.122-44.911 66.220-44.837Q66.317-44.763 66.352-44.650Q66.462-44.267 66.544-43.943Q66.626-43.618 66.626-43.482Q66.638-43.771 66.985-45.728L66.513-45.728Q66.305-45.751 66.266-45.970L66.266-46.056Q66.305-46.267 66.513-46.290L67.688-46.290Q67.880-46.267 67.938-46.056L67.938-45.970Q67.884-45.751 67.688-45.728L67.520-45.728L67.055-43.064Q67.032-42.946 66.944-42.874Q66.856-42.802 66.735-42.802L66.595-42.802Q66.473-42.802 66.378-42.874Q66.282-42.946 66.239-43.064Q66.192-43.243 66.120-43.499Q66.048-43.755 66.005-43.964Q65.962-44.173 65.962-44.275Q65.954-43.993 65.673-43.064Q65.645-42.954 65.548-42.878Q65.450-42.802 65.329-42.802L65.153-42.802Q65.032-42.802 64.944-42.874Q64.856-42.946 64.833-43.064M70.192-42.802Q69.720-42.802 69.335-43.046Q68.950-43.290 68.727-43.700Q68.505-44.111 68.505-44.568Q68.505-44.911 68.630-45.234Q68.755-45.556 68.985-45.810Q69.216-46.064 69.522-46.208Q69.829-46.353 70.192-46.353Q70.555-46.353 70.868-46.206Q71.180-46.060 71.403-45.814Q71.626-45.568 71.753-45.247Q71.880-44.927 71.880-44.568Q71.880-44.111 71.655-43.698Q71.430-43.286 71.046-43.044Q70.661-42.802 70.192-42.802M70.192-43.361Q70.657-43.361 70.948-43.755Q71.239-44.150 71.239-44.634Q71.239-44.927 71.104-45.195Q70.970-45.462 70.729-45.628Q70.489-45.794 70.192-45.794Q69.888-45.794 69.649-45.628Q69.411-45.462 69.276-45.195Q69.141-44.927 69.141-44.634Q69.141-44.154 69.434-43.757Q69.727-43.361 70.192-43.361M72.540-43.079L72.540-43.169Q72.598-43.376 72.790-43.400L73.501-43.400L73.501-45.728L72.790-45.728Q72.595-45.751 72.540-45.970L72.540-46.056Q72.598-46.267 72.790-46.290L73.891-46.290Q74.091-46.271 74.141-46.056L74.141-45.728Q74.403-46.013 74.759-46.171Q75.114-46.329 75.501-46.329Q75.794-46.329 76.028-46.195Q76.263-46.060 76.263-45.794Q76.263-45.626 76.153-45.509Q76.044-45.392 75.876-45.392Q75.723-45.392 75.608-45.503Q75.493-45.614 75.493-45.771Q75.118-45.771 74.804-45.570Q74.489-45.368 74.315-45.034Q74.141-44.700 74.141-44.321L74.141-43.400L75.087-43.400Q75.294-43.376 75.333-43.169L75.333-43.079Q75.294-42.864 75.087-42.841L72.790-42.841Q72.598-42.864 72.540-43.079M77.013-43.079L77.013-43.169Q77.063-43.376 77.259-43.400L78.364-43.400L78.364-47.169L77.259-47.169Q77.063-47.193 77.013-47.407L77.013-47.497Q77.063-47.704 77.259-47.728L78.755-47.728Q78.946-47.704 79.005-47.497L79.005-43.400L80.106-43.400Q80.305-43.376 80.356-43.169L80.356-43.079Q80.305-42.864 80.106-42.841L77.259-42.841Q77.063-42.864 77.013-43.079M82.673-42.802Q82.208-42.802 81.843-43.052Q81.477-43.302 81.272-43.706Q81.067-44.111 81.067-44.568Q81.067-44.911 81.192-45.232Q81.317-45.552 81.550-45.802Q81.782-46.052 82.087-46.191Q82.391-46.329 82.747-46.329Q83.259-46.329 83.665-46.009L83.665-47.169L83.243-47.169Q83.032-47.193 82.993-47.407L82.993-47.497Q83.032-47.704 83.243-47.728L84.055-47.728Q84.255-47.704 84.305-47.497L84.305-43.400L84.731-43.400Q84.938-43.376 84.977-43.169L84.977-43.079Q84.938-42.864 84.731-42.841L83.915-42.841Q83.716-42.864 83.665-43.079L83.665-43.208Q83.470-43.017 83.208-42.909Q82.946-42.802 82.673-42.802M82.712-43.361Q83.071-43.361 83.323-43.630Q83.575-43.900 83.665-44.275L83.665-45.107Q83.606-45.294 83.479-45.445Q83.352-45.595 83.175-45.683Q82.997-45.771 82.802-45.771Q82.493-45.771 82.243-45.601Q81.993-45.431 81.848-45.146Q81.704-44.861 81.704-44.560Q81.704-44.111 81.989-43.736Q82.274-43.361 82.712-43.361\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403-31.46H82.55v-22.763H-65.403Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-29.75 2.444)\">\u003Cpath d=\"M10.695-42.763Q10.261-42.763 9.929-43.001Q9.597-43.239 9.377-43.628Q9.156-44.017 9.049-44.454Q8.941-44.892 8.941-45.290Q8.941-45.681 9.051-46.124Q9.160-46.568 9.377-46.948Q9.594-47.329 9.928-47.570Q10.261-47.810 10.695-47.810Q11.250-47.810 11.650-47.411Q12.051-47.013 12.248-46.427Q12.445-45.841 12.445-45.290Q12.445-44.736 12.248-44.148Q12.051-43.560 11.650-43.161Q11.250-42.763 10.695-42.763M10.695-43.321Q10.996-43.321 11.213-43.538Q11.429-43.755 11.556-44.083Q11.683-44.411 11.744-44.757Q11.804-45.103 11.804-45.384Q11.804-45.634 11.742-45.960Q11.679-46.286 11.549-46.577Q11.418-46.868 11.205-47.058Q10.992-47.247 10.695-47.247Q10.320-47.247 10.068-46.935Q9.816-46.622 9.699-46.189Q9.582-45.755 9.582-45.384Q9.582-44.986 9.695-44.505Q9.808-44.025 10.056-43.673Q10.304-43.321 10.695-43.321M14.941-42.763Q14.508-42.763 14.176-43.001Q13.844-43.239 13.623-43.628Q13.402-44.017 13.295-44.454Q13.187-44.892 13.187-45.290Q13.187-45.681 13.297-46.124Q13.406-46.568 13.623-46.948Q13.840-47.329 14.174-47.570Q14.508-47.810 14.941-47.810Q15.496-47.810 15.896-47.411Q16.297-47.013 16.494-46.427Q16.691-45.841 16.691-45.290Q16.691-44.736 16.494-44.148Q16.297-43.560 15.896-43.161Q15.496-42.763 14.941-42.763M14.941-43.321Q15.242-43.321 15.459-43.538Q15.676-43.755 15.803-44.083Q15.929-44.411 15.990-44.757Q16.051-45.103 16.051-45.384Q16.051-45.634 15.988-45.960Q15.926-46.286 15.795-46.577Q15.664-46.868 15.451-47.058Q15.238-47.247 14.941-47.247Q14.566-47.247 14.314-46.935Q14.062-46.622 13.945-46.189Q13.828-45.755 13.828-45.384Q13.828-44.986 13.941-44.505Q14.054-44.025 14.303-43.673Q14.551-43.321 14.941-43.321\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-29.75 2.444)\">\u003Cpath d=\"M21.644-43.079L21.644-43.169Q21.695-43.376 21.890-43.400L22.773-43.400L22.773-45.728L21.918-45.728Q21.719-45.751 21.668-45.970L21.668-46.056Q21.719-46.267 21.918-46.290L22.773-46.290L22.773-46.743Q22.773-47.208 23.179-47.489Q23.586-47.771 24.066-47.771Q24.379-47.771 24.623-47.650Q24.867-47.529 24.867-47.247Q24.867-47.083 24.758-46.966Q24.648-46.849 24.484-46.849Q24.336-46.849 24.215-46.954Q24.094-47.060 24.094-47.208L24.012-47.208Q23.859-47.208 23.722-47.148Q23.586-47.087 23.500-46.972Q23.414-46.857 23.414-46.712L23.414-46.290L24.445-46.290Q24.640-46.271 24.691-46.056L24.691-45.970Q24.640-45.751 24.445-45.728L23.414-45.728L23.414-43.400L24.293-43.400Q24.488-43.376 24.539-43.169L24.539-43.079Q24.488-42.864 24.293-42.841L21.890-42.841Q21.695-42.864 21.644-43.079M27.691-42.802Q27.219-42.802 26.834-43.046Q26.449-43.290 26.226-43.700Q26.004-44.111 26.004-44.568Q26.004-44.911 26.129-45.234Q26.254-45.556 26.484-45.810Q26.715-46.064 27.021-46.208Q27.328-46.353 27.691-46.353Q28.054-46.353 28.367-46.206Q28.679-46.060 28.902-45.814Q29.125-45.568 29.252-45.247Q29.379-44.927 29.379-44.568Q29.379-44.111 29.154-43.698Q28.929-43.286 28.545-43.044Q28.160-42.802 27.691-42.802M27.691-43.361Q28.156-43.361 28.447-43.755Q28.738-44.150 28.738-44.634Q28.738-44.927 28.603-45.195Q28.469-45.462 28.228-45.628Q27.988-45.794 27.691-45.794Q27.387-45.794 27.148-45.628Q26.910-45.462 26.775-45.195Q26.640-44.927 26.640-44.634Q26.640-44.154 26.933-43.757Q27.226-43.361 27.691-43.361M30.558-43.696L30.558-45.728L30.137-45.728Q29.929-45.751 29.887-45.970L29.887-46.056Q29.933-46.267 30.137-46.290L30.953-46.290Q31.148-46.267 31.199-46.056L31.199-43.728Q31.199-43.493 31.369-43.427Q31.539-43.361 31.824-43.361Q32.031-43.361 32.226-43.437Q32.422-43.513 32.547-43.663Q32.672-43.814 32.672-44.025L32.672-45.728L32.250-45.728Q32.039-45.751 32-45.970L32-46.056Q32.039-46.267 32.250-46.290L33.062-46.290Q33.261-46.267 33.312-46.056L33.312-43.400L33.738-43.400Q33.945-43.376 33.984-43.169L33.984-43.079Q33.945-42.864 33.738-42.841L32.922-42.841Q32.722-42.864 32.672-43.064Q32.269-42.802 31.762-42.802Q31.527-42.802 31.312-42.843Q31.097-42.884 30.931-42.986Q30.765-43.087 30.662-43.265Q30.558-43.443 30.558-43.696M34.133-43.079L34.133-43.169Q34.176-43.376 34.383-43.400L34.804-43.400L34.804-45.728L34.383-45.728Q34.176-45.751 34.133-45.970L34.133-46.056Q34.179-46.267 34.383-46.290L35.199-46.290Q35.394-46.267 35.445-46.056L35.445-45.970L35.437-45.946Q35.664-46.126 35.937-46.228Q36.211-46.329 36.504-46.329Q36.851-46.329 37.090-46.189Q37.328-46.048 37.443-45.790Q37.558-45.532 37.558-45.177L37.558-43.400L37.984-43.400Q38.191-43.376 38.230-43.169L38.230-43.079Q38.191-42.864 37.984-42.841L36.590-42.841Q36.394-42.864 36.344-43.079L36.344-43.169Q36.394-43.380 36.590-43.400L36.918-43.400L36.918-45.146Q36.918-45.454 36.828-45.612Q36.738-45.771 36.445-45.771Q36.176-45.771 35.947-45.640Q35.719-45.509 35.582-45.280Q35.445-45.052 35.445-44.786L35.445-43.400L35.871-43.400Q36.078-43.376 36.117-43.169L36.117-43.079Q36.078-42.864 35.871-42.841L34.383-42.841Q34.176-42.864 34.133-43.079M40.172-42.802Q39.707-42.802 39.342-43.052Q38.976-43.302 38.771-43.706Q38.566-44.111 38.566-44.568Q38.566-44.911 38.691-45.232Q38.816-45.552 39.049-45.802Q39.281-46.052 39.586-46.191Q39.890-46.329 40.246-46.329Q40.758-46.329 41.164-46.009L41.164-47.169L40.742-47.169Q40.531-47.193 40.492-47.407L40.492-47.497Q40.531-47.704 40.742-47.728L41.554-47.728Q41.754-47.704 41.804-47.497L41.804-43.400L42.230-43.400Q42.437-43.376 42.476-43.169L42.476-43.079Q42.437-42.864 42.230-42.841L41.414-42.841Q41.215-42.864 41.164-43.079L41.164-43.208Q40.969-43.017 40.707-42.909Q40.445-42.802 40.172-42.802M40.211-43.361Q40.570-43.361 40.822-43.630Q41.074-43.900 41.164-44.275L41.164-45.107Q41.105-45.294 40.978-45.445Q40.851-45.595 40.674-45.683Q40.496-45.771 40.301-45.771Q39.992-45.771 39.742-45.601Q39.492-45.431 39.347-45.146Q39.203-44.861 39.203-44.560Q39.203-44.111 39.488-43.736Q39.773-43.361 40.211-43.361M42.961-43.954Q42.961-44.400 43.375-44.657Q43.789-44.915 44.330-45.015Q44.871-45.114 45.379-45.122Q45.379-45.337 45.244-45.489Q45.109-45.642 44.902-45.718Q44.695-45.794 44.484-45.794Q44.140-45.794 43.980-45.771L43.980-45.712Q43.980-45.544 43.861-45.429Q43.742-45.314 43.578-45.314Q43.402-45.314 43.287-45.437Q43.172-45.560 43.172-45.728Q43.172-46.134 43.553-46.243Q43.933-46.353 44.492-46.353Q44.761-46.353 45.029-46.275Q45.297-46.196 45.521-46.046Q45.746-45.896 45.883-45.675Q46.019-45.454 46.019-45.177L46.019-43.458Q46.019-43.400 46.547-43.400Q46.742-43.380 46.793-43.169L46.793-43.079Q46.742-42.864 46.547-42.841L46.402-42.841Q46.058-42.841 45.830-42.888Q45.601-42.935 45.457-43.122Q44.996-42.802 44.289-42.802Q43.953-42.802 43.648-42.943Q43.344-43.083 43.152-43.345Q42.961-43.607 42.961-43.954M43.601-43.946Q43.601-43.673 43.844-43.517Q44.086-43.361 44.371-43.361Q44.590-43.361 44.822-43.419Q45.054-43.478 45.217-43.616Q45.379-43.755 45.379-43.978L45.379-44.568Q45.097-44.568 44.681-44.511Q44.265-44.454 43.933-44.316Q43.601-44.177 43.601-43.946M48-43.946L48-45.728L47.250-45.728Q47.051-45.751 47-45.970L47-46.056Q47.051-46.267 47.250-46.290L48-46.290L48-47.040Q48.051-47.247 48.250-47.275L48.394-47.275Q48.590-47.247 48.640-47.040L48.640-46.290L50-46.290Q50.191-46.271 50.250-46.056L50.250-45.970Q50.195-45.751 50-45.728L48.640-45.728L48.640-43.978Q48.640-43.361 49.215-43.361Q49.465-43.361 49.629-43.546Q49.793-43.732 49.793-43.978Q49.793-44.071 49.865-44.142Q49.937-44.212 50.039-44.224L50.183-44.224Q50.383-44.200 50.433-43.993L50.433-43.946Q50.433-43.622 50.250-43.359Q50.066-43.095 49.773-42.948Q49.480-42.802 49.160-42.802Q48.648-42.802 48.324-43.112Q48-43.423 48-43.946M51.664-43.079L51.664-43.169Q51.715-43.376 51.910-43.400L52.949-43.400L52.949-45.728L51.976-45.728Q51.777-45.751 51.726-45.970L51.726-46.056Q51.777-46.267 51.976-46.290L53.344-46.290Q53.539-46.271 53.590-46.056L53.590-43.400L54.504-43.400Q54.699-43.376 54.750-43.169L54.750-43.079Q54.699-42.864 54.504-42.841L51.910-42.841Q51.715-42.864 51.664-43.079M52.695-47.267L52.695-47.321Q52.695-47.493 52.832-47.614Q52.969-47.736 53.144-47.736Q53.316-47.736 53.453-47.614Q53.590-47.493 53.590-47.321L53.590-47.267Q53.590-47.091 53.453-46.970Q53.316-46.849 53.144-46.849Q52.969-46.849 52.832-46.970Q52.695-47.091 52.695-47.267M57.414-42.802Q56.941-42.802 56.556-43.046Q56.172-43.290 55.949-43.700Q55.726-44.111 55.726-44.568Q55.726-44.911 55.851-45.234Q55.976-45.556 56.207-45.810Q56.437-46.064 56.744-46.208Q57.051-46.353 57.414-46.353Q57.777-46.353 58.090-46.206Q58.402-46.060 58.625-45.814Q58.847-45.568 58.974-45.247Q59.101-44.927 59.101-44.568Q59.101-44.111 58.877-43.698Q58.652-43.286 58.267-43.044Q57.883-42.802 57.414-42.802M57.414-43.361Q57.879-43.361 58.170-43.755Q58.461-44.150 58.461-44.634Q58.461-44.927 58.326-45.195Q58.191-45.462 57.951-45.628Q57.711-45.794 57.414-45.794Q57.109-45.794 56.871-45.628Q56.633-45.462 56.498-45.195Q56.363-44.927 56.363-44.634Q56.363-44.154 56.656-43.757Q56.949-43.361 57.414-43.361M59.609-43.079L59.609-43.169Q59.652-43.376 59.859-43.400L60.281-43.400L60.281-45.728L59.859-45.728Q59.652-45.751 59.609-45.970L59.609-46.056Q59.656-46.267 59.859-46.290L60.676-46.290Q60.871-46.267 60.922-46.056L60.922-45.970L60.914-45.946Q61.140-46.126 61.414-46.228Q61.687-46.329 61.980-46.329Q62.328-46.329 62.566-46.189Q62.804-46.048 62.920-45.790Q63.035-45.532 63.035-45.177L63.035-43.400L63.461-43.400Q63.668-43.376 63.707-43.169L63.707-43.079Q63.668-42.864 63.461-42.841L62.066-42.841Q61.871-42.864 61.820-43.079L61.820-43.169Q61.871-43.380 62.066-43.400L62.394-43.400L62.394-45.146Q62.394-45.454 62.304-45.612Q62.215-45.771 61.922-45.771Q61.652-45.771 61.424-45.640Q61.195-45.509 61.058-45.280Q60.922-45.052 60.922-44.786L60.922-43.400L61.347-43.400Q61.554-43.376 61.594-43.169L61.594-43.079Q61.554-42.864 61.347-42.841L59.859-42.841Q59.652-42.864 59.609-43.079M64.371-43.040L64.371-43.954Q64.398-44.161 64.609-44.185L64.777-44.185Q64.941-44.161 65-44.001Q65.203-43.361 65.929-43.361Q66.136-43.361 66.365-43.396Q66.594-43.431 66.761-43.546Q66.929-43.661 66.929-43.864Q66.929-44.075 66.707-44.189Q66.484-44.302 66.211-44.345L65.511-44.458Q64.371-44.669 64.371-45.392Q64.371-45.681 64.515-45.870Q64.660-46.060 64.900-46.167Q65.140-46.275 65.396-46.314Q65.652-46.353 65.929-46.353Q66.179-46.353 66.373-46.323Q66.566-46.294 66.730-46.216Q66.808-46.333 66.937-46.353L67.015-46.353Q67.113-46.341 67.176-46.279Q67.238-46.216 67.250-46.122L67.250-45.415Q67.238-45.321 67.176-45.255Q67.113-45.189 67.015-45.177L66.847-45.177Q66.754-45.189 66.687-45.255Q66.621-45.321 66.609-45.415Q66.609-45.794 65.914-45.794Q65.566-45.794 65.248-45.712Q64.929-45.630 64.929-45.384Q64.929-45.118 65.601-45.009L66.304-44.888Q66.789-44.806 67.138-44.558Q67.488-44.310 67.488-43.864Q67.488-43.474 67.252-43.232Q67.015-42.989 66.666-42.896Q66.316-42.802 65.929-42.802Q65.351-42.802 64.953-43.056Q64.883-42.931 64.834-42.874Q64.785-42.818 64.679-42.802L64.609-42.802Q64.394-42.825 64.371-43.040\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403-1.585H82.55v-22.762H-65.403Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-48.876 32.32)\">\u003Cpath d=\"M10.695-42.763Q10.261-42.763 9.929-43.001Q9.597-43.239 9.377-43.628Q9.156-44.017 9.049-44.454Q8.941-44.892 8.941-45.290Q8.941-45.681 9.051-46.124Q9.160-46.568 9.377-46.948Q9.594-47.329 9.928-47.570Q10.261-47.810 10.695-47.810Q11.250-47.810 11.650-47.411Q12.051-47.013 12.248-46.427Q12.445-45.841 12.445-45.290Q12.445-44.736 12.248-44.148Q12.051-43.560 11.650-43.161Q11.250-42.763 10.695-42.763M10.695-43.321Q10.996-43.321 11.213-43.538Q11.429-43.755 11.556-44.083Q11.683-44.411 11.744-44.757Q11.804-45.103 11.804-45.384Q11.804-45.634 11.742-45.960Q11.679-46.286 11.549-46.577Q11.418-46.868 11.205-47.058Q10.992-47.247 10.695-47.247Q10.320-47.247 10.068-46.935Q9.816-46.622 9.699-46.189Q9.582-45.755 9.582-45.384Q9.582-44.986 9.695-44.505Q9.808-44.025 10.056-43.673Q10.304-43.321 10.695-43.321M13.676-43.079L13.676-43.169Q13.726-43.376 13.926-43.400L14.742-43.400L14.742-46.583Q14.363-46.275 13.910-46.275Q13.679-46.275 13.629-46.505L13.629-46.595Q13.679-46.810 13.875-46.833Q14.203-46.833 14.457-47.071Q14.711-47.310 14.851-47.657Q14.922-47.786 15.078-47.810L15.133-47.810Q15.328-47.790 15.379-47.575L15.379-43.400L16.195-43.400Q16.394-43.376 16.445-43.169L16.445-43.079Q16.394-42.864 16.195-42.841L13.926-42.841Q13.726-42.864 13.676-43.079\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-48.876 32.32)\">\u003Cpath d=\"M21.269-43.079L21.269-43.169Q21.320-43.380 21.515-43.400L21.715-43.400L21.715-45.728L21.515-45.728Q21.308-45.751 21.269-45.970L21.269-46.056Q21.320-46.271 21.515-46.290L21.996-46.290Q22.187-46.267 22.246-46.056Q22.566-46.329 22.980-46.329Q23.172-46.329 23.340-46.220Q23.508-46.111 23.582-45.939Q23.758-46.130 23.980-46.230Q24.203-46.329 24.445-46.329Q24.863-46.329 25.017-45.987Q25.172-45.646 25.172-45.177L25.172-43.400L25.371-43.400Q25.582-43.376 25.621-43.169L25.621-43.079Q25.570-42.864 25.371-42.841L24.554-42.841Q24.359-42.864 24.308-43.079L24.308-43.169Q24.359-43.376 24.554-43.400L24.644-43.400L24.644-45.146Q24.644-45.771 24.394-45.771Q24.062-45.771 23.885-45.460Q23.707-45.150 23.707-44.786L23.707-43.400L23.910-43.400Q24.117-43.376 24.156-43.169L24.156-43.079Q24.105-42.864 23.910-42.841L23.094-42.841Q22.894-42.864 22.844-43.079L22.844-43.169Q22.894-43.376 23.094-43.400L23.179-43.400L23.179-45.146Q23.179-45.771 22.933-45.771Q22.601-45.771 22.424-45.458Q22.246-45.146 22.246-44.786L22.246-43.400L22.445-43.400Q22.652-43.376 22.691-43.169L22.691-43.079Q22.640-42.861 22.445-42.841L21.515-42.841Q21.308-42.864 21.269-43.079M25.976-43.954Q25.976-44.400 26.390-44.657Q26.804-44.915 27.345-45.015Q27.887-45.114 28.394-45.122Q28.394-45.337 28.260-45.489Q28.125-45.642 27.918-45.718Q27.711-45.794 27.500-45.794Q27.156-45.794 26.996-45.771L26.996-45.712Q26.996-45.544 26.877-45.429Q26.758-45.314 26.594-45.314Q26.418-45.314 26.303-45.437Q26.187-45.560 26.187-45.728Q26.187-46.134 26.568-46.243Q26.949-46.353 27.508-46.353Q27.777-46.353 28.045-46.275Q28.312-46.196 28.537-46.046Q28.762-45.896 28.898-45.675Q29.035-45.454 29.035-45.177L29.035-43.458Q29.035-43.400 29.562-43.400Q29.758-43.380 29.808-43.169L29.808-43.079Q29.758-42.864 29.562-42.841L29.418-42.841Q29.074-42.841 28.845-42.888Q28.617-42.935 28.472-43.122Q28.012-42.802 27.304-42.802Q26.969-42.802 26.664-42.943Q26.359-43.083 26.168-43.345Q25.976-43.607 25.976-43.954M26.617-43.946Q26.617-43.673 26.859-43.517Q27.101-43.361 27.387-43.361Q27.605-43.361 27.838-43.419Q28.070-43.478 28.232-43.616Q28.394-43.755 28.394-43.978L28.394-44.568Q28.113-44.568 27.697-44.511Q27.281-44.454 26.949-44.316Q26.617-44.177 26.617-43.946M30.375-44.568Q30.375-45.048 30.619-45.462Q30.863-45.876 31.279-46.114Q31.695-46.353 32.176-46.353Q32.730-46.353 33.109-46.243Q33.488-46.134 33.488-45.728Q33.488-45.560 33.375-45.437Q33.261-45.314 33.090-45.314Q32.918-45.314 32.799-45.429Q32.679-45.544 32.679-45.712L32.679-45.771Q32.519-45.794 32.183-45.794Q31.855-45.794 31.588-45.624Q31.320-45.454 31.168-45.171Q31.015-44.888 31.015-44.568Q31.015-44.247 31.187-43.966Q31.359-43.685 31.644-43.523Q31.929-43.361 32.258-43.361Q32.570-43.361 32.697-43.464Q32.824-43.568 32.941-43.757Q33.058-43.946 33.176-43.962L33.344-43.962Q33.449-43.950 33.513-43.882Q33.578-43.814 33.578-43.712Q33.578-43.665 33.558-43.626Q33.449-43.333 33.246-43.154Q33.043-42.974 32.767-42.888Q32.492-42.802 32.176-42.802Q31.691-42.802 31.275-43.040Q30.859-43.279 30.617-43.681Q30.375-44.083 30.375-44.568M34.133-43.079L34.133-43.169Q34.176-43.376 34.383-43.400L34.804-43.400L34.804-47.169L34.383-47.169Q34.176-47.193 34.133-47.407L34.133-47.497Q34.176-47.704 34.383-47.728L35.199-47.728Q35.394-47.704 35.445-47.497L35.445-45.946Q35.906-46.329 36.504-46.329Q36.851-46.329 37.090-46.189Q37.328-46.048 37.443-45.790Q37.558-45.532 37.558-45.177L37.558-43.400L37.984-43.400Q38.191-43.376 38.230-43.169L38.230-43.079Q38.191-42.864 37.984-42.841L36.590-42.841Q36.394-42.864 36.344-43.079L36.344-43.169Q36.394-43.380 36.590-43.400L36.918-43.400L36.918-45.146Q36.918-45.454 36.828-45.612Q36.738-45.771 36.445-45.771Q36.176-45.771 35.947-45.640Q35.719-45.509 35.582-45.280Q35.445-45.052 35.445-44.786L35.445-43.400L35.871-43.400Q36.078-43.376 36.117-43.169L36.117-43.079Q36.078-42.864 35.871-42.841L34.383-42.841Q34.176-42.864 34.133-43.079M38.926-43.079L38.926-43.169Q38.976-43.376 39.172-43.400L40.211-43.400L40.211-45.728L39.238-45.728Q39.039-45.751 38.988-45.970L38.988-46.056Q39.039-46.267 39.238-46.290L40.605-46.290Q40.801-46.271 40.851-46.056L40.851-43.400L41.765-43.400Q41.961-43.376 42.011-43.169L42.011-43.079Q41.961-42.864 41.765-42.841L39.172-42.841Q38.976-42.864 38.926-43.079M39.957-47.267L39.957-47.321Q39.957-47.493 40.094-47.614Q40.230-47.736 40.406-47.736Q40.578-47.736 40.715-47.614Q40.851-47.493 40.851-47.321L40.851-47.267Q40.851-47.091 40.715-46.970Q40.578-46.849 40.406-46.849Q40.230-46.849 40.094-46.970Q39.957-47.091 39.957-47.267M42.625-43.079L42.625-43.169Q42.668-43.376 42.875-43.400L43.297-43.400L43.297-45.728L42.875-45.728Q42.668-45.751 42.625-45.970L42.625-46.056Q42.672-46.267 42.875-46.290L43.691-46.290Q43.886-46.267 43.937-46.056L43.937-45.970L43.929-45.946Q44.156-46.126 44.429-46.228Q44.703-46.329 44.996-46.329Q45.344-46.329 45.582-46.189Q45.820-46.048 45.935-45.790Q46.051-45.532 46.051-45.177L46.051-43.400L46.476-43.400Q46.683-43.376 46.722-43.169L46.722-43.079Q46.683-42.864 46.476-42.841L45.082-42.841Q44.886-42.864 44.836-43.079L44.836-43.169Q44.886-43.380 45.082-43.400L45.410-43.400L45.410-45.146Q45.410-45.454 45.320-45.612Q45.230-45.771 44.937-45.771Q44.668-45.771 44.439-45.640Q44.211-45.509 44.074-45.280Q43.937-45.052 43.937-44.786L43.937-43.400L44.363-43.400Q44.570-43.376 44.609-43.169L44.609-43.079Q44.570-42.864 44.363-42.841L42.875-42.841Q42.668-42.864 42.625-43.079M50.312-44.329L47.871-44.329Q47.926-44.052 48.123-43.829Q48.320-43.607 48.597-43.484Q48.875-43.361 49.160-43.361Q49.633-43.361 49.855-43.650Q49.863-43.661 49.920-43.767Q49.976-43.872 50.025-43.915Q50.074-43.958 50.168-43.970L50.312-43.970Q50.504-43.950 50.562-43.736L50.562-43.681Q50.496-43.380 50.265-43.183Q50.035-42.986 49.722-42.894Q49.410-42.802 49.105-42.802Q48.621-42.802 48.181-43.030Q47.742-43.259 47.474-43.659Q47.207-44.060 47.207-44.552L47.207-44.611Q47.207-45.079 47.453-45.482Q47.699-45.884 48.107-46.118Q48.515-46.353 48.984-46.353Q49.488-46.353 49.842-46.130Q50.195-45.907 50.379-45.519Q50.562-45.130 50.562-44.626L50.562-44.568Q50.504-44.353 50.312-44.329M47.879-44.880L49.906-44.880Q49.859-45.290 49.621-45.542Q49.383-45.794 48.984-45.794Q48.590-45.794 48.283-45.532Q47.976-45.271 47.879-44.880M54.543-44.978L51.801-44.978Q51.676-44.989 51.590-45.075Q51.504-45.161 51.504-45.290Q51.504-45.419 51.590-45.501Q51.676-45.583 51.801-45.595L54.543-45.595Q54.668-45.583 54.750-45.501Q54.832-45.419 54.832-45.290Q54.832-45.161 54.750-45.075Q54.668-44.989 54.543-44.978M55.742-43.079L55.742-43.169Q55.793-43.376 55.988-43.400L57.094-43.400L57.094-47.169L55.988-47.169Q55.793-47.193 55.742-47.407L55.742-47.497Q55.793-47.704 55.988-47.728L57.484-47.728Q57.676-47.704 57.734-47.497L57.734-43.400L58.836-43.400Q59.035-43.376 59.086-43.169L59.086-43.079Q59.035-42.864 58.836-42.841L55.988-42.841Q55.793-42.864 55.742-43.079M63.051-44.329L60.609-44.329Q60.664-44.052 60.861-43.829Q61.058-43.607 61.336-43.484Q61.613-43.361 61.898-43.361Q62.371-43.361 62.594-43.650Q62.601-43.661 62.658-43.767Q62.715-43.872 62.763-43.915Q62.812-43.958 62.906-43.970L63.051-43.970Q63.242-43.950 63.301-43.736L63.301-43.681Q63.234-43.380 63.004-43.183Q62.773-42.986 62.461-42.894Q62.148-42.802 61.844-42.802Q61.359-42.802 60.920-43.030Q60.480-43.259 60.213-43.659Q59.945-44.060 59.945-44.552L59.945-44.611Q59.945-45.079 60.191-45.482Q60.437-45.884 60.845-46.118Q61.254-46.353 61.722-46.353Q62.226-46.353 62.580-46.130Q62.933-45.907 63.117-45.519Q63.301-45.130 63.301-44.626L63.301-44.568Q63.242-44.353 63.051-44.329M60.617-44.880L62.644-44.880Q62.597-45.290 62.359-45.542Q62.121-45.794 61.722-45.794Q61.328-45.794 61.021-45.532Q60.715-45.271 60.617-44.880M65.441-43.064L64.554-45.728L64.234-45.728Q64.035-45.751 63.984-45.970L63.984-46.056Q64.035-46.267 64.234-46.290L65.394-46.290Q65.590-46.271 65.640-46.056L65.640-45.970Q65.590-45.751 65.394-45.728L65.113-45.728L65.906-43.353L66.695-45.728L66.418-45.728Q66.219-45.751 66.168-45.970L66.168-46.056Q66.219-46.267 66.418-46.290L67.578-46.290Q67.773-46.267 67.824-46.056L67.824-45.970Q67.773-45.751 67.578-45.728L67.258-45.728L66.371-43.064Q66.328-42.950 66.226-42.876Q66.125-42.802 66-42.802L65.808-42.802Q65.691-42.802 65.588-42.874Q65.484-42.946 65.441-43.064M71.543-44.329L69.101-44.329Q69.156-44.052 69.353-43.829Q69.551-43.607 69.828-43.484Q70.105-43.361 70.390-43.361Q70.863-43.361 71.086-43.650Q71.094-43.661 71.150-43.767Q71.207-43.872 71.256-43.915Q71.304-43.958 71.398-43.970L71.543-43.970Q71.734-43.950 71.793-43.736L71.793-43.681Q71.726-43.380 71.496-43.183Q71.265-42.986 70.953-42.894Q70.640-42.802 70.336-42.802Q69.851-42.802 69.412-43.030Q68.972-43.259 68.705-43.659Q68.437-44.060 68.437-44.552L68.437-44.611Q68.437-45.079 68.683-45.482Q68.929-45.884 69.338-46.118Q69.746-46.353 70.215-46.353Q70.719-46.353 71.072-46.130Q71.426-45.907 71.609-45.519Q71.793-45.130 71.793-44.626L71.793-44.568Q71.734-44.353 71.543-44.329M69.109-44.880L71.136-44.880Q71.090-45.290 70.851-45.542Q70.613-45.794 70.215-45.794Q69.820-45.794 69.513-45.532Q69.207-45.271 69.109-44.880M72.726-43.079L72.726-43.169Q72.777-43.376 72.972-43.400L74.078-43.400L74.078-47.169L72.972-47.169Q72.777-47.193 72.726-47.407L72.726-47.497Q72.777-47.704 72.972-47.728L74.469-47.728Q74.660-47.704 74.719-47.497L74.719-43.400L75.820-43.400Q76.019-43.376 76.070-43.169L76.070-43.079Q76.019-42.864 75.820-42.841L72.972-42.841Q72.777-42.864 72.726-43.079\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-48.876 32.32)\">\u003Cpath d=\"M81.083-43.079L81.083-43.169Q81.122-43.376 81.329-43.400L81.735-43.400L82.665-44.618L81.794-45.728L81.376-45.728Q81.180-45.747 81.130-45.970L81.130-46.056Q81.180-46.267 81.376-46.290L82.536-46.290Q82.735-46.267 82.786-46.056L82.786-45.970Q82.735-45.751 82.536-45.728L82.427-45.728L82.923-45.071L83.399-45.728L83.282-45.728Q83.083-45.751 83.032-45.970L83.032-46.056Q83.083-46.267 83.282-46.290L84.442-46.290Q84.638-46.271 84.688-46.056L84.688-45.970Q84.638-45.751 84.442-45.728L84.032-45.728L83.184-44.618L84.145-43.400L84.552-43.400Q84.751-43.376 84.802-43.169L84.802-43.079Q84.763-42.864 84.552-42.841L83.399-42.841Q83.192-42.864 83.153-43.079L83.153-43.169Q83.192-43.376 83.399-43.400L83.528-43.400L82.923-44.255L82.337-43.400L82.481-43.400Q82.688-43.376 82.727-43.169L82.727-43.079Q82.688-42.864 82.481-42.841L81.329-42.841Q81.134-42.861 81.083-43.079M85.423-44.255Q85.423-44.540 85.579-44.794Q85.735-45.048 85.985-45.222Q86.235-45.396 86.520-45.482Q86.282-45.556 86.055-45.698Q85.829-45.841 85.686-46.050Q85.544-46.259 85.544-46.505Q85.544-46.904 85.790-47.198Q86.036-47.493 86.419-47.652Q86.802-47.810 87.192-47.810Q87.583-47.810 87.966-47.652Q88.348-47.493 88.595-47.195Q88.841-46.896 88.841-46.505Q88.841-46.259 88.698-46.052Q88.555-45.845 88.329-45.700Q88.102-45.556 87.864-45.482Q88.317-45.345 88.638-45.019Q88.958-44.693 88.958-44.255Q88.958-43.818 88.700-43.474Q88.442-43.130 88.032-42.946Q87.622-42.763 87.192-42.763Q86.763-42.763 86.352-42.945Q85.942-43.126 85.682-43.470Q85.423-43.814 85.423-44.255M86.063-44.255Q86.063-43.982 86.229-43.767Q86.395-43.552 86.657-43.437Q86.919-43.321 87.192-43.321Q87.466-43.321 87.725-43.437Q87.985-43.552 88.151-43.769Q88.317-43.986 88.317-44.255Q88.317-44.532 88.151-44.749Q87.985-44.966 87.725-45.083Q87.466-45.200 87.192-45.200Q86.919-45.200 86.657-45.083Q86.395-44.966 86.229-44.751Q86.063-44.536 86.063-44.255M86.184-46.505Q86.184-46.267 86.341-46.099Q86.497-45.931 86.733-45.847Q86.970-45.763 87.192-45.763Q87.411-45.763 87.649-45.847Q87.888-45.931 88.044-46.101Q88.200-46.271 88.200-46.505Q88.200-46.739 88.044-46.909Q87.888-47.079 87.649-47.163Q87.411-47.247 87.192-47.247Q86.970-47.247 86.733-47.163Q86.497-47.079 86.341-46.911Q86.184-46.743 86.184-46.505M91.438-42.763Q90.798-42.763 90.411-43.140Q90.024-43.517 89.866-44.089Q89.708-44.661 89.708-45.290Q89.708-45.755 89.868-46.210Q90.028-46.665 90.317-47.025Q90.606-47.384 91.014-47.597Q91.423-47.810 91.911-47.810Q92.184-47.810 92.434-47.712Q92.684-47.614 92.837-47.419Q92.989-47.224 92.989-46.931Q92.989-46.755 92.876-46.634Q92.763-46.513 92.591-46.513Q92.415-46.513 92.298-46.626Q92.180-46.739 92.180-46.911Q92.180-47.032 92.255-47.154Q92.145-47.247 91.911-47.247Q91.493-47.247 91.157-47.007Q90.821-46.767 90.616-46.380Q90.411-45.993 90.364-45.595Q90.602-45.794 90.911-45.902Q91.220-46.009 91.540-46.009Q91.880-46.009 92.179-45.884Q92.477-45.759 92.696-45.540Q92.915-45.321 93.040-45.023Q93.165-44.724 93.165-44.384Q93.165-44.036 93.026-43.736Q92.888-43.435 92.647-43.218Q92.407-43.001 92.093-42.882Q91.778-42.763 91.438-42.763M90.454-44.306Q90.516-44.044 90.645-43.820Q90.774-43.595 90.973-43.458Q91.173-43.321 91.438-43.321Q91.891-43.321 92.208-43.628Q92.524-43.935 92.524-44.384Q92.524-44.665 92.389-44.911Q92.255-45.157 92.018-45.300Q91.782-45.443 91.485-45.443Q91.095-45.443 90.763-45.216Q90.430-44.989 90.430-44.618Q90.430-44.579 90.446-44.501Q90.462-44.423 90.462-44.384Q90.462-44.357 90.460-44.341Q90.458-44.325 90.454-44.306M97.059-44.978L94.317-44.978Q94.192-44.989 94.106-45.075Q94.020-45.161 94.020-45.290Q94.020-45.419 94.106-45.501Q94.192-45.583 94.317-45.595L97.059-45.595Q97.184-45.583 97.266-45.501Q97.348-45.419 97.348-45.290Q97.348-45.161 97.266-45.075Q97.184-44.989 97.059-44.978M99.930-42.763Q99.290-42.763 98.903-43.140Q98.516-43.517 98.358-44.089Q98.200-44.661 98.200-45.290Q98.200-45.755 98.360-46.210Q98.520-46.665 98.809-47.025Q99.098-47.384 99.507-47.597Q99.915-47.810 100.403-47.810Q100.677-47.810 100.927-47.712Q101.177-47.614 101.329-47.419Q101.481-47.224 101.481-46.931Q101.481-46.755 101.368-46.634Q101.255-46.513 101.083-46.513Q100.907-46.513 100.790-46.626Q100.673-46.739 100.673-46.911Q100.673-47.032 100.747-47.154Q100.638-47.247 100.403-47.247Q99.985-47.247 99.649-47.007Q99.313-46.767 99.108-46.380Q98.903-45.993 98.856-45.595Q99.095-45.794 99.403-45.902Q99.712-46.009 100.032-46.009Q100.372-46.009 100.671-45.884Q100.970-45.759 101.188-45.540Q101.407-45.321 101.532-45.023Q101.657-44.724 101.657-44.384Q101.657-44.036 101.518-43.736Q101.380-43.435 101.139-43.218Q100.899-43.001 100.585-42.882Q100.270-42.763 99.930-42.763M98.946-44.306Q99.009-44.044 99.138-43.820Q99.266-43.595 99.466-43.458Q99.665-43.321 99.930-43.321Q100.384-43.321 100.700-43.628Q101.016-43.935 101.016-44.384Q101.016-44.665 100.882-44.911Q100.747-45.157 100.511-45.300Q100.274-45.443 99.977-45.443Q99.587-45.443 99.255-45.216Q98.923-44.989 98.923-44.618Q98.923-44.579 98.938-44.501Q98.954-44.423 98.954-44.384Q98.954-44.357 98.952-44.341Q98.950-44.325 98.946-44.306M104.614-44.185L102.544-44.185Q102.348-44.208 102.294-44.427L102.294-44.665Q102.294-44.739 102.337-44.810L104.184-47.681Q104.270-47.810 104.423-47.810L104.880-47.810Q104.989-47.810 105.067-47.732Q105.145-47.654 105.145-47.544L105.145-44.743L105.809-44.743Q106.005-44.720 106.055-44.513L106.055-44.427Q106.005-44.208 105.809-44.185L105.145-44.185L105.145-43.400L105.720-43.400Q105.927-43.376 105.966-43.169L105.966-43.079Q105.927-42.864 105.720-42.841L104.040-42.841Q103.833-42.864 103.790-43.079L103.790-43.169Q103.833-43.376 104.040-43.400L104.614-43.400L104.614-44.185M104.614-47.337L102.942-44.743L104.614-44.743\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 28.29H82.55V5.529H-65.403Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-51 62.195)\">\u003Cpath d=\"M10.695-42.763Q10.261-42.763 9.929-43.001Q9.597-43.239 9.377-43.628Q9.156-44.017 9.049-44.454Q8.941-44.892 8.941-45.290Q8.941-45.681 9.051-46.124Q9.160-46.568 9.377-46.948Q9.594-47.329 9.928-47.570Q10.261-47.810 10.695-47.810Q11.250-47.810 11.650-47.411Q12.051-47.013 12.248-46.427Q12.445-45.841 12.445-45.290Q12.445-44.736 12.248-44.148Q12.051-43.560 11.650-43.161Q11.250-42.763 10.695-42.763M10.695-43.321Q10.996-43.321 11.213-43.538Q11.429-43.755 11.556-44.083Q11.683-44.411 11.744-44.757Q11.804-45.103 11.804-45.384Q11.804-45.634 11.742-45.960Q11.679-46.286 11.549-46.577Q11.418-46.868 11.205-47.058Q10.992-47.247 10.695-47.247Q10.320-47.247 10.068-46.935Q9.816-46.622 9.699-46.189Q9.582-45.755 9.582-45.384Q9.582-44.986 9.695-44.505Q9.808-44.025 10.056-43.673Q10.304-43.321 10.695-43.321M13.246-43.079L13.246-43.154Q13.277-43.321 13.379-43.368L14.668-44.435Q15-44.712 15.181-44.864Q15.363-45.017 15.558-45.237Q15.754-45.458 15.875-45.708Q15.996-45.958 15.996-46.224Q15.996-46.548 15.820-46.782Q15.644-47.017 15.365-47.132Q15.086-47.247 14.765-47.247Q14.508-47.247 14.279-47.124Q14.051-47.001 13.949-46.786Q14.051-46.654 14.051-46.505Q14.051-46.345 13.931-46.222Q13.812-46.099 13.652-46.099Q13.476-46.099 13.361-46.224Q13.246-46.349 13.246-46.521Q13.246-46.814 13.381-47.056Q13.515-47.298 13.754-47.470Q13.992-47.642 14.260-47.726Q14.527-47.810 14.820-47.810Q15.301-47.810 15.717-47.620Q16.133-47.431 16.385-47.070Q16.636-46.708 16.636-46.224Q16.636-45.880 16.504-45.577Q16.371-45.275 16.146-45.015Q15.922-44.755 15.613-44.493Q15.304-44.232 15.094-44.056L14.285-43.400L15.996-43.400L15.996-43.544Q16.047-43.755 16.246-43.779L16.386-43.779Q16.586-43.759 16.636-43.544L16.636-43.079Q16.586-42.864 16.386-42.841L13.492-42.841Q13.297-42.861 13.246-43.079\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-51 62.195)\">\u003Cpath d=\"M21.941-43.079L21.941-43.169Q21.992-43.376 22.187-43.400L23.226-43.400L23.226-45.728L22.254-45.728Q22.054-45.751 22.004-45.970L22.004-46.056Q22.054-46.267 22.254-46.290L23.621-46.290Q23.816-46.271 23.867-46.056L23.867-43.400L24.781-43.400Q24.976-43.376 25.027-43.169L25.027-43.079Q24.976-42.864 24.781-42.841L22.187-42.841Q21.992-42.864 21.941-43.079M22.972-47.267L22.972-47.321Q22.972-47.493 23.109-47.614Q23.246-47.736 23.422-47.736Q23.594-47.736 23.730-47.614Q23.867-47.493 23.867-47.321L23.867-47.267Q23.867-47.091 23.730-46.970Q23.594-46.849 23.422-46.849Q23.246-46.849 23.109-46.970Q22.972-47.091 22.972-47.267M25.640-43.079L25.640-43.169Q25.683-43.376 25.890-43.400L26.312-43.400L26.312-45.728L25.890-45.728Q25.683-45.751 25.640-45.970L25.640-46.056Q25.687-46.267 25.890-46.290L26.707-46.290Q26.902-46.267 26.953-46.056L26.953-45.970L26.945-45.946Q27.172-46.126 27.445-46.228Q27.719-46.329 28.012-46.329Q28.359-46.329 28.597-46.189Q28.836-46.048 28.951-45.790Q29.066-45.532 29.066-45.177L29.066-43.400L29.492-43.400Q29.699-43.376 29.738-43.169L29.738-43.079Q29.699-42.864 29.492-42.841L28.097-42.841Q27.902-42.864 27.851-43.079L27.851-43.169Q27.902-43.380 28.097-43.400L28.426-43.400L28.426-45.146Q28.426-45.454 28.336-45.612Q28.246-45.771 27.953-45.771Q27.683-45.771 27.455-45.640Q27.226-45.509 27.090-45.280Q26.953-45.052 26.953-44.786L26.953-43.400L27.379-43.400Q27.586-43.376 27.625-43.169L27.625-43.079Q27.586-42.864 27.379-42.841L25.890-42.841Q25.683-42.864 25.640-43.079M30.402-43.040L30.402-43.954Q30.429-44.161 30.640-44.185L30.808-44.185Q30.972-44.161 31.031-44.001Q31.234-43.361 31.961-43.361Q32.168-43.361 32.396-43.396Q32.625-43.431 32.793-43.546Q32.961-43.661 32.961-43.864Q32.961-44.075 32.738-44.189Q32.515-44.302 32.242-44.345L31.543-44.458Q30.402-44.669 30.402-45.392Q30.402-45.681 30.547-45.870Q30.691-46.060 30.931-46.167Q31.172-46.275 31.428-46.314Q31.683-46.353 31.961-46.353Q32.211-46.353 32.404-46.323Q32.597-46.294 32.761-46.216Q32.840-46.333 32.969-46.353L33.047-46.353Q33.144-46.341 33.207-46.279Q33.269-46.216 33.281-46.122L33.281-45.415Q33.269-45.321 33.207-45.255Q33.144-45.189 33.047-45.177L32.879-45.177Q32.785-45.189 32.719-45.255Q32.652-45.321 32.640-45.415Q32.640-45.794 31.945-45.794Q31.597-45.794 31.279-45.712Q30.961-45.630 30.961-45.384Q30.961-45.118 31.633-45.009L32.336-44.888Q32.820-44.806 33.170-44.558Q33.519-44.310 33.519-43.864Q33.519-43.474 33.283-43.232Q33.047-42.989 32.697-42.896Q32.347-42.802 31.961-42.802Q31.383-42.802 30.984-43.056Q30.914-42.931 30.865-42.874Q30.816-42.818 30.711-42.802L30.640-42.802Q30.426-42.825 30.402-43.040M35.261-43.946L35.261-45.728L34.511-45.728Q34.312-45.751 34.261-45.970L34.261-46.056Q34.312-46.267 34.511-46.290L35.261-46.290L35.261-47.040Q35.312-47.247 35.511-47.275L35.656-47.275Q35.851-47.247 35.902-47.040L35.902-46.290L37.261-46.290Q37.453-46.271 37.511-46.056L37.511-45.970Q37.457-45.751 37.261-45.728L35.902-45.728L35.902-43.978Q35.902-43.361 36.476-43.361Q36.726-43.361 36.890-43.546Q37.054-43.732 37.054-43.978Q37.054-44.071 37.127-44.142Q37.199-44.212 37.301-44.224L37.445-44.224Q37.644-44.200 37.695-43.993L37.695-43.946Q37.695-43.622 37.511-43.359Q37.328-43.095 37.035-42.948Q36.742-42.802 36.422-42.802Q35.910-42.802 35.586-43.112Q35.261-43.423 35.261-43.946M38.531-43.079L38.531-43.169Q38.590-43.376 38.781-43.400L39.492-43.400L39.492-45.728L38.781-45.728Q38.586-45.751 38.531-45.970L38.531-46.056Q38.590-46.267 38.781-46.290L39.883-46.290Q40.082-46.271 40.133-46.056L40.133-45.728Q40.394-46.013 40.750-46.171Q41.105-46.329 41.492-46.329Q41.785-46.329 42.019-46.195Q42.254-46.060 42.254-45.794Q42.254-45.626 42.144-45.509Q42.035-45.392 41.867-45.392Q41.715-45.392 41.599-45.503Q41.484-45.614 41.484-45.771Q41.109-45.771 40.795-45.570Q40.480-45.368 40.306-45.034Q40.133-44.700 40.133-44.321L40.133-43.400L41.078-43.400Q41.285-43.376 41.324-43.169L41.324-43.079Q41.285-42.864 41.078-42.841L38.781-42.841Q38.590-42.864 38.531-43.079M43.297-43.696L43.297-45.728L42.875-45.728Q42.668-45.751 42.625-45.970L42.625-46.056Q42.672-46.267 42.875-46.290L43.691-46.290Q43.886-46.267 43.937-46.056L43.937-43.728Q43.937-43.493 44.107-43.427Q44.277-43.361 44.562-43.361Q44.769-43.361 44.965-43.437Q45.160-43.513 45.285-43.663Q45.410-43.814 45.410-44.025L45.410-45.728L44.988-45.728Q44.777-45.751 44.738-45.970L44.738-46.056Q44.777-46.267 44.988-46.290L45.801-46.290Q46-46.267 46.051-46.056L46.051-43.400L46.476-43.400Q46.683-43.376 46.722-43.169L46.722-43.079Q46.683-42.864 46.476-42.841L45.660-42.841Q45.461-42.864 45.410-43.064Q45.008-42.802 44.500-42.802Q44.265-42.802 44.051-42.843Q43.836-42.884 43.670-42.986Q43.504-43.087 43.400-43.265Q43.297-43.443 43.297-43.696M47.359-44.568Q47.359-45.048 47.603-45.462Q47.847-45.876 48.263-46.114Q48.679-46.353 49.160-46.353Q49.715-46.353 50.094-46.243Q50.472-46.134 50.472-45.728Q50.472-45.560 50.359-45.437Q50.246-45.314 50.074-45.314Q49.902-45.314 49.783-45.429Q49.664-45.544 49.664-45.712L49.664-45.771Q49.504-45.794 49.168-45.794Q48.840-45.794 48.572-45.624Q48.304-45.454 48.152-45.171Q48-44.888 48-44.568Q48-44.247 48.172-43.966Q48.344-43.685 48.629-43.523Q48.914-43.361 49.242-43.361Q49.554-43.361 49.681-43.464Q49.808-43.568 49.926-43.757Q50.043-43.946 50.160-43.962L50.328-43.962Q50.433-43.950 50.498-43.882Q50.562-43.814 50.562-43.712Q50.562-43.665 50.543-43.626Q50.433-43.333 50.230-43.154Q50.027-42.974 49.752-42.888Q49.476-42.802 49.160-42.802Q48.676-42.802 48.260-43.040Q47.844-43.279 47.601-43.681Q47.359-44.083 47.359-44.568M52.246-43.946L52.246-45.728L51.496-45.728Q51.297-45.751 51.246-45.970L51.246-46.056Q51.297-46.267 51.496-46.290L52.246-46.290L52.246-47.040Q52.297-47.247 52.496-47.275L52.640-47.275Q52.836-47.247 52.886-47.040L52.886-46.290L54.246-46.290Q54.437-46.271 54.496-46.056L54.496-45.970Q54.441-45.751 54.246-45.728L52.886-45.728L52.886-43.978Q52.886-43.361 53.461-43.361Q53.711-43.361 53.875-43.546Q54.039-43.732 54.039-43.978Q54.039-44.071 54.111-44.142Q54.183-44.212 54.285-44.224L54.429-44.224Q54.629-44.200 54.679-43.993L54.679-43.946Q54.679-43.622 54.496-43.359Q54.312-43.095 54.019-42.948Q53.726-42.802 53.406-42.802Q52.894-42.802 52.570-43.112Q52.246-43.423 52.246-43.946M55.910-43.079L55.910-43.169Q55.961-43.376 56.156-43.400L57.195-43.400L57.195-45.728L56.222-45.728Q56.023-45.751 55.972-45.970L55.972-46.056Q56.023-46.267 56.222-46.290L57.590-46.290Q57.785-46.271 57.836-46.056L57.836-43.400L58.750-43.400Q58.945-43.376 58.996-43.169L58.996-43.079Q58.945-42.864 58.750-42.841L56.156-42.841Q55.961-42.864 55.910-43.079M56.941-47.267L56.941-47.321Q56.941-47.493 57.078-47.614Q57.215-47.736 57.390-47.736Q57.562-47.736 57.699-47.614Q57.836-47.493 57.836-47.321L57.836-47.267Q57.836-47.091 57.699-46.970Q57.562-46.849 57.390-46.849Q57.215-46.849 57.078-46.970Q56.941-47.091 56.941-47.267M61.660-42.802Q61.187-42.802 60.803-43.046Q60.418-43.290 60.195-43.700Q59.972-44.111 59.972-44.568Q59.972-44.911 60.097-45.234Q60.222-45.556 60.453-45.810Q60.683-46.064 60.990-46.208Q61.297-46.353 61.660-46.353Q62.023-46.353 62.336-46.206Q62.648-46.060 62.871-45.814Q63.094-45.568 63.220-45.247Q63.347-44.927 63.347-44.568Q63.347-44.111 63.123-43.698Q62.898-43.286 62.513-43.044Q62.129-42.802 61.660-42.802M61.660-43.361Q62.125-43.361 62.416-43.755Q62.707-44.150 62.707-44.634Q62.707-44.927 62.572-45.195Q62.437-45.462 62.197-45.628Q61.957-45.794 61.660-45.794Q61.355-45.794 61.117-45.628Q60.879-45.462 60.744-45.195Q60.609-44.927 60.609-44.634Q60.609-44.154 60.902-43.757Q61.195-43.361 61.660-43.361M63.855-43.079L63.855-43.169Q63.898-43.376 64.105-43.400L64.527-43.400L64.527-45.728L64.105-45.728Q63.898-45.751 63.855-45.970L63.855-46.056Q63.902-46.267 64.105-46.290L64.922-46.290Q65.117-46.267 65.168-46.056L65.168-45.970L65.160-45.946Q65.386-46.126 65.660-46.228Q65.933-46.329 66.226-46.329Q66.574-46.329 66.812-46.189Q67.051-46.048 67.166-45.790Q67.281-45.532 67.281-45.177L67.281-43.400L67.707-43.400Q67.914-43.376 67.953-43.169L67.953-43.079Q67.914-42.864 67.707-42.841L66.312-42.841Q66.117-42.864 66.066-43.079L66.066-43.169Q66.117-43.380 66.312-43.400L66.640-43.400L66.640-45.146Q66.640-45.454 66.551-45.612Q66.461-45.771 66.168-45.771Q65.898-45.771 65.670-45.640Q65.441-45.509 65.304-45.280Q65.168-45.052 65.168-44.786L65.168-43.400L65.594-43.400Q65.801-43.376 65.840-43.169L65.840-43.079Q65.801-42.864 65.594-42.841L64.105-42.841Q63.898-42.864 63.855-43.079\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-51 62.195)\">\u003Cpath d=\"M72.911-43.040L72.911-43.954Q72.938-44.161 73.149-44.185L73.317-44.185Q73.481-44.161 73.540-44.001Q73.743-43.361 74.470-43.361Q74.677-43.361 74.905-43.396Q75.134-43.431 75.302-43.546Q75.470-43.661 75.470-43.864Q75.470-44.075 75.247-44.189Q75.024-44.302 74.751-44.345L74.052-44.458Q72.911-44.669 72.911-45.392Q72.911-45.681 73.055-45.870Q73.200-46.060 73.440-46.167Q73.680-46.275 73.936-46.314Q74.192-46.353 74.470-46.353Q74.720-46.353 74.913-46.323Q75.106-46.294 75.270-46.216Q75.348-46.333 75.477-46.353L75.555-46.353Q75.653-46.341 75.716-46.279Q75.778-46.216 75.790-46.122L75.790-45.415Q75.778-45.321 75.716-45.255Q75.653-45.189 75.555-45.177L75.388-45.177Q75.294-45.189 75.227-45.255Q75.161-45.321 75.149-45.415Q75.149-45.794 74.454-45.794Q74.106-45.794 73.788-45.712Q73.470-45.630 73.470-45.384Q73.470-45.118 74.141-45.009L74.845-44.888Q75.329-44.806 75.679-44.558Q76.028-44.310 76.028-43.864Q76.028-43.474 75.792-43.232Q75.555-42.989 75.206-42.896Q74.856-42.802 74.470-42.802Q73.891-42.802 73.493-43.056Q73.423-42.931 73.374-42.874Q73.325-42.818 73.220-42.802L73.149-42.802Q72.934-42.825 72.911-43.040M80.083-44.329L77.641-44.329Q77.696-44.052 77.893-43.829Q78.091-43.607 78.368-43.484Q78.645-43.361 78.930-43.361Q79.403-43.361 79.626-43.650Q79.634-43.661 79.690-43.767Q79.747-43.872 79.796-43.915Q79.845-43.958 79.938-43.970L80.083-43.970Q80.274-43.950 80.333-43.736L80.333-43.681Q80.266-43.380 80.036-43.183Q79.805-42.986 79.493-42.894Q79.180-42.802 78.876-42.802Q78.391-42.802 77.952-43.030Q77.513-43.259 77.245-43.659Q76.977-44.060 76.977-44.552L76.977-44.611Q76.977-45.079 77.223-45.482Q77.470-45.884 77.878-46.118Q78.286-46.353 78.755-46.353Q79.259-46.353 79.612-46.130Q79.966-45.907 80.149-45.519Q80.333-45.130 80.333-44.626L80.333-44.568Q80.274-44.353 80.083-44.329M77.649-44.880L79.677-44.880Q79.630-45.290 79.391-45.542Q79.153-45.794 78.755-45.794Q78.360-45.794 78.054-45.532Q77.747-45.271 77.649-44.880M82.016-43.946L82.016-45.728L81.266-45.728Q81.067-45.751 81.016-45.970L81.016-46.056Q81.067-46.267 81.266-46.290L82.016-46.290L82.016-47.040Q82.067-47.247 82.266-47.275L82.411-47.275Q82.606-47.247 82.657-47.040L82.657-46.290L84.016-46.290Q84.208-46.271 84.266-46.056L84.266-45.970Q84.212-45.751 84.016-45.728L82.657-45.728L82.657-43.978Q82.657-43.361 83.231-43.361Q83.481-43.361 83.645-43.546Q83.809-43.732 83.809-43.978Q83.809-44.071 83.882-44.142Q83.954-44.212 84.055-44.224L84.200-44.224Q84.399-44.200 84.450-43.993L84.450-43.946Q84.450-43.622 84.266-43.359Q84.083-43.095 83.790-42.948Q83.497-42.802 83.177-42.802Q82.665-42.802 82.341-43.112Q82.016-43.423 82.016-43.946\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-51 62.195)\">\u003Cpath d=\"M89.731-43.954Q89.731-44.400 90.145-44.657Q90.559-44.915 91.100-45.015Q91.641-45.114 92.149-45.122Q92.149-45.337 92.014-45.489Q91.880-45.642 91.673-45.718Q91.466-45.794 91.255-45.794Q90.911-45.794 90.751-45.771L90.751-45.712Q90.751-45.544 90.632-45.429Q90.513-45.314 90.348-45.314Q90.173-45.314 90.057-45.437Q89.942-45.560 89.942-45.728Q89.942-46.134 90.323-46.243Q90.704-46.353 91.263-46.353Q91.532-46.353 91.800-46.275Q92.067-46.196 92.292-46.046Q92.516-45.896 92.653-45.675Q92.790-45.454 92.790-45.177L92.790-43.458Q92.790-43.400 93.317-43.400Q93.513-43.380 93.563-43.169L93.563-43.079Q93.513-42.864 93.317-42.841L93.173-42.841Q92.829-42.841 92.600-42.888Q92.372-42.935 92.227-43.122Q91.766-42.802 91.059-42.802Q90.723-42.802 90.419-42.943Q90.114-43.083 89.923-43.345Q89.731-43.607 89.731-43.954M90.372-43.946Q90.372-43.673 90.614-43.517Q90.856-43.361 91.141-43.361Q91.360-43.361 91.593-43.419Q91.825-43.478 91.987-43.616Q92.149-43.755 92.149-43.978L92.149-44.568Q91.868-44.568 91.452-44.511Q91.036-44.454 90.704-44.316Q90.372-44.177 90.372-43.946M93.794-43.079L93.794-43.169Q93.852-43.376 94.044-43.400L94.755-43.400L94.755-45.728L94.044-45.728Q93.848-45.751 93.794-45.970L93.794-46.056Q93.852-46.267 94.044-46.290L95.145-46.290Q95.345-46.271 95.395-46.056L95.395-45.728Q95.657-46.013 96.013-46.171Q96.368-46.329 96.755-46.329Q97.048-46.329 97.282-46.195Q97.516-46.060 97.516-45.794Q97.516-45.626 97.407-45.509Q97.298-45.392 97.130-45.392Q96.977-45.392 96.862-45.503Q96.747-45.614 96.747-45.771Q96.372-45.771 96.057-45.570Q95.743-45.368 95.569-45.034Q95.395-44.700 95.395-44.321L95.395-43.400L96.341-43.400Q96.548-43.376 96.587-43.169L96.587-43.079Q96.548-42.864 96.341-42.841L94.044-42.841Q93.852-42.864 93.794-43.079M98.376-44.568Q98.376-45.048 98.620-45.462Q98.864-45.876 99.280-46.114Q99.696-46.353 100.177-46.353Q100.731-46.353 101.110-46.243Q101.489-46.134 101.489-45.728Q101.489-45.560 101.376-45.437Q101.263-45.314 101.091-45.314Q100.919-45.314 100.800-45.429Q100.680-45.544 100.680-45.712L100.680-45.771Q100.520-45.794 100.184-45.794Q99.856-45.794 99.589-45.624Q99.321-45.454 99.169-45.171Q99.016-44.888 99.016-44.568Q99.016-44.247 99.188-43.966Q99.360-43.685 99.645-43.523Q99.930-43.361 100.259-43.361Q100.571-43.361 100.698-43.464Q100.825-43.568 100.942-43.757Q101.059-43.946 101.177-43.962L101.345-43.962Q101.450-43.950 101.514-43.882Q101.579-43.814 101.579-43.712Q101.579-43.665 101.559-43.626Q101.450-43.333 101.247-43.154Q101.044-42.974 100.768-42.888Q100.493-42.802 100.177-42.802Q99.692-42.802 99.276-43.040Q98.860-43.279 98.618-43.681Q98.376-44.083 98.376-44.568M102.134-43.079L102.134-43.169Q102.177-43.376 102.384-43.400L102.805-43.400L102.805-47.169L102.384-47.169Q102.177-47.193 102.134-47.407L102.134-47.497Q102.177-47.704 102.384-47.728L103.200-47.728Q103.395-47.704 103.446-47.497L103.446-45.946Q103.907-46.329 104.505-46.329Q104.852-46.329 105.091-46.189Q105.329-46.048 105.444-45.790Q105.559-45.532 105.559-45.177L105.559-43.400L105.985-43.400Q106.192-43.376 106.231-43.169L106.231-43.079Q106.192-42.864 105.985-42.841L104.591-42.841Q104.395-42.864 104.345-43.079L104.345-43.169Q104.395-43.380 104.591-43.400L104.919-43.400L104.919-45.146Q104.919-45.454 104.829-45.612Q104.739-45.771 104.446-45.771Q104.177-45.771 103.948-45.640Q103.720-45.509 103.583-45.280Q103.446-45.052 103.446-44.786L103.446-43.400L103.872-43.400Q104.079-43.376 104.118-43.169L104.118-43.079Q104.079-42.864 103.872-42.841L102.384-42.841Q102.177-42.864 102.134-43.079M107.876-43.400Q107.876-43.622 108.042-43.788Q108.208-43.954 108.438-43.954Q108.587-43.954 108.714-43.876Q108.841-43.798 108.915-43.673Q108.989-43.548 108.989-43.400Q108.989-43.173 108.823-43.007Q108.657-42.841 108.438-42.841Q108.212-42.841 108.044-43.009Q107.876-43.177 107.876-43.400\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M8.574-31.26v4.713\"\u002F>\u003Cpath stroke=\"none\" d=\"m8.574-24.547 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M8.574-1.385v4.713\"\u002F>\u003Cpath stroke=\"none\" d=\"m8.574 5.328 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M105.313-31.46h147.954v-22.763H105.313Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(136.716 1.556)\">\u003Cpath d=\"M10.695-42.763Q10.261-42.763 9.929-43.001Q9.597-43.239 9.377-43.628Q9.156-44.017 9.049-44.454Q8.941-44.892 8.941-45.290Q8.941-45.681 9.051-46.124Q9.160-46.568 9.377-46.948Q9.594-47.329 9.928-47.570Q10.261-47.810 10.695-47.810Q11.250-47.810 11.650-47.411Q12.051-47.013 12.248-46.427Q12.445-45.841 12.445-45.290Q12.445-44.736 12.248-44.148Q12.051-43.560 11.650-43.161Q11.250-42.763 10.695-42.763M10.695-43.321Q10.996-43.321 11.213-43.538Q11.429-43.755 11.556-44.083Q11.683-44.411 11.744-44.757Q11.804-45.103 11.804-45.384Q11.804-45.634 11.742-45.960Q11.679-46.286 11.549-46.577Q11.418-46.868 11.205-47.058Q10.992-47.247 10.695-47.247Q10.320-47.247 10.068-46.935Q9.816-46.622 9.699-46.189Q9.582-45.755 9.582-45.384Q9.582-44.986 9.695-44.505Q9.808-44.025 10.056-43.673Q10.304-43.321 10.695-43.321M13.172-43.888Q13.172-44.064 13.289-44.185Q13.406-44.306 13.582-44.306Q13.664-44.306 13.740-44.275Q13.816-44.243 13.867-44.193Q13.918-44.142 13.949-44.062Q13.980-43.982 13.980-43.904Q13.980-43.771 13.898-43.657Q14.168-43.321 14.957-43.321Q15.383-43.321 15.724-43.587Q16.066-43.853 16.066-44.267Q16.066-44.540 15.900-44.759Q15.734-44.978 15.474-45.089Q15.215-45.200 14.941-45.200L14.476-45.200Q14.265-45.224 14.234-45.443L14.234-45.529Q14.265-45.732 14.476-45.763L15.004-45.802Q15.219-45.802 15.410-45.925Q15.601-46.048 15.715-46.251Q15.828-46.454 15.828-46.665Q15.828-46.939 15.545-47.093Q15.261-47.247 14.957-47.247Q14.394-47.247 14.156-47.056Q14.219-46.943 14.219-46.833Q14.219-46.661 14.105-46.548Q13.992-46.435 13.820-46.435Q13.644-46.435 13.529-46.558Q13.414-46.681 13.414-46.849Q13.414-47.376 13.886-47.593Q14.359-47.810 14.957-47.810Q15.297-47.810 15.652-47.679Q16.008-47.548 16.238-47.290Q16.469-47.032 16.469-46.665Q16.469-46.321 16.301-46.017Q16.133-45.712 15.836-45.513Q16.207-45.333 16.457-44.997Q16.707-44.661 16.707-44.267Q16.707-43.821 16.453-43.480Q16.199-43.138 15.797-42.950Q15.394-42.763 14.957-42.763Q14.672-42.763 14.367-42.818Q14.062-42.872 13.787-42.999Q13.511-43.126 13.342-43.349Q13.172-43.571 13.172-43.888\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(136.716 1.556)\">\u003Cpath d=\"M23.187-42.802Q22.722-42.802 22.357-43.052Q21.992-43.302 21.787-43.706Q21.582-44.111 21.582-44.568Q21.582-44.911 21.707-45.232Q21.832-45.552 22.064-45.802Q22.297-46.052 22.601-46.191Q22.906-46.329 23.262-46.329Q23.773-46.329 24.179-46.009L24.179-47.169L23.758-47.169Q23.547-47.193 23.508-47.407L23.508-47.497Q23.547-47.704 23.758-47.728L24.570-47.728Q24.769-47.704 24.820-47.497L24.820-43.400L25.246-43.400Q25.453-43.376 25.492-43.169L25.492-43.079Q25.453-42.864 25.246-42.841L24.429-42.841Q24.230-42.864 24.179-43.079L24.179-43.208Q23.984-43.017 23.722-42.909Q23.461-42.802 23.187-42.802M23.226-43.361Q23.586-43.361 23.838-43.630Q24.090-43.900 24.179-44.275L24.179-45.107Q24.121-45.294 23.994-45.445Q23.867-45.595 23.689-45.683Q23.512-45.771 23.316-45.771Q23.008-45.771 22.758-45.601Q22.508-45.431 22.363-45.146Q22.219-44.861 22.219-44.560Q22.219-44.111 22.504-43.736Q22.789-43.361 23.226-43.361M26.187-43.079L26.187-43.169Q26.238-43.376 26.433-43.400L27.472-43.400L27.472-45.728L26.500-45.728Q26.301-45.751 26.250-45.970L26.250-46.056Q26.301-46.267 26.500-46.290L27.867-46.290Q28.062-46.271 28.113-46.056L28.113-43.400L29.027-43.400Q29.222-43.376 29.273-43.169L29.273-43.079Q29.222-42.864 29.027-42.841L26.433-42.841Q26.238-42.864 26.187-43.079M27.219-47.267L27.219-47.321Q27.219-47.493 27.355-47.614Q27.492-47.736 27.668-47.736Q27.840-47.736 27.976-47.614Q28.113-47.493 28.113-47.321L28.113-47.267Q28.113-47.091 27.976-46.970Q27.840-46.849 27.668-46.849Q27.492-46.849 27.355-46.970Q27.219-47.091 27.219-47.267M30.054-42.193Q30.054-42.493 30.203-42.755Q30.351-43.017 30.601-43.177Q30.418-43.431 30.418-43.751Q30.418-44.036 30.570-44.298Q30.320-44.622 30.320-45.040Q30.320-45.400 30.512-45.696Q30.703-45.993 31.021-46.161Q31.340-46.329 31.703-46.329Q31.910-46.329 32.113-46.269Q32.316-46.208 32.480-46.107Q32.863-46.368 33.336-46.368Q33.574-46.368 33.756-46.237Q33.937-46.107 33.937-45.880Q33.937-45.732 33.836-45.626Q33.734-45.521 33.578-45.521Q33.445-45.521 33.349-45.599Q33.254-45.677 33.222-45.802Q33.078-45.794 32.879-45.704Q33.082-45.392 33.082-45.040Q33.082-44.759 32.970-44.527Q32.859-44.294 32.664-44.116Q32.469-43.939 32.217-43.841Q31.965-43.743 31.703-43.743Q31.316-43.743 30.984-43.931Q30.972-43.931 30.963-43.859Q30.953-43.786 30.953-43.751Q30.953-43.630 31.019-43.523Q31.086-43.415 31.207-43.376Q31.222-43.380 31.236-43.382Q31.250-43.384 31.273-43.384Q31.289-43.384 31.320-43.376Q31.351-43.368 31.359-43.368L31.953-43.368Q32.734-43.368 33.275-43.126Q33.816-42.884 33.816-42.193Q33.816-41.892 33.636-41.665Q33.457-41.439 33.160-41.294Q32.863-41.150 32.543-41.083Q32.222-41.017 31.937-41.017Q31.547-41.017 31.105-41.140Q30.664-41.263 30.359-41.530Q30.054-41.798 30.054-42.193M30.594-42.200Q30.594-41.982 30.834-41.841Q31.074-41.700 31.398-41.634Q31.722-41.568 31.937-41.568Q32.152-41.568 32.476-41.634Q32.801-41.700 33.041-41.841Q33.281-41.982 33.281-42.200Q33.281-42.489 33.056-42.628Q32.832-42.767 32.551-42.800Q32.269-42.833 31.922-42.833L31.304-42.833Q31.121-42.833 30.959-42.753Q30.797-42.673 30.695-42.527Q30.594-42.380 30.594-42.200M31.703-44.298Q32.004-44.298 32.222-44.517Q32.441-44.736 32.441-45.040Q32.441-45.196 32.386-45.327Q32.332-45.458 32.226-45.564Q32.121-45.669 31.990-45.724Q31.859-45.779 31.703-45.779Q31.398-45.779 31.179-45.560Q30.961-45.341 30.961-45.040Q30.961-44.743 31.183-44.521Q31.406-44.298 31.703-44.298M34.679-43.079L34.679-43.169Q34.730-43.376 34.926-43.400L35.965-43.400L35.965-45.728L34.992-45.728Q34.793-45.751 34.742-45.970L34.742-46.056Q34.793-46.267 34.992-46.290L36.359-46.290Q36.554-46.271 36.605-46.056L36.605-43.400L37.519-43.400Q37.715-43.376 37.765-43.169L37.765-43.079Q37.715-42.864 37.519-42.841L34.926-42.841Q34.730-42.864 34.679-43.079M35.711-47.267L35.711-47.321Q35.711-47.493 35.847-47.614Q35.984-47.736 36.160-47.736Q36.332-47.736 36.469-47.614Q36.605-47.493 36.605-47.321L36.605-47.267Q36.605-47.091 36.469-46.970Q36.332-46.849 36.160-46.849Q35.984-46.849 35.847-46.970Q35.711-47.091 35.711-47.267M39.508-43.946L39.508-45.728L38.758-45.728Q38.558-45.751 38.508-45.970L38.508-46.056Q38.558-46.267 38.758-46.290L39.508-46.290L39.508-47.040Q39.558-47.247 39.758-47.275L39.902-47.275Q40.097-47.247 40.148-47.040L40.148-46.290L41.508-46.290Q41.699-46.271 41.758-46.056L41.758-45.970Q41.703-45.751 41.508-45.728L40.148-45.728L40.148-43.978Q40.148-43.361 40.722-43.361Q40.972-43.361 41.136-43.546Q41.301-43.732 41.301-43.978Q41.301-44.071 41.373-44.142Q41.445-44.212 41.547-44.224L41.691-44.224Q41.890-44.200 41.941-43.993L41.941-43.946Q41.941-43.622 41.758-43.359Q41.574-43.095 41.281-42.948Q40.988-42.802 40.668-42.802Q40.156-42.802 39.832-43.112Q39.508-43.423 39.508-43.946M42.961-43.954Q42.961-44.400 43.375-44.657Q43.789-44.915 44.330-45.015Q44.871-45.114 45.379-45.122Q45.379-45.337 45.244-45.489Q45.109-45.642 44.902-45.718Q44.695-45.794 44.484-45.794Q44.140-45.794 43.980-45.771L43.980-45.712Q43.980-45.544 43.861-45.429Q43.742-45.314 43.578-45.314Q43.402-45.314 43.287-45.437Q43.172-45.560 43.172-45.728Q43.172-46.134 43.553-46.243Q43.933-46.353 44.492-46.353Q44.761-46.353 45.029-46.275Q45.297-46.196 45.521-46.046Q45.746-45.896 45.883-45.675Q46.019-45.454 46.019-45.177L46.019-43.458Q46.019-43.400 46.547-43.400Q46.742-43.380 46.793-43.169L46.793-43.079Q46.742-42.864 46.547-42.841L46.402-42.841Q46.058-42.841 45.830-42.888Q45.601-42.935 45.457-43.122Q44.996-42.802 44.289-42.802Q43.953-42.802 43.648-42.943Q43.344-43.083 43.152-43.345Q42.961-43.607 42.961-43.954M43.601-43.946Q43.601-43.673 43.844-43.517Q44.086-43.361 44.371-43.361Q44.590-43.361 44.822-43.419Q45.054-43.478 45.217-43.616Q45.379-43.755 45.379-43.978L45.379-44.568Q45.097-44.568 44.681-44.511Q44.265-44.454 43.933-44.316Q43.601-44.177 43.601-43.946M47.250-43.079L47.250-43.169Q47.301-43.376 47.496-43.400L48.601-43.400L48.601-47.169L47.496-47.169Q47.301-47.193 47.250-47.407L47.250-47.497Q47.301-47.704 47.496-47.728L48.992-47.728Q49.183-47.704 49.242-47.497L49.242-43.400L50.344-43.400Q50.543-43.376 50.594-43.169L50.594-43.079Q50.543-42.864 50.344-42.841L47.496-42.841Q47.301-42.864 47.250-43.079\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(136.716 1.556)\">\u003Cpath d=\"M55.773-43.079L55.773-43.169Q55.824-43.376 56.019-43.400L57.125-43.400L57.125-47.169L56.019-47.169Q55.824-47.193 55.773-47.407L55.773-47.497Q55.824-47.704 56.019-47.728L57.515-47.728Q57.707-47.704 57.765-47.497L57.765-43.400L58.867-43.400Q59.066-43.376 59.117-43.169L59.117-43.079Q59.066-42.864 58.867-42.841L56.019-42.841Q55.824-42.864 55.773-43.079M61.691-42.802Q61.219-42.802 60.834-43.046Q60.449-43.290 60.226-43.700Q60.004-44.111 60.004-44.568Q60.004-44.911 60.129-45.234Q60.254-45.556 60.484-45.810Q60.715-46.064 61.021-46.208Q61.328-46.353 61.691-46.353Q62.054-46.353 62.367-46.206Q62.679-46.060 62.902-45.814Q63.125-45.568 63.252-45.247Q63.379-44.927 63.379-44.568Q63.379-44.111 63.154-43.698Q62.929-43.286 62.545-43.044Q62.160-42.802 61.691-42.802M61.691-43.361Q62.156-43.361 62.447-43.755Q62.738-44.150 62.738-44.634Q62.738-44.927 62.603-45.195Q62.469-45.462 62.228-45.628Q61.988-45.794 61.691-45.794Q61.386-45.794 61.148-45.628Q60.910-45.462 60.775-45.195Q60.640-44.927 60.640-44.634Q60.640-44.154 60.933-43.757Q61.226-43.361 61.691-43.361M64.054-42.193Q64.054-42.493 64.203-42.755Q64.351-43.017 64.601-43.177Q64.418-43.431 64.418-43.751Q64.418-44.036 64.570-44.298Q64.320-44.622 64.320-45.040Q64.320-45.400 64.511-45.696Q64.703-45.993 65.021-46.161Q65.340-46.329 65.703-46.329Q65.910-46.329 66.113-46.269Q66.316-46.208 66.480-46.107Q66.863-46.368 67.336-46.368Q67.574-46.368 67.756-46.237Q67.937-46.107 67.937-45.880Q67.937-45.732 67.836-45.626Q67.734-45.521 67.578-45.521Q67.445-45.521 67.349-45.599Q67.254-45.677 67.222-45.802Q67.078-45.794 66.879-45.704Q67.082-45.392 67.082-45.040Q67.082-44.759 66.970-44.527Q66.859-44.294 66.664-44.116Q66.469-43.939 66.217-43.841Q65.965-43.743 65.703-43.743Q65.316-43.743 64.984-43.931Q64.972-43.931 64.963-43.859Q64.953-43.786 64.953-43.751Q64.953-43.630 65.019-43.523Q65.086-43.415 65.207-43.376Q65.222-43.380 65.236-43.382Q65.250-43.384 65.273-43.384Q65.289-43.384 65.320-43.376Q65.351-43.368 65.359-43.368L65.953-43.368Q66.734-43.368 67.275-43.126Q67.816-42.884 67.816-42.193Q67.816-41.892 67.636-41.665Q67.457-41.439 67.160-41.294Q66.863-41.150 66.543-41.083Q66.222-41.017 65.937-41.017Q65.547-41.017 65.105-41.140Q64.664-41.263 64.359-41.530Q64.054-41.798 64.054-42.193M64.594-42.200Q64.594-41.982 64.834-41.841Q65.074-41.700 65.398-41.634Q65.722-41.568 65.937-41.568Q66.152-41.568 66.476-41.634Q66.801-41.700 67.041-41.841Q67.281-41.982 67.281-42.200Q67.281-42.489 67.056-42.628Q66.832-42.767 66.551-42.800Q66.269-42.833 65.922-42.833L65.304-42.833Q65.121-42.833 64.959-42.753Q64.797-42.673 64.695-42.527Q64.594-42.380 64.594-42.200M65.703-44.298Q66.004-44.298 66.222-44.517Q66.441-44.736 66.441-45.040Q66.441-45.196 66.386-45.327Q66.332-45.458 66.226-45.564Q66.121-45.669 65.990-45.724Q65.859-45.779 65.703-45.779Q65.398-45.779 65.179-45.560Q64.961-45.341 64.961-45.040Q64.961-44.743 65.183-44.521Q65.406-44.298 65.703-44.298M68.679-43.079L68.679-43.169Q68.730-43.376 68.926-43.400L69.965-43.400L69.965-45.728L68.992-45.728Q68.793-45.751 68.742-45.970L68.742-46.056Q68.793-46.267 68.992-46.290L70.359-46.290Q70.554-46.271 70.605-46.056L70.605-43.400L71.519-43.400Q71.715-43.376 71.765-43.169L71.765-43.079Q71.715-42.864 71.519-42.841L68.926-42.841Q68.730-42.864 68.679-43.079M69.711-47.267L69.711-47.321Q69.711-47.493 69.847-47.614Q69.984-47.736 70.160-47.736Q70.332-47.736 70.469-47.614Q70.605-47.493 70.605-47.321L70.605-47.267Q70.605-47.091 70.469-46.970Q70.332-46.849 70.160-46.849Q69.984-46.849 69.847-46.970Q69.711-47.091 69.711-47.267M72.867-44.568Q72.867-45.048 73.111-45.462Q73.355-45.876 73.771-46.114Q74.187-46.353 74.668-46.353Q75.222-46.353 75.601-46.243Q75.980-46.134 75.980-45.728Q75.980-45.560 75.867-45.437Q75.754-45.314 75.582-45.314Q75.410-45.314 75.291-45.429Q75.172-45.544 75.172-45.712L75.172-45.771Q75.011-45.794 74.676-45.794Q74.347-45.794 74.080-45.624Q73.812-45.454 73.660-45.171Q73.508-44.888 73.508-44.568Q73.508-44.247 73.679-43.966Q73.851-43.685 74.136-43.523Q74.422-43.361 74.750-43.361Q75.062-43.361 75.189-43.464Q75.316-43.568 75.433-43.757Q75.551-43.946 75.668-43.962L75.836-43.962Q75.941-43.950 76.006-43.882Q76.070-43.814 76.070-43.712Q76.070-43.665 76.051-43.626Q75.941-43.333 75.738-43.154Q75.535-42.974 75.260-42.888Q74.984-42.802 74.668-42.802Q74.183-42.802 73.767-43.040Q73.351-43.279 73.109-43.681Q72.867-44.083 72.867-44.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M105.313-1.585h147.954v-22.762H105.313Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(130.34 31.431)\">\u003Cpath d=\"M10.695-42.763Q10.261-42.763 9.929-43.001Q9.597-43.239 9.377-43.628Q9.156-44.017 9.049-44.454Q8.941-44.892 8.941-45.290Q8.941-45.681 9.051-46.124Q9.160-46.568 9.377-46.948Q9.594-47.329 9.928-47.570Q10.261-47.810 10.695-47.810Q11.250-47.810 11.650-47.411Q12.051-47.013 12.248-46.427Q12.445-45.841 12.445-45.290Q12.445-44.736 12.248-44.148Q12.051-43.560 11.650-43.161Q11.250-42.763 10.695-42.763M10.695-43.321Q10.996-43.321 11.213-43.538Q11.429-43.755 11.556-44.083Q11.683-44.411 11.744-44.757Q11.804-45.103 11.804-45.384Q11.804-45.634 11.742-45.960Q11.679-46.286 11.549-46.577Q11.418-46.868 11.205-47.058Q10.992-47.247 10.695-47.247Q10.320-47.247 10.068-46.935Q9.816-46.622 9.699-46.189Q9.582-45.755 9.582-45.384Q9.582-44.986 9.695-44.505Q9.808-44.025 10.056-43.673Q10.304-43.321 10.695-43.321M15.379-44.185L13.308-44.185Q13.113-44.208 13.058-44.427L13.058-44.665Q13.058-44.739 13.101-44.810L14.949-47.681Q15.035-47.810 15.187-47.810L15.644-47.810Q15.754-47.810 15.832-47.732Q15.910-47.654 15.910-47.544L15.910-44.743L16.574-44.743Q16.769-44.720 16.820-44.513L16.820-44.427Q16.769-44.208 16.574-44.185L15.910-44.185L15.910-43.400L16.484-43.400Q16.691-43.376 16.730-43.169L16.730-43.079Q16.691-42.864 16.484-42.841L14.804-42.841Q14.597-42.864 14.554-43.079L14.554-43.169Q14.597-43.376 14.804-43.400L15.379-43.400L15.379-44.185M15.379-47.337L13.707-44.743L15.379-44.743\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(130.34 31.431)\">\u003Cpath d=\"M21.394-41.298L21.394-41.384Q21.437-41.603 21.644-41.626L22.066-41.626L22.066-45.728L21.644-45.728Q21.437-45.751 21.394-45.970L21.394-46.056Q21.441-46.267 21.644-46.290L22.461-46.290Q22.656-46.271 22.707-46.056L22.707-45.986Q22.918-46.154 23.181-46.241Q23.445-46.329 23.715-46.329Q24.054-46.329 24.351-46.185Q24.648-46.040 24.863-45.788Q25.078-45.536 25.193-45.224Q25.308-44.911 25.308-44.568Q25.308-44.103 25.082-43.693Q24.855-43.282 24.469-43.042Q24.082-42.802 23.613-42.802Q23.094-42.802 22.707-43.169L22.707-41.626L23.133-41.626Q23.340-41.603 23.379-41.384L23.379-41.298Q23.340-41.087 23.133-41.064L21.644-41.064Q21.441-41.087 21.394-41.298M23.570-43.361Q23.879-43.361 24.129-43.530Q24.379-43.700 24.523-43.982Q24.668-44.263 24.668-44.568Q24.668-44.857 24.543-45.136Q24.418-45.415 24.185-45.593Q23.953-45.771 23.652-45.771Q23.332-45.771 23.070-45.585Q22.808-45.400 22.707-45.099L22.707-44.247Q22.797-43.880 23.017-43.620Q23.238-43.361 23.570-43.361M25.793-43.079L25.793-43.169Q25.851-43.376 26.043-43.400L26.754-43.400L26.754-45.728L26.043-45.728Q25.847-45.751 25.793-45.970L25.793-46.056Q25.851-46.267 26.043-46.290L27.144-46.290Q27.344-46.271 27.394-46.056L27.394-45.728Q27.656-46.013 28.012-46.171Q28.367-46.329 28.754-46.329Q29.047-46.329 29.281-46.195Q29.515-46.060 29.515-45.794Q29.515-45.626 29.406-45.509Q29.297-45.392 29.129-45.392Q28.976-45.392 28.861-45.503Q28.746-45.614 28.746-45.771Q28.371-45.771 28.056-45.570Q27.742-45.368 27.568-45.034Q27.394-44.700 27.394-44.321L27.394-43.400L28.340-43.400Q28.547-43.376 28.586-43.169L28.586-43.079Q28.547-42.864 28.340-42.841L26.043-42.841Q25.851-42.864 25.793-43.079M31.937-42.802Q31.465-42.802 31.080-43.046Q30.695-43.290 30.472-43.700Q30.250-44.111 30.250-44.568Q30.250-44.911 30.375-45.234Q30.500-45.556 30.730-45.810Q30.961-46.064 31.267-46.208Q31.574-46.353 31.937-46.353Q32.301-46.353 32.613-46.206Q32.926-46.060 33.148-45.814Q33.371-45.568 33.498-45.247Q33.625-44.927 33.625-44.568Q33.625-44.111 33.400-43.698Q33.176-43.286 32.791-43.044Q32.406-42.802 31.937-42.802M31.937-43.361Q32.402-43.361 32.693-43.755Q32.984-44.150 32.984-44.634Q32.984-44.927 32.849-45.195Q32.715-45.462 32.474-45.628Q32.234-45.794 31.937-45.794Q31.633-45.794 31.394-45.628Q31.156-45.462 31.021-45.195Q30.887-44.927 30.887-44.634Q30.887-44.154 31.179-43.757Q31.472-43.361 31.937-43.361M34.621-44.568Q34.621-45.048 34.865-45.462Q35.109-45.876 35.525-46.114Q35.941-46.353 36.422-46.353Q36.976-46.353 37.355-46.243Q37.734-46.134 37.734-45.728Q37.734-45.560 37.621-45.437Q37.508-45.314 37.336-45.314Q37.164-45.314 37.045-45.429Q36.926-45.544 36.926-45.712L36.926-45.771Q36.765-45.794 36.429-45.794Q36.101-45.794 35.834-45.624Q35.566-45.454 35.414-45.171Q35.261-44.888 35.261-44.568Q35.261-44.247 35.433-43.966Q35.605-43.685 35.890-43.523Q36.176-43.361 36.504-43.361Q36.816-43.361 36.943-43.464Q37.070-43.568 37.187-43.757Q37.304-43.946 37.422-43.962L37.590-43.962Q37.695-43.950 37.760-43.882Q37.824-43.814 37.824-43.712Q37.824-43.665 37.804-43.626Q37.695-43.333 37.492-43.154Q37.289-42.974 37.013-42.888Q36.738-42.802 36.422-42.802Q35.937-42.802 35.521-43.040Q35.105-43.279 34.863-43.681Q34.621-44.083 34.621-44.568M41.820-44.329L39.379-44.329Q39.433-44.052 39.631-43.829Q39.828-43.607 40.105-43.484Q40.383-43.361 40.668-43.361Q41.140-43.361 41.363-43.650Q41.371-43.661 41.428-43.767Q41.484-43.872 41.533-43.915Q41.582-43.958 41.676-43.970L41.820-43.970Q42.011-43.950 42.070-43.736L42.070-43.681Q42.004-43.380 41.773-43.183Q41.543-42.986 41.230-42.894Q40.918-42.802 40.613-42.802Q40.129-42.802 39.689-43.030Q39.250-43.259 38.982-43.659Q38.715-44.060 38.715-44.552L38.715-44.611Q38.715-45.079 38.961-45.482Q39.207-45.884 39.615-46.118Q40.023-46.353 40.492-46.353Q40.996-46.353 41.349-46.130Q41.703-45.907 41.886-45.519Q42.070-45.130 42.070-44.626L42.070-44.568Q42.011-44.353 41.820-44.329M39.386-44.880L41.414-44.880Q41.367-45.290 41.129-45.542Q40.890-45.794 40.492-45.794Q40.097-45.794 39.791-45.532Q39.484-45.271 39.386-44.880M43.140-43.040L43.140-43.954Q43.168-44.161 43.379-44.185L43.547-44.185Q43.711-44.161 43.769-44.001Q43.972-43.361 44.699-43.361Q44.906-43.361 45.135-43.396Q45.363-43.431 45.531-43.546Q45.699-43.661 45.699-43.864Q45.699-44.075 45.476-44.189Q45.254-44.302 44.980-44.345L44.281-44.458Q43.140-44.669 43.140-45.392Q43.140-45.681 43.285-45.870Q43.429-46.060 43.670-46.167Q43.910-46.275 44.166-46.314Q44.422-46.353 44.699-46.353Q44.949-46.353 45.142-46.323Q45.336-46.294 45.500-46.216Q45.578-46.333 45.707-46.353L45.785-46.353Q45.883-46.341 45.945-46.279Q46.008-46.216 46.019-46.122L46.019-45.415Q46.008-45.321 45.945-45.255Q45.883-45.189 45.785-45.177L45.617-45.177Q45.523-45.189 45.457-45.255Q45.390-45.321 45.379-45.415Q45.379-45.794 44.683-45.794Q44.336-45.794 44.017-45.712Q43.699-45.630 43.699-45.384Q43.699-45.118 44.371-45.009L45.074-44.888Q45.558-44.806 45.908-44.558Q46.258-44.310 46.258-43.864Q46.258-43.474 46.021-43.232Q45.785-42.989 45.435-42.896Q45.086-42.802 44.699-42.802Q44.121-42.802 43.722-43.056Q43.652-42.931 43.603-42.874Q43.554-42.818 43.449-42.802L43.379-42.802Q43.164-42.825 43.140-43.040M47.386-43.040L47.386-43.954Q47.414-44.161 47.625-44.185L47.793-44.185Q47.957-44.161 48.015-44.001Q48.219-43.361 48.945-43.361Q49.152-43.361 49.381-43.396Q49.609-43.431 49.777-43.546Q49.945-43.661 49.945-43.864Q49.945-44.075 49.722-44.189Q49.500-44.302 49.226-44.345L48.527-44.458Q47.386-44.669 47.386-45.392Q47.386-45.681 47.531-45.870Q47.676-46.060 47.916-46.167Q48.156-46.275 48.412-46.314Q48.668-46.353 48.945-46.353Q49.195-46.353 49.388-46.323Q49.582-46.294 49.746-46.216Q49.824-46.333 49.953-46.353L50.031-46.353Q50.129-46.341 50.191-46.279Q50.254-46.216 50.265-46.122L50.265-45.415Q50.254-45.321 50.191-45.255Q50.129-45.189 50.031-45.177L49.863-45.177Q49.769-45.189 49.703-45.255Q49.636-45.321 49.625-45.415Q49.625-45.794 48.929-45.794Q48.582-45.794 48.263-45.712Q47.945-45.630 47.945-45.384Q47.945-45.118 48.617-45.009L49.320-44.888Q49.804-44.806 50.154-44.558Q50.504-44.310 50.504-43.864Q50.504-43.474 50.267-43.232Q50.031-42.989 49.681-42.896Q49.332-42.802 48.945-42.802Q48.367-42.802 47.969-43.056Q47.898-42.931 47.849-42.874Q47.801-42.818 47.695-42.802L47.625-42.802Q47.410-42.825 47.386-43.040M53.168-42.802Q52.695-42.802 52.310-43.046Q51.926-43.290 51.703-43.700Q51.480-44.111 51.480-44.568Q51.480-44.911 51.605-45.234Q51.730-45.556 51.961-45.810Q52.191-46.064 52.498-46.208Q52.804-46.353 53.168-46.353Q53.531-46.353 53.844-46.206Q54.156-46.060 54.379-45.814Q54.601-45.568 54.728-45.247Q54.855-44.927 54.855-44.568Q54.855-44.111 54.631-43.698Q54.406-43.286 54.021-43.044Q53.636-42.802 53.168-42.802M53.168-43.361Q53.633-43.361 53.924-43.755Q54.215-44.150 54.215-44.634Q54.215-44.927 54.080-45.195Q53.945-45.462 53.705-45.628Q53.465-45.794 53.168-45.794Q52.863-45.794 52.625-45.628Q52.386-45.462 52.252-45.195Q52.117-44.927 52.117-44.634Q52.117-44.154 52.410-43.757Q52.703-43.361 53.168-43.361M55.515-43.079L55.515-43.169Q55.574-43.376 55.765-43.400L56.476-43.400L56.476-45.728L55.765-45.728Q55.570-45.751 55.515-45.970L55.515-46.056Q55.574-46.267 55.765-46.290L56.867-46.290Q57.066-46.271 57.117-46.056L57.117-45.728Q57.379-46.013 57.734-46.171Q58.090-46.329 58.476-46.329Q58.769-46.329 59.004-46.195Q59.238-46.060 59.238-45.794Q59.238-45.626 59.129-45.509Q59.019-45.392 58.851-45.392Q58.699-45.392 58.584-45.503Q58.469-45.614 58.469-45.771Q58.094-45.771 57.779-45.570Q57.465-45.368 57.291-45.034Q57.117-44.700 57.117-44.321L57.117-43.400L58.062-43.400Q58.269-43.376 58.308-43.169L58.308-43.079Q58.269-42.864 58.062-42.841L55.765-42.841Q55.574-42.864 55.515-43.079\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(130.34 31.431)\">\u003Cpath d=\"M65.688-42.802Q65.223-42.802 64.858-43.052Q64.493-43.302 64.288-43.706Q64.083-44.111 64.083-44.568Q64.083-44.911 64.208-45.232Q64.333-45.552 64.565-45.802Q64.798-46.052 65.102-46.191Q65.407-46.329 65.763-46.329Q66.274-46.329 66.680-46.009L66.680-47.169L66.259-47.169Q66.048-47.193 66.009-47.407L66.009-47.497Q66.048-47.704 66.259-47.728L67.071-47.728Q67.270-47.704 67.321-47.497L67.321-43.400L67.747-43.400Q67.954-43.376 67.993-43.169L67.993-43.079Q67.954-42.864 67.747-42.841L66.930-42.841Q66.731-42.864 66.680-43.079L66.680-43.208Q66.485-43.017 66.223-42.909Q65.962-42.802 65.688-42.802M65.727-43.361Q66.087-43.361 66.339-43.630Q66.591-43.900 66.680-44.275L66.680-45.107Q66.622-45.294 66.495-45.445Q66.368-45.595 66.190-45.683Q66.013-45.771 65.817-45.771Q65.509-45.771 65.259-45.601Q65.009-45.431 64.864-45.146Q64.720-44.861 64.720-44.560Q64.720-44.111 65.005-43.736Q65.290-43.361 65.727-43.361M71.583-44.329L69.141-44.329Q69.196-44.052 69.393-43.829Q69.591-43.607 69.868-43.484Q70.145-43.361 70.430-43.361Q70.903-43.361 71.126-43.650Q71.134-43.661 71.190-43.767Q71.247-43.872 71.296-43.915Q71.345-43.958 71.438-43.970L71.583-43.970Q71.774-43.950 71.833-43.736L71.833-43.681Q71.766-43.380 71.536-43.183Q71.305-42.986 70.993-42.894Q70.680-42.802 70.376-42.802Q69.891-42.802 69.452-43.030Q69.013-43.259 68.745-43.659Q68.477-44.060 68.477-44.552L68.477-44.611Q68.477-45.079 68.723-45.482Q68.970-45.884 69.378-46.118Q69.786-46.353 70.255-46.353Q70.759-46.353 71.112-46.130Q71.466-45.907 71.649-45.519Q71.833-45.130 71.833-44.626L71.833-44.568Q71.774-44.353 71.583-44.329M69.149-44.880L71.177-44.880Q71.130-45.290 70.891-45.542Q70.653-45.794 70.255-45.794Q69.860-45.794 69.554-45.532Q69.247-45.271 69.149-44.880M72.903-43.040L72.903-43.954Q72.930-44.161 73.141-44.185L73.309-44.185Q73.473-44.161 73.532-44.001Q73.735-43.361 74.462-43.361Q74.669-43.361 74.897-43.396Q75.126-43.431 75.294-43.546Q75.462-43.661 75.462-43.864Q75.462-44.075 75.239-44.189Q75.016-44.302 74.743-44.345L74.044-44.458Q72.903-44.669 72.903-45.392Q72.903-45.681 73.048-45.870Q73.192-46.060 73.432-46.167Q73.673-46.275 73.929-46.314Q74.184-46.353 74.462-46.353Q74.712-46.353 74.905-46.323Q75.098-46.294 75.263-46.216Q75.341-46.333 75.470-46.353L75.548-46.353Q75.645-46.341 75.708-46.279Q75.770-46.216 75.782-46.122L75.782-45.415Q75.770-45.321 75.708-45.255Q75.645-45.189 75.548-45.177L75.380-45.177Q75.286-45.189 75.220-45.255Q75.153-45.321 75.141-45.415Q75.141-45.794 74.446-45.794Q74.098-45.794 73.780-45.712Q73.462-45.630 73.462-45.384Q73.462-45.118 74.134-45.009L74.837-44.888Q75.321-44.806 75.671-44.558Q76.020-44.310 76.020-43.864Q76.020-43.474 75.784-43.232Q75.548-42.989 75.198-42.896Q74.848-42.802 74.462-42.802Q73.884-42.802 73.485-43.056Q73.415-42.931 73.366-42.874Q73.317-42.818 73.212-42.802L73.141-42.802Q72.927-42.825 72.903-43.040M77.180-43.079L77.180-43.169Q77.231-43.376 77.427-43.400L78.466-43.400L78.466-45.728L77.493-45.728Q77.294-45.751 77.243-45.970L77.243-46.056Q77.294-46.267 77.493-46.290L78.860-46.290Q79.055-46.271 79.106-46.056L79.106-43.400L80.020-43.400Q80.216-43.376 80.266-43.169L80.266-43.079Q80.216-42.864 80.020-42.841L77.427-42.841Q77.231-42.864 77.180-43.079M78.212-47.267L78.212-47.321Q78.212-47.493 78.348-47.614Q78.485-47.736 78.661-47.736Q78.833-47.736 78.970-47.614Q79.106-47.493 79.106-47.321L79.106-47.267Q79.106-47.091 78.970-46.970Q78.833-46.849 78.661-46.849Q78.485-46.849 78.348-46.970Q78.212-47.091 78.212-47.267M81.048-42.193Q81.048-42.493 81.196-42.755Q81.345-43.017 81.595-43.177Q81.411-43.431 81.411-43.751Q81.411-44.036 81.563-44.298Q81.313-44.622 81.313-45.040Q81.313-45.400 81.505-45.696Q81.696-45.993 82.014-46.161Q82.333-46.329 82.696-46.329Q82.903-46.329 83.106-46.269Q83.309-46.208 83.473-46.107Q83.856-46.368 84.329-46.368Q84.567-46.368 84.749-46.237Q84.930-46.107 84.930-45.880Q84.930-45.732 84.829-45.626Q84.727-45.521 84.571-45.521Q84.438-45.521 84.343-45.599Q84.247-45.677 84.216-45.802Q84.071-45.794 83.872-45.704Q84.075-45.392 84.075-45.040Q84.075-44.759 83.964-44.527Q83.852-44.294 83.657-44.116Q83.462-43.939 83.210-43.841Q82.958-43.743 82.696-43.743Q82.309-43.743 81.977-43.931Q81.966-43.931 81.956-43.859Q81.946-43.786 81.946-43.751Q81.946-43.630 82.013-43.523Q82.079-43.415 82.200-43.376Q82.216-43.380 82.229-43.382Q82.243-43.384 82.266-43.384Q82.282-43.384 82.313-43.376Q82.345-43.368 82.352-43.368L82.946-43.368Q83.727-43.368 84.268-43.126Q84.809-42.884 84.809-42.193Q84.809-41.892 84.630-41.665Q84.450-41.439 84.153-41.294Q83.856-41.150 83.536-41.083Q83.216-41.017 82.930-41.017Q82.540-41.017 82.098-41.140Q81.657-41.263 81.352-41.530Q81.048-41.798 81.048-42.193M81.587-42.200Q81.587-41.982 81.827-41.841Q82.067-41.700 82.391-41.634Q82.716-41.568 82.930-41.568Q83.145-41.568 83.470-41.634Q83.794-41.700 84.034-41.841Q84.274-41.982 84.274-42.200Q84.274-42.489 84.050-42.628Q83.825-42.767 83.544-42.800Q83.263-42.833 82.915-42.833L82.298-42.833Q82.114-42.833 81.952-42.753Q81.790-42.673 81.688-42.527Q81.587-42.380 81.587-42.200M82.696-44.298Q82.997-44.298 83.216-44.517Q83.434-44.736 83.434-45.040Q83.434-45.196 83.380-45.327Q83.325-45.458 83.220-45.564Q83.114-45.669 82.983-45.724Q82.852-45.779 82.696-45.779Q82.391-45.779 82.173-45.560Q81.954-45.341 81.954-45.040Q81.954-44.743 82.177-44.521Q82.399-44.298 82.696-44.298M85.126-43.079L85.126-43.169Q85.169-43.376 85.376-43.400L85.798-43.400L85.798-45.728L85.376-45.728Q85.169-45.751 85.126-45.970L85.126-46.056Q85.173-46.267 85.376-46.290L86.192-46.290Q86.388-46.267 86.438-46.056L86.438-45.970L86.430-45.946Q86.657-46.126 86.930-46.228Q87.204-46.329 87.497-46.329Q87.845-46.329 88.083-46.189Q88.321-46.048 88.436-45.790Q88.552-45.532 88.552-45.177L88.552-43.400L88.977-43.400Q89.184-43.376 89.223-43.169L89.223-43.079Q89.184-42.864 88.977-42.841L87.583-42.841Q87.388-42.864 87.337-43.079L87.337-43.169Q87.388-43.380 87.583-43.400L87.911-43.400L87.911-45.146Q87.911-45.454 87.821-45.612Q87.731-45.771 87.438-45.771Q87.169-45.771 86.940-45.640Q86.712-45.509 86.575-45.280Q86.438-45.052 86.438-44.786L86.438-43.400L86.864-43.400Q87.071-43.376 87.110-43.169L87.110-43.079Q87.071-42.864 86.864-42.841L85.376-42.841Q85.169-42.864 85.126-43.079\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M105.313 28.29h147.954V5.529H105.313Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(143.091 61.306)\">\u003Cpath d=\"M10.695-42.763Q10.261-42.763 9.929-43.001Q9.597-43.239 9.377-43.628Q9.156-44.017 9.049-44.454Q8.941-44.892 8.941-45.290Q8.941-45.681 9.051-46.124Q9.160-46.568 9.377-46.948Q9.594-47.329 9.928-47.570Q10.261-47.810 10.695-47.810Q11.250-47.810 11.650-47.411Q12.051-47.013 12.248-46.427Q12.445-45.841 12.445-45.290Q12.445-44.736 12.248-44.148Q12.051-43.560 11.650-43.161Q11.250-42.763 10.695-42.763M10.695-43.321Q10.996-43.321 11.213-43.538Q11.429-43.755 11.556-44.083Q11.683-44.411 11.744-44.757Q11.804-45.103 11.804-45.384Q11.804-45.634 11.742-45.960Q11.679-46.286 11.549-46.577Q11.418-46.868 11.205-47.058Q10.992-47.247 10.695-47.247Q10.320-47.247 10.068-46.935Q9.816-46.622 9.699-46.189Q9.582-45.755 9.582-45.384Q9.582-44.986 9.695-44.505Q9.808-44.025 10.056-43.673Q10.304-43.321 10.695-43.321M13.957-43.720Q14.074-43.517 14.308-43.419Q14.543-43.321 14.804-43.321Q15.101-43.321 15.375-43.450Q15.648-43.579 15.822-43.816Q15.996-44.052 15.996-44.353Q15.996-44.607 15.877-44.849Q15.758-45.091 15.543-45.237Q15.328-45.384 15.058-45.384Q14.453-45.384 14.117-45.064Q14.039-44.978 13.984-44.931Q13.929-44.884 13.844-44.872L13.742-44.872Q13.543-44.896 13.492-45.114L13.492-47.497Q13.543-47.704 13.742-47.728L16.101-47.728Q16.297-47.708 16.347-47.497L16.347-47.407Q16.297-47.193 16.101-47.169L14.133-47.169L14.133-45.743Q14.539-45.946 15.058-45.946Q15.488-45.946 15.853-45.730Q16.219-45.513 16.428-45.144Q16.636-44.775 16.636-44.353Q16.636-43.880 16.373-43.521Q16.109-43.161 15.685-42.962Q15.261-42.763 14.804-42.763Q14.551-42.763 14.273-42.837Q13.996-42.911 13.761-43.068Q13.527-43.224 13.386-43.458Q13.246-43.693 13.246-43.978Q13.246-44.146 13.361-44.269Q13.476-44.392 13.652-44.392Q13.734-44.392 13.804-44.362Q13.875-44.333 13.931-44.279Q13.988-44.224 14.019-44.148Q14.051-44.071 14.051-43.993Q14.051-43.833 13.957-43.720\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(143.091 61.306)\">\u003Cpath d=\"M21.394-41.298L21.394-41.384Q21.437-41.603 21.644-41.626L22.066-41.626L22.066-45.728L21.644-45.728Q21.437-45.751 21.394-45.970L21.394-46.056Q21.441-46.267 21.644-46.290L22.461-46.290Q22.656-46.271 22.707-46.056L22.707-45.986Q22.918-46.154 23.181-46.241Q23.445-46.329 23.715-46.329Q24.054-46.329 24.351-46.185Q24.648-46.040 24.863-45.788Q25.078-45.536 25.193-45.224Q25.308-44.911 25.308-44.568Q25.308-44.103 25.082-43.693Q24.855-43.282 24.469-43.042Q24.082-42.802 23.613-42.802Q23.094-42.802 22.707-43.169L22.707-41.626L23.133-41.626Q23.340-41.603 23.379-41.384L23.379-41.298Q23.340-41.087 23.133-41.064L21.644-41.064Q21.441-41.087 21.394-41.298M23.570-43.361Q23.879-43.361 24.129-43.530Q24.379-43.700 24.523-43.982Q24.668-44.263 24.668-44.568Q24.668-44.857 24.543-45.136Q24.418-45.415 24.185-45.593Q23.953-45.771 23.652-45.771Q23.332-45.771 23.070-45.585Q22.808-45.400 22.707-45.099L22.707-44.247Q22.797-43.880 23.017-43.620Q23.238-43.361 23.570-43.361M26.187-43.079L26.187-43.169Q26.238-43.376 26.433-43.400L27.472-43.400L27.472-45.728L26.500-45.728Q26.301-45.751 26.250-45.970L26.250-46.056Q26.301-46.267 26.500-46.290L27.867-46.290Q28.062-46.271 28.113-46.056L28.113-43.400L29.027-43.400Q29.222-43.376 29.273-43.169L29.273-43.079Q29.222-42.864 29.027-42.841L26.433-42.841Q26.238-42.864 26.187-43.079M27.219-47.267L27.219-47.321Q27.219-47.493 27.355-47.614Q27.492-47.736 27.668-47.736Q27.840-47.736 27.976-47.614Q28.113-47.493 28.113-47.321L28.113-47.267Q28.113-47.091 27.976-46.970Q27.840-46.849 27.668-46.849Q27.492-46.849 27.355-46.970Q27.219-47.091 27.219-47.267M29.887-41.298L29.887-41.384Q29.929-41.603 30.137-41.626L30.558-41.626L30.558-45.728L30.137-45.728Q29.929-45.751 29.887-45.970L29.887-46.056Q29.933-46.267 30.137-46.290L30.953-46.290Q31.148-46.271 31.199-46.056L31.199-45.986Q31.410-46.154 31.674-46.241Q31.937-46.329 32.207-46.329Q32.547-46.329 32.844-46.185Q33.140-46.040 33.355-45.788Q33.570-45.536 33.685-45.224Q33.801-44.911 33.801-44.568Q33.801-44.103 33.574-43.693Q33.347-43.282 32.961-43.042Q32.574-42.802 32.105-42.802Q31.586-42.802 31.199-43.169L31.199-41.626L31.625-41.626Q31.832-41.603 31.871-41.384L31.871-41.298Q31.832-41.087 31.625-41.064L30.137-41.064Q29.933-41.087 29.887-41.298M32.062-43.361Q32.371-43.361 32.621-43.530Q32.871-43.700 33.015-43.982Q33.160-44.263 33.160-44.568Q33.160-44.857 33.035-45.136Q32.910-45.415 32.678-45.593Q32.445-45.771 32.144-45.771Q31.824-45.771 31.562-45.585Q31.301-45.400 31.199-45.099L31.199-44.247Q31.289-43.880 31.510-43.620Q31.730-43.361 32.062-43.361M37.574-44.329L35.133-44.329Q35.187-44.052 35.385-43.829Q35.582-43.607 35.859-43.484Q36.136-43.361 36.422-43.361Q36.894-43.361 37.117-43.650Q37.125-43.661 37.181-43.767Q37.238-43.872 37.287-43.915Q37.336-43.958 37.429-43.970L37.574-43.970Q37.765-43.950 37.824-43.736L37.824-43.681Q37.758-43.380 37.527-43.183Q37.297-42.986 36.984-42.894Q36.672-42.802 36.367-42.802Q35.883-42.802 35.443-43.030Q35.004-43.259 34.736-43.659Q34.469-44.060 34.469-44.552L34.469-44.611Q34.469-45.079 34.715-45.482Q34.961-45.884 35.369-46.118Q35.777-46.353 36.246-46.353Q36.750-46.353 37.103-46.130Q37.457-45.907 37.640-45.519Q37.824-45.130 37.824-44.626L37.824-44.568Q37.765-44.353 37.574-44.329M35.140-44.880L37.168-44.880Q37.121-45.290 36.883-45.542Q36.644-45.794 36.246-45.794Q35.851-45.794 35.545-45.532Q35.238-45.271 35.140-44.880M38.758-43.079L38.758-43.169Q38.808-43.376 39.004-43.400L40.109-43.400L40.109-47.169L39.004-47.169Q38.808-47.193 38.758-47.407L38.758-47.497Q38.808-47.704 39.004-47.728L40.500-47.728Q40.691-47.704 40.750-47.497L40.750-43.400L41.851-43.400Q42.051-43.376 42.101-43.169L42.101-43.079Q42.051-42.864 41.851-42.841L39.004-42.841Q38.808-42.864 38.758-43.079M43.172-43.079L43.172-43.169Q43.222-43.376 43.418-43.400L44.457-43.400L44.457-45.728L43.484-45.728Q43.285-45.751 43.234-45.970L43.234-46.056Q43.285-46.267 43.484-46.290L44.851-46.290Q45.047-46.271 45.097-46.056L45.097-43.400L46.011-43.400Q46.207-43.376 46.258-43.169L46.258-43.079Q46.207-42.864 46.011-42.841L43.418-42.841Q43.222-42.864 43.172-43.079M44.203-47.267L44.203-47.321Q44.203-47.493 44.340-47.614Q44.476-47.736 44.652-47.736Q44.824-47.736 44.961-47.614Q45.097-47.493 45.097-47.321L45.097-47.267Q45.097-47.091 44.961-46.970Q44.824-46.849 44.652-46.849Q44.476-46.849 44.340-46.970Q44.203-47.091 44.203-47.267M46.871-43.079L46.871-43.169Q46.914-43.376 47.121-43.400L47.543-43.400L47.543-45.728L47.121-45.728Q46.914-45.751 46.871-45.970L46.871-46.056Q46.918-46.267 47.121-46.290L47.937-46.290Q48.133-46.267 48.183-46.056L48.183-45.970L48.176-45.946Q48.402-46.126 48.676-46.228Q48.949-46.329 49.242-46.329Q49.590-46.329 49.828-46.189Q50.066-46.048 50.181-45.790Q50.297-45.532 50.297-45.177L50.297-43.400L50.722-43.400Q50.929-43.376 50.969-43.169L50.969-43.079Q50.929-42.864 50.722-42.841L49.328-42.841Q49.133-42.864 49.082-43.079L49.082-43.169Q49.133-43.380 49.328-43.400L49.656-43.400L49.656-45.146Q49.656-45.454 49.566-45.612Q49.476-45.771 49.183-45.771Q48.914-45.771 48.685-45.640Q48.457-45.509 48.320-45.280Q48.183-45.052 48.183-44.786L48.183-43.400L48.609-43.400Q48.816-43.376 48.855-43.169L48.855-43.079Q48.816-42.864 48.609-42.841L47.121-42.841Q46.914-42.864 46.871-43.079M51.664-43.079L51.664-43.169Q51.715-43.376 51.910-43.400L52.949-43.400L52.949-45.728L51.976-45.728Q51.777-45.751 51.726-45.970L51.726-46.056Q51.777-46.267 51.976-46.290L53.344-46.290Q53.539-46.271 53.590-46.056L53.590-43.400L54.504-43.400Q54.699-43.376 54.750-43.169L54.750-43.079Q54.699-42.864 54.504-42.841L51.910-42.841Q51.715-42.864 51.664-43.079M52.695-47.267L52.695-47.321Q52.695-47.493 52.832-47.614Q52.969-47.736 53.144-47.736Q53.316-47.736 53.453-47.614Q53.590-47.493 53.590-47.321L53.590-47.267Q53.590-47.091 53.453-46.970Q53.316-46.849 53.144-46.849Q52.969-46.849 52.832-46.970Q52.695-47.091 52.695-47.267M55.363-43.079L55.363-43.169Q55.406-43.376 55.613-43.400L56.035-43.400L56.035-45.728L55.613-45.728Q55.406-45.751 55.363-45.970L55.363-46.056Q55.410-46.267 55.613-46.290L56.429-46.290Q56.625-46.267 56.676-46.056L56.676-45.970L56.668-45.946Q56.894-46.126 57.168-46.228Q57.441-46.329 57.734-46.329Q58.082-46.329 58.320-46.189Q58.558-46.048 58.674-45.790Q58.789-45.532 58.789-45.177L58.789-43.400L59.215-43.400Q59.422-43.376 59.461-43.169L59.461-43.079Q59.422-42.864 59.215-42.841L57.820-42.841Q57.625-42.864 57.574-43.079L57.574-43.169Q57.625-43.380 57.820-43.400L58.148-43.400L58.148-45.146Q58.148-45.454 58.058-45.612Q57.969-45.771 57.676-45.771Q57.406-45.771 57.178-45.640Q56.949-45.509 56.812-45.280Q56.676-45.052 56.676-44.786L56.676-43.400L57.101-43.400Q57.308-43.376 57.347-43.169L57.347-43.079Q57.308-42.864 57.101-42.841L55.613-42.841Q55.406-42.864 55.363-43.079M59.777-42.193Q59.777-42.493 59.926-42.755Q60.074-43.017 60.324-43.177Q60.140-43.431 60.140-43.751Q60.140-44.036 60.293-44.298Q60.043-44.622 60.043-45.040Q60.043-45.400 60.234-45.696Q60.426-45.993 60.744-46.161Q61.062-46.329 61.426-46.329Q61.633-46.329 61.836-46.269Q62.039-46.208 62.203-46.107Q62.586-46.368 63.058-46.368Q63.297-46.368 63.478-46.237Q63.660-46.107 63.660-45.880Q63.660-45.732 63.558-45.626Q63.457-45.521 63.301-45.521Q63.168-45.521 63.072-45.599Q62.976-45.677 62.945-45.802Q62.801-45.794 62.601-45.704Q62.804-45.392 62.804-45.040Q62.804-44.759 62.693-44.527Q62.582-44.294 62.386-44.116Q62.191-43.939 61.939-43.841Q61.687-43.743 61.426-43.743Q61.039-43.743 60.707-43.931Q60.695-43.931 60.685-43.859Q60.676-43.786 60.676-43.751Q60.676-43.630 60.742-43.523Q60.808-43.415 60.929-43.376Q60.945-43.380 60.959-43.382Q60.972-43.384 60.996-43.384Q61.011-43.384 61.043-43.376Q61.074-43.368 61.082-43.368L61.676-43.368Q62.457-43.368 62.998-43.126Q63.539-42.884 63.539-42.193Q63.539-41.892 63.359-41.665Q63.179-41.439 62.883-41.294Q62.586-41.150 62.265-41.083Q61.945-41.017 61.660-41.017Q61.269-41.017 60.828-41.140Q60.386-41.263 60.082-41.530Q59.777-41.798 59.777-42.193M60.316-42.200Q60.316-41.982 60.556-41.841Q60.797-41.700 61.121-41.634Q61.445-41.568 61.660-41.568Q61.875-41.568 62.199-41.634Q62.523-41.700 62.763-41.841Q63.004-41.982 63.004-42.200Q63.004-42.489 62.779-42.628Q62.554-42.767 62.273-42.800Q61.992-42.833 61.644-42.833L61.027-42.833Q60.844-42.833 60.681-42.753Q60.519-42.673 60.418-42.527Q60.316-42.380 60.316-42.200M61.426-44.298Q61.726-44.298 61.945-44.517Q62.164-44.736 62.164-45.040Q62.164-45.196 62.109-45.327Q62.054-45.458 61.949-45.564Q61.844-45.669 61.713-45.724Q61.582-45.779 61.426-45.779Q61.121-45.779 60.902-45.560Q60.683-45.341 60.683-45.040Q60.683-44.743 60.906-44.521Q61.129-44.298 61.426-44.298\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M179.29-31.26v4.713\"\u002F>\u003Cpath stroke=\"none\" d=\"m179.29-24.547 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M179.29-1.385v4.713\"\u002F>\u003Cpath stroke=\"none\" d=\"m179.29 5.328 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M276.03-31.46h147.954v-22.763H276.03Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(301.057 1.556)\">\u003Cpath d=\"M10.695-42.763Q10.261-42.763 9.929-43.001Q9.597-43.239 9.377-43.628Q9.156-44.017 9.049-44.454Q8.941-44.892 8.941-45.290Q8.941-45.681 9.051-46.124Q9.160-46.568 9.377-46.948Q9.594-47.329 9.928-47.570Q10.261-47.810 10.695-47.810Q11.250-47.810 11.650-47.411Q12.051-47.013 12.248-46.427Q12.445-45.841 12.445-45.290Q12.445-44.736 12.248-44.148Q12.051-43.560 11.650-43.161Q11.250-42.763 10.695-42.763M10.695-43.321Q10.996-43.321 11.213-43.538Q11.429-43.755 11.556-44.083Q11.683-44.411 11.744-44.757Q11.804-45.103 11.804-45.384Q11.804-45.634 11.742-45.960Q11.679-46.286 11.549-46.577Q11.418-46.868 11.205-47.058Q10.992-47.247 10.695-47.247Q10.320-47.247 10.068-46.935Q9.816-46.622 9.699-46.189Q9.582-45.755 9.582-45.384Q9.582-44.986 9.695-44.505Q9.808-44.025 10.056-43.673Q10.304-43.321 10.695-43.321M14.941-42.763Q14.301-42.763 13.914-43.140Q13.527-43.517 13.369-44.089Q13.211-44.661 13.211-45.290Q13.211-45.755 13.371-46.210Q13.531-46.665 13.820-47.025Q14.109-47.384 14.517-47.597Q14.926-47.810 15.414-47.810Q15.687-47.810 15.937-47.712Q16.187-47.614 16.340-47.419Q16.492-47.224 16.492-46.931Q16.492-46.755 16.379-46.634Q16.265-46.513 16.094-46.513Q15.918-46.513 15.801-46.626Q15.683-46.739 15.683-46.911Q15.683-47.032 15.758-47.154Q15.648-47.247 15.414-47.247Q14.996-47.247 14.660-47.007Q14.324-46.767 14.119-46.380Q13.914-45.993 13.867-45.595Q14.105-45.794 14.414-45.902Q14.722-46.009 15.043-46.009Q15.383-46.009 15.681-45.884Q15.980-45.759 16.199-45.540Q16.418-45.321 16.543-45.023Q16.668-44.724 16.668-44.384Q16.668-44.036 16.529-43.736Q16.390-43.435 16.150-43.218Q15.910-43.001 15.595-42.882Q15.281-42.763 14.941-42.763M13.957-44.306Q14.019-44.044 14.148-43.820Q14.277-43.595 14.476-43.458Q14.676-43.321 14.941-43.321Q15.394-43.321 15.711-43.628Q16.027-43.935 16.027-44.384Q16.027-44.665 15.892-44.911Q15.758-45.157 15.521-45.300Q15.285-45.443 14.988-45.443Q14.597-45.443 14.265-45.216Q13.933-44.989 13.933-44.618Q13.933-44.579 13.949-44.501Q13.965-44.423 13.965-44.384Q13.965-44.357 13.963-44.341Q13.961-44.325 13.957-44.306\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(301.057 1.556)\">\u003Cpath d=\"M21.269-43.079L21.269-43.169Q21.320-43.380 21.515-43.400L21.715-43.400L21.715-45.728L21.515-45.728Q21.308-45.751 21.269-45.970L21.269-46.056Q21.320-46.271 21.515-46.290L21.996-46.290Q22.187-46.267 22.246-46.056Q22.566-46.329 22.980-46.329Q23.172-46.329 23.340-46.220Q23.508-46.111 23.582-45.939Q23.758-46.130 23.980-46.230Q24.203-46.329 24.445-46.329Q24.863-46.329 25.017-45.987Q25.172-45.646 25.172-45.177L25.172-43.400L25.371-43.400Q25.582-43.376 25.621-43.169L25.621-43.079Q25.570-42.864 25.371-42.841L24.554-42.841Q24.359-42.864 24.308-43.079L24.308-43.169Q24.359-43.376 24.554-43.400L24.644-43.400L24.644-45.146Q24.644-45.771 24.394-45.771Q24.062-45.771 23.885-45.460Q23.707-45.150 23.707-44.786L23.707-43.400L23.910-43.400Q24.117-43.376 24.156-43.169L24.156-43.079Q24.105-42.864 23.910-42.841L23.094-42.841Q22.894-42.864 22.844-43.079L22.844-43.169Q22.894-43.376 23.094-43.400L23.179-43.400L23.179-45.146Q23.179-45.771 22.933-45.771Q22.601-45.771 22.424-45.458Q22.246-45.146 22.246-44.786L22.246-43.400L22.445-43.400Q22.652-43.376 22.691-43.169L22.691-43.079Q22.640-42.861 22.445-42.841L21.515-42.841Q21.308-42.864 21.269-43.079M29.082-44.329L26.640-44.329Q26.695-44.052 26.892-43.829Q27.090-43.607 27.367-43.484Q27.644-43.361 27.929-43.361Q28.402-43.361 28.625-43.650Q28.633-43.661 28.689-43.767Q28.746-43.872 28.795-43.915Q28.844-43.958 28.937-43.970L29.082-43.970Q29.273-43.950 29.332-43.736L29.332-43.681Q29.265-43.380 29.035-43.183Q28.804-42.986 28.492-42.894Q28.179-42.802 27.875-42.802Q27.390-42.802 26.951-43.030Q26.512-43.259 26.244-43.659Q25.976-44.060 25.976-44.552L25.976-44.611Q25.976-45.079 26.222-45.482Q26.469-45.884 26.877-46.118Q27.285-46.353 27.754-46.353Q28.258-46.353 28.611-46.130Q28.965-45.907 29.148-45.519Q29.332-45.130 29.332-44.626L29.332-44.568Q29.273-44.353 29.082-44.329M26.648-44.880L28.676-44.880Q28.629-45.290 28.390-45.542Q28.152-45.794 27.754-45.794Q27.359-45.794 27.053-45.532Q26.746-45.271 26.648-44.880M29.762-43.079L29.762-43.169Q29.812-43.380 30.008-43.400L30.207-43.400L30.207-45.728L30.008-45.728Q29.801-45.751 29.762-45.970L29.762-46.056Q29.812-46.271 30.008-46.290L30.488-46.290Q30.679-46.267 30.738-46.056Q31.058-46.329 31.472-46.329Q31.664-46.329 31.832-46.220Q32-46.111 32.074-45.939Q32.250-46.130 32.472-46.230Q32.695-46.329 32.937-46.329Q33.355-46.329 33.510-45.987Q33.664-45.646 33.664-45.177L33.664-43.400L33.863-43.400Q34.074-43.376 34.113-43.169L34.113-43.079Q34.062-42.864 33.863-42.841L33.047-42.841Q32.851-42.864 32.801-43.079L32.801-43.169Q32.851-43.376 33.047-43.400L33.136-43.400L33.136-45.146Q33.136-45.771 32.886-45.771Q32.554-45.771 32.377-45.460Q32.199-45.150 32.199-44.786L32.199-43.400L32.402-43.400Q32.609-43.376 32.648-43.169L32.648-43.079Q32.597-42.864 32.402-42.841L31.586-42.841Q31.387-42.864 31.336-43.079L31.336-43.169Q31.387-43.376 31.586-43.400L31.672-43.400L31.672-45.146Q31.672-45.771 31.426-45.771Q31.094-45.771 30.916-45.458Q30.738-45.146 30.738-44.786L30.738-43.400L30.937-43.400Q31.144-43.376 31.183-43.169L31.183-43.079Q31.133-42.861 30.937-42.841L30.008-42.841Q29.801-42.864 29.762-43.079M36.183-42.802Q35.711-42.802 35.326-43.046Q34.941-43.290 34.719-43.700Q34.496-44.111 34.496-44.568Q34.496-44.911 34.621-45.234Q34.746-45.556 34.976-45.810Q35.207-46.064 35.513-46.208Q35.820-46.353 36.183-46.353Q36.547-46.353 36.859-46.206Q37.172-46.060 37.394-45.814Q37.617-45.568 37.744-45.247Q37.871-44.927 37.871-44.568Q37.871-44.111 37.646-43.698Q37.422-43.286 37.037-43.044Q36.652-42.802 36.183-42.802M36.183-43.361Q36.648-43.361 36.939-43.755Q37.230-44.150 37.230-44.634Q37.230-44.927 37.095-45.195Q36.961-45.462 36.720-45.628Q36.480-45.794 36.183-45.794Q35.879-45.794 35.640-45.628Q35.402-45.462 35.267-45.195Q35.133-44.927 35.133-44.634Q35.133-44.154 35.426-43.757Q35.719-43.361 36.183-43.361M38.531-43.079L38.531-43.169Q38.590-43.376 38.781-43.400L39.492-43.400L39.492-45.728L38.781-45.728Q38.586-45.751 38.531-45.970L38.531-46.056Q38.590-46.267 38.781-46.290L39.883-46.290Q40.082-46.271 40.133-46.056L40.133-45.728Q40.394-46.013 40.750-46.171Q41.105-46.329 41.492-46.329Q41.785-46.329 42.019-46.195Q42.254-46.060 42.254-45.794Q42.254-45.626 42.144-45.509Q42.035-45.392 41.867-45.392Q41.715-45.392 41.599-45.503Q41.484-45.614 41.484-45.771Q41.109-45.771 40.795-45.570Q40.480-45.368 40.306-45.034Q40.133-44.700 40.133-44.321L40.133-43.400L41.078-43.400Q41.285-43.376 41.324-43.169L41.324-43.079Q41.285-42.864 41.078-42.841L38.781-42.841Q38.590-42.864 38.531-43.079M42.898-41.720Q42.898-41.829 42.949-41.921Q43-42.013 43.092-42.064Q43.183-42.114 43.289-42.114Q43.398-42.114 43.490-42.064Q43.582-42.013 43.633-41.921Q43.683-41.829 43.683-41.720L43.539-41.720Q43.539-41.583 43.562-41.583Q43.820-41.583 44.008-41.775Q44.195-41.966 44.281-42.232L44.492-42.841L43.355-45.728L43.027-45.728Q42.832-45.751 42.777-45.970L42.777-46.056Q42.836-46.267 43.027-46.290L44.187-46.290Q44.383-46.267 44.433-46.056L44.433-45.970Q44.383-45.751 44.187-45.728L43.922-45.728Q44.258-44.880 44.502-44.226Q44.746-43.571 44.746-43.482L44.754-43.482Q44.754-43.540 44.845-43.833Q44.937-44.126 45.131-44.710Q45.324-45.294 45.465-45.728L45.187-45.728Q44.976-45.751 44.937-45.970L44.937-46.056Q44.988-46.271 45.187-46.290L46.340-46.290Q46.547-46.267 46.586-46.056L46.586-45.970Q46.547-45.751 46.340-45.728L46.019-45.728L44.844-42.232Q44.676-41.732 44.349-41.378Q44.023-41.025 43.562-41.025Q43.289-41.025 43.094-41.236Q42.898-41.446 42.898-41.720\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(301.057 1.556)\">\u003Cpath d=\"M51.144-43.079L51.144-43.169Q51.187-43.376 51.394-43.400L51.816-43.400L51.816-47.169L51.394-47.169Q51.187-47.193 51.144-47.407L51.144-47.497Q51.187-47.704 51.394-47.728L52.211-47.728Q52.406-47.704 52.457-47.497L52.457-45.946Q52.918-46.329 53.515-46.329Q53.863-46.329 54.101-46.189Q54.340-46.048 54.455-45.790Q54.570-45.532 54.570-45.177L54.570-43.400L54.996-43.400Q55.203-43.376 55.242-43.169L55.242-43.079Q55.203-42.864 54.996-42.841L53.601-42.841Q53.406-42.864 53.355-43.079L53.355-43.169Q53.406-43.380 53.601-43.400L53.929-43.400L53.929-45.146Q53.929-45.454 53.840-45.612Q53.750-45.771 53.457-45.771Q53.187-45.771 52.959-45.640Q52.730-45.509 52.594-45.280Q52.457-45.052 52.457-44.786L52.457-43.400L52.883-43.400Q53.090-43.376 53.129-43.169L53.129-43.079Q53.090-42.864 52.883-42.841L51.394-42.841Q51.187-42.864 51.144-43.079M55.937-43.079L55.937-43.169Q55.988-43.376 56.183-43.400L57.222-43.400L57.222-45.728L56.250-45.728Q56.051-45.751 56-45.970L56-46.056Q56.051-46.267 56.250-46.290L57.617-46.290Q57.812-46.271 57.863-46.056L57.863-43.400L58.777-43.400Q58.972-43.376 59.023-43.169L59.023-43.079Q58.972-42.864 58.777-42.841L56.183-42.841Q55.988-42.864 55.937-43.079M56.969-47.267L56.969-47.321Q56.969-47.493 57.105-47.614Q57.242-47.736 57.418-47.736Q57.590-47.736 57.726-47.614Q57.863-47.493 57.863-47.321L57.863-47.267Q57.863-47.091 57.726-46.970Q57.590-46.849 57.418-46.849Q57.242-46.849 57.105-46.970Q56.969-47.091 56.969-47.267M63.078-44.329L60.636-44.329Q60.691-44.052 60.888-43.829Q61.086-43.607 61.363-43.484Q61.640-43.361 61.926-43.361Q62.398-43.361 62.621-43.650Q62.629-43.661 62.685-43.767Q62.742-43.872 62.791-43.915Q62.840-43.958 62.933-43.970L63.078-43.970Q63.269-43.950 63.328-43.736L63.328-43.681Q63.261-43.380 63.031-43.183Q62.801-42.986 62.488-42.894Q62.176-42.802 61.871-42.802Q61.386-42.802 60.947-43.030Q60.508-43.259 60.240-43.659Q59.972-44.060 59.972-44.552L59.972-44.611Q59.972-45.079 60.219-45.482Q60.465-45.884 60.873-46.118Q61.281-46.353 61.750-46.353Q62.254-46.353 62.607-46.130Q62.961-45.907 63.144-45.519Q63.328-45.130 63.328-44.626L63.328-44.568Q63.269-44.353 63.078-44.329M60.644-44.880L62.672-44.880Q62.625-45.290 62.386-45.542Q62.148-45.794 61.750-45.794Q61.355-45.794 61.049-45.532Q60.742-45.271 60.644-44.880M64.035-43.079L64.035-43.169Q64.094-43.376 64.285-43.400L64.996-43.400L64.996-45.728L64.285-45.728Q64.090-45.751 64.035-45.970L64.035-46.056Q64.094-46.267 64.285-46.290L65.386-46.290Q65.586-46.271 65.636-46.056L65.636-45.728Q65.898-46.013 66.254-46.171Q66.609-46.329 66.996-46.329Q67.289-46.329 67.523-46.195Q67.758-46.060 67.758-45.794Q67.758-45.626 67.648-45.509Q67.539-45.392 67.371-45.392Q67.219-45.392 67.103-45.503Q66.988-45.614 66.988-45.771Q66.613-45.771 66.299-45.570Q65.984-45.368 65.810-45.034Q65.636-44.700 65.636-44.321L65.636-43.400L66.582-43.400Q66.789-43.376 66.828-43.169L66.828-43.079Q66.789-42.864 66.582-42.841L64.285-42.841Q64.094-42.864 64.035-43.079M68.465-43.954Q68.465-44.400 68.879-44.657Q69.293-44.915 69.834-45.015Q70.375-45.114 70.883-45.122Q70.883-45.337 70.748-45.489Q70.613-45.642 70.406-45.718Q70.199-45.794 69.988-45.794Q69.644-45.794 69.484-45.771L69.484-45.712Q69.484-45.544 69.365-45.429Q69.246-45.314 69.082-45.314Q68.906-45.314 68.791-45.437Q68.676-45.560 68.676-45.728Q68.676-46.134 69.056-46.243Q69.437-46.353 69.996-46.353Q70.265-46.353 70.533-46.275Q70.801-46.196 71.025-46.046Q71.250-45.896 71.386-45.675Q71.523-45.454 71.523-45.177L71.523-43.458Q71.523-43.400 72.051-43.400Q72.246-43.380 72.297-43.169L72.297-43.079Q72.246-42.864 72.051-42.841L71.906-42.841Q71.562-42.841 71.334-42.888Q71.105-42.935 70.961-43.122Q70.500-42.802 69.793-42.802Q69.457-42.802 69.152-42.943Q68.847-43.083 68.656-43.345Q68.465-43.607 68.465-43.954M69.105-43.946Q69.105-43.673 69.347-43.517Q69.590-43.361 69.875-43.361Q70.094-43.361 70.326-43.419Q70.558-43.478 70.720-43.616Q70.883-43.755 70.883-43.978L70.883-44.568Q70.601-44.568 70.185-44.511Q69.769-44.454 69.437-44.316Q69.105-44.177 69.105-43.946M72.527-43.079L72.527-43.169Q72.586-43.376 72.777-43.400L73.488-43.400L73.488-45.728L72.777-45.728Q72.582-45.751 72.527-45.970L72.527-46.056Q72.586-46.267 72.777-46.290L73.879-46.290Q74.078-46.271 74.129-46.056L74.129-45.728Q74.390-46.013 74.746-46.171Q75.101-46.329 75.488-46.329Q75.781-46.329 76.015-46.195Q76.250-46.060 76.250-45.794Q76.250-45.626 76.140-45.509Q76.031-45.392 75.863-45.392Q75.711-45.392 75.595-45.503Q75.480-45.614 75.480-45.771Q75.105-45.771 74.791-45.570Q74.476-45.368 74.303-45.034Q74.129-44.700 74.129-44.321L74.129-43.400L75.074-43.400Q75.281-43.376 75.320-43.169L75.320-43.079Q75.281-42.864 75.074-42.841L72.777-42.841Q72.586-42.864 72.527-43.079M77.109-44.568Q77.109-45.048 77.353-45.462Q77.597-45.876 78.013-46.114Q78.429-46.353 78.910-46.353Q79.465-46.353 79.844-46.243Q80.222-46.134 80.222-45.728Q80.222-45.560 80.109-45.437Q79.996-45.314 79.824-45.314Q79.652-45.314 79.533-45.429Q79.414-45.544 79.414-45.712L79.414-45.771Q79.254-45.794 78.918-45.794Q78.590-45.794 78.322-45.624Q78.054-45.454 77.902-45.171Q77.750-44.888 77.750-44.568Q77.750-44.247 77.922-43.966Q78.094-43.685 78.379-43.523Q78.664-43.361 78.992-43.361Q79.304-43.361 79.431-43.464Q79.558-43.568 79.676-43.757Q79.793-43.946 79.910-43.962L80.078-43.962Q80.183-43.950 80.248-43.882Q80.312-43.814 80.312-43.712Q80.312-43.665 80.293-43.626Q80.183-43.333 79.980-43.154Q79.777-42.974 79.502-42.888Q79.226-42.802 78.910-42.802Q78.426-42.802 78.010-43.040Q77.594-43.279 77.351-43.681Q77.109-44.083 77.109-44.568M80.867-43.079L80.867-43.169Q80.910-43.376 81.117-43.400L81.539-43.400L81.539-47.169L81.117-47.169Q80.910-47.193 80.867-47.407L80.867-47.497Q80.910-47.704 81.117-47.728L81.933-47.728Q82.129-47.704 82.179-47.497L82.179-45.946Q82.640-46.329 83.238-46.329Q83.586-46.329 83.824-46.189Q84.062-46.048 84.178-45.790Q84.293-45.532 84.293-45.177L84.293-43.400L84.719-43.400Q84.926-43.376 84.965-43.169L84.965-43.079Q84.926-42.864 84.719-42.841L83.324-42.841Q83.129-42.864 83.078-43.079L83.078-43.169Q83.129-43.380 83.324-43.400L83.652-43.400L83.652-45.146Q83.652-45.454 83.562-45.612Q83.472-45.771 83.179-45.771Q82.910-45.771 82.681-45.640Q82.453-45.509 82.316-45.280Q82.179-45.052 82.179-44.786L82.179-43.400L82.605-43.400Q82.812-43.376 82.851-43.169L82.851-43.079Q82.812-42.864 82.605-42.841L81.117-42.841Q80.910-42.864 80.867-43.079M85.386-41.720Q85.386-41.829 85.437-41.921Q85.488-42.013 85.580-42.064Q85.672-42.114 85.777-42.114Q85.886-42.114 85.978-42.064Q86.070-42.013 86.121-41.921Q86.172-41.829 86.172-41.720L86.027-41.720Q86.027-41.583 86.051-41.583Q86.308-41.583 86.496-41.775Q86.683-41.966 86.769-42.232L86.980-42.841L85.844-45.728L85.515-45.728Q85.320-45.751 85.265-45.970L85.265-46.056Q85.324-46.267 85.515-46.290L86.676-46.290Q86.871-46.267 86.922-46.056L86.922-45.970Q86.871-45.751 86.676-45.728L86.410-45.728Q86.746-44.880 86.990-44.226Q87.234-43.571 87.234-43.482L87.242-43.482Q87.242-43.540 87.334-43.833Q87.426-44.126 87.619-44.710Q87.812-45.294 87.953-45.728L87.676-45.728Q87.465-45.751 87.426-45.970L87.426-46.056Q87.476-46.271 87.676-46.290L88.828-46.290Q89.035-46.267 89.074-46.056L89.074-45.970Q89.035-45.751 88.828-45.728L88.508-45.728L87.332-42.232Q87.164-41.732 86.838-41.378Q86.511-41.025 86.051-41.025Q85.777-41.025 85.582-41.236Q85.386-41.446 85.386-41.720\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M276.03-1.585h147.954v-22.762H276.03Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(305.307 31.431)\">\u003Cpath d=\"M10.695-42.763Q10.261-42.763 9.929-43.001Q9.597-43.239 9.377-43.628Q9.156-44.017 9.049-44.454Q8.941-44.892 8.941-45.290Q8.941-45.681 9.051-46.124Q9.160-46.568 9.377-46.948Q9.594-47.329 9.928-47.570Q10.261-47.810 10.695-47.810Q11.250-47.810 11.650-47.411Q12.051-47.013 12.248-46.427Q12.445-45.841 12.445-45.290Q12.445-44.736 12.248-44.148Q12.051-43.560 11.650-43.161Q11.250-42.763 10.695-42.763M10.695-43.321Q10.996-43.321 11.213-43.538Q11.429-43.755 11.556-44.083Q11.683-44.411 11.744-44.757Q11.804-45.103 11.804-45.384Q11.804-45.634 11.742-45.960Q11.679-46.286 11.549-46.577Q11.418-46.868 11.205-47.058Q10.992-47.247 10.695-47.247Q10.320-47.247 10.068-46.935Q9.816-46.622 9.699-46.189Q9.582-45.755 9.582-45.384Q9.582-44.986 9.695-44.505Q9.808-44.025 10.056-43.673Q10.304-43.321 10.695-43.321M14.156-43.056L14.156-43.114Q14.156-43.657 14.261-44.204Q14.367-44.751 14.572-45.275Q14.777-45.798 15.074-46.277Q15.371-46.755 15.750-47.169L13.812-47.169L13.812-47.032Q13.761-46.818 13.562-46.794L13.422-46.794Q13.222-46.818 13.172-47.032L13.172-47.626Q13.222-47.837 13.422-47.857L13.562-47.857Q13.699-47.845 13.773-47.728L16.461-47.728Q16.656-47.704 16.707-47.497L16.707-47.407Q16.695-47.318 16.652-47.267Q16.390-47.009 16.160-46.743Q15.929-46.478 15.767-46.245Q15.605-46.013 15.447-45.714Q15.289-45.415 15.156-45.064Q14.980-44.591 14.888-44.075Q14.797-43.560 14.797-43.056Q14.785-42.931 14.699-42.853Q14.613-42.775 14.492-42.763Q14.355-42.763 14.261-42.841Q14.168-42.919 14.156-43.056\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(305.307 31.431)\">\u003Cpath d=\"M22.980-43.064L22.094-45.728L21.773-45.728Q21.574-45.751 21.523-45.970L21.523-46.056Q21.574-46.267 21.773-46.290L22.933-46.290Q23.129-46.271 23.179-46.056L23.179-45.970Q23.129-45.751 22.933-45.728L22.652-45.728L23.445-43.353L24.234-45.728L23.957-45.728Q23.758-45.751 23.707-45.970L23.707-46.056Q23.758-46.267 23.957-46.290L25.117-46.290Q25.312-46.267 25.363-46.056L25.363-45.970Q25.312-45.751 25.117-45.728L24.797-45.728L23.910-43.064Q23.867-42.950 23.765-42.876Q23.664-42.802 23.539-42.802L23.347-42.802Q23.230-42.802 23.127-42.874Q23.023-42.946 22.980-43.064M26.187-43.079L26.187-43.169Q26.238-43.376 26.433-43.400L27.472-43.400L27.472-45.728L26.500-45.728Q26.301-45.751 26.250-45.970L26.250-46.056Q26.301-46.267 26.500-46.290L27.867-46.290Q28.062-46.271 28.113-46.056L28.113-43.400L29.027-43.400Q29.222-43.376 29.273-43.169L29.273-43.079Q29.222-42.864 29.027-42.841L26.433-42.841Q26.238-42.864 26.187-43.079M27.219-47.267L27.219-47.321Q27.219-47.493 27.355-47.614Q27.492-47.736 27.668-47.736Q27.840-47.736 27.976-47.614Q28.113-47.493 28.113-47.321L28.113-47.267Q28.113-47.091 27.976-46.970Q27.840-46.849 27.668-46.849Q27.492-46.849 27.355-46.970Q27.219-47.091 27.219-47.267M30.039-43.079L30.039-43.169Q30.097-43.376 30.289-43.400L31-43.400L31-45.728L30.289-45.728Q30.094-45.751 30.039-45.970L30.039-46.056Q30.097-46.267 30.289-46.290L31.390-46.290Q31.590-46.271 31.640-46.056L31.640-45.728Q31.902-46.013 32.258-46.171Q32.613-46.329 33-46.329Q33.293-46.329 33.527-46.195Q33.761-46.060 33.761-45.794Q33.761-45.626 33.652-45.509Q33.543-45.392 33.375-45.392Q33.222-45.392 33.107-45.503Q32.992-45.614 32.992-45.771Q32.617-45.771 32.303-45.570Q31.988-45.368 31.814-45.034Q31.640-44.700 31.640-44.321L31.640-43.400L32.586-43.400Q32.793-43.376 32.832-43.169L32.832-43.079Q32.793-42.864 32.586-42.841L30.289-42.841Q30.097-42.864 30.039-43.079M35.261-43.946L35.261-45.728L34.511-45.728Q34.312-45.751 34.261-45.970L34.261-46.056Q34.312-46.267 34.511-46.290L35.261-46.290L35.261-47.040Q35.312-47.247 35.511-47.275L35.656-47.275Q35.851-47.247 35.902-47.040L35.902-46.290L37.261-46.290Q37.453-46.271 37.511-46.056L37.511-45.970Q37.457-45.751 37.261-45.728L35.902-45.728L35.902-43.978Q35.902-43.361 36.476-43.361Q36.726-43.361 36.890-43.546Q37.054-43.732 37.054-43.978Q37.054-44.071 37.127-44.142Q37.199-44.212 37.301-44.224L37.445-44.224Q37.644-44.200 37.695-43.993L37.695-43.946Q37.695-43.622 37.511-43.359Q37.328-43.095 37.035-42.948Q36.742-42.802 36.422-42.802Q35.910-42.802 35.586-43.112Q35.261-43.423 35.261-43.946M39.051-43.696L39.051-45.728L38.629-45.728Q38.422-45.751 38.379-45.970L38.379-46.056Q38.426-46.267 38.629-46.290L39.445-46.290Q39.640-46.267 39.691-46.056L39.691-43.728Q39.691-43.493 39.861-43.427Q40.031-43.361 40.316-43.361Q40.523-43.361 40.719-43.437Q40.914-43.513 41.039-43.663Q41.164-43.814 41.164-44.025L41.164-45.728L40.742-45.728Q40.531-45.751 40.492-45.970L40.492-46.056Q40.531-46.267 40.742-46.290L41.554-46.290Q41.754-46.267 41.804-46.056L41.804-43.400L42.230-43.400Q42.437-43.376 42.476-43.169L42.476-43.079Q42.437-42.864 42.230-42.841L41.414-42.841Q41.215-42.864 41.164-43.064Q40.761-42.802 40.254-42.802Q40.019-42.802 39.804-42.843Q39.590-42.884 39.424-42.986Q39.258-43.087 39.154-43.265Q39.051-43.443 39.051-43.696M42.961-43.954Q42.961-44.400 43.375-44.657Q43.789-44.915 44.330-45.015Q44.871-45.114 45.379-45.122Q45.379-45.337 45.244-45.489Q45.109-45.642 44.902-45.718Q44.695-45.794 44.484-45.794Q44.140-45.794 43.980-45.771L43.980-45.712Q43.980-45.544 43.861-45.429Q43.742-45.314 43.578-45.314Q43.402-45.314 43.287-45.437Q43.172-45.560 43.172-45.728Q43.172-46.134 43.553-46.243Q43.933-46.353 44.492-46.353Q44.761-46.353 45.029-46.275Q45.297-46.196 45.521-46.046Q45.746-45.896 45.883-45.675Q46.019-45.454 46.019-45.177L46.019-43.458Q46.019-43.400 46.547-43.400Q46.742-43.380 46.793-43.169L46.793-43.079Q46.742-42.864 46.547-42.841L46.402-42.841Q46.058-42.841 45.830-42.888Q45.601-42.935 45.457-43.122Q44.996-42.802 44.289-42.802Q43.953-42.802 43.648-42.943Q43.344-43.083 43.152-43.345Q42.961-43.607 42.961-43.954M43.601-43.946Q43.601-43.673 43.844-43.517Q44.086-43.361 44.371-43.361Q44.590-43.361 44.822-43.419Q45.054-43.478 45.217-43.616Q45.379-43.755 45.379-43.978L45.379-44.568Q45.097-44.568 44.681-44.511Q44.265-44.454 43.933-44.316Q43.601-44.177 43.601-43.946M47.250-43.079L47.250-43.169Q47.301-43.376 47.496-43.400L48.601-43.400L48.601-47.169L47.496-47.169Q47.301-47.193 47.250-47.407L47.250-47.497Q47.301-47.704 47.496-47.728L48.992-47.728Q49.183-47.704 49.242-47.497L49.242-43.400L50.344-43.400Q50.543-43.376 50.594-43.169L50.594-43.079Q50.543-42.864 50.344-42.841L47.496-42.841Q47.301-42.864 47.250-43.079\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(305.307 31.431)\">\u003Cpath d=\"M55.269-43.079L55.269-43.169Q55.320-43.380 55.515-43.400L55.715-43.400L55.715-45.728L55.515-45.728Q55.308-45.751 55.269-45.970L55.269-46.056Q55.320-46.271 55.515-46.290L55.996-46.290Q56.187-46.267 56.246-46.056Q56.566-46.329 56.980-46.329Q57.172-46.329 57.340-46.220Q57.508-46.111 57.582-45.939Q57.758-46.130 57.980-46.230Q58.203-46.329 58.445-46.329Q58.863-46.329 59.017-45.987Q59.172-45.646 59.172-45.177L59.172-43.400L59.371-43.400Q59.582-43.376 59.621-43.169L59.621-43.079Q59.570-42.864 59.371-42.841L58.554-42.841Q58.359-42.864 58.308-43.079L58.308-43.169Q58.359-43.376 58.554-43.400L58.644-43.400L58.644-45.146Q58.644-45.771 58.394-45.771Q58.062-45.771 57.885-45.460Q57.707-45.150 57.707-44.786L57.707-43.400L57.910-43.400Q58.117-43.376 58.156-43.169L58.156-43.079Q58.105-42.864 57.910-42.841L57.094-42.841Q56.894-42.864 56.844-43.079L56.844-43.169Q56.894-43.376 57.094-43.400L57.179-43.400L57.179-45.146Q57.179-45.771 56.933-45.771Q56.601-45.771 56.424-45.458Q56.246-45.146 56.246-44.786L56.246-43.400L56.445-43.400Q56.652-43.376 56.691-43.169L56.691-43.079Q56.640-42.861 56.445-42.841L55.515-42.841Q55.308-42.864 55.269-43.079M63.082-44.329L60.640-44.329Q60.695-44.052 60.892-43.829Q61.090-43.607 61.367-43.484Q61.644-43.361 61.929-43.361Q62.402-43.361 62.625-43.650Q62.633-43.661 62.689-43.767Q62.746-43.872 62.795-43.915Q62.844-43.958 62.937-43.970L63.082-43.970Q63.273-43.950 63.332-43.736L63.332-43.681Q63.265-43.380 63.035-43.183Q62.804-42.986 62.492-42.894Q62.179-42.802 61.875-42.802Q61.390-42.802 60.951-43.030Q60.511-43.259 60.244-43.659Q59.976-44.060 59.976-44.552L59.976-44.611Q59.976-45.079 60.222-45.482Q60.469-45.884 60.877-46.118Q61.285-46.353 61.754-46.353Q62.258-46.353 62.611-46.130Q62.965-45.907 63.148-45.519Q63.332-45.130 63.332-44.626L63.332-44.568Q63.273-44.353 63.082-44.329M60.648-44.880L62.676-44.880Q62.629-45.290 62.390-45.542Q62.152-45.794 61.754-45.794Q61.359-45.794 61.053-45.532Q60.746-45.271 60.648-44.880M63.761-43.079L63.761-43.169Q63.812-43.380 64.008-43.400L64.207-43.400L64.207-45.728L64.008-45.728Q63.801-45.751 63.761-45.970L63.761-46.056Q63.812-46.271 64.008-46.290L64.488-46.290Q64.679-46.267 64.738-46.056Q65.058-46.329 65.472-46.329Q65.664-46.329 65.832-46.220Q66-46.111 66.074-45.939Q66.250-46.130 66.472-46.230Q66.695-46.329 66.937-46.329Q67.355-46.329 67.510-45.987Q67.664-45.646 67.664-45.177L67.664-43.400L67.863-43.400Q68.074-43.376 68.113-43.169L68.113-43.079Q68.062-42.864 67.863-42.841L67.047-42.841Q66.851-42.864 66.801-43.079L66.801-43.169Q66.851-43.376 67.047-43.400L67.136-43.400L67.136-45.146Q67.136-45.771 66.886-45.771Q66.554-45.771 66.377-45.460Q66.199-45.150 66.199-44.786L66.199-43.400L66.402-43.400Q66.609-43.376 66.648-43.169L66.648-43.079Q66.597-42.864 66.402-42.841L65.586-42.841Q65.386-42.864 65.336-43.079L65.336-43.169Q65.386-43.376 65.586-43.400L65.672-43.400L65.672-45.146Q65.672-45.771 65.426-45.771Q65.094-45.771 64.916-45.458Q64.738-45.146 64.738-44.786L64.738-43.400L64.937-43.400Q65.144-43.376 65.183-43.169L65.183-43.079Q65.133-42.861 64.937-42.841L64.008-42.841Q63.801-42.864 63.761-43.079M70.183-42.802Q69.711-42.802 69.326-43.046Q68.941-43.290 68.719-43.700Q68.496-44.111 68.496-44.568Q68.496-44.911 68.621-45.234Q68.746-45.556 68.976-45.810Q69.207-46.064 69.513-46.208Q69.820-46.353 70.183-46.353Q70.547-46.353 70.859-46.206Q71.172-46.060 71.394-45.814Q71.617-45.568 71.744-45.247Q71.871-44.927 71.871-44.568Q71.871-44.111 71.646-43.698Q71.422-43.286 71.037-43.044Q70.652-42.802 70.183-42.802M70.183-43.361Q70.648-43.361 70.939-43.755Q71.230-44.150 71.230-44.634Q71.230-44.927 71.095-45.195Q70.961-45.462 70.720-45.628Q70.480-45.794 70.183-45.794Q69.879-45.794 69.640-45.628Q69.402-45.462 69.267-45.195Q69.133-44.927 69.133-44.634Q69.133-44.154 69.426-43.757Q69.719-43.361 70.183-43.361M72.531-43.079L72.531-43.169Q72.590-43.376 72.781-43.400L73.492-43.400L73.492-45.728L72.781-45.728Q72.586-45.751 72.531-45.970L72.531-46.056Q72.590-46.267 72.781-46.290L73.883-46.290Q74.082-46.271 74.133-46.056L74.133-45.728Q74.394-46.013 74.750-46.171Q75.105-46.329 75.492-46.329Q75.785-46.329 76.019-46.195Q76.254-46.060 76.254-45.794Q76.254-45.626 76.144-45.509Q76.035-45.392 75.867-45.392Q75.715-45.392 75.599-45.503Q75.484-45.614 75.484-45.771Q75.109-45.771 74.795-45.570Q74.480-45.368 74.306-45.034Q74.133-44.700 74.133-44.321L74.133-43.400L75.078-43.400Q75.285-43.376 75.324-43.169L75.324-43.079Q75.285-42.864 75.078-42.841L72.781-42.841Q72.590-42.864 72.531-43.079M76.898-41.720Q76.898-41.829 76.949-41.921Q77-42.013 77.092-42.064Q77.183-42.114 77.289-42.114Q77.398-42.114 77.490-42.064Q77.582-42.013 77.633-41.921Q77.683-41.829 77.683-41.720L77.539-41.720Q77.539-41.583 77.562-41.583Q77.820-41.583 78.008-41.775Q78.195-41.966 78.281-42.232L78.492-42.841L77.355-45.728L77.027-45.728Q76.832-45.751 76.777-45.970L76.777-46.056Q76.836-46.267 77.027-46.290L78.187-46.290Q78.383-46.267 78.433-46.056L78.433-45.970Q78.383-45.751 78.187-45.728L77.922-45.728Q78.258-44.880 78.502-44.226Q78.746-43.571 78.746-43.482L78.754-43.482Q78.754-43.540 78.845-43.833Q78.937-44.126 79.131-44.710Q79.324-45.294 79.465-45.728L79.187-45.728Q78.976-45.751 78.937-45.970L78.937-46.056Q78.988-46.271 79.187-46.290L80.340-46.290Q80.547-46.267 80.586-46.056L80.586-45.970Q80.547-45.751 80.340-45.728L80.019-45.728L78.844-42.232Q78.676-41.732 78.349-41.378Q78.023-41.025 77.562-41.025Q77.289-41.025 77.094-41.236Q76.898-41.446 76.898-41.720\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M276.03 28.29h147.954V5.529H276.03Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(301.057 61.64)\">\u003Cpath d=\"M10.695-42.763Q10.261-42.763 9.929-43.001Q9.597-43.239 9.377-43.628Q9.156-44.017 9.049-44.454Q8.941-44.892 8.941-45.290Q8.941-45.681 9.051-46.124Q9.160-46.568 9.377-46.948Q9.594-47.329 9.928-47.570Q10.261-47.810 10.695-47.810Q11.250-47.810 11.650-47.411Q12.051-47.013 12.248-46.427Q12.445-45.841 12.445-45.290Q12.445-44.736 12.248-44.148Q12.051-43.560 11.650-43.161Q11.250-42.763 10.695-42.763M10.695-43.321Q10.996-43.321 11.213-43.538Q11.429-43.755 11.556-44.083Q11.683-44.411 11.744-44.757Q11.804-45.103 11.804-45.384Q11.804-45.634 11.742-45.960Q11.679-46.286 11.549-46.577Q11.418-46.868 11.205-47.058Q10.992-47.247 10.695-47.247Q10.320-47.247 10.068-46.935Q9.816-46.622 9.699-46.189Q9.582-45.755 9.582-45.384Q9.582-44.986 9.695-44.505Q9.808-44.025 10.056-43.673Q10.304-43.321 10.695-43.321M13.172-44.255Q13.172-44.540 13.328-44.794Q13.484-45.048 13.734-45.222Q13.984-45.396 14.269-45.482Q14.031-45.556 13.804-45.698Q13.578-45.841 13.435-46.050Q13.293-46.259 13.293-46.505Q13.293-46.904 13.539-47.198Q13.785-47.493 14.168-47.652Q14.551-47.810 14.941-47.810Q15.332-47.810 15.715-47.652Q16.097-47.493 16.344-47.195Q16.590-46.896 16.590-46.505Q16.590-46.259 16.447-46.052Q16.304-45.845 16.078-45.700Q15.851-45.556 15.613-45.482Q16.066-45.345 16.386-45.019Q16.707-44.693 16.707-44.255Q16.707-43.818 16.449-43.474Q16.191-43.130 15.781-42.946Q15.371-42.763 14.941-42.763Q14.511-42.763 14.101-42.945Q13.691-43.126 13.431-43.470Q13.172-43.814 13.172-44.255M13.812-44.255Q13.812-43.982 13.978-43.767Q14.144-43.552 14.406-43.437Q14.668-43.321 14.941-43.321Q15.215-43.321 15.474-43.437Q15.734-43.552 15.900-43.769Q16.066-43.986 16.066-44.255Q16.066-44.532 15.900-44.749Q15.734-44.966 15.474-45.083Q15.215-45.200 14.941-45.200Q14.668-45.200 14.406-45.083Q14.144-44.966 13.978-44.751Q13.812-44.536 13.812-44.255M13.933-46.505Q13.933-46.267 14.090-46.099Q14.246-45.931 14.482-45.847Q14.719-45.763 14.941-45.763Q15.160-45.763 15.398-45.847Q15.636-45.931 15.793-46.101Q15.949-46.271 15.949-46.505Q15.949-46.739 15.793-46.909Q15.636-47.079 15.398-47.163Q15.160-47.247 14.941-47.247Q14.719-47.247 14.482-47.163Q14.246-47.079 14.090-46.911Q13.933-46.743 13.933-46.505\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(301.057 61.64)\">\u003Cpath d=\"M24.836-44.329L22.394-44.329Q22.449-44.052 22.646-43.829Q22.844-43.607 23.121-43.484Q23.398-43.361 23.683-43.361Q24.156-43.361 24.379-43.650Q24.387-43.661 24.443-43.767Q24.500-43.872 24.549-43.915Q24.597-43.958 24.691-43.970L24.836-43.970Q25.027-43.950 25.086-43.736L25.086-43.681Q25.019-43.380 24.789-43.183Q24.558-42.986 24.246-42.894Q23.933-42.802 23.629-42.802Q23.144-42.802 22.705-43.030Q22.265-43.259 21.998-43.659Q21.730-44.060 21.730-44.552L21.730-44.611Q21.730-45.079 21.976-45.482Q22.222-45.884 22.631-46.118Q23.039-46.353 23.508-46.353Q24.012-46.353 24.365-46.130Q24.719-45.907 24.902-45.519Q25.086-45.130 25.086-44.626L25.086-44.568Q25.027-44.353 24.836-44.329M22.402-44.880L24.429-44.880Q24.383-45.290 24.144-45.542Q23.906-45.794 23.508-45.794Q23.113-45.794 22.806-45.532Q22.500-45.271 22.402-44.880M25.828-43.079L25.828-43.169Q25.867-43.376 26.074-43.400L26.480-43.400L27.410-44.618L26.539-45.728L26.121-45.728Q25.926-45.747 25.875-45.970L25.875-46.056Q25.926-46.267 26.121-46.290L27.281-46.290Q27.480-46.267 27.531-46.056L27.531-45.970Q27.480-45.751 27.281-45.728L27.172-45.728L27.668-45.071L28.144-45.728L28.027-45.728Q27.828-45.751 27.777-45.970L27.777-46.056Q27.828-46.267 28.027-46.290L29.187-46.290Q29.383-46.271 29.433-46.056L29.433-45.970Q29.383-45.751 29.187-45.728L28.777-45.728L27.929-44.618L28.890-43.400L29.297-43.400Q29.496-43.376 29.547-43.169L29.547-43.079Q29.508-42.864 29.297-42.841L28.144-42.841Q27.937-42.864 27.898-43.079L27.898-43.169Q27.937-43.376 28.144-43.400L28.273-43.400L27.668-44.255L27.082-43.400L27.226-43.400Q27.433-43.376 27.472-43.169L27.472-43.079Q27.433-42.864 27.226-42.841L26.074-42.841Q25.879-42.861 25.828-43.079M30.375-44.568Q30.375-45.048 30.619-45.462Q30.863-45.876 31.279-46.114Q31.695-46.353 32.176-46.353Q32.730-46.353 33.109-46.243Q33.488-46.134 33.488-45.728Q33.488-45.560 33.375-45.437Q33.261-45.314 33.090-45.314Q32.918-45.314 32.799-45.429Q32.679-45.544 32.679-45.712L32.679-45.771Q32.519-45.794 32.183-45.794Q31.855-45.794 31.588-45.624Q31.320-45.454 31.168-45.171Q31.015-44.888 31.015-44.568Q31.015-44.247 31.187-43.966Q31.359-43.685 31.644-43.523Q31.929-43.361 32.258-43.361Q32.570-43.361 32.697-43.464Q32.824-43.568 32.941-43.757Q33.058-43.946 33.176-43.962L33.344-43.962Q33.449-43.950 33.513-43.882Q33.578-43.814 33.578-43.712Q33.578-43.665 33.558-43.626Q33.449-43.333 33.246-43.154Q33.043-42.974 32.767-42.888Q32.492-42.802 32.176-42.802Q31.691-42.802 31.275-43.040Q30.859-43.279 30.617-43.681Q30.375-44.083 30.375-44.568M37.574-44.329L35.133-44.329Q35.187-44.052 35.385-43.829Q35.582-43.607 35.859-43.484Q36.136-43.361 36.422-43.361Q36.894-43.361 37.117-43.650Q37.125-43.661 37.181-43.767Q37.238-43.872 37.287-43.915Q37.336-43.958 37.429-43.970L37.574-43.970Q37.765-43.950 37.824-43.736L37.824-43.681Q37.758-43.380 37.527-43.183Q37.297-42.986 36.984-42.894Q36.672-42.802 36.367-42.802Q35.883-42.802 35.443-43.030Q35.004-43.259 34.736-43.659Q34.469-44.060 34.469-44.552L34.469-44.611Q34.469-45.079 34.715-45.482Q34.961-45.884 35.369-46.118Q35.777-46.353 36.246-46.353Q36.750-46.353 37.103-46.130Q37.457-45.907 37.640-45.519Q37.824-45.130 37.824-44.626L37.824-44.568Q37.765-44.353 37.574-44.329M35.140-44.880L37.168-44.880Q37.121-45.290 36.883-45.542Q36.644-45.794 36.246-45.794Q35.851-45.794 35.545-45.532Q35.238-45.271 35.140-44.880M38.379-41.298L38.379-41.384Q38.422-41.603 38.629-41.626L39.051-41.626L39.051-45.728L38.629-45.728Q38.422-45.751 38.379-45.970L38.379-46.056Q38.426-46.267 38.629-46.290L39.445-46.290Q39.640-46.271 39.691-46.056L39.691-45.986Q39.902-46.154 40.166-46.241Q40.429-46.329 40.699-46.329Q41.039-46.329 41.336-46.185Q41.633-46.040 41.847-45.788Q42.062-45.536 42.178-45.224Q42.293-44.911 42.293-44.568Q42.293-44.103 42.066-43.693Q41.840-43.282 41.453-43.042Q41.066-42.802 40.597-42.802Q40.078-42.802 39.691-43.169L39.691-41.626L40.117-41.626Q40.324-41.603 40.363-41.384L40.363-41.298Q40.324-41.087 40.117-41.064L38.629-41.064Q38.426-41.087 38.379-41.298M40.554-43.361Q40.863-43.361 41.113-43.530Q41.363-43.700 41.508-43.982Q41.652-44.263 41.652-44.568Q41.652-44.857 41.527-45.136Q41.402-45.415 41.170-45.593Q40.937-45.771 40.636-45.771Q40.316-45.771 40.054-45.585Q39.793-45.400 39.691-45.099L39.691-44.247Q39.781-43.880 40.002-43.620Q40.222-43.361 40.554-43.361M43.754-43.946L43.754-45.728L43.004-45.728Q42.804-45.751 42.754-45.970L42.754-46.056Q42.804-46.267 43.004-46.290L43.754-46.290L43.754-47.040Q43.804-47.247 44.004-47.275L44.148-47.275Q44.344-47.247 44.394-47.040L44.394-46.290L45.754-46.290Q45.945-46.271 46.004-46.056L46.004-45.970Q45.949-45.751 45.754-45.728L44.394-45.728L44.394-43.978Q44.394-43.361 44.969-43.361Q45.219-43.361 45.383-43.546Q45.547-43.732 45.547-43.978Q45.547-44.071 45.619-44.142Q45.691-44.212 45.793-44.224L45.937-44.224Q46.136-44.200 46.187-43.993L46.187-43.946Q46.187-43.622 46.004-43.359Q45.820-43.095 45.527-42.948Q45.234-42.802 44.914-42.802Q44.402-42.802 44.078-43.112Q43.754-43.423 43.754-43.946M47.418-43.079L47.418-43.169Q47.469-43.376 47.664-43.400L48.703-43.400L48.703-45.728L47.730-45.728Q47.531-45.751 47.480-45.970L47.480-46.056Q47.531-46.267 47.730-46.290L49.097-46.290Q49.293-46.271 49.344-46.056L49.344-43.400L50.258-43.400Q50.453-43.376 50.504-43.169L50.504-43.079Q50.453-42.864 50.258-42.841L47.664-42.841Q47.469-42.864 47.418-43.079M48.449-47.267L48.449-47.321Q48.449-47.493 48.586-47.614Q48.722-47.736 48.898-47.736Q49.070-47.736 49.207-47.614Q49.344-47.493 49.344-47.321L49.344-47.267Q49.344-47.091 49.207-46.970Q49.070-46.849 48.898-46.849Q48.722-46.849 48.586-46.970Q48.449-47.091 48.449-47.267M53.168-42.802Q52.695-42.802 52.310-43.046Q51.926-43.290 51.703-43.700Q51.480-44.111 51.480-44.568Q51.480-44.911 51.605-45.234Q51.730-45.556 51.961-45.810Q52.191-46.064 52.498-46.208Q52.804-46.353 53.168-46.353Q53.531-46.353 53.844-46.206Q54.156-46.060 54.379-45.814Q54.601-45.568 54.728-45.247Q54.855-44.927 54.855-44.568Q54.855-44.111 54.631-43.698Q54.406-43.286 54.021-43.044Q53.636-42.802 53.168-42.802M53.168-43.361Q53.633-43.361 53.924-43.755Q54.215-44.150 54.215-44.634Q54.215-44.927 54.080-45.195Q53.945-45.462 53.705-45.628Q53.465-45.794 53.168-45.794Q52.863-45.794 52.625-45.628Q52.386-45.462 52.252-45.195Q52.117-44.927 52.117-44.634Q52.117-44.154 52.410-43.757Q52.703-43.361 53.168-43.361M55.363-43.079L55.363-43.169Q55.406-43.376 55.613-43.400L56.035-43.400L56.035-45.728L55.613-45.728Q55.406-45.751 55.363-45.970L55.363-46.056Q55.410-46.267 55.613-46.290L56.429-46.290Q56.625-46.267 56.676-46.056L56.676-45.970L56.668-45.946Q56.894-46.126 57.168-46.228Q57.441-46.329 57.734-46.329Q58.082-46.329 58.320-46.189Q58.558-46.048 58.674-45.790Q58.789-45.532 58.789-45.177L58.789-43.400L59.215-43.400Q59.422-43.376 59.461-43.169L59.461-43.079Q59.422-42.864 59.215-42.841L57.820-42.841Q57.625-42.864 57.574-43.079L57.574-43.169Q57.625-43.380 57.820-43.400L58.148-43.400L58.148-45.146Q58.148-45.454 58.058-45.612Q57.969-45.771 57.676-45.771Q57.406-45.771 57.178-45.640Q56.949-45.509 56.812-45.280Q56.676-45.052 56.676-44.786L56.676-43.400L57.101-43.400Q57.308-43.376 57.347-43.169L57.347-43.079Q57.308-42.864 57.101-42.841L55.613-42.841Q55.406-42.864 55.363-43.079M60.125-43.040L60.125-43.954Q60.152-44.161 60.363-44.185L60.531-44.185Q60.695-44.161 60.754-44.001Q60.957-43.361 61.683-43.361Q61.890-43.361 62.119-43.396Q62.347-43.431 62.515-43.546Q62.683-43.661 62.683-43.864Q62.683-44.075 62.461-44.189Q62.238-44.302 61.965-44.345L61.265-44.458Q60.125-44.669 60.125-45.392Q60.125-45.681 60.269-45.870Q60.414-46.060 60.654-46.167Q60.894-46.275 61.150-46.314Q61.406-46.353 61.683-46.353Q61.933-46.353 62.127-46.323Q62.320-46.294 62.484-46.216Q62.562-46.333 62.691-46.353L62.769-46.353Q62.867-46.341 62.929-46.279Q62.992-46.216 63.004-46.122L63.004-45.415Q62.992-45.321 62.929-45.255Q62.867-45.189 62.769-45.177L62.601-45.177Q62.508-45.189 62.441-45.255Q62.375-45.321 62.363-45.415Q62.363-45.794 61.668-45.794Q61.320-45.794 61.002-45.712Q60.683-45.630 60.683-45.384Q60.683-45.118 61.355-45.009L62.058-44.888Q62.543-44.806 62.892-44.558Q63.242-44.310 63.242-43.864Q63.242-43.474 63.006-43.232Q62.769-42.989 62.420-42.896Q62.070-42.802 61.683-42.802Q61.105-42.802 60.707-43.056Q60.636-42.931 60.588-42.874Q60.539-42.818 60.433-42.802L60.363-42.802Q60.148-42.825 60.125-43.040\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(301.057 61.64)\">\u003Cpath d=\"M69.891-43.763L69.891-44.978L68.677-44.978Q68.552-44.989 68.466-45.075Q68.380-45.161 68.380-45.290Q68.380-45.419 68.466-45.501Q68.552-45.583 68.677-45.595L69.891-45.595L69.891-46.818Q69.903-46.943 69.989-47.025Q70.075-47.107 70.204-47.107Q70.333-47.107 70.415-47.025Q70.497-46.943 70.509-46.818L70.509-45.595L71.723-45.595Q71.848-45.583 71.930-45.501Q72.013-45.419 72.013-45.290Q72.013-45.161 71.930-45.075Q71.848-44.989 71.723-44.978L70.509-44.978L70.509-43.763Q70.497-43.638 70.415-43.552Q70.333-43.466 70.204-43.466Q70.075-43.466 69.989-43.552Q69.903-43.638 69.891-43.763\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(301.057 61.64)\">\u003Cpath d=\"M77.192-43.079L77.192-43.169Q77.243-43.376 77.438-43.400L78.477-43.400L78.477-45.728L77.505-45.728Q77.305-45.751 77.255-45.970L77.255-46.056Q77.305-46.267 77.505-46.290L78.872-46.290Q79.067-46.271 79.118-46.056L79.118-43.400L80.032-43.400Q80.227-43.376 80.278-43.169L80.278-43.079Q80.227-42.864 80.032-42.841L77.438-42.841Q77.243-42.864 77.192-43.079M78.223-47.267L78.223-47.321Q78.223-47.493 78.360-47.614Q78.497-47.736 78.673-47.736Q78.845-47.736 78.981-47.614Q79.118-47.493 79.118-47.321L79.118-47.267Q79.118-47.091 78.981-46.970Q78.845-46.849 78.673-46.849Q78.497-46.849 78.360-46.970Q78.223-47.091 78.223-47.267M81.294-42.482Q81.294-42.536 81.317-42.603L83.997-48.208Q84.091-48.392 84.286-48.392Q84.411-48.392 84.501-48.302Q84.591-48.212 84.591-48.087Q84.591-48.025 84.563-47.970L81.884-42.361Q81.790-42.177 81.606-42.177Q81.481-42.177 81.388-42.267Q81.294-42.357 81.294-42.482M87.188-42.802Q86.716-42.802 86.331-43.046Q85.946-43.290 85.723-43.700Q85.501-44.111 85.501-44.568Q85.501-44.911 85.626-45.234Q85.751-45.556 85.981-45.810Q86.212-46.064 86.518-46.208Q86.825-46.353 87.188-46.353Q87.552-46.353 87.864-46.206Q88.177-46.060 88.399-45.814Q88.622-45.568 88.749-45.247Q88.876-44.927 88.876-44.568Q88.876-44.111 88.651-43.698Q88.427-43.286 88.042-43.044Q87.657-42.802 87.188-42.802M87.188-43.361Q87.653-43.361 87.944-43.755Q88.235-44.150 88.235-44.634Q88.235-44.927 88.100-45.195Q87.966-45.462 87.725-45.628Q87.485-45.794 87.188-45.794Q86.884-45.794 86.645-45.628Q86.407-45.462 86.272-45.195Q86.138-44.927 86.138-44.634Q86.138-44.154 86.430-43.757Q86.723-43.361 87.188-43.361\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M276.03 58.166h147.954V35.403H276.03Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(315.933 92.07)\">\u003Cpath d=\"M10.695-42.763Q10.261-42.763 9.929-43.001Q9.597-43.239 9.377-43.628Q9.156-44.017 9.049-44.454Q8.941-44.892 8.941-45.290Q8.941-45.681 9.051-46.124Q9.160-46.568 9.377-46.948Q9.594-47.329 9.928-47.570Q10.261-47.810 10.695-47.810Q11.250-47.810 11.650-47.411Q12.051-47.013 12.248-46.427Q12.445-45.841 12.445-45.290Q12.445-44.736 12.248-44.148Q12.051-43.560 11.650-43.161Q11.250-42.763 10.695-42.763M10.695-43.321Q10.996-43.321 11.213-43.538Q11.429-43.755 11.556-44.083Q11.683-44.411 11.744-44.757Q11.804-45.103 11.804-45.384Q11.804-45.634 11.742-45.960Q11.679-46.286 11.549-46.577Q11.418-46.868 11.205-47.058Q10.992-47.247 10.695-47.247Q10.320-47.247 10.068-46.935Q9.816-46.622 9.699-46.189Q9.582-45.755 9.582-45.384Q9.582-44.986 9.695-44.505Q9.808-44.025 10.056-43.673Q10.304-43.321 10.695-43.321M13.386-43.642Q13.386-43.818 13.502-43.941Q13.617-44.064 13.797-44.064Q13.965-44.064 14.080-43.948Q14.195-43.833 14.195-43.657Q14.195-43.536 14.133-43.435Q14.281-43.321 14.590-43.321Q14.894-43.321 15.148-43.472Q15.402-43.622 15.584-43.868Q15.765-44.114 15.873-44.407Q15.980-44.700 16.011-44.978Q15.773-44.779 15.465-44.673Q15.156-44.568 14.836-44.568Q14.390-44.568 14.017-44.784Q13.644-45.001 13.428-45.370Q13.211-45.739 13.211-46.185Q13.211-46.657 13.457-47.029Q13.703-47.400 14.109-47.605Q14.515-47.810 14.988-47.810Q15.472-47.810 15.804-47.581Q16.136-47.353 16.324-46.980Q16.511-46.607 16.590-46.177Q16.668-45.747 16.668-45.290Q16.668-44.681 16.414-44.093Q16.160-43.505 15.683-43.134Q15.207-42.763 14.590-42.763Q14.094-42.763 13.740-42.972Q13.386-43.181 13.386-43.642M14.890-45.130Q15.277-45.130 15.613-45.359Q15.949-45.587 15.949-45.954Q15.949-45.993 15.933-46.071Q15.918-46.150 15.918-46.185Q15.918-46.196 15.926-46.228Q15.933-46.259 15.933-46.267Q15.871-46.517 15.752-46.737Q15.633-46.958 15.439-47.103Q15.246-47.247 14.988-47.247Q14.515-47.247 14.183-46.946Q13.851-46.646 13.851-46.185Q13.851-45.904 13.988-45.657Q14.125-45.411 14.363-45.271Q14.601-45.130 14.890-45.130\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(315.933 92.07)\">\u003Cpath d=\"M21.269-43.079L21.269-43.169Q21.320-43.380 21.515-43.400L21.715-43.400L21.715-45.728L21.515-45.728Q21.308-45.751 21.269-45.970L21.269-46.056Q21.320-46.271 21.515-46.290L21.996-46.290Q22.187-46.267 22.246-46.056Q22.566-46.329 22.980-46.329Q23.172-46.329 23.340-46.220Q23.508-46.111 23.582-45.939Q23.758-46.130 23.980-46.230Q24.203-46.329 24.445-46.329Q24.863-46.329 25.017-45.987Q25.172-45.646 25.172-45.177L25.172-43.400L25.371-43.400Q25.582-43.376 25.621-43.169L25.621-43.079Q25.570-42.864 25.371-42.841L24.554-42.841Q24.359-42.864 24.308-43.079L24.308-43.169Q24.359-43.376 24.554-43.400L24.644-43.400L24.644-45.146Q24.644-45.771 24.394-45.771Q24.062-45.771 23.885-45.460Q23.707-45.150 23.707-44.786L23.707-43.400L23.910-43.400Q24.117-43.376 24.156-43.169L24.156-43.079Q24.105-42.864 23.910-42.841L23.094-42.841Q22.894-42.864 22.844-43.079L22.844-43.169Q22.894-43.376 23.094-43.400L23.179-43.400L23.179-45.146Q23.179-45.771 22.933-45.771Q22.601-45.771 22.424-45.458Q22.246-45.146 22.246-44.786L22.246-43.400L22.445-43.400Q22.652-43.376 22.691-43.169L22.691-43.079Q22.640-42.861 22.445-42.841L21.515-42.841Q21.308-42.864 21.269-43.079M26.312-43.696L26.312-45.728L25.890-45.728Q25.683-45.751 25.640-45.970L25.640-46.056Q25.687-46.267 25.890-46.290L26.707-46.290Q26.902-46.267 26.953-46.056L26.953-43.728Q26.953-43.493 27.123-43.427Q27.293-43.361 27.578-43.361Q27.785-43.361 27.980-43.437Q28.176-43.513 28.301-43.663Q28.426-43.814 28.426-44.025L28.426-45.728L28.004-45.728Q27.793-45.751 27.754-45.970L27.754-46.056Q27.793-46.267 28.004-46.290L28.816-46.290Q29.015-46.267 29.066-46.056L29.066-43.400L29.492-43.400Q29.699-43.376 29.738-43.169L29.738-43.079Q29.699-42.864 29.492-42.841L28.676-42.841Q28.476-42.864 28.426-43.064Q28.023-42.802 27.515-42.802Q27.281-42.802 27.066-42.843Q26.851-42.884 26.685-42.986Q26.519-43.087 26.416-43.265Q26.312-43.443 26.312-43.696M30.265-43.079L30.265-43.169Q30.316-43.376 30.512-43.400L31.617-43.400L31.617-47.169L30.512-47.169Q30.316-47.193 30.265-47.407L30.265-47.497Q30.316-47.704 30.512-47.728L32.008-47.728Q32.199-47.704 32.258-47.497L32.258-43.400L33.359-43.400Q33.558-43.376 33.609-43.169L33.609-43.079Q33.558-42.864 33.359-42.841L30.512-42.841Q30.316-42.864 30.265-43.079M35.261-43.946L35.261-45.728L34.511-45.728Q34.312-45.751 34.261-45.970L34.261-46.056Q34.312-46.267 34.511-46.290L35.261-46.290L35.261-47.040Q35.312-47.247 35.511-47.275L35.656-47.275Q35.851-47.247 35.902-47.040L35.902-46.290L37.261-46.290Q37.453-46.271 37.511-46.056L37.511-45.970Q37.457-45.751 37.261-45.728L35.902-45.728L35.902-43.978Q35.902-43.361 36.476-43.361Q36.726-43.361 36.890-43.546Q37.054-43.732 37.054-43.978Q37.054-44.071 37.127-44.142Q37.199-44.212 37.301-44.224L37.445-44.224Q37.644-44.200 37.695-43.993L37.695-43.946Q37.695-43.622 37.511-43.359Q37.328-43.095 37.035-42.948Q36.742-42.802 36.422-42.802Q35.910-42.802 35.586-43.112Q35.261-43.423 35.261-43.946M38.926-43.079L38.926-43.169Q38.976-43.376 39.172-43.400L40.211-43.400L40.211-45.728L39.238-45.728Q39.039-45.751 38.988-45.970L38.988-46.056Q39.039-46.267 39.238-46.290L40.605-46.290Q40.801-46.271 40.851-46.056L40.851-43.400L41.765-43.400Q41.961-43.376 42.011-43.169L42.011-43.079Q41.961-42.864 41.765-42.841L39.172-42.841Q38.976-42.864 38.926-43.079M39.957-47.267L39.957-47.321Q39.957-47.493 40.094-47.614Q40.230-47.736 40.406-47.736Q40.578-47.736 40.715-47.614Q40.851-47.493 40.851-47.321L40.851-47.267Q40.851-47.091 40.715-46.970Q40.578-46.849 40.406-46.849Q40.230-46.849 40.094-46.970Q39.957-47.091 39.957-47.267M43.113-44.568Q43.113-45.048 43.357-45.462Q43.601-45.876 44.017-46.114Q44.433-46.353 44.914-46.353Q45.469-46.353 45.847-46.243Q46.226-46.134 46.226-45.728Q46.226-45.560 46.113-45.437Q46-45.314 45.828-45.314Q45.656-45.314 45.537-45.429Q45.418-45.544 45.418-45.712L45.418-45.771Q45.258-45.794 44.922-45.794Q44.594-45.794 44.326-45.624Q44.058-45.454 43.906-45.171Q43.754-44.888 43.754-44.568Q43.754-44.247 43.926-43.966Q44.097-43.685 44.383-43.523Q44.668-43.361 44.996-43.361Q45.308-43.361 45.435-43.464Q45.562-43.568 45.679-43.757Q45.797-43.946 45.914-43.962L46.082-43.962Q46.187-43.950 46.252-43.882Q46.316-43.814 46.316-43.712Q46.316-43.665 46.297-43.626Q46.187-43.333 45.984-43.154Q45.781-42.974 45.506-42.888Q45.230-42.802 44.914-42.802Q44.429-42.802 44.013-43.040Q43.597-43.279 43.355-43.681Q43.113-44.083 43.113-44.568M48.922-42.802Q48.449-42.802 48.064-43.046Q47.679-43.290 47.457-43.700Q47.234-44.111 47.234-44.568Q47.234-44.911 47.359-45.234Q47.484-45.556 47.715-45.810Q47.945-46.064 48.252-46.208Q48.558-46.353 48.922-46.353Q49.285-46.353 49.597-46.206Q49.910-46.060 50.133-45.814Q50.355-45.568 50.482-45.247Q50.609-44.927 50.609-44.568Q50.609-44.111 50.385-43.698Q50.160-43.286 49.775-43.044Q49.390-42.802 48.922-42.802M48.922-43.361Q49.386-43.361 49.678-43.755Q49.969-44.150 49.969-44.634Q49.969-44.927 49.834-45.195Q49.699-45.462 49.459-45.628Q49.219-45.794 48.922-45.794Q48.617-45.794 48.379-45.628Q48.140-45.462 48.006-45.195Q47.871-44.927 47.871-44.634Q47.871-44.154 48.164-43.757Q48.457-43.361 48.922-43.361M51.269-43.079L51.269-43.169Q51.328-43.376 51.519-43.400L52.230-43.400L52.230-45.728L51.519-45.728Q51.324-45.751 51.269-45.970L51.269-46.056Q51.328-46.267 51.519-46.290L52.621-46.290Q52.820-46.271 52.871-46.056L52.871-45.728Q53.133-46.013 53.488-46.171Q53.844-46.329 54.230-46.329Q54.523-46.329 54.758-46.195Q54.992-46.060 54.992-45.794Q54.992-45.626 54.883-45.509Q54.773-45.392 54.605-45.392Q54.453-45.392 54.338-45.503Q54.222-45.614 54.222-45.771Q53.847-45.771 53.533-45.570Q53.219-45.368 53.045-45.034Q52.871-44.700 52.871-44.321L52.871-43.400L53.816-43.400Q54.023-43.376 54.062-43.169L54.062-43.079Q54.023-42.864 53.816-42.841L51.519-42.841Q51.328-42.864 51.269-43.079M58.804-44.329L56.363-44.329Q56.418-44.052 56.615-43.829Q56.812-43.607 57.090-43.484Q57.367-43.361 57.652-43.361Q58.125-43.361 58.347-43.650Q58.355-43.661 58.412-43.767Q58.469-43.872 58.517-43.915Q58.566-43.958 58.660-43.970L58.804-43.970Q58.996-43.950 59.054-43.736L59.054-43.681Q58.988-43.380 58.758-43.183Q58.527-42.986 58.215-42.894Q57.902-42.802 57.597-42.802Q57.113-42.802 56.674-43.030Q56.234-43.259 55.967-43.659Q55.699-44.060 55.699-44.552L55.699-44.611Q55.699-45.079 55.945-45.482Q56.191-45.884 56.599-46.118Q57.008-46.353 57.476-46.353Q57.980-46.353 58.334-46.130Q58.687-45.907 58.871-45.519Q59.054-45.130 59.054-44.626L59.054-44.568Q58.996-44.353 58.804-44.329M56.371-44.880L58.398-44.880Q58.351-45.290 58.113-45.542Q57.875-45.794 57.476-45.794Q57.082-45.794 56.775-45.532Q56.469-45.271 56.371-44.880\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M350.007-31.26v4.713\"\u002F>\u003Cpath stroke=\"none\" d=\"m350.007-24.547 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M350.007-1.385v4.713\"\u002F>\u003Cpath stroke=\"none\" d=\"m350.007 5.328 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M350.007 28.49v4.713\"\u002F>\u003Cpath stroke=\"none\" d=\"m350.007 35.203 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M82.751 16.91h11.181v-29.876h9.181\"\u002F>\u003Cpath stroke=\"none\" d=\"m105.113-12.966-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"rotate(-90 75.612 -55.798)\">\u003Cpath d=\"M9.695-42.841L9.428-42.841L9.428-46.949Q9.428-47.219 9.321-47.281Q9.213-47.342 8.902-47.342L8.902-47.623L9.982-47.698L9.982-45.528Q10.191-45.719 10.476-45.823Q10.761-45.927 11.059-45.927Q11.377-45.927 11.674-45.806Q11.971-45.685 12.194-45.469Q12.416-45.254 12.542-44.969Q12.669-44.683 12.669-44.352Q12.669-43.907 12.429-43.543Q12.190-43.179 11.797-42.976Q11.404-42.773 10.960-42.773Q10.765-42.773 10.575-42.829Q10.386-42.885 10.225-42.990Q10.064-43.094 9.924-43.255L9.695-42.841M10.010-45.186L10.010-43.569Q10.146-43.309 10.387-43.152Q10.628-42.995 10.905-42.995Q11.199-42.995 11.411-43.102Q11.623-43.210 11.756-43.402Q11.889-43.593 11.948-43.832Q12.006-44.071 12.006-44.352Q12.006-44.711 11.912-45.015Q11.818-45.319 11.590-45.512Q11.363-45.705 10.997-45.705Q10.697-45.705 10.430-45.569Q10.163-45.432 10.010-45.186\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 75.612 -55.798)\">\u003Cpath d=\"M13.424-41.706Q13.554-41.638 13.691-41.638Q13.862-41.638 14.012-41.727Q14.163-41.816 14.274-41.961Q14.385-42.106 14.463-42.274L14.727-42.841L13.558-45.367Q13.483-45.514 13.353-45.546Q13.223-45.579 12.990-45.579L12.990-45.859L14.511-45.859L14.511-45.579Q14.163-45.579 14.163-45.432Q14.166-45.411 14.168-45.394Q14.170-45.377 14.170-45.367L15.027-43.508L15.800-45.179Q15.834-45.247 15.834-45.326Q15.834-45.439 15.750-45.509Q15.667-45.579 15.554-45.579L15.554-45.859L16.750-45.859L16.750-45.579Q16.531-45.579 16.359-45.475Q16.186-45.370 16.094-45.179L14.757-42.274Q14.587-41.904 14.317-41.658Q14.046-41.412 13.691-41.412Q13.421-41.412 13.202-41.578Q12.983-41.744 12.983-42.007Q12.983-42.144 13.076-42.233Q13.168-42.321 13.308-42.321Q13.445-42.321 13.534-42.233Q13.623-42.144 13.623-42.007Q13.623-41.904 13.570-41.826Q13.517-41.747 13.424-41.706M17.817-43.682L17.817-45.579L17.177-45.579L17.177-45.801Q17.495-45.801 17.712-46.011Q17.929-46.221 18.030-46.531Q18.131-46.840 18.131-47.148L18.398-47.148L18.398-45.859L19.474-45.859L19.474-45.579L18.398-45.579L18.398-43.695Q18.398-43.419 18.502-43.220Q18.606-43.022 18.866-43.022Q19.023-43.022 19.129-43.126Q19.235-43.231 19.285-43.384Q19.334-43.538 19.334-43.695L19.334-44.109L19.601-44.109L19.601-43.682Q19.601-43.456 19.502-43.246Q19.402-43.036 19.218-42.904Q19.033-42.773 18.804-42.773Q18.367-42.773 18.092-43.010Q17.817-43.248 17.817-43.682M20.370-44.376Q20.370-44.697 20.494-44.986Q20.619-45.275 20.845-45.498Q21.070-45.722 21.366-45.842Q21.662-45.962 21.980-45.962Q22.308-45.962 22.569-45.862Q22.831-45.763 23.007-45.581Q23.183-45.398 23.277-45.140Q23.371-44.882 23.371-44.550Q23.371-44.458 23.289-44.437L21.033-44.437L21.033-44.376Q21.033-43.788 21.317-43.405Q21.600-43.022 22.168-43.022Q22.489-43.022 22.757-43.215Q23.025-43.408 23.114-43.723Q23.121-43.764 23.196-43.778L23.289-43.778Q23.371-43.754 23.371-43.682Q23.371-43.675 23.364-43.648Q23.251-43.251 22.880-43.012Q22.509-42.773 22.086-42.773Q21.648-42.773 21.248-42.981Q20.848-43.190 20.609-43.557Q20.370-43.924 20.370-44.376M21.040-44.646L22.855-44.646Q22.855-44.923 22.757-45.175Q22.660-45.428 22.462-45.584Q22.263-45.739 21.980-45.739Q21.703-45.739 21.489-45.581Q21.275-45.422 21.158-45.167Q21.040-44.912 21.040-44.646M23.959-42.848L23.959-43.911Q23.959-43.935 23.986-43.962Q24.013-43.989 24.037-43.989L24.147-43.989Q24.212-43.989 24.225-43.931Q24.321-43.497 24.567-43.246Q24.813-42.995 25.227-42.995Q25.568-42.995 25.821-43.128Q26.074-43.261 26.074-43.569Q26.074-43.726 25.980-43.841Q25.886-43.955 25.748-44.024Q25.609-44.092 25.442-44.130L24.861-44.229Q24.505-44.297 24.232-44.518Q23.959-44.738 23.959-45.080Q23.959-45.329 24.070-45.504Q24.181-45.678 24.367-45.777Q24.553-45.876 24.769-45.919Q24.984-45.962 25.227-45.962Q25.640-45.962 25.921-45.780L26.136-45.955Q26.146-45.958 26.153-45.960Q26.160-45.962 26.170-45.962L26.221-45.962Q26.249-45.962 26.273-45.938Q26.296-45.914 26.296-45.886L26.296-45.039Q26.296-45.018 26.273-44.991Q26.249-44.964 26.221-44.964L26.108-44.964Q26.081-44.964 26.056-44.989Q26.030-45.015 26.030-45.039Q26.030-45.275 25.924-45.439Q25.818-45.603 25.635-45.685Q25.452-45.767 25.220-45.767Q24.892-45.767 24.635-45.664Q24.379-45.562 24.379-45.285Q24.379-45.090 24.562-44.981Q24.745-44.871 24.974-44.830L25.548-44.724Q25.794-44.676 26.008-44.548Q26.221-44.420 26.358-44.217Q26.495-44.013 26.495-43.764Q26.495-43.251 26.129-43.012Q25.763-42.773 25.227-42.773Q24.731-42.773 24.400-43.067L24.133-42.793Q24.112-42.773 24.085-42.773L24.037-42.773Q24.013-42.773 23.986-42.800Q23.959-42.827 23.959-42.848\" 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=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M253.467 16.91h11.181v-59.751h9.182\"\u002F>\u003Cpath stroke=\"none\" d=\"m275.83-42.841-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 157.348 -145.46)\">\u003Cpath d=\"M8.947-43.569Q8.947-43.901 9.170-44.128Q9.394-44.355 9.738-44.483Q10.081-44.612 10.454-44.664Q10.826-44.717 11.131-44.717L11.131-44.970Q11.131-45.175 11.023-45.355Q10.915-45.534 10.734-45.637Q10.553-45.739 10.345-45.739Q9.938-45.739 9.702-45.647Q9.791-45.610 9.837-45.526Q9.883-45.442 9.883-45.340Q9.883-45.244 9.837-45.165Q9.791-45.087 9.710-45.042Q9.630-44.998 9.541-44.998Q9.391-44.998 9.290-45.095Q9.189-45.193 9.189-45.340Q9.189-45.962 10.345-45.962Q10.556-45.962 10.806-45.898Q11.055-45.835 11.257-45.716Q11.459-45.596 11.585-45.411Q11.712-45.227 11.712-44.984L11.712-43.408Q11.712-43.292 11.773-43.196Q11.835-43.101 11.948-43.101Q12.057-43.101 12.122-43.195Q12.187-43.289 12.187-43.408L12.187-43.856L12.453-43.856L12.453-43.408Q12.453-43.138 12.226-42.973Q11.999-42.807 11.719-42.807Q11.510-42.807 11.373-42.961Q11.237-43.114 11.213-43.330Q11.066-43.063 10.784-42.918Q10.502-42.773 10.177-42.773Q9.900-42.773 9.616-42.848Q9.333-42.923 9.140-43.102Q8.947-43.282 8.947-43.569M9.562-43.569Q9.562-43.395 9.663-43.265Q9.763-43.135 9.919-43.065Q10.074-42.995 10.239-42.995Q10.457-42.995 10.666-43.092Q10.874-43.190 11.002-43.371Q11.131-43.552 11.131-43.778L11.131-44.506Q10.806-44.506 10.440-44.415Q10.074-44.324 9.818-44.112Q9.562-43.901 9.562-43.569M12.870-44.352Q12.870-44.690 13.011-44.981Q13.151-45.271 13.395-45.485Q13.639-45.698 13.944-45.813Q14.248-45.927 14.573-45.927Q14.843-45.927 15.106-45.828Q15.369-45.729 15.560-45.551L15.560-46.949Q15.560-47.219 15.453-47.281Q15.345-47.342 15.034-47.342L15.034-47.623L16.111-47.698L16.111-43.514Q16.111-43.326 16.165-43.243Q16.220-43.159 16.321-43.140Q16.422-43.121 16.637-43.121L16.637-42.841L15.530-42.773L15.530-43.190Q15.113-42.773 14.487-42.773Q14.056-42.773 13.684-42.985Q13.311-43.196 13.091-43.557Q12.870-43.918 12.870-44.352M14.545-42.995Q14.754-42.995 14.940-43.067Q15.126-43.138 15.280-43.275Q15.434-43.412 15.530-43.590L15.530-45.199Q15.444-45.346 15.299-45.466Q15.154-45.586 14.984-45.645Q14.815-45.705 14.634-45.705Q14.074-45.705 13.805-45.316Q13.537-44.926 13.537-44.345Q13.537-43.774 13.771-43.384Q14.005-42.995 14.545-42.995M17.286-44.352Q17.286-44.690 17.427-44.981Q17.567-45.271 17.811-45.485Q18.055-45.698 18.360-45.813Q18.664-45.927 18.989-45.927Q19.259-45.927 19.522-45.828Q19.785-45.729 19.976-45.551L19.976-46.949Q19.976-47.219 19.869-47.281Q19.761-47.342 19.450-47.342L19.450-47.623L20.527-47.698L20.527-43.514Q20.527-43.326 20.581-43.243Q20.636-43.159 20.737-43.140Q20.838-43.121 21.053-43.121L21.053-42.841L19.946-42.773L19.946-43.190Q19.529-42.773 18.903-42.773Q18.472-42.773 18.100-42.985Q17.727-43.196 17.507-43.557Q17.286-43.918 17.286-44.352M18.961-42.995Q19.170-42.995 19.356-43.067Q19.542-43.138 19.696-43.275Q19.850-43.412 19.946-43.590L19.946-45.199Q19.860-45.346 19.715-45.466Q19.570-45.586 19.400-45.645Q19.231-45.705 19.050-45.705Q18.490-45.705 18.221-45.316Q17.953-44.926 17.953-44.345Q17.953-43.774 18.187-43.384Q18.421-42.995 18.961-42.995M23.452-42.841L21.716-42.841L21.716-43.121Q21.945-43.121 22.094-43.155Q22.242-43.190 22.242-43.330L22.242-45.179Q22.242-45.449 22.135-45.510Q22.027-45.572 21.716-45.572L21.716-45.852L22.745-45.927L22.745-45.220Q22.875-45.528 23.117-45.727Q23.360-45.927 23.678-45.927Q23.897-45.927 24.068-45.803Q24.239-45.678 24.239-45.466Q24.239-45.329 24.139-45.230Q24.040-45.131 23.907-45.131Q23.770-45.131 23.671-45.230Q23.572-45.329 23.572-45.466Q23.572-45.606 23.671-45.705Q23.381-45.705 23.181-45.509Q22.981-45.312 22.888-45.018Q22.796-44.724 22.796-44.444L22.796-43.330Q22.796-43.121 23.452-43.121L23.452-42.841M24.782-44.376Q24.782-44.697 24.907-44.986Q25.032-45.275 25.257-45.498Q25.483-45.722 25.778-45.842Q26.074-45.962 26.392-45.962Q26.720-45.962 26.981-45.862Q27.243-45.763 27.419-45.581Q27.595-45.398 27.689-45.140Q27.783-44.882 27.783-44.550Q27.783-44.458 27.701-44.437L25.445-44.437L25.445-44.376Q25.445-43.788 25.729-43.405Q26.012-43.022 26.580-43.022Q26.901-43.022 27.169-43.215Q27.438-43.408 27.527-43.723Q27.533-43.764 27.609-43.778L27.701-43.778Q27.783-43.754 27.783-43.682Q27.783-43.675 27.776-43.648Q27.663-43.251 27.293-43.012Q26.922-42.773 26.498-42.773Q26.060-42.773 25.660-42.981Q25.261-43.190 25.021-43.557Q24.782-43.924 24.782-44.376M25.452-44.646L27.267-44.646Q27.267-44.923 27.169-45.175Q27.072-45.428 26.874-45.584Q26.676-45.739 26.392-45.739Q26.115-45.739 25.901-45.581Q25.688-45.422 25.570-45.167Q25.452-44.912 25.452-44.646M28.371-42.848L28.371-43.911Q28.371-43.935 28.398-43.962Q28.426-43.989 28.449-43.989L28.559-43.989Q28.624-43.989 28.637-43.931Q28.733-43.497 28.979-43.246Q29.225-42.995 29.639-42.995Q29.981-42.995 30.234-43.128Q30.487-43.261 30.487-43.569Q30.487-43.726 30.393-43.841Q30.299-43.955 30.160-44.024Q30.022-44.092 29.854-44.130L29.273-44.229Q28.918-44.297 28.644-44.518Q28.371-44.738 28.371-45.080Q28.371-45.329 28.482-45.504Q28.593-45.678 28.779-45.777Q28.966-45.876 29.181-45.919Q29.396-45.962 29.639-45.962Q30.053-45.962 30.333-45.780L30.548-45.955Q30.558-45.958 30.565-45.960Q30.572-45.962 30.582-45.962L30.634-45.962Q30.661-45.962 30.685-45.938Q30.709-45.914 30.709-45.886L30.709-45.039Q30.709-45.018 30.685-44.991Q30.661-44.964 30.634-44.964L30.521-44.964Q30.493-44.964 30.468-44.989Q30.442-45.015 30.442-45.039Q30.442-45.275 30.336-45.439Q30.230-45.603 30.047-45.685Q29.865-45.767 29.632-45.767Q29.304-45.767 29.048-45.664Q28.791-45.562 28.791-45.285Q28.791-45.090 28.974-44.981Q29.157-44.871 29.386-44.830L29.960-44.724Q30.206-44.676 30.420-44.548Q30.634-44.420 30.770-44.217Q30.907-44.013 30.907-43.764Q30.907-43.251 30.541-43.012Q30.176-42.773 29.639-42.773Q29.143-42.773 28.812-43.067L28.545-42.793Q28.525-42.773 28.497-42.773L28.449-42.773Q28.426-42.773 28.398-42.800Q28.371-42.827 28.371-42.848M31.536-42.848L31.536-43.911Q31.536-43.935 31.563-43.962Q31.591-43.989 31.615-43.989L31.724-43.989Q31.789-43.989 31.803-43.931Q31.898-43.497 32.144-43.246Q32.390-42.995 32.804-42.995Q33.146-42.995 33.399-43.128Q33.652-43.261 33.652-43.569Q33.652-43.726 33.558-43.841Q33.464-43.955 33.325-44.024Q33.187-44.092 33.019-44.130L32.438-44.229Q32.083-44.297 31.809-44.518Q31.536-44.738 31.536-45.080Q31.536-45.329 31.647-45.504Q31.758-45.678 31.944-45.777Q32.131-45.876 32.346-45.919Q32.561-45.962 32.804-45.962Q33.218-45.962 33.498-45.780L33.713-45.955Q33.723-45.958 33.730-45.960Q33.737-45.962 33.747-45.962L33.799-45.962Q33.826-45.962 33.850-45.938Q33.874-45.914 33.874-45.886L33.874-45.039Q33.874-45.018 33.850-44.991Q33.826-44.964 33.799-44.964L33.686-44.964Q33.658-44.964 33.633-44.989Q33.607-45.015 33.607-45.039Q33.607-45.275 33.501-45.439Q33.395-45.603 33.212-45.685Q33.030-45.767 32.797-45.767Q32.469-45.767 32.213-45.664Q31.956-45.562 31.956-45.285Q31.956-45.090 32.139-44.981Q32.322-44.871 32.551-44.830L33.125-44.724Q33.371-44.676 33.585-44.548Q33.799-44.420 33.935-44.217Q34.072-44.013 34.072-43.764Q34.072-43.251 33.706-43.012Q33.341-42.773 32.804-42.773Q32.308-42.773 31.977-43.067L31.710-42.793Q31.690-42.773 31.662-42.773L31.615-42.773Q31.591-42.773 31.563-42.800Q31.536-42.827 31.536-42.848M34.660-44.376Q34.660-44.697 34.785-44.986Q34.909-45.275 35.135-45.498Q35.361-45.722 35.656-45.842Q35.952-45.962 36.270-45.962Q36.598-45.962 36.859-45.862Q37.121-45.763 37.297-45.581Q37.473-45.398 37.567-45.140Q37.661-44.882 37.661-44.550Q37.661-44.458 37.579-44.437L35.323-44.437L35.323-44.376Q35.323-43.788 35.607-43.405Q35.890-43.022 36.458-43.022Q36.779-43.022 37.047-43.215Q37.316-43.408 37.405-43.723Q37.411-43.764 37.487-43.778L37.579-43.778Q37.661-43.754 37.661-43.682Q37.661-43.675 37.654-43.648Q37.541-43.251 37.170-43.012Q36.800-42.773 36.376-42.773Q35.938-42.773 35.538-42.981Q35.138-43.190 34.899-43.557Q34.660-43.924 34.660-44.376M35.330-44.646L37.145-44.646Q37.145-44.923 37.047-45.175Q36.950-45.428 36.752-45.584Q36.553-45.739 36.270-45.739Q35.993-45.739 35.779-45.581Q35.566-45.422 35.448-45.167Q35.330-44.912 35.330-44.646M38.249-42.848L38.249-43.911Q38.249-43.935 38.276-43.962Q38.303-43.989 38.327-43.989L38.437-43.989Q38.502-43.989 38.515-43.931Q38.611-43.497 38.857-43.246Q39.103-42.995 39.517-42.995Q39.859-42.995 40.112-43.128Q40.365-43.261 40.365-43.569Q40.365-43.726 40.271-43.841Q40.177-43.955 40.038-44.024Q39.900-44.092 39.732-44.130L39.151-44.229Q38.796-44.297 38.522-44.518Q38.249-44.738 38.249-45.080Q38.249-45.329 38.360-45.504Q38.471-45.678 38.657-45.777Q38.844-45.876 39.059-45.919Q39.274-45.962 39.517-45.962Q39.930-45.962 40.211-45.780L40.426-45.955Q40.436-45.958 40.443-45.960Q40.450-45.962 40.460-45.962L40.511-45.962Q40.539-45.962 40.563-45.938Q40.587-45.914 40.587-45.886L40.587-45.039Q40.587-45.018 40.563-44.991Q40.539-44.964 40.511-44.964L40.399-44.964Q40.371-44.964 40.346-44.989Q40.320-45.015 40.320-45.039Q40.320-45.275 40.214-45.439Q40.108-45.603 39.925-45.685Q39.742-45.767 39.510-45.767Q39.182-45.767 38.926-45.664Q38.669-45.562 38.669-45.285Q38.669-45.090 38.852-44.981Q39.035-44.871 39.264-44.830L39.838-44.724Q40.084-44.676 40.298-44.548Q40.511-44.420 40.648-44.217Q40.785-44.013 40.785-43.764Q40.785-43.251 40.419-43.012Q40.053-42.773 39.517-42.773Q39.021-42.773 38.690-43.067L38.423-42.793Q38.403-42.773 38.375-42.773L38.327-42.773Q38.303-42.773 38.276-42.800Q38.249-42.827 38.249-42.848\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M102.468 99.422h153.645V76.66H102.468Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(134.59 138.077)\">\u003Cpath d=\"M20.054-52.579L20.054-52.669Q20.105-52.876 20.304-52.900L21.121-52.900L21.121-56.083Q20.742-55.775 20.289-55.775Q20.058-55.775 20.008-56.005L20.008-56.095Q20.058-56.310 20.254-56.333Q20.582-56.333 20.836-56.571Q21.090-56.810 21.230-57.157Q21.301-57.286 21.457-57.310L21.512-57.310Q21.707-57.290 21.758-57.075L21.758-52.900L22.574-52.900Q22.773-52.876 22.824-52.669L22.824-52.579Q22.773-52.364 22.574-52.341L20.304-52.341Q20.105-52.364 20.054-52.579M25.566-52.263Q25.133-52.263 24.801-52.501Q24.469-52.739 24.248-53.128Q24.027-53.517 23.920-53.954Q23.812-54.392 23.812-54.790Q23.812-55.181 23.922-55.624Q24.031-56.068 24.248-56.448Q24.465-56.829 24.799-57.070Q25.133-57.310 25.566-57.310Q26.121-57.310 26.521-56.911Q26.922-56.513 27.119-55.927Q27.316-55.341 27.316-54.790Q27.316-54.236 27.119-53.648Q26.922-53.060 26.521-52.661Q26.121-52.263 25.566-52.263M25.566-52.821Q25.867-52.821 26.084-53.038Q26.301-53.255 26.428-53.583Q26.554-53.911 26.615-54.257Q26.676-54.603 26.676-54.884Q26.676-55.134 26.613-55.460Q26.551-55.786 26.420-56.077Q26.289-56.368 26.076-56.558Q25.863-56.747 25.566-56.747Q25.191-56.747 24.939-56.435Q24.687-56.122 24.570-55.689Q24.453-55.255 24.453-54.884Q24.453-54.486 24.566-54.005Q24.679-53.525 24.928-53.173Q25.176-52.821 25.566-52.821\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(134.59 138.077)\">\u003Cpath d=\"M32.508-54.068Q32.508-54.548 32.752-54.962Q32.996-55.376 33.412-55.614Q33.828-55.853 34.308-55.853Q34.863-55.853 35.242-55.743Q35.621-55.634 35.621-55.228Q35.621-55.060 35.508-54.937Q35.394-54.814 35.222-54.814Q35.051-54.814 34.931-54.929Q34.812-55.044 34.812-55.212L34.812-55.271Q34.652-55.294 34.316-55.294Q33.988-55.294 33.720-55.124Q33.453-54.954 33.301-54.671Q33.148-54.388 33.148-54.068Q33.148-53.747 33.320-53.466Q33.492-53.185 33.777-53.023Q34.062-52.861 34.390-52.861Q34.703-52.861 34.830-52.964Q34.957-53.068 35.074-53.257Q35.191-53.446 35.308-53.462L35.476-53.462Q35.582-53.450 35.646-53.382Q35.711-53.314 35.711-53.212Q35.711-53.165 35.691-53.126Q35.582-52.833 35.379-52.654Q35.176-52.474 34.900-52.388Q34.625-52.302 34.308-52.302Q33.824-52.302 33.408-52.540Q32.992-52.779 32.750-53.181Q32.508-53.583 32.508-54.068M36.601-53.454Q36.601-53.900 37.015-54.157Q37.429-54.415 37.970-54.515Q38.511-54.614 39.019-54.622Q39.019-54.837 38.885-54.989Q38.750-55.142 38.543-55.218Q38.336-55.294 38.125-55.294Q37.781-55.294 37.621-55.271L37.621-55.212Q37.621-55.044 37.502-54.929Q37.383-54.814 37.219-54.814Q37.043-54.814 36.928-54.937Q36.812-55.060 36.812-55.228Q36.812-55.634 37.193-55.743Q37.574-55.853 38.133-55.853Q38.402-55.853 38.670-55.775Q38.937-55.696 39.162-55.546Q39.386-55.396 39.523-55.175Q39.660-54.954 39.660-54.677L39.660-52.958Q39.660-52.900 40.187-52.900Q40.383-52.880 40.433-52.669L40.433-52.579Q40.383-52.364 40.187-52.341L40.043-52.341Q39.699-52.341 39.470-52.388Q39.242-52.435 39.097-52.622Q38.636-52.302 37.929-52.302Q37.594-52.302 37.289-52.443Q36.984-52.583 36.793-52.845Q36.601-53.107 36.601-53.454M37.242-53.446Q37.242-53.173 37.484-53.017Q37.726-52.861 38.011-52.861Q38.230-52.861 38.463-52.919Q38.695-52.978 38.857-53.116Q39.019-53.255 39.019-53.478L39.019-54.068Q38.738-54.068 38.322-54.011Q37.906-53.954 37.574-53.816Q37.242-53.677 37.242-53.446M40.511-50.798L40.511-50.884Q40.554-51.103 40.761-51.126L41.183-51.126L41.183-55.228L40.761-55.228Q40.554-55.251 40.511-55.470L40.511-55.556Q40.558-55.767 40.761-55.790L41.578-55.790Q41.773-55.771 41.824-55.556L41.824-55.486Q42.035-55.654 42.299-55.741Q42.562-55.829 42.832-55.829Q43.172-55.829 43.469-55.685Q43.765-55.540 43.980-55.288Q44.195-55.036 44.310-54.724Q44.426-54.411 44.426-54.068Q44.426-53.603 44.199-53.193Q43.972-52.782 43.586-52.542Q43.199-52.302 42.730-52.302Q42.211-52.302 41.824-52.669L41.824-51.126L42.250-51.126Q42.457-51.103 42.496-50.884L42.496-50.798Q42.457-50.587 42.250-50.564L40.761-50.564Q40.558-50.587 40.511-50.798M42.687-52.861Q42.996-52.861 43.246-53.030Q43.496-53.200 43.640-53.482Q43.785-53.763 43.785-54.068Q43.785-54.357 43.660-54.636Q43.535-54.915 43.303-55.093Q43.070-55.271 42.769-55.271Q42.449-55.271 42.187-55.085Q41.926-54.900 41.824-54.599L41.824-53.747Q41.914-53.380 42.135-53.120Q42.355-52.861 42.687-52.861M45.273-52.540L45.273-53.454Q45.301-53.661 45.511-53.685L45.679-53.685Q45.844-53.661 45.902-53.501Q46.105-52.861 46.832-52.861Q47.039-52.861 47.267-52.896Q47.496-52.931 47.664-53.046Q47.832-53.161 47.832-53.364Q47.832-53.575 47.609-53.689Q47.386-53.802 47.113-53.845L46.414-53.958Q45.273-54.169 45.273-54.892Q45.273-55.181 45.418-55.370Q45.562-55.560 45.803-55.667Q46.043-55.775 46.299-55.814Q46.554-55.853 46.832-55.853Q47.082-55.853 47.275-55.823Q47.469-55.794 47.633-55.716Q47.711-55.833 47.840-55.853L47.918-55.853Q48.015-55.841 48.078-55.779Q48.140-55.716 48.152-55.622L48.152-54.915Q48.140-54.821 48.078-54.755Q48.015-54.689 47.918-54.677L47.750-54.677Q47.656-54.689 47.590-54.755Q47.523-54.821 47.511-54.915Q47.511-55.294 46.816-55.294Q46.469-55.294 46.150-55.212Q45.832-55.130 45.832-54.884Q45.832-54.618 46.504-54.509L47.207-54.388Q47.691-54.306 48.041-54.058Q48.390-53.810 48.390-53.364Q48.390-52.974 48.154-52.732Q47.918-52.489 47.568-52.396Q47.219-52.302 46.832-52.302Q46.254-52.302 45.855-52.556Q45.785-52.431 45.736-52.374Q45.687-52.318 45.582-52.302L45.511-52.302Q45.297-52.325 45.273-52.540M50.133-53.446L50.133-55.228L49.383-55.228Q49.183-55.251 49.133-55.470L49.133-55.556Q49.183-55.767 49.383-55.790L50.133-55.790L50.133-56.540Q50.183-56.747 50.383-56.775L50.527-56.775Q50.722-56.747 50.773-56.540L50.773-55.790L52.133-55.790Q52.324-55.771 52.383-55.556L52.383-55.470Q52.328-55.251 52.133-55.228L50.773-55.228L50.773-53.478Q50.773-52.861 51.347-52.861Q51.597-52.861 51.761-53.046Q51.926-53.232 51.926-53.478Q51.926-53.571 51.998-53.642Q52.070-53.712 52.172-53.724L52.316-53.724Q52.515-53.700 52.566-53.493L52.566-53.446Q52.566-53.122 52.383-52.859Q52.199-52.595 51.906-52.448Q51.613-52.302 51.293-52.302Q50.781-52.302 50.457-52.612Q50.133-52.923 50.133-53.446M55.301-52.302Q54.828-52.302 54.443-52.546Q54.058-52.790 53.836-53.200Q53.613-53.611 53.613-54.068Q53.613-54.411 53.738-54.734Q53.863-55.056 54.094-55.310Q54.324-55.564 54.631-55.708Q54.937-55.853 55.301-55.853Q55.664-55.853 55.976-55.706Q56.289-55.560 56.511-55.314Q56.734-55.068 56.861-54.747Q56.988-54.427 56.988-54.068Q56.988-53.611 56.763-53.198Q56.539-52.786 56.154-52.544Q55.769-52.302 55.301-52.302M55.301-52.861Q55.765-52.861 56.056-53.255Q56.347-53.650 56.347-54.134Q56.347-54.427 56.213-54.695Q56.078-54.962 55.838-55.128Q55.597-55.294 55.301-55.294Q54.996-55.294 54.758-55.128Q54.519-54.962 54.385-54.695Q54.250-54.427 54.250-54.134Q54.250-53.654 54.543-53.257Q54.836-52.861 55.301-52.861M57.496-52.579L57.496-52.669Q57.539-52.876 57.746-52.900L58.168-52.900L58.168-55.228L57.746-55.228Q57.539-55.251 57.496-55.470L57.496-55.556Q57.543-55.767 57.746-55.790L58.562-55.790Q58.758-55.767 58.808-55.556L58.808-55.470L58.801-55.446Q59.027-55.626 59.301-55.728Q59.574-55.829 59.867-55.829Q60.215-55.829 60.453-55.689Q60.691-55.548 60.806-55.290Q60.922-55.032 60.922-54.677L60.922-52.900L61.347-52.900Q61.554-52.876 61.594-52.669L61.594-52.579Q61.554-52.364 61.347-52.341L59.953-52.341Q59.758-52.364 59.707-52.579L59.707-52.669Q59.758-52.880 59.953-52.900L60.281-52.900L60.281-54.646Q60.281-54.954 60.191-55.112Q60.101-55.271 59.808-55.271Q59.539-55.271 59.310-55.140Q59.082-55.009 58.945-54.780Q58.808-54.552 58.808-54.286L58.808-52.900L59.234-52.900Q59.441-52.876 59.480-52.669L59.480-52.579Q59.441-52.364 59.234-52.341L57.746-52.341Q57.539-52.364 57.496-52.579M65.183-53.829L62.742-53.829Q62.797-53.552 62.994-53.329Q63.191-53.107 63.469-52.984Q63.746-52.861 64.031-52.861Q64.504-52.861 64.726-53.150Q64.734-53.161 64.791-53.267Q64.847-53.372 64.896-53.415Q64.945-53.458 65.039-53.470L65.183-53.470Q65.375-53.450 65.433-53.236L65.433-53.181Q65.367-52.880 65.136-52.683Q64.906-52.486 64.594-52.394Q64.281-52.302 63.976-52.302Q63.492-52.302 63.053-52.530Q62.613-52.759 62.345-53.159Q62.078-53.560 62.078-54.052L62.078-54.111Q62.078-54.579 62.324-54.982Q62.570-55.384 62.978-55.618Q63.386-55.853 63.855-55.853Q64.359-55.853 64.713-55.630Q65.066-55.407 65.250-55.019Q65.433-54.630 65.433-54.126L65.433-54.068Q65.375-53.853 65.183-53.829M62.750-54.380L64.777-54.380Q64.730-54.790 64.492-55.042Q64.254-55.294 63.855-55.294Q63.461-55.294 63.154-55.032Q62.847-54.771 62.750-54.380M67.484-52.900Q67.484-53.122 67.650-53.288Q67.816-53.454 68.047-53.454Q68.195-53.454 68.322-53.376Q68.449-53.298 68.523-53.173Q68.597-53.048 68.597-52.900Q68.597-52.673 68.431-52.507Q68.265-52.341 68.047-52.341Q67.820-52.341 67.652-52.509Q67.484-52.677 67.484-52.900M67.484-55.236Q67.484-55.458 67.650-55.624Q67.816-55.790 68.047-55.790Q68.195-55.790 68.322-55.712Q68.449-55.634 68.523-55.509Q68.597-55.384 68.597-55.236Q68.597-55.009 68.431-54.843Q68.265-54.677 68.047-54.677Q67.820-54.677 67.652-54.845Q67.484-55.013 67.484-55.236\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(134.59 138.077)\">\u003Cpath d=\"M9.773-43.946L9.773-45.728L9.023-45.728Q8.824-45.751 8.773-45.970L8.773-46.056Q8.824-46.267 9.023-46.290L9.773-46.290L9.773-47.040Q9.824-47.247 10.023-47.275L10.168-47.275Q10.363-47.247 10.414-47.040L10.414-46.290L11.773-46.290Q11.965-46.271 12.023-46.056L12.023-45.970Q11.969-45.751 11.773-45.728L10.414-45.728L10.414-43.978Q10.414-43.361 10.988-43.361Q11.238-43.361 11.402-43.546Q11.566-43.732 11.566-43.978Q11.566-44.071 11.638-44.142Q11.711-44.212 11.812-44.224L11.957-44.224Q12.156-44.200 12.207-43.993L12.207-43.946Q12.207-43.622 12.023-43.359Q11.840-43.095 11.547-42.948Q11.254-42.802 10.933-42.802Q10.422-42.802 10.097-43.112Q9.773-43.423 9.773-43.946M12.890-43.079L12.890-43.169Q12.933-43.376 13.140-43.400L13.562-43.400L13.562-47.169L13.140-47.169Q12.933-47.193 12.890-47.407L12.890-47.497Q12.933-47.704 13.140-47.728L13.957-47.728Q14.152-47.704 14.203-47.497L14.203-45.946Q14.664-46.329 15.261-46.329Q15.609-46.329 15.847-46.189Q16.086-46.048 16.201-45.790Q16.316-45.532 16.316-45.177L16.316-43.400L16.742-43.400Q16.949-43.376 16.988-43.169L16.988-43.079Q16.949-42.864 16.742-42.841L15.347-42.841Q15.152-42.864 15.101-43.079L15.101-43.169Q15.152-43.380 15.347-43.400L15.676-43.400L15.676-45.146Q15.676-45.454 15.586-45.612Q15.496-45.771 15.203-45.771Q14.933-45.771 14.705-45.640Q14.476-45.509 14.340-45.280Q14.203-45.052 14.203-44.786L14.203-43.400L14.629-43.400Q14.836-43.376 14.875-43.169L14.875-43.079Q14.836-42.864 14.629-42.841L13.140-42.841Q12.933-42.864 12.890-43.079M20.578-44.329L18.136-44.329Q18.191-44.052 18.388-43.829Q18.586-43.607 18.863-43.484Q19.140-43.361 19.426-43.361Q19.898-43.361 20.121-43.650Q20.129-43.661 20.185-43.767Q20.242-43.872 20.291-43.915Q20.340-43.958 20.433-43.970L20.578-43.970Q20.769-43.950 20.828-43.736L20.828-43.681Q20.761-43.380 20.531-43.183Q20.301-42.986 19.988-42.894Q19.676-42.802 19.371-42.802Q18.886-42.802 18.447-43.030Q18.008-43.259 17.740-43.659Q17.472-44.060 17.472-44.552L17.472-44.611Q17.472-45.079 17.719-45.482Q17.965-45.884 18.373-46.118Q18.781-46.353 19.250-46.353Q19.754-46.353 20.107-46.130Q20.461-45.907 20.644-45.519Q20.828-45.130 20.828-44.626L20.828-44.568Q20.769-44.353 20.578-44.329M18.144-44.880L20.172-44.880Q20.125-45.290 19.886-45.542Q19.648-45.794 19.250-45.794Q18.855-45.794 18.549-45.532Q18.242-45.271 18.144-44.880\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(134.59 138.077)\">\u003Cpath d=\"M26.582-43.064L26.117-45.728L25.957-45.728Q25.750-45.751 25.711-45.970L25.711-46.056Q25.750-46.267 25.957-46.290L27.125-46.290Q27.336-46.267 27.375-46.056L27.375-45.970Q27.336-45.751 27.125-45.728L26.652-45.728Q26.765-45.083 26.844-44.638Q26.922-44.193 26.972-43.874Q27.023-43.556 27.023-43.482Q27.031-43.654 27.316-44.650Q27.355-44.763 27.453-44.837Q27.551-44.911 27.672-44.911L27.750-44.911Q27.871-44.911 27.969-44.837Q28.066-44.763 28.101-44.650Q28.211-44.267 28.293-43.943Q28.375-43.618 28.375-43.482Q28.387-43.771 28.734-45.728L28.262-45.728Q28.054-45.751 28.015-45.970L28.015-46.056Q28.054-46.267 28.262-46.290L29.437-46.290Q29.629-46.267 29.687-46.056L29.687-45.970Q29.633-45.751 29.437-45.728L29.269-45.728L28.804-43.064Q28.781-42.946 28.693-42.874Q28.605-42.802 28.484-42.802L28.344-42.802Q28.222-42.802 28.127-42.874Q28.031-42.946 27.988-43.064Q27.941-43.243 27.869-43.499Q27.797-43.755 27.754-43.964Q27.711-44.173 27.711-44.275Q27.703-43.993 27.422-43.064Q27.394-42.954 27.297-42.878Q27.199-42.802 27.078-42.802L26.902-42.802Q26.781-42.802 26.693-42.874Q26.605-42.946 26.582-43.064M29.890-43.079L29.890-43.169Q29.933-43.376 30.140-43.400L30.562-43.400L30.562-47.169L30.140-47.169Q29.933-47.193 29.890-47.407L29.890-47.497Q29.933-47.704 30.140-47.728L30.957-47.728Q31.152-47.704 31.203-47.497L31.203-45.946Q31.664-46.329 32.261-46.329Q32.609-46.329 32.847-46.189Q33.086-46.048 33.201-45.790Q33.316-45.532 33.316-45.177L33.316-43.400L33.742-43.400Q33.949-43.376 33.988-43.169L33.988-43.079Q33.949-42.864 33.742-42.841L32.347-42.841Q32.152-42.864 32.101-43.079L32.101-43.169Q32.152-43.380 32.347-43.400L32.676-43.400L32.676-45.146Q32.676-45.454 32.586-45.612Q32.496-45.771 32.203-45.771Q31.933-45.771 31.705-45.640Q31.476-45.509 31.340-45.280Q31.203-45.052 31.203-44.786L31.203-43.400L31.629-43.400Q31.836-43.376 31.875-43.169L31.875-43.079Q31.836-42.864 31.629-42.841L30.140-42.841Q29.933-42.864 29.890-43.079M36.187-42.802Q35.715-42.802 35.330-43.046Q34.945-43.290 34.722-43.700Q34.500-44.111 34.500-44.568Q34.500-44.911 34.625-45.234Q34.750-45.556 34.980-45.810Q35.211-46.064 35.517-46.208Q35.824-46.353 36.187-46.353Q36.551-46.353 36.863-46.206Q37.176-46.060 37.398-45.814Q37.621-45.568 37.748-45.247Q37.875-44.927 37.875-44.568Q37.875-44.111 37.650-43.698Q37.426-43.286 37.041-43.044Q36.656-42.802 36.187-42.802M36.187-43.361Q36.652-43.361 36.943-43.755Q37.234-44.150 37.234-44.634Q37.234-44.927 37.099-45.195Q36.965-45.462 36.724-45.628Q36.484-45.794 36.187-45.794Q35.883-45.794 35.644-45.628Q35.406-45.462 35.271-45.195Q35.136-44.927 35.136-44.634Q35.136-44.154 35.429-43.757Q35.722-43.361 36.187-43.361M38.761-43.079L38.761-43.169Q38.812-43.376 39.008-43.400L40.113-43.400L40.113-47.169L39.008-47.169Q38.812-47.193 38.761-47.407L38.761-47.497Q38.812-47.704 39.008-47.728L40.504-47.728Q40.695-47.704 40.754-47.497L40.754-43.400L41.855-43.400Q42.054-43.376 42.105-43.169L42.105-43.079Q42.054-42.864 41.855-42.841L39.008-42.841Q38.812-42.864 38.761-43.079M46.070-44.329L43.629-44.329Q43.683-44.052 43.881-43.829Q44.078-43.607 44.355-43.484Q44.633-43.361 44.918-43.361Q45.390-43.361 45.613-43.650Q45.621-43.661 45.678-43.767Q45.734-43.872 45.783-43.915Q45.832-43.958 45.926-43.970L46.070-43.970Q46.261-43.950 46.320-43.736L46.320-43.681Q46.254-43.380 46.023-43.183Q45.793-42.986 45.480-42.894Q45.168-42.802 44.863-42.802Q44.379-42.802 43.939-43.030Q43.500-43.259 43.232-43.659Q42.965-44.060 42.965-44.552L42.965-44.611Q42.965-45.079 43.211-45.482Q43.457-45.884 43.865-46.118Q44.273-46.353 44.742-46.353Q45.246-46.353 45.599-46.130Q45.953-45.907 46.136-45.519Q46.320-45.130 46.320-44.626L46.320-44.568Q46.261-44.353 46.070-44.329M43.636-44.880L45.664-44.880Q45.617-45.290 45.379-45.542Q45.140-45.794 44.742-45.794Q44.347-45.794 44.041-45.532Q43.734-45.271 43.636-44.880\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(134.59 138.077)\">\u003Cpath d=\"M51.019-43.079L51.019-43.169Q51.070-43.380 51.265-43.400L51.465-43.400L51.465-45.728L51.265-45.728Q51.058-45.751 51.019-45.970L51.019-46.056Q51.070-46.271 51.265-46.290L51.746-46.290Q51.937-46.267 51.996-46.056Q52.316-46.329 52.730-46.329Q52.922-46.329 53.090-46.220Q53.258-46.111 53.332-45.939Q53.508-46.130 53.730-46.230Q53.953-46.329 54.195-46.329Q54.613-46.329 54.767-45.987Q54.922-45.646 54.922-45.177L54.922-43.400L55.121-43.400Q55.332-43.376 55.371-43.169L55.371-43.079Q55.320-42.864 55.121-42.841L54.304-42.841Q54.109-42.864 54.058-43.079L54.058-43.169Q54.109-43.376 54.304-43.400L54.394-43.400L54.394-45.146Q54.394-45.771 54.144-45.771Q53.812-45.771 53.635-45.460Q53.457-45.150 53.457-44.786L53.457-43.400L53.660-43.400Q53.867-43.376 53.906-43.169L53.906-43.079Q53.855-42.864 53.660-42.841L52.844-42.841Q52.644-42.864 52.594-43.079L52.594-43.169Q52.644-43.376 52.844-43.400L52.929-43.400L52.929-45.146Q52.929-45.771 52.683-45.771Q52.351-45.771 52.174-45.458Q51.996-45.146 51.996-44.786L51.996-43.400L52.195-43.400Q52.402-43.376 52.441-43.169L52.441-43.079Q52.390-42.861 52.195-42.841L51.265-42.841Q51.058-42.864 51.019-43.079M55.726-43.954Q55.726-44.400 56.140-44.657Q56.554-44.915 57.095-45.015Q57.636-45.114 58.144-45.122Q58.144-45.337 58.010-45.489Q57.875-45.642 57.668-45.718Q57.461-45.794 57.250-45.794Q56.906-45.794 56.746-45.771L56.746-45.712Q56.746-45.544 56.627-45.429Q56.508-45.314 56.344-45.314Q56.168-45.314 56.053-45.437Q55.937-45.560 55.937-45.728Q55.937-46.134 56.318-46.243Q56.699-46.353 57.258-46.353Q57.527-46.353 57.795-46.275Q58.062-46.196 58.287-46.046Q58.511-45.896 58.648-45.675Q58.785-45.454 58.785-45.177L58.785-43.458Q58.785-43.400 59.312-43.400Q59.508-43.380 59.558-43.169L59.558-43.079Q59.508-42.864 59.312-42.841L59.168-42.841Q58.824-42.841 58.595-42.888Q58.367-42.935 58.222-43.122Q57.761-42.802 57.054-42.802Q56.719-42.802 56.414-42.943Q56.109-43.083 55.918-43.345Q55.726-43.607 55.726-43.954M56.367-43.946Q56.367-43.673 56.609-43.517Q56.851-43.361 57.136-43.361Q57.355-43.361 57.588-43.419Q57.820-43.478 57.982-43.616Q58.144-43.755 58.144-43.978L58.144-44.568Q57.863-44.568 57.447-44.511Q57.031-44.454 56.699-44.316Q56.367-44.177 56.367-43.946M60.125-44.568Q60.125-45.048 60.369-45.462Q60.613-45.876 61.029-46.114Q61.445-46.353 61.926-46.353Q62.480-46.353 62.859-46.243Q63.238-46.134 63.238-45.728Q63.238-45.560 63.125-45.437Q63.011-45.314 62.840-45.314Q62.668-45.314 62.549-45.429Q62.429-45.544 62.429-45.712L62.429-45.771Q62.269-45.794 61.933-45.794Q61.605-45.794 61.338-45.624Q61.070-45.454 60.918-45.171Q60.765-44.888 60.765-44.568Q60.765-44.247 60.937-43.966Q61.109-43.685 61.394-43.523Q61.679-43.361 62.008-43.361Q62.320-43.361 62.447-43.464Q62.574-43.568 62.691-43.757Q62.808-43.946 62.926-43.962L63.094-43.962Q63.199-43.950 63.263-43.882Q63.328-43.814 63.328-43.712Q63.328-43.665 63.308-43.626Q63.199-43.333 62.996-43.154Q62.793-42.974 62.517-42.888Q62.242-42.802 61.926-42.802Q61.441-42.802 61.025-43.040Q60.609-43.279 60.367-43.681Q60.125-44.083 60.125-44.568M63.883-43.079L63.883-43.169Q63.926-43.376 64.133-43.400L64.554-43.400L64.554-47.169L64.133-47.169Q63.926-47.193 63.883-47.407L63.883-47.497Q63.926-47.704 64.133-47.728L64.949-47.728Q65.144-47.704 65.195-47.497L65.195-45.946Q65.656-46.329 66.254-46.329Q66.601-46.329 66.840-46.189Q67.078-46.048 67.193-45.790Q67.308-45.532 67.308-45.177L67.308-43.400L67.734-43.400Q67.941-43.376 67.980-43.169L67.980-43.079Q67.941-42.864 67.734-42.841L66.340-42.841Q66.144-42.864 66.094-43.079L66.094-43.169Q66.144-43.380 66.340-43.400L66.668-43.400L66.668-45.146Q66.668-45.454 66.578-45.612Q66.488-45.771 66.195-45.771Q65.926-45.771 65.697-45.640Q65.469-45.509 65.332-45.280Q65.195-45.052 65.195-44.786L65.195-43.400L65.621-43.400Q65.828-43.376 65.867-43.169L65.867-43.079Q65.828-42.864 65.621-42.841L64.133-42.841Q63.926-42.864 63.883-43.079M68.676-43.079L68.676-43.169Q68.726-43.376 68.922-43.400L69.961-43.400L69.961-45.728L68.988-45.728Q68.789-45.751 68.738-45.970L68.738-46.056Q68.789-46.267 68.988-46.290L70.355-46.290Q70.551-46.271 70.601-46.056L70.601-43.400L71.515-43.400Q71.711-43.376 71.761-43.169L71.761-43.079Q71.711-42.864 71.515-42.841L68.922-42.841Q68.726-42.864 68.676-43.079M69.707-47.267L69.707-47.321Q69.707-47.493 69.844-47.614Q69.980-47.736 70.156-47.736Q70.328-47.736 70.465-47.614Q70.601-47.493 70.601-47.321L70.601-47.267Q70.601-47.091 70.465-46.970Q70.328-46.849 70.156-46.849Q69.980-46.849 69.844-46.970Q69.707-47.091 69.707-47.267M72.375-43.079L72.375-43.169Q72.418-43.376 72.625-43.400L73.047-43.400L73.047-45.728L72.625-45.728Q72.418-45.751 72.375-45.970L72.375-46.056Q72.422-46.267 72.625-46.290L73.441-46.290Q73.636-46.267 73.687-46.056L73.687-45.970L73.679-45.946Q73.906-46.126 74.179-46.228Q74.453-46.329 74.746-46.329Q75.094-46.329 75.332-46.189Q75.570-46.048 75.685-45.790Q75.801-45.532 75.801-45.177L75.801-43.400L76.226-43.400Q76.433-43.376 76.472-43.169L76.472-43.079Q76.433-42.864 76.226-42.841L74.832-42.841Q74.636-42.864 74.586-43.079L74.586-43.169Q74.636-43.380 74.832-43.400L75.160-43.400L75.160-45.146Q75.160-45.454 75.070-45.612Q74.980-45.771 74.687-45.771Q74.418-45.771 74.189-45.640Q73.961-45.509 73.824-45.280Q73.687-45.052 73.687-44.786L73.687-43.400L74.113-43.400Q74.320-43.376 74.359-43.169L74.359-43.079Q74.320-42.864 74.113-42.841L72.625-42.841Q72.418-42.864 72.375-43.079M80.062-44.329L77.621-44.329Q77.676-44.052 77.873-43.829Q78.070-43.607 78.347-43.484Q78.625-43.361 78.910-43.361Q79.383-43.361 79.605-43.650Q79.613-43.661 79.670-43.767Q79.726-43.872 79.775-43.915Q79.824-43.958 79.918-43.970L80.062-43.970Q80.254-43.950 80.312-43.736L80.312-43.681Q80.246-43.380 80.015-43.183Q79.785-42.986 79.472-42.894Q79.160-42.802 78.855-42.802Q78.371-42.802 77.931-43.030Q77.492-43.259 77.224-43.659Q76.957-44.060 76.957-44.552L76.957-44.611Q76.957-45.079 77.203-45.482Q77.449-45.884 77.857-46.118Q78.265-46.353 78.734-46.353Q79.238-46.353 79.592-46.130Q79.945-45.907 80.129-45.519Q80.312-45.130 80.312-44.626L80.312-44.568Q80.254-44.353 80.062-44.329M77.629-44.880L79.656-44.880Q79.609-45.290 79.371-45.542Q79.133-45.794 78.734-45.794Q78.340-45.794 78.033-45.532Q77.726-45.271 77.629-44.880\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M8.574 28.49v59.551h91.694\"\u002F>\u003Cpath stroke=\"none\" d=\"m102.268 88.041-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M179.29 28.49v45.97\"\u002F>\u003Cpath stroke=\"none\" d=\"m179.29 76.46 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M350.007 58.366V88.04h-91.694\"\u002F>\u003Cpath stroke=\"none\" d=\"m256.313 88.041 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The course as three strands meeting in the capstone. The program strand fixes the contract (bytes with meanings); the processor strand builds the machine that honors it; the memory-and-world strand surrounds the core with storage, protection, devices, and more cores. Arrows mark the two hand-offs: the ISA gives the processor its bytes, and the processor gives the memory system its addresses.\u003C\u002Ffigcaption>",1785117694473]